@charset "utf-8";
html{color:#000;background:#FFF;overflow-y: scroll;}

html, body {
    width:100%;
    overflow-x: hidden;
    user-select: none;
}


body {
    margin: 0 auto;
    overflow-x: hidden;
    min-width: 1280px;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1;
    background: #fff;
    overflow-y: hidden;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}



a { text-decoration:none;cursor:pointer; color: inherit;}
a:focus{outline:0;}
li{list-style:none;}
.clear{ clear:both; height:0; line-height:0; font-size:0;}
.clearfix:after{ content:""; clear:both; height:0; visibility:hidden; display:block;}
.clearfix{*zoom:1}
p{ word-spacing:-1.5px;}
.tr { text-align:right;}
.tl { text-align:left;}
.center { text-align:center;}
.fl { float:left;}
.fr { float:right;}
.pa{ position:absolute;}
.pr{ position:relative}
.iconfont {
    font-family: "iconfont" !important;
    font-size: 16px;
    font-style: normal;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


@font-face {
    font-family: 'iconfont';
    src: url('./fonts/iconfont.ttf?t=1700707768544') format('truetype');
}


.m1600{max-width: 1600px;width: 92%;margin: 0 auto;}
.m1400{max-width: 1400px;width: 92%;margin: 0 auto;}

.headerbox {
    position: fixed;
    top: 0;
    z-index: 999;
    height: 6.75rem;
    width: 100%;
    background: rgba(20, 20, 20, 0.1);
}
#header {
    width: 100%;
    transition: .6s;
}
#header > .m1600 {
    display: flex;
    height: 100%;
    width:90%;
    max-width: 1600px;
    justify-content: space-between;
    align-items: center;
    position: static;
}
#header .fr {
    display: flex;
    justify-content: space-between;
    width: calc(50% + 2rem);
}
#header .line01 {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: rgb(255 255 255 / 20%);
    z-index: -1;
    animation: longer 4s 1.5s linear forwards;
}
#banner .line02 {
    position: absolute;
    width: 1px;
    height: 100%;
    background: rgb(255 255 255 / 20%);
    right: 10rem;
    top: 0;
    z-index: 1;
}
@-webkit-keyframes longer {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
@keyframes longer {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}
#logo {
    flex-shrink: 0;
    width: 15rem;
    height: 100px;
}
#logo a {
    display: flex;
    height: 100%;
    align-items: center;
}
#logo img {
    height: 100px;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
}
#logo .img01 {
    display: none;
}
#logo .img02 {
    display: block;
}
#nav {
    flex-grow: 1;
}
#nav ul {
    display: flex;
    flex-grow: 1;
}
#nav ul li {
    float: left;
    position: relative;
    z-index: 0;
    flex-grow: 1;
    text-align: center;
}
#nav ul li a {
    display: block;
    text-transform: uppercase;
    font-size: 0;
}
#nav ul li .nav_title {
    font-size: 1.2rem;
    color: #fff;
    transition: .5s;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    -ms-transition: .5s;
    -o-transition: .5s;
    line-height: 6.75rem;
    overflow: hidden;
    text-align: center;
    position: relative;
    z-index: 1;
    display: inline-block;
}
#nav ul li .nav_title i{
    display: inline-block;
    margin-left: 4px;
    color: #ffffff;
    font-size: 0.8rem;
}

#nav ul li.on .nav_title, #nav ul li:hover .nav_title {}
#nav ul li .nav_title:before {
    content: "";
    width: 100%;
    height: 3px;
    position: absolute;
    bottom: 0;
    left: 0;
    background: #fff;
    transition: 0.3s ease-in-out;
    transform: scaleX(0);
    transform-origin: center;
}
#nav ul li.on .nav_title:before, #nav ul li:hover .nav_title:before {
    transform: scaleX(1);
}
#nav li .sub {
    min-width:100%;
    position: absolute;
    padding-top: .5rem;
    left: 50%;
    top: 100%;
    z-index: 999;
    transform-origin: 0 0 0;
    transform: translateY(10px) translateX(-50%);
    -webkit-transition: all 0.3s ease 0s;
    -moz-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
    opacity: 0;
    visibility: hidden;
}
#nav li .sub .sbu_box {
    text-align: left;
    background: rgba(255, 255, 255, 0.9);
    padding: 1rem 1rem;
    border-radius: 5px;
    -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    -moz-box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
    box-shadow: 0 3px 5px #3333334d;
}
#nav li .sub a {
    padding: 0;
    line-height: 50px;
    transition: .3s;
    font-size: 16px;
    color: #505050;
    text-align: center;
    white-space: nowrap;
    position: relative;
    border-bottom:1px solid #e7e6e6;
}
#nav li .sub a:hover {
    color: #194492;
}
#nav li:hover .sub {
    filter: alpha(opacity=100);
    opacity: 1;
    visibility: visible;
    transform: translateY(0px) translateX(-50%);
}
.top_menu_box {
    display: flex;
    margin-left: 2rem;
    align-items: center;
}
.menumap {
    position: absolute;
    top: 50%;
    right: 3.75rem;
    transform: translate(0, -50%);
    cursor: pointer;
    transition: all .5s;
}
#header.xg .menumap img {
    content: url(../images/nav1.png);
}
.top_menu_box .top_menu {
    display: flex;
    min-width: 6.25rem;
    padding: 0 2.25rem;
    align-items: center;
    position: relative;
    z-index: 1;
    border-radius: 50%;
}
.top_menu_box .top_menu a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}
.top_menu_box .top_menu svg {
    width: 1.25rem;
    height: 1.25rem;
}
.top_menu_box .top_menu.btn_language svg path {
    fill: #fff;
}
.top_menu_box .top_menu svg:nth-child(3) {
    width: 1rem;
    height: 1rem;
}
.top_menu_box .top_menu span {
    margin-left: .75rem;
    margin-right: .375rem;
    font-size: 1rem;
    color: #fff;
    transition: .5s;
}
.top_menu_box .top_menu.btn_search svg {
    width: 1.5rem;
    height: 1.5rem;
}
.top_menu_box .top_menu:before {
    content: "";
    display: block;
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(255, 255, 255, .3);
    transition: .5s;
}
.top_menu_box .top_menu.on:before {
    opacity: 0;
    visibility: hidden;
}
.top_menu_box .top_menu.on svg path {
    fill: #fff;
}
body.on .after {
    visibility: visible;
    opacity: 1;
}
body .after {
    content: "";
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    visibility: hidden;
    transition: 0.6s;
    opacity: 0;
}
.wangzhan_map.on {
    transform: translateX(0);
}
.wangzhan_map {
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    width: 410px;
    background: #fff;
    z-index: 1001;
    transform: translateX(100%);
    transition: 0.6s;
    max-width: 100%;
}
.wangzhan_map .top {
    line-height: 95px;
    background: #194492;
    padding: 0 1.875rem;
    font-weight: bold;
    font-size: 1.25rem;
    color: #fff;
}
.wangzhan_map .top svg {
    float: right;
    width: 1.25rem;
    height: 1.25rem;
    fill: #fff;
    margin: 2.375rem 0;
    transition: 0.6s;
    cursor: pointer;
    display: inline-block;
}
.wangzhan_map .box {
    height: calc(100% - 4.375rem);
    overflow: hidden;
    overflow-y: scroll;
    padding: 2rem 1.875rem;
    width: 100%;
    min-width: auto;
}
.wangzhan_map .box dl {
    padding: 1rem 0;
    border-bottom: #e5e5e5 1px solid;
    font-size: 0;
}
.wangzhan_map .box dl dt {
    font-size: 16px;
    color: #000;
    margin-bottom: 0.5rem;
}
.wangzhan_map .box dl dt a {
    color: inherit;
    transition: 0.6s;
}
.wangzhan_map .box dl dd {
    font-size: .875rem;
    color: #636364;
    min-width: 33.333333%;
    display: inline-block;
    line-height: 1.875rem;
}
.wangzhan_map .box dl dd a:hover {
    color: #194492;
}
video {
    background: #000;
}
#header.xg,#header.xg1 {
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
#header.xg #nav ul li .nav_title,#header.xg1 #nav ul li .nav_title {
    color: #333;
}
#header.xg #nav ul li .nav_title i,#header.xg1 #nav ul li .nav_title i{
    color: #333;
}
#header.xg #nav ul li .nav_title:before,#header.xg1 #nav ul li .nav_title:before {
    background: #194492;
}
#header.xg #logo .img01,#header.xg1 #logo .img01 {
    display: block;
}
#header.xg #logo .img02,#header.xg1 #logo .img02 {
    display: none;
}
#header.xg .top_menu_box .top_menu svg path,#header.xg1 .top_menu_box .top_menu svg path {
    fill: #194492 !important;
}
#header.xg .top_menu_box .top_menu span,#header.xg1 .top_menu_box .top_menu span {
    color: #333;
}
#header.xg .top_menu_box .top_menu:before,#header.xg1 .top_menu_box .top_menu:before {
    background: rgba(0, 0, 0, 0.2);
}

.search-dialog-box {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1000000;
    opacity: 0;
    visibility: hidden;
    transition: .6s;
}
.search-dialog-box .bubbles-bg {
    opacity: 0;
    visibility: hidden;
}
.search-dialog-box .search-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 120vw;
    height: 120vw;
    margin: -60vw 0 0 -60vw;
    background: #194492;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 100%;
    transform: scale(0);
    transform-origin: center center;
    transition: transform .8s cubic-bezier(.77, 0, .175, 1);
}
.search-dialog-box .wrap-inner {
    transform: translateY(100%);
    transition: .6s;
}
.header-right .bubbles-bg {
    opacity: 0;
    visibility: hidden;
    transition: all .5s .8s;
}
.search-dialog-box .bubbles-bg .bubble {
    position: absolute;
}
.search-dialog-box .bubbles-bg .bubble .circle {
    border-radius: 100%;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
}
.search-dialog-box .bubbles-bg .bubble1 {
    width: 6%;
    padding-top: 6%;
    left: 26.875%;
    top: -6.67%;
}
.search-dialog-box .bubbles-bg .bubble1 .circle {
    border: 1px solid #fff;
}
.search-dialog-box .bubbles-bg .bubble2 {
    width: 12px;
    padding-top: 12px;
    left: 13.54%;
    top: 18%;
}
.search-dialog-box .bubbles-bg .bubble2 .circle {
    background-color: #194492;
    opacity: .2;
}
.search-dialog-box .bubbles-bg .bubble3 {
    width: 36px;
    padding-top: 36px;
    left: 8.854%;
    top: 30.55%;
}
.search-dialog-box .bubbles-bg .bubble3 .circle {
    background-color: #fff;
}
.search-dialog-box .bubbles-bg .bubble4 {
    width: 56.875%;
    padding-top: 56.875%;
    left: -28.6458%;
    top: 51.85%;
}
.search-dialog-box .bubbles-bg .bubble4 .circle {
    background: -webkit-linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
    background: -ms-linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
    background: linear-gradient(45deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, .05) 100%);
}
.search-dialog-box .bubbles-bg .bubble5 {
    width: 54px;
    padding-top: 54px;
    left: 26.3%;
    top: 70.83%;
}
.search-dialog-box .bubbles-bg .bubble5 .circle {
    background-color: #fff;
    opacity: .1;
}
.search-dialog-box .bubbles-bg .bubble6 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 73.4375%;
    top: -52.77%;
}
.search-dialog-box .bubbles-bg .bubble6 .circle {
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
    background: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .1) 100%);
}
.search-dialog-box .bubbles-bg .bubble7 {
    width: 2rem;
    padding-top: 2rem;
    left: 60.9375%;
    top: 18.5%;
}
.search-dialog-box .bubbles-bg .bubble7 .circle {
    background-color: #194492;
    opacity: .2;
}
.search-dialog-box .bubbles-bg .bubble8 {
    width: 1.35rem;
    padding-top: 1.35rem;
    left: 95.83%;
    top: 70.83%;
}
.search-dialog-box .bubbles-bg .bubble8 .circle {
    border: 1px solid #fff;
}
.search-dialog-box .bubbles-bg .bubble9 {
    width: 16px;
    padding-top: 16px;
    left: 76.5625%;
    top: 96.296%;
}
.search-dialog-box .bubbles-bg .bubble9 .circle {
    background-color: #fff;
}
.search-dialog-box .bubbles-bg .bubble10 {
    width: 56.875%;
    padding-top: 56.875%;
    left: 71.354%;
    top: 87%;
}
.search-dialog-box .bubbles-bg .bubble10 .circle {
    background: -webkit-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
    background: -ms-linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
    background: linear-gradient(135deg, rgba(255, 255, 255, .05), rgba(255, 255, 255, .3) 100%);
}
.search-dialog-box .bubbles-bg .bubble {
    animation: spin 8s infinite linear;
    transform-origin: 50% 45%;
}
.search-dialog-box .bubbles-bg .bubble:nth-child(2n) {
    animation: spin2 8s infinite linear;
}
.search-dialog-box .bubbles-bg .bubble .circle {
    animation: spin-reverse 8s infinite linear;
}
.search-dialog-box .bubbles-bg .bubble:nth-child(2n) .circle {
    animation: spin-reverse2 8s infinite linear;
}
.search-dialog-box .bubbles-bg .sm-bubble {
    transform-origin: 30% 30px;
}
.search-dialog {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
}
.search-dialog .search-tit {
    font-size: 2.25rem;
    line-height: 3.5rem;
    color: #fff;
    text-align: center;
    overflow: hidden;
}
.search-dialog .search-inner {
    overflow: hidden;
    margin-top: 3.35rem;
}
.search-dialog .search-input {
    width: 50rem;
    margin: 0 auto;
    padding: 0 0.5rem 0 1.5rem;
    background-color: rgba(0, 0, 0, .1);
    border-radius: .5rem;
    box-sizing: border-box;
    transition: all .3s;
    max-width: 94%;
}
.search-dialog input {
    outline: 0;
    border: 0;
}
.search-dialog .search-input input[type=text] {
    float: left;
    height: 4rem;
    width: calc(100% - 3.5rem);
    background-color: transparent;
    font-size: 1.125rem;
    line-height: .5rem;
    color: #fff;
    transition: all .3s;
}
.search-dialog .search-input input[type=text]::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type=text]:-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type=text]::-moz-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type=text]:-ms-input-placeholder {
    color: rgba(255, 255, 255, 0.5);
}
.search-dialog .search-input input[type=submit], .search-dialog .search-input .clear-btn {
    float: right;
    height: 3.5rem;
    width: 3.5rem;
}
.search-dialog .search-input .input_submit {
    background: none;
    border: 0;
    outline: 0;
    height: 4rem;
}
.search-dialog .search-input .input_submit svg {
    width: 1.875rem;
    height: 1.875rem;
}
.search-dialog .search-input .clear-btn {
    background-color: rgba(0, 0, 0, .2);
    background-repeat: no-repeat;
    background-position: center;
    background-image: url('../images/close-btn.svg');
    background-size: 3.5rem;
    border-radius: 100%;
    margin-right: 1rem;
    display: none;
}
.search-dialog .search-input.on {
    background-color: #fff;
}

.search-dialog .hot-search {
    font-size: 0;
    width: 19.5rem;
    margin: .6rem auto 0;
    box-sizing: border-box;
    padding: 0 .6rem;
    overflow: hidden;
}
.search-dialog .hot-search .hot-tit, .search-dialog .hot-search .hot-link {
    display: inline-block;
    *display: inline;
    zoom: 1;
    vertical-align: top;
}

.search-dialog-box .bottom-box {
    position: absolute;
    left: 0;
    bottom: 5.1%;
    width: 100%;
}
.search-dialog-box .bottom-box .share-box {
    overflow: hidden;
}
.search-dialog-box .bottom-box .copy {
    font-size: .35rem;
    line-height: .5rem;
    color: #fff;
    margin-top: .5rem;
    overflow: hidden;
}
.search-dialog-box.on {
    opacity: 1;
    visibility: visible;
}
.search-dialog-box.on .search-bg {
    transform: scale(1);
}
.search-dialog-box.on .bubbles-bg {
    opacity: 1;
    visibility: visible;
}
.search-dialog-box.on .wrap-inner {
    transform: translateY(0)
}
.pub-close {
    position: absolute;
    width: 2.5rem;
    height: 2.5rem;
    z-index: 10;
    right: 3.125%;
    top: 1.35rem;
    background-color: rgba(0, 0, 0, .1);
    border-radius: 100%;
}
.pub-close .bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: #194492;
    transform: scale(0);
    border-radius: 100%;
    transition: transform .3s;
}
.pub-close i {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-position: center;
    background-size: 0.75rem;
    background-repeat: no-repeat;
    background-image: url(../images/close-btn.svg);
    transition: .6s
}
.pub-close i:hover {
    transform: rotate(180deg)
}
@keyframes spin {
    to {
        transform: rotate(1turn);
    }
}
@keyframes spin2 {
    to {
        transform: rotate(-1turn);
    }
}
@keyframes spin-reverse {
    from {
        transform: rotate(1turn);
    }
}
@keyframes spin-reverse2 {
    from {
        transform: rotate(-1turn);
    }
}






.mzbox {
    width: 90%;
    max-width: 1600px;
    margin: auto;
}

.foot {
    background: #000;
    background-size: cover
}

.foot-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    border-bottom: 1px solid rgba(255, 255, 255, .15)
}

.foot-top > div:last-of-type {
    display: flex;
    align-items: center;
    justify-content: flex-end
}

.foot-top .to_top {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #194492;
    text-align: center;
    line-height: 60px;
    margin-left: 33px;
    cursor: pointer
}

.foot-main {
    padding-top: 45px !important;
    color: #fff;
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px !important
}

.foot-main .left-contact.en {
    padding-right: 39px
}

.foot-main .left-contact.en p.addr {
    line-height: 2
}

.foot-main .left-contact p {
    color: #fff;
    font-size: 16px;
    line-height: 1
}

.foot-main .left-contact p + p {
    margin-top: 18px
}

.foot-main .left-contact p:nth-of-type(3) {
    margin-top: 20px
}

.foot-main .left-contact .qrcodes {
    display: flex;
    position: relative;
    margin-top: 30px
}

.foot-main .left-contact .qrcodes i {
    display: flex;
    width: 100px;
    border: 1px solid #fff;
    margin-right: 20px;
    cursor: pointer;
    align-items: center;
    justify-content: center
}

.qrcodes-li {
    position: absolute;
    left: 180px;
    top: 0;
    opacity: 0
}

.qrcodes-li img {
    width: 153px
}

i.li-wx:hover ~ .qrcodes-li-wx {
    opacity: 1
}

i.li-dy:hover ~ .qrcodes-li-dy {
    opacity: 1
}

.foot-main .right-menu {
    display: flex;
    justify-content: end
}

.foot-main .right-menu dt a {
    font-size: 18px;
    font-weight: bold;
    color: #fff
}

.foot-main .right-menu p a {
    font-size: 16px;
    color: rgba(255, 255, 255, .5)
}

.foot-main .right-menu p a:hover {
    color: rgba(255, 255, 255, 1)
}

.foot-main .right-menu dl + dl {
    margin-left: 108px
}

.foot-main .right-menu dd {
    margin-top: 40px
}

.foot-main .right-menu dd p + p {
    margin-top: 14px
}

.foot-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .15);
    padding-top: 30px !important;
    padding-bottom: 30px !important
}

.foot-info div:first-of-type {
    display: flex;
    justify-content: flex-start
}

.foot-info div:first-of-type * {
    margin-right: 9px
}

.foot-info, .foot-info p, .foot-info a {
    color: #fff;
    font-size: 16px
}


@media screen and (max-width: 1440px) {

    .foot-main .right-menu dt a {
        font-size: 16px
    }

    .foot-main .right-menu p a {
        font-size: 14px
    }

    .foot-main .right-menu dl + dl {
        margin-left: 98px
    }

    .foot-main .left-contact p {
        font-size: 15px
    }

    .foot-info, .foot-info p, .foot-info a {
        font-size: 14px
    }

    .mzbox {
        padding: 0px 29px;
    }
}



.foot_ewm {
    display: flex;
    margin-top: 30px;
}

.foot_ewm .ewm {
    margin-right: 1.75rem;
}

.foot_ewm .ewm .pic {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #525252;
    padding: 7px;
}

.foot_ewm .ewm .pic img {}

.foot_ewm .ewm p {
    font-size: .8125rem;
    text-align: center;
    padding-top: .9375rem;
    color:#fff
}
.qr-scanner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.qr-scanner .scanner_box {
    height: 100%;
    width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}

.qr-scanner .line {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, #194492 211%);
    border-bottom: 1px solid #194492;
    transform: translateY(-100%);
    animation: radar-beam 2s infinite;
    animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
    animation-delay: 1.4s;
}

@keyframes radar-beam {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}













.client-2 {
    position: fixed;
    right: -170px;
    top: 35%;
    z-index: 900;
}

.client-2 li a {
    text-decoration: none;
}
.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 62px;
    position: relative;
}

.client-2 li i {
    background: url(../images/fx.png) no-repeat;
    display: block;
    width: 30px;
    height: 27px;
    margin: 0px auto;
    text-align: center;
}

.client-2 li p {
    height: 20px;
    font-size: 12px;
    line-height: 20px;
    overflow: hidden;
    text-align: center;
    color: #fff;
}

.client-2 .my-kefu-qq i {
    background-position: 4px 5px;
}

.client-2 .my-kefu-tel i {
    background-position: 0 -21px;
}

.client-2 .my-kefu-liuyan i {
    background-position: 4px -53px;
}

.client-2 .my-kefu-weixin i {
    background-position: -34px 4px;
}

.client-2 .my-kefu-weibo i {
    background-position: -30px -22px;
}

.client-2 .my-kefu-ftop {
    display: none;
}

.client-2 .my-kefu-ftop i {
    width: 33px;
    height: 31px;
    background-position: -23px -47px;
    background-size: 52px 82px;
}
.client-2 .my-kefu-ftop .my-kefu-main{
    padding-top: 6px;
}

.client-2 .my-kefu-left {
    float: left;
    width: 62px;
    height: 47px;
    position: relative;
}

.client-2 .my-kefu-tel-right {
    font-size: 16px;
    color: #fff;
    float: left;
    height: 40px;
    line-height: 22px;
    padding: 0 15px;
    border-left: 1px solid #fff;
    /*margin-top: 14px;*/
}

.client-2 .my-kefu-right {
    width: 20px;
}

.client-2 .my-kefu-tel-main {
    background: #194492;
    color: #fff;
    height: 53px;
    width: 230px;
    padding:9px 0 0;
    float: left;
    box-sizing: unset;
}

.client-2 .my-kefu-main {
    background: #194492;
    width: 97px;
    height: 53px;
    position: relative;
    padding:9px 0 0;
    float: left;
    box-sizing: unset;
}

.client-2 .my-kefu-weixin-pic {
    position: absolute;
    left: -130px;
    top: -24px;
    display: none;
    z-index: 333;
    box-sizing: unset;
}

.my-kefu-weixin-pic img {
    width: 115px;
    height: 115px;
}
