@charset "utf-8";
html{
    color:#000;
    background:#FFF;

}

html {
    width:100%;
    user-select: none;
    font-size: 16px;
}


@font-face{ font-family: EUROSTILE-BOLDEXTENDEDTWO; src: url(../fonts/EUROSTILE-BOLDEXTENDEDTWO.OTF);}
@font-face{ font-family: Swis721BlkCnBT; src: url(../fonts/Swis721BlkCnBT.ttf);}

body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #4e4e4e;
    background: #fff;
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 14px;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
* :before, * :after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}


a { text-decoration:none;cursor:pointer; color: #333;}
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;}
.fl { float:left;}
.fr { float:right;}
input {
    border: none;
    outline: none;
}
em,i{font-style: normal;}
img {
    max-width:100%;
}
::-webkit-scrollbar{width:5px;height:5px;}
::-webkit-scrollbar-button:vertical{display:none}
::-webkit-scrollbar-track:vertical{background-color:black}
::-webkit-scrollbar-track-piece{background:#E3E3E3}
::-webkit-scrollbar-thumb:vertical{background-color:#555;border-radius:30px}
::-webkit-scrollbar-thumb:vertical:hover{background-color:#3B3B3B}
::-webkit-scrollbar-corner:vertical{background-color:#535353}




.w_1400{max-width: 1400px;width: 90%;margin: 0 auto;}
.flex {display: flex;}


.breadcrumb {
    height:3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #ebebeb;
}
.breadcrumb ul {
    display: flex;
}
.breadcrumb ul a{
    display: inline-block;
    line-height: 3.5rem;
    margin:0 1.5rem;
    font-size: 1rem;
    text-align: center;
    font-weight: 600;
}
.breadcrumb ul a.act {
    border-bottom: 2px solid #09a2ea;
    color: #09a2ea;
}
.breadcrumb ul a:hover {
    color: #e71216;
}


@media screen and (max-width: 1000px) {
    .w_1400 {
        width:95%;
    }

    .breadcrumb ul a{
        margin:0 0.5rem;
    }
}






.header {position: fixed;top:0;height:6rem;width:100%;z-index: 99999;background: rgba(255, 255, 255, 0.5);
    box-shadow: 0 4px 50px 20px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(24px);}
.header.fixed,.header:hover {background:#fff;}
.header .head {height:100%;display: flex;justify-content: space-between;align-items: center;}
.header .logo img{max-height:70px;}
.header .navbar {height:100%;display: flex;justify-content: space-between;align-items: center;}
.header .navbar .menu {padding: 0 2rem;height: 100%;position: relative;}
.header .navbar .menu:after {content: '';position: absolute;width:2px;height:1rem;right:0;top:50%;background: #d1d1d154;transform: translateY(-50%);}
.header .navbar .menu>a {font-size: 1.1rem;display: flex;align-items: center;height:100%;position: relative;}
.header .navbar .menu>a.on:after{
    content: '';
    position: absolute;
    height: 3px;
    bottom: 0;
    z-index: -1;
    width: 100%;
    left: 0;
    background: #09a2ea;
}
.header .navbar .menu:hover>a {color:#09a2ea}
.header .navbar .menu.searchBtn {
    height: 100%;display: flex;align-items: center;cursor:pointer;
}
.header .navbar .menu.searchBtn .iconfont{font-size: 1.5rem;cursor:pointer;}


.header .header-child {
    position: absolute;
    left: 0;
    top: 6rem;
    width: 100%;
    height: auto;
    z-index: 900;
    transition: all .4s ease;
}
.header .child-menu {
    display: none;
    position: absolute;
    left:50%;
    top:6rem;
    transform: translateX(-50%);
    width:100%;
    background: #fff;
    border-top:1px solid #f1f1f1;
    box-shadow: rgba(0, 0, 0, 0.2) 0 0 0.2rem;
}
.header .child-menu .left,.header .child-menu .center,.header .child-menu .right {
    width:32%;
}
.header .child-menu .left .tit {
    margin-bottom: 2rem;
}
.header .child-menu .left .tit p {
    font-size: 1.2rem;
    line-height: 2.4rem;
    font-weight: bold;
}
.header .child-menu .center a{
    border-bottom: 1px solid #e3e3e3;
    width:100%;
    height: 4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .child-menu .center a:hover {
    color:#09a2ea;
    border-bottom: 1px solid #09a2ea;
}
.header .child-menu .right {
    display: flex;
    justify-content: center;
    align-items: center;
}
.header .child-menu .right img{
    display: block;
}


.header .h_category .c_item {width:15%;}
.header .h_category .c_item img {border-radius: 0.5rem;display: block}
.header .h_category .c_item .name {font-size: 1.1rem;color:#333333;margin: 1rem 0;padding-bottom: 1rem;border-bottom:1px solid #e0e0e0;}
.header .h_category .c_item .pros a {color:#636363;margin-bottom: 1rem;display: flex; align-items: center;justify-content: space-between;}
.header .h_category .c_item .pros a:hover {color:#09a2ea;}



@media screen and (max-width: 1200px) {
    .header .logo img{max-height:60px;}
    .header .navbar .menu {
        padding: 0 1rem;
    }
}


.top_search{position:fixed; left:0; top:-100%; width:100%; height:6rem; background:#fff; z-index:999999; transition:all 0.5s ease}
.top_search i {font-size: 2rem;color: #b6b6b6;}
.top_search .searchClose{float:right;}
.top_search .searchClose i{display:block; width:6rem; height:6rem; line-height:6rem; text-align:center;
    cursor:pointer;transition:transform 0.3s ease 0s; color:#09a2ea; font-weight: bold;}
.top_search .searchClose i:hover{-webkit-transform:rotate(90deg); -ms-transform:rotate(90deg); transform:rotate(90deg);}
.top_search .cent-form {height:100%; line-height:6rem; float:left; width:86%;}
.top_search .cent-form form{position:relative; padding-left:50px;}
.top_search .cent-form form .icon{position: absolute; left: 0; top: 0; font-size: 1.5rem; font-weight: bold;}
.top_search .cent-form form .input {border-bottom:1px solid #f1f1f1;font-size:1rem; height:60px; line-height:60px; text-align:left; width:80%; box-sizing:border-box; background:none; padding:0}
.top_search .cent-form form .btn {width:120px; background:none; text-align:center; padding:10px 20px; margin:0; font-size:15px; color:#aaa; border-radius:50px; border:1px solid#aaa; cursor:pointer; outline:none; transition:all 0.5s ease;}
.top_search .cent-form form .btn:hover{background:#09a2ea; color:#fff; border-color:#09a2ea;}
.top_search.act{top:0;}





.footer {
    width: 100%;
    background: #858585;
    padding-top: 2rem;
}
.footer .nav {
    width: 100%;
    height:80px;
    border-bottom: 1px #fff solid;
    padding-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .nav .logo img {height:70px;}
.footer .nav .navbar{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .nav .navbar a {
    padding: 0 1rem;
    color:#f1f1f1;
}
.footer .contact_us {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer .contact_us .info {
    padding:1.2rem 0;
}
.footer .contact_us h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}
.footer .contact_us h3 i {
    font-size: 1.2rem;
    margin-right: 0.3rem;
}
.footer .contact_us p {
    color: #fff;
    font-size: 1.5rem;
    line-height: 2rem;
}
.footer .contact_us p.addr {
    font-size: 1rem;
}
.footer .ewm {
    margin-top: 2rem;
}
.footer .ewm .pic {
    position: relative;
    width: 150px;
    height: 150px;
    border: 1px solid #c4c4c4;
    padding: 7px;
}
.footer .ewm p {
    font-size: 1rem;
    text-align: center;
    padding-top: 1rem;
    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%, #09a2ea 211%);
    border-bottom: 1px solid #09a2ea;
    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);
    }
}
.footer .copyright {
    border-top: 1px #8fafbd solid;
    line-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    color:#fff;
}
.footer .copyright a{
    color:#fff;
}






.floatFns {
    position: fixed;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
}
.floatFns .kefu {
    margin-bottom: 10px;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:45px;
    height:45px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: #09a2ea;
}
.floatFns .kefu.email .box,.floatFns .kefu.email .info {
    background: #f36d23;
}
.floatFns .kefu.weixin .box,.floatFns .kefu.weixin .info {
    background: #04BE02;
}
.floatFns .kefu.top .box {
    background: #a7a7a7;
}
.floatFns .kefu.top {
    display: none;
}
.floatFns .kefu .box i{
    font-size: 24px;
    color:#fff;
}
.floatFns .kefu .info {
    position: absolute;
    right: 50px;
    top:50%;
    padding:10px;
    color:#fff;
    border-radius: 5px;
    transform: translateY(-50%) scale(0);
    transition: 0.5s;
    font-size: 18px;
    white-space: nowrap;
    min-width:100px;
}
.floatFns .kefu .info img{
    max-width: none;
    width:150px;
    height:150px;
}
.floatFns .kefu:hover .info {
    transform: translateY(-50%) scale(1);
}

.floatFns .kefu.tel i {
    animation: yyhh 1.5s linear infinite;
}
@keyframes yyhh {
    0%,90%,100% {
        transform: rotate(0) scale(1);
    }
    20%,40% {
        transform: rotate(-15deg) scale(1.1);
    }
    30%,50% {
        transform: rotate(15deg) scale(1.1);
    }
}







.pagination {
    text-align: center;
    padding: 1rem 0;
}
.pagination li {
    display: inline-block;
    margin: 0 0.1rem;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 0.9rem;
    height: 2.5rem;
    padding: 0 1rem;
    line-height: 2.5rem;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
    border-radius: 2.5rem;
}
.pagination .active a{
    background: #09a2ea;
    color: #FFF;
}





.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 999;
}
.mobile-header .logo {
    text-align: center;
    background: #fff;
    z-index: 1;
    position: relative;
    line-height: 4.2rem;
    height: 4.2rem;
}
.mobile-header .logo img {
    max-height: 40px;
    display: inline-block;
    vertical-align: middle;
}

.mobile-header .nav_btn {
    position: absolute;
    bottom: 1.35rem;
    right: 1rem;
    width: 2.2rem;
    z-index: 2;
    height: 1.5rem;
}
.mobile-header .nav_btn i {
    position: absolute;
    width: 100%;
    height: 3px;
    border-radius: 1px;
    background: #09a2ea;
    display: block;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s
}
.mobile-header .nav_btn i.ie1 {
    margin-top: -0.8rem
}
.mobile-header .nav_btn i.ie3 {
    margin-top: 0.8rem
}
.mobile-header.active .nav_btn i {
    margin: 0 !important;
}
.mobile-header.active .nav_btn i.ie1{
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.mobile-header.active .nav_btn i.ie2 {
    opacity: 0;
}
.mobile-header.active .nav_btn i.ie3 {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.mobile-header .nav_box {
    position: fixed;
    background: #fff;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    z-index: 0;
    height: 100%;
    overflow: auto;
    top: 0;
    padding: 4.5rem 0 1.5rem;
}
.mobile-header.active .nav_box {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
}


.mobile-header .nav_box .search {
    padding: 0.5rem 2.5%;
    background: #09a2ea;
    z-index: 2;
    position: relative;
}
.mobile-header .nav_box .search form {
    width: 100%;
    padding-right: 3rem;
    position: relative;
}
.mobile-header .nav_box .search form .search_input {
    width: 100%;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    padding: 0 1rem;
    font-size: 1rem;
}
.mobile-header .nav_box .search form .search_submit {
    width: 3rem;
    line-height: 3rem;
    height: 3rem;
    border-radius: 0.5rem;
    border: none;
    background: none;
    position: absolute;
    top: 0;
    right: 0;
}
.mobile-header .nav_box .search form .search_submit .iconfont{
    font-size: 1.8rem;
    color:#fff;
}


.mobile-header .nav_box .menu {
    padding: 1rem 0;
}
.mobile-header .nav_box .menu .column .item {
    position: relative;
}
.mobile-header .nav_box .menu .column .item > a {
    display: block;
    padding: 10px 0;
    font-size: 1rem;
    text-transform: capitalize;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    border-bottom: 1px solid #eee;
    position: relative;
}
.mobile-header .nav_box .menu .column  .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.2rem;
}
.mobile-header .nav_box .menu .column .sub_menu {
    display: none;
}
.mobile-header .nav_box .menu .column .sub_menu .sub_column a{
    display: block;
    position: relative;
    font-size: 1rem;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #eee;
}
.mobile-header .nav_box .menu .column .sub_menu .sub_column a .iconfont{
    font-size: 1rem;
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-header .nav_box .menu .column .sub_menu .sub_column a:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 0.5rem;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}
.mobile-header .nav_box h3 {
    font-size: 1rem;
    text-align: left;
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}
.mobile-header .nav_box h3 .iconfont{vertical-align:middle;}

.mobile_top_fill {height:4.2rem;display: none;}


.mobile-footer {
    display: none;
    padding: 1rem 0 5rem;
    background: #09a2ea;
    color:#fff;
}
.mobile-footer .foot_menu {
    padding: 0.8rem 0;
}
.mobile-footer .foot_menu .column {
    border-bottom: 1px solid #cdcdcd;
    line-height: 2.8rem;
}
.mobile-footer .foot_menu .column .item {
    color: #fff;
    font-size: 1rem;
    display: block;
    position: relative;
}
.mobile-footer .foot_menu .column .item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .foot_menu .sub_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-footer .foot_menu .sub_menu .sub_item {
    font-size: 1rem;
    font-weight: normal;
    color: #fff;
    display: block;
    line-height: 2.8rem;
    border-top: 1px solid #cdcdcd;
    position: relative;
    padding-left: 1.5rem;
}
.mobile-footer .foot_menu .sub_menu .sub_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .foot_menu .sub_menu .sub_item li {position:relative;padding-left: 5%;}
.mobile-footer .foot_menu .sub_menu .sub_item:after{
    content: '-';
    position: absolute;
    top: 50%;
    left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}






.mobile-footer  .foot_con p{height: 3rem;font-size: 1rem;color: #fff;display: flex;align-items: center;}
.mobile-footer  .foot_con p .iconfont{vertical-align:middle;margin-right: 0.3rem;}


.mobile-footer .foot_phone {
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 4rem;
    background: #00adff;
    z-index: 12;
    display:flex;justify-content:center;align-items:center;color:#ffffff;font-size:1rem;
}
.mobile-footer .foot_phone .tit1 {margin-right:10%;}
.mobile-footer .foot_phone .tit2 {background:#09a2ea;width:40%;height:3rem;border-radius:0.6rem;display:flex;justify-content:center;align-items:center;}
.mobile-footer .foot_phone .iconfont {display:inline-block;font-size:1.5rem;margin-right: 0.8rem;animation: jiggle 2s infinite alternate;}
.mobile-footer .foot_phone a {color:#ffffff;font-size: 1rem;}

@keyframes jiggle {
    48%,
    62% {
        transform: scale(1, 1);
    }
    50% {
        transform: scale(1.2, 0.8);
    }
    56% {
        transform: scale(0.8, 1.2) translate(0, -5px);
    }
    59% {
        transform: scale(1, 1) translate(0, -3px);
    }
}







.ab_top_box {position: relative;z-index: 99}
.ab_nav_box{position: absolute;bottom: 0;left: 50%;transform: translateX(-50%);background: linear-gradient(rgba(255,255,255,0.8), #ffffff);
    width: 100%;height:4rem;transition:all 0.5s;
}
.ab_nav_box.on{position: fixed;top: 80px;width: 100%;height:3.75rem;background-color:#fff;border-bottom:1px solid rgba(0,0,0,0.08);}
.ab_nav {position: relative;display: flex;height:100%;}
.ab_nav li{width: 100%;text-align: center;height:100%;font-size: 1rem;position: relative;transition:all 0.5s;display: flex;
    align-items: center;
    justify-content: center;}
.ab_nav li::before{content: "";position: absolute;left: 0;top: 50%;transform: translateY(-50%);width: 1px;height: 1rem;background-color: #949494;}
.ab_nav li:last-child::after{content: "";position: absolute;right: 0;top: 50%;transform: translateY(-50%);width: 1px;height: 18px;background-color: #949494;}
.ab_nav li a{color: #333333;}
.ab_nav li.act a{color: #09a2ea;}
.ab_nav li:hover a{color: #09a2ea;}
.ab_nav li i{
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left:20%;
    background: #09a2ea;
    transition: 0.5s;
}
.ab_nav li.act i{
    width: 60%;
}
.support {height: 3.75rem;display: none}



@media  screen and (max-width: 1000px){
    .mobile-header,.mobile_top_fill,.mobile-footer {display: block;}

    header,.top_search,.footer,.floatFns,.ab_top_box {display: none;} {display: none;}
}