@charset "utf-8";
html{color:#000;background:#FFF;overflow-y: scroll;}

html, body {
    width:100%;
    user-select: none;
    overflow-x: hidden;
}


body {
    margin: 0 auto;
    min-width: 1280px;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    font-size: 14px;
    line-height: 1;
    background: #fff;
}

* {
    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;}
input {
    border: none;
    outline: none;
}




.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');
}



.w_1600{max-width: 1600px;width: 95%;margin: 0 auto;}
.w_1400{max-width: 1400px;width: 95%;margin: 0 auto;}
.w_1200{max-width: 1200px;width: 95%;margin: 0 auto;}





.header {
    position: absolute;
    width: 100%;
    z-index: 999;
    transition: all .6s;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(5px);
}

.header .header_nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header .header_nav .logo a {
    display: block;
    outline: none;
    line-height: 90px;
}

.header .header_nav .logo a img {
    height:80px;
    vertical-align: middle;
    transition: all .6s;
}

.header .header_nav .nav_content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.header .header_nav .search_button {
    display: block;
    outline: none;
    line-height: 90px;
}
.header .header_nav .search_button img {
    height: 30px;
    vertical-align: middle;
    transition: all .6s;
}

.menu {
    margin-right: 30px;
    position: relative;
}

.menu .nav_a li {
    float: left;
    position: relative;
    width:120px;
    text-align: center;
}

.menu .nav_a li a {
    display: block;
    color: #fff;
}

.menu .nav_a li > a {
    font-size: 16px;
    position: relative;
    line-height: 90px;
    height: 90px;
    text-transform: uppercase;
    transition: all .6s;
}

.menu .nav_a li > a span {
    position: relative;
    display: block;
}

.menu .nav_a li > a span i{
    font-size: 12px;
    margin-left: 5px;
}

.menu .nav_a li .sub {
    opacity: 0;
    visibility: hidden;
    transition: all .5s ease;
    min-width: 100%;
    position: absolute;
    top: 100%;
    left: 50%;
    background: #f6f7fb;
    z-index: 999;
    padding: 10px 10px;
    transform: translateX(-50%);
}

.menu .nav_a li .sub a {
    font-size: 16px;
    text-align: center;
    color: #333;
    white-space: nowrap;
    padding:10px 0;
}

.menu .nav_a li .sub a:hover {
    color: #45acd6;
    font-weight: 600;
}

.menu .nav_a li:hover > a::before {
    width: 100%;
}

.menu .nav_a li:hover .sub {
    opacity: 1;
    visibility: visible;
}

.header .search_button i{
    font-size: 24px;color:#fff;display: block;
}


.header.sticky {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(24px);
    -webkit-animation: sticky 1s;
    -moz-animation: sticky 1s;
    -o-animation: sticky 1s;
    animation: sticky 1s;
}

.header.sticky .menu .nav_a li a {
    color: #333;
}
.header.sticky .search_button i {
    color:#333;
}

@-webkit-keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-moz-keyframes sticky {
    0% {
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -moz-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@-o-keyframes sticky {
    0% {
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}

@keyframes sticky {
    0% {
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
    }
    100% {
        -webkit-transform: translateY(0%);
        -moz-transform: translateY(0%);
        -o-transform: translateY(0%);
        transform: translateY(0%);
    }
}



.search {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 999;
    display: none;
}

.search .search_box {
    width: 50%;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 25%;
}

.search .inp {
    width: 100%;
    height: 100px;
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

.search .inp::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.search .search_submit {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    right: 0;
    color: rgba(255, 255, 255, 0.7);
    background: none;
    border: none;
}
.search .search_con {
    position: absolute;
    right: 7%;
    top: 7%;
    color: white;
    cursor: pointer;
}

.labbg {
    width: 120px;
    height: 63px;
    background: url(../images/tMall.png) no-repeat;
    background-size: 100%;
    position: absolute;top: 50%;
    transform: translateY(-50%);transition: 0.5s;
}

@media screen and (max-width: 1600px) {
    .menu .nav_a li {
        width:110px;
    }
    .labbg {
        width: 110px;
        height: 63px;
    }

    .header .header_nav .logo a img {
        width: 25vw;
        height: auto;
    }
}




.foot{
    background: #2a2a2a;
    position:relative;z-index:999;
}
.foot_div{
    padding: 50px 0;
}

.foot_div .fl {
    width:40%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.foot_div .fr {
    width:60%;
    padding-left: 5%;
}

.foot_div ul{
    float: left;
    margin-left: 50px;
}
.foot_div ul:nth-of-type(1){
    margin-left: 0;
}
.foot_div ul li{
    color: #979797;
    font-size: 1vw;
    line-height: 2vw;
    margin-bottom: 10px;
}
.foot_div ul li a{
    color: #979797;
}
.foot_div ul li:nth-of-type(1){
    color: #fff;
    font-size: 1.2vw;
    margin-bottom: 30px;
}
.foot_div .fr div{
    display: inline-block;
    color: #979797;
    font-size: 1vw;
    text-align: center;

}

.foot_box{
    text-align: center;
    font-size: 16px;
    color: #979797;
    padding: 20px 0;
    border-top: 1px solid #414141;
}





.foot_ewm {
    display: flex;
    margin-top: 30px;
}



.foot_ewm .ewm .pic {
    position: relative;
    width: 10vw;
    height: 10vw;
    border: 1px solid #fff;
    padding: 5px;
}

.foot_ewm .ewm .pic img {
    width: 100%;
}

.foot_ewm .ewm p {
    font-size: 1vw;
    text-align: center;
    padding-top: 1vw;
    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%, #2779BF 211%);
    border-bottom: 1px solid #2779BF;
    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: 50%;
    z-index: 99999;
    transform: translateY(-50%);
}

.client-2 li a {
    text-decoration: none;
}
.client-2 li {
    margin-top: 1px;
    clear: both;
    height: 62px;
    position: relative;
}

.client-2 li i {
    display: block;
    font-size: 30px;
    color:#fff;
    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: 24px;
    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: #005D73;
    color: #fff;
    height: 53px;
    width: 230px;
    padding:9px 0 0;
    float: left;
    box-sizing: unset;
}

.client-2 .my-kefu-main {
    background: #005D73;
    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;
}
