/*fixed-contact*/
.fixed-contact {
    z-index: 999999;
    position: fixed;
    right: 0;
    top: 40%;
    width: 50px;
    margin-top: -90px;
    overflow: hidden;
    border-radius: 25px 0 0 25px;
    opacity: 0;
    filter: alpha(opacity=0);
    transition: all .4s;
    transform: translateX(95px);
    -webkit-transform: translateX(95px);
    -moz-transform: translateX(95px);
    background: #ff9207;
}

.fixed-contact.show {
    transform: none;
    opacity: 1;
    filter: alpha(opacity=100);
}

.fixed-contact ul {
    margin: 0;
    padding: 0;
}

.fixed-contact.active {
    width: 228px;
}

.fixed-contact li {
    position: relative;
    height: 50px;
    overflow: hidden;
    transition: all .4s;
    list-style: none;
}

.fixed-contact.active li a {
    opacity: 1;
}

.fixed-contact li a {
    position: relative;
    z-index: 1000;
    display: block;
}

.fixed-contact li i {
    z-index: 1000;
    position: absolute;
    right: 0;
    display: block;
    width: 50px;
    height: 50px;
    transition: all .4s;
    background-repeat: no-repeat;
    background-position: center center;
    background-image: url(../images/side_icon.png);
}

.fixed-contact.active li:after {
    z-index: 1001;
    content: '';
    position: absolute;
    bottom: 0;
    left: 10px;
    right: 10px;
    display: block;
    height: 1px;
    background: rgba(255, 255, 255, .2);
}

.fixed-contact.active li:last-child:after {
    display: none;
}

.fixed-contact li:hover i, .fixed-contact li:hover a {
    opacity: .7;
}

.fixed-contact .online_p i {
    background-position: 0 -262px;
    border-top-left-radius: 30px;
    -moz-border-top-left-radius: 30px;
    -webkit-border-top-left-radius: 30px;
    border-top-right-radius: 30px;
    -moz-border-top-right-radius: 30px;
    -webkit-border-top-right-radius: 30px;
}

.fixed-contact .online_tel i {background-position: 0px 0px;} /* 电话 */
.fixed-contact .online_mobile i {background-position: -50px 0px;} /* 手机 */
.fixed-contact .online_email i {background-position: -100px 0px;} /* 邮件 */
.fixed-contact .online_qq i {background-position: -150px 0px;} /* QQ */
.fixed-contact .online_wechat i {background-position: -200px 0px;} /* 微信 */
.fixed-contact .online_code i {background-position: -250px 0px;} /* 二维码 */
.fixed-contact .online_skype i {background-position: -300px 0px;} /* skype */
.fixed-contact .online_kefu i {background-position: -350px 0px;} /* 在线客服 */

.fixed-contact li a {
    position: absolute;
    top: 0;
    right: -135px;
    display: block;
    width: 240px;
    line-height: 110%;
    padding: 18px 0 0 30px;
    color: #fff;
    white-space: nowrap;
    transition: all .4s;
    font-size: 14px;
    text-align: right;
    font-weight: normal;
    opacity: 0;
}

.fixed-contact.active li a {
    right: 60px;
}

.fixed-contact .online_code a img {
    max-width: 80px;
}

.fixed-contact.active .online_code {
    height: 130px;
}

.fixed-contact.active .online_code a p {
    margin: 0;
    margin-bottom: 5px;
}

.fixed-contact li.online_code:hover a {
    opacity: 1;
}

@media only screen and (max-width: 767px) {
    .fixed-contact {
        display: none !important;
    }

    .fixed-contact.show {
        opacity: 0;
    }
}

