@charset "utf-8";
html{
    color:#000;
    background:#FFF;
    width:100%;
    font-size: 16px;
}


body {
    margin: 0 auto;
    position: relative;
    padding: 0;
    width: 100%;
    color: #1f1f1f;
    background: #fff;
}

@media screen and (max-width: 1600px) {
    html {
        font-size: 15px;
    }
}

@media screen and (max-width: 1400px) {
    html {
        font-size: 14px;
    }
}

:root {
    --comcolor: #fcb026;
    --subcolor: #DA251D;
}


* {
    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%;
    height: auto;
}
::-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_95{max-width: 1400px;width: 95%;margin: 0 auto;}
.hide {display: none}
.show {display: block}


.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 #00a29a;
    color: #00a29a;
}
.breadcrumb ul a:hover {
    color: #dd7c17;
}


@media screen and (max-width: 1000px) {

    .breadcrumb ul a{
        margin:0 0.5rem;
    }
}




.header {z-index: 99999;position: fixed;top: 0;width:100%;}
.header .hea_top {
    width:100%;height:50px;
    background: rgba(20, 20, 20, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    transition: .5s;
}
.header .hea_top_nav {
    display: flex;justify-content: space-between;align-items: center;
    height: 50px;
}
.header .hea_top .search form {display: flex;align-items: center;position: relative;height:35px;}
.header .hea_top .search input{height: 35px;width:25rem;padding: 0 10px;}
.header .hea_top .search span {color:#333;position: absolute;right:5px;}
.header .hea_top .search button { font-size: 1.5rem;margin-left: 0.5rem}
.header .lang {
    display: flex;align-items: center;
}
.header .lang svg path{fill:var(--comcolor)}
.header .lang select{
    margin-left: 1rem;
    font-size: 1rem;border:1px solid #a9a9a9;border-radius:0.5rem;width:12rem;height:2.2rem;line-height: 2.2rem;text-align: center;
}

.header .header_nav {height:80px;background: rgba(20, 20, 20, 0.4);transition: 0.5s;}
.header .header_nav.fixed {
    position: fixed;
    left: 0;
    top: 1rem;
    right: 0;
    background: none;box-shadow: none;
}
.header .header_nav.fixed .menu {background: #fff;box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);border-radius: 0.5rem;}
.header .menu {height:100%;display: flex;align-items: center;justify-content: space-between}
.header .menu>li {height:100%;font-size: 1rem;color:#333;flex-grow:1;text-align: center;position: relative;display: flex;justify-content: center;align-items: center;}
.header .menu>li img {height:70px;}
.header .menu>li>a {width:100%;height:100%;line-height:80px;position: relative;display: block;color:#fff;}


.header .menu>li.act>a,.header .menu>li:hover>a {
    color:var(--comcolor);
}
.header .header_nav.fixed .menu>li>a {color:#333;}

.header .sub {
    position: absolute;
    left: 0;
    top: 100%;
    width: 25rem;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(20px);
    display: none;
}
.header .menu li:hover .sub {display: block}


.header .sub .two_li  {
    text-align: left;
    display: flex;
    align-items: center;
    padding: 0 1rem;
}
.header .sub .two_li a {
    position: relative;
    width:100%;
    height: 4rem;
    color: #fff;
    font-size: 1rem;
    padding-left: 1rem;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header .sub .child {
    position: absolute;
    width:100%;
    left:100%;
    top:0;
    background: rgba(20, 20, 20, 0.5);
    backdrop-filter: blur(20px);
    padding:1rem;
    display: none;
    min-height: 100%;
    max-height: 70vh;
    overflow: auto;
}
.header .sub .child .three_li {
    height:4rem;
}
.header .sub .two_li:hover .child {
    display: block;
}
.header .sub .two_li:hover>a,
.header .sub .three_li:hover>a
{
    color: var(--comcolor);
}





/*尾部导航*/
.footer {
    position: relative;
    z-index: 9999;
    background: #0f0f0f;
}

.footer .cont {
    padding: 5rem 0 3rem;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.footer .cont .box1 {
    width:30%;
}
.footer .cont .box1 .about img{
    margin-bottom: 2rem;
}
.footer .cont .box1 .info {
    padding:1rem 0;border-bottom: 1px dashed #7b7b7b;
}
.footer .cont .box1 .info:first-child {
    padding:0 0 1rem 0;
}
.footer .cont .box1 h3 {
    color: #fff;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}
.footer .cont .box1 p,.footer .cont .box1 a {
    color: var(--comcolor);
    font-size: 1rem;
    line-height: 2rem;
    font-weight: bold;
}

.footer .cont .box1 ul {
    height:4rem;
    display: flex;
    align-items: center;
}
.footer .cont .box1 ul li{
    width:3rem;
    height:3rem;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor:pointer;
    position: relative;
}
.footer .cont .box1 ul li i{
    font-size: 2rem;
}
.footer .cont .box1 ul li .icon-weixin {
    color:#04BE02;
}
.footer .cont .box1 ul li .icon-whatsapp {
    color:#3fe45c;
}
.footer .cont .box1 ul li .icon-telegram {
    color:#2daee9;
}
.footer .cont .box1 ul li .qrcode {
    visibility: hidden;
    position: absolute;
    bottom:120%;
    background: #fff;
    transform: translateY(10%);
    transition: 0.2s;
}
.footer .cont .box1 ul li.weixin:hover .qrcode{visibility: visible;transform: translateY(0)}
.footer .cont .box1 .qrcode .pic {
    position: relative;
    width: 10rem;
    height: 10rem;
    border: 1px solid #525252;
    padding: 0.5rem;
}
.footer .cont .box1 .qrcode .scanner {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}
.footer .cont .box1 .qrcode .scanner .scanning {
    height: 100%;
    width: 100%;
    position: relative;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    overflow: hidden;
}
.footer .cont .box1 .qrcode .scanning .line {
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg, rgba(0, 255, 51, 0) 43%, var(--comcolor) 211%);
    border-bottom: 1px solid var(--comcolor);
    transform: translateY(-100%);
    animation: radar-beam 2s infinite;
    animation-timing-function: cubic-bezier(0.53, 0, 0.43, 0.99);
    animation-delay: 0.5s;
}
@keyframes radar-beam {
    0% {
        transform: translateY(-100%);
    }

    100% {
        transform: translateY(0);
    }
}



.footer .cont .box2 {
    width:60%;
    display: flex;
}
.footer .cont .box2 dt a {
    font-size: 1.2rem;
    font-weight: bold;
    color: #fff;
    padding-bottom: 1rem;
}
.footer .cont .box2 p a {
    font-size: 1rem;
    color: #fff;
}
.footer .cont .box2 p a:hover {
    color: rgba(255, 255, 255, 1);
}
.footer .cont .box2 dl {
    flex: 1;
    padding:0 1%;
}
.footer .cont .box2 dt {
    text-align: center;
}
.footer .cont .box2 dd {
    margin-top: 2.5rem;
}
.footer .cont .box2 dd p {
    height: 3rem;
    border-radius: 0.5rem;
    border-bottom: 1px solid #737373;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5%;
}
.footer .cont .box2 dd p:hover {
    background: var(--comcolor);
}
.footer .cont .box2 dd p + p {
    margin-top: 1rem;
}


.footer .copyright {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:4.5rem;
    border-top: 1px solid #767676;
}
.footer .copyright p, .footer .copyright a {
    color: #d9d9d9;
    font-size: 1rem;
    line-height: 2rem;
}




.floatFns {
    position: fixed;
    right: 0.4rem;
    top: 50%;
    transform: translateY(-50%);
    z-index: 100000;
}
.floatFns .kefu {
    margin-bottom: 0.8rem;
    cursor:pointer;
}
.floatFns .kefu .box {
    width:2.5rem;
    height:2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}
.floatFns .kefu.tel .box:after {
    top: 0;
    left: 0;
    padding: 0;
    z-index: -1;
    pointer-events: none;
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    content: "";
    box-sizing: content-box;
    -webkit-animation: diffuse 1.5s ease-out 75ms infinite;
    animation: diffuse 1.5s ease-out 75ms infinite;
}
@keyframes diffuse {
    0% {
        opacity: .3;
    }
    50% {
        opacity: .5;
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #d5981d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
    }
    100% {
        box-shadow: rgba(66, 133, 244, 0.1) 0 0 0 2px, #d5981d 0 0 10px 10px, rgba(66, 133, 244, 0.1) 0 0 0 10px;
        transform: scale(1.5);
        opacity: 0;
    }

}
.floatFns .kefu.tel .box,.floatFns .kefu.tel .info {
    background: var(--comcolor);
}
.floatFns .kefu.email .box,.floatFns .kefu.email .info {
    background: #f36d23;
}
.floatFns .kefu.message .box{
    background: #FF5722;
}
.floatFns .kefu.weixin .box{
    background: #04BE02;
}
.floatFns .kefu.whatsapp .box{
    background: #3fe45c;
}
.floatFns .kefu.telegram .box{
    background: #2daee9;
}
.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: 3rem;
    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:10rem;
    height:10rem;
}
.floatFns .kefu .info a {color:#fff;}
.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);
    }
}


.feedback {width:100%;}
.feedback h3{
    height: 3rem;
    line-height: 3rem;
    background: var(--comcolor);
    color: #fff;
    text-align: center;
}
.feedback-form {
    width: 100%;
    padding:1rem;
}
.feedback-form p {
    margin-bottom: 1rem;
    color: #b3b3b3;
    line-height: 1.6rem;
    font-size: 0.8rem;
}

.feedback-form input {
    width: 100%;
    line-height: 2.5rem;
    height: 2.5rem;
    border-radius: 0.3rem;
    padding: 0 1rem;
    font-size: 0.8rem;
    margin-bottom: 1rem;
    border:1px solid #ebebeb;
}
.feedback-form textarea {
    width:100%;
    height:8rem;
    border:1px solid #ebebeb;
    padding: 0.5rem 1rem;
    margin-bottom: 1.5rem;
}
.feedback-form .submit {
    width:100%;
    height:2.5rem;
    line-height: 2.5rem;
    color:#fff;
    background: var(--comcolor);
    border:1px solid var(--comcolor);
    border-radius: 0.5rem;
    font-size: 1rem;
    cursor:pointer;
}
input.check::placeholder {
    color: var(--comcolor); /* 例如，设置为灰色 */
}





.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: var(--comcolor);
    color: #FFF;
}





.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    -webkit-transition: .5s;
    -moz-transition: .5s;
    transition: .5s;
    z-index: 99999;
}
.mobile-header .logo {
    text-align: center;
    background: #fff;
    z-index: 1;
    position: relative;
    line-height: 4.2rem;
    height: 4.2rem;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
}
.mobile-header .logo img {
    max-height: 3.6rem;
    display: inline-block;
    vertical-align: middle;
    margin-left: 0.5rem;
}

.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: var(--comcolor);
    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: var(--comcolor);
    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 .s_menu {
    display: none;
}
.mobile-header .nav_box .menu .column .s_menu a{
    display: block;
    position: relative;
    font-size: 1rem;
    padding: 10px 0 10px 20px;
    border-bottom: 1px solid #eee;
}
.mobile-header .nav_box .menu .column .s_menu a .iconfont{
    font-size: 1rem;
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
}
.mobile-header .nav_box .menu .column .s_menu 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-header .lang {
    margin-top: 2rem;
    display: flex;
    align-items: center;
}
.mobile-header .lang svg path{fill:var(--comcolor)}
.mobile-header .lang select{
    margin-left: 1rem;
    font-size: 1rem;border:1px solid #a9a9a9;border-radius:0.5rem;width:70%;height:3rem;line-height: 3rem;text-align: center;
}




.mobile-footer {
    display: none;
    padding: 1rem 0;
    background: var(--comcolor);
    color:#fff;
}
.mobile-footer .foot_menu {
    padding: 1rem 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 .s_menu {
    width: 100%;
    box-sizing: border-box;
    display: none;
}
.mobile-footer .foot_menu .s_menu .s_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 .s_menu .s_item .iconfont {
    position: absolute;
    right:5px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1rem;
}
.mobile-footer .foot_menu .s_menu .s_item li {position:relative;padding-left: 5%;}
.mobile-footer .foot_menu .s_menu .s_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 .t{height: 2rem;font-size: 1rem;color: #fff;display: flex;align-items: center;}
.mobile-footer  .foot_con .t .iconfont{vertical-align:middle;margin-right: 0.3rem;}
.mobile-footer  .foot_con .n {margin-bottom:1rem;}
.mobile-footer  .foot_con .n p {font-size: 1rem;line-height: 2rem;}





@media  screen and (max-width: 1000px){
    .mobile-header,.mobile_top_fill,.mobile-footer {display: block;}

    header,.footer,.ab_top_box {display: none;} {display: none;}
}