﻿@charset "utf-8";
@font-face {
  font-family: 'OpenSans';
  src: url('/dist/fonts/OpenSans/opensans.woff2') format('woff2'),
       url('/dist/fonts/OpenSans/opensans.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'OpenSans-bold';
  src: url('/dist/fonts/OpenSans/opensans-bold.woff2') format('woff2'),
       url('/dist/fonts/OpenSans/opensans-bold.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins';
  src: url('/dist/fonts/Poppins/Poppins-Regular.woff2') format('woff2'),
       url('/dist/fonts/Poppins/Poppins-Regular.woff') format('woff');
  font-display: swap;
}
@font-face {
  font-family: 'Poppins-bold';
  src: url('/dist/fonts/Poppins/Poppins-Bold.woff2') format('woff2'),
       url('/dist/fonts/Poppins/Poppins-Bold.woff') format('woff');
  font-display: swap;
}

/**********样式重置**********/
:root {
    --color:#333;
    --color-font:#666;
    --color-main:#2650b2;
    --color-normal:#006934;
    --font:OpenSans,Arial,Helvetica Neue, Helvetica, Tahoma, sans-serif;
    --font-b:OpenSans-bold,Arial,Helvetica Neue, Helvetica, Tahoma, sans-serif;
    --font-bold:Poppins-bold,Arial,Helvetica Neue, Helvetica, Tahoma, sans-serif;
    --font-med:Poppins,Arial,Helvetica Neue, Helvetica, Tahoma, sans-serif;
    --font-size:16px;
    --gap-large:80px;
    --gap-big:50px;
    --gap-mid:35px;
    --gap-sm:15px;
    --line-height:1.5;
    --padding-lr:0 15px;
    --page-width:1440px;
}
@media (min-width:1080px) and (max-width:1439px) {
    :root {
        --gap-large:50px;
        --gap-big:30px;
        --font-size:15px;
        --page-width:100%;
    }
}
@media (min-width:1px) and (max-width:1079px){
    :root {
        --font-size:14px;
        --gap-large:40px;
        --gap-big:20px;
        --gap-mid:20px;
        --gap-sm:10px;
        --page-width:100%;
    }
}

html,body{
    -ms-overflow-style: scrollbar;/*解决ie浏览器右侧滚动条遮挡内容问题*/
    -webkit-overflow-scrolling: touch;/*解决iOS滚动条被卡住的问题*/
    scroll-behavior: smooth;/*滚动到指定位置*/
    max-width:1920px;
    margin:0 auto;
}
html{font-size:16px;}
@media (min-width:1px) and (max-width:1079px) {
    html{font-size:14px;}
}
* {
  scrollbar-width: thin;
  scrollbar-color: var(--color-main) #ddd;
}

::-webkit-scrollbar {
  height: 4px;
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-main);
  -webkit-border-radius: 1ex;
  -webkit-box-shadow: 0px 0px 0px rgba(0, 0, 0, 0.75);
}

::-webkit-scrollbar-corner {
  background: transparent;
}

body,div,dl,dt,dd,ul,ol,li,h1,h2,h3,h4,h5,h6,pre,code,form,fieldset,legend,input,textarea,p,blockquote{margin:0;padding:0}
fieldset,img{border:0}
ol,ul{list-style:none}
caption,th{text-align:left}
h1,h2,h3,h4,h5,h6,dt{font-size:100%;}
q:before,q:after{content:''}
input:visited,input:focus,input,textarea,button:visited,button:focus,textarea:visited,textarea:focus{border:none;outline: none;}
.clearfix:after,.clearfix:before,.container::after,.container:before{display:table;content:" ";}
.clearfix:after,.container::after{clear:both;}
*{box-sizing:border-box;}
a{outline:none;text-decoration:none;color:var(--color-font);}
a:hover{color:var(--color-main);}
img,li{border:0;vertical-align:top;}
img{max-width:100%;height:auto;}
input::placeholder,textarea::placeholder{
    color: #ccc;
}
b,body,dd,div,form,h4,h5,h6,img,input,textarea,li,p,pre,ul{margin:0 auto;padding:0;font-family:var(--font);color:var(--color);line-height:var(--line-height);font-size:var(--font-size);}
b{font-family:var(--font-bold);}
div.remark,p{color:var(--color-font);}
h1,h2,h3,h4,dt{font-family:var(--font-bold);font-weight:normal;}
[class^="tit_"],.tit{font-family:var(--font-bold);}
.hidden{display:none!important;}
.noinfo{font-size:1rem;text-align:center;margin-top:10px;padding-bottom:30px;}
.item .img{overflow:hidden;position:relative;}
.item .img img{transition:all .4s;transform:scale(1);margin:0 auto;display:block;width:100%;height:100%;object-fit:cover;}
.item:hover .img img{transform:scale(1.05);}
picture{display:block;}
picture img{width:100%;}
.flex{display:flex;}
.flex_between{display:flex;justify-content:space-between;flex-wrap:wrap;}
.flex_around{display:flex;justify-content:space-around;flex-wrap:wrap;}
.flex_start{display:flex;justify-content:flex-start;flex-wrap:wrap;}
.flex_column{display:flex;justify-content:space-between;flex-wrap:wrap; flex-direction:column;}
.flex_center{display:flex;justify-content:center;flex-wrap:wrap;}
.flex_vcenter{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:center;}
.txtcenter{text-align:center;}
.txtright{text-align:right;}
.vcenter{position:absolute;top:50%;transform:translate(0,-50%);}
.vccenter{position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);}
.container{width:100%;padding:var(--padding-lr);max-width:var(--page-width);}
.container2{width:100%;padding:var(--padding-lr);max-width:1750px;}
.ValidationError{border:1px solid red!important;}
.text-center{text-align:center;}
.nopadding{padding:0!important;}
.pc{display:block;}
.wap{display:none!important;}
@media screen and (min-width:1px ) and (max-width:1079px) {
    .pc{display:none;}
    .wap{display:block!important;}
}
.clamp{overflow:hidden;white-space:nowrap;text-overflow:ellipsis;}
.clamp1{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:1;overflow:hidden;}
.clamp2{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:2;overflow:hidden;}
.clamp3{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:3;overflow:hidden;}
.clamp4{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:4;overflow:hidden;}
.clamp5{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:5;overflow:hidden;}
.clamp8{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:8;overflow:hidden;}
.clamp10{display:-webkit-box;-webkit-box-orient:vertical;-webkit-line-clamp:10;overflow:hidden;}
.keylink{font-weight:bold;}
.sticky{position:sticky;top:40px;}
.ml-15{margin-left:15px;}
.mr-15{margin-right:15px;}
@media screen and (min-width:1px ) and (max-width:1439px) {
    .container{width:100%;}
    .container2 .container{padding:0;}
}
@media screen and (min-width:1px ) and (max-width:1079px){
    .inputgroup{margin-bottom:2vw;}
}
.responsive-slide-img{width:100%;height:auto;object-fit:contain;image-rendering:-webkit-optimize-contrast;image-rendering:crisp-edges;image-rendering:pixelated;}
/**********样式重置**********/

/**********公共样式**********/
.frame{padding-top:var(--gap-large);padding-bottom:var(--gap-large);position:relative;z-index:2;overflow:hidden;}
.frame .titbox{margin-bottom:var(--gap-big);position:relative;}
.frame .titbox .tit{font-size:44px;line-height:1.3636;margin:0;}
.frame .titbox .tit font{color:var(--color-main);}
.frame .titbox .slg{font-size:16px;line-height:1.875;margin-top:20px;}
.frame .titbox .line{width:78px;height:1px;background:var(--color-main);position:relative;margin:10px auto 0;}
.frame .titbox .remark{font-size:16px;line-height:1.5;}
.nframe .titbox{margin-bottom:65px;}
.txtcenter .morelink{margin:0 auto;}
.frame .titbox .imgbox1{margin-bottom:5px;}
@media (min-width:1080px) and (max-width:1439px) {
    .frame .titbox .tit{font-size:30px;}
    .frame .titbox .tit b{font-size:30px;}
    .frame .titbox .line{margin-bottom:20px;}
    .frame .titbox .slg{font-size:16px;line-height:1.5;}
    .nframe .titbox .tit{font-size:60px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .frame .titbox{margin-bottom:20px;width:100%;}
    .frame .titbox .tit{font-size:22px;}
    .frame .titbox .tit b{font-size:22px;}
    .frame .titbox .slg{font-size:13px;margin-top:15px;}
    .frame .titbox .line{margin-bottom:20px;}
    .frame .titbox .remark{font-size:13px;margin-top:10px;}
    .nframe .titbox .tit{font-size:30px;}
}

.imgbox1 img{width:initial;}

.morelink{position:relative;padding:10px 28px 10px 28px;transition:0.5s;font-size:16px;line-height:25px;z-index:1;background:var(--color-main);overflow:hidden;border-radius:5px;color:#fff;display:flex;align-items:center;justify-content:center;width:fit-content;}
.morelink i{font-size:16px;line-height:25px;}
.morelink:before{content:"";position:absolute;left:0;right:0;bottom:0;top:0;background-color:#406BCC;transition:all 0.5s;z-index:-1;transform:scale(0);}
.morelink:hover{color:#fff;}
.morelink:hover:before{transform:scale(1);}
.morelink2{background:#fff;color:#333;border:1px solid var(--color-main);padding:9px 29px;}
.morelink2 i{font-size:20px;color:#333;}
.morelink2:hover{color:#333;}

.btnlink{display:inline-block;transition:all 0.3s;}
.btnlink:hover{transform:translateY(6px);text-decoration:underline;}
@media (min-width:1080px) and (max-width:1439px) {
    .morelink{font-size:14px;line-height:24px;min-width:initial;}
    .morelink:before{}
}
@media (min-width:1px) and (max-width:1079px) {
    .morelink{font-size:14px;padding:8px 20px 8px 20px;line-height:24px;min-width:150px;}
    .morelink i.icon-arrowRight{width:30px;height:30px;line-height:30px;font-size:16px;}
}
/**********公共样式**********/



/**********头部样式**********/
header{z-index:99;position:sticky;top:0;box-shadow:0 0 5px #eee;padding-top:8px;background-color:#fff;}
header:before{content:"";position:absolute;left:0;top:0;right:0;height:8px;background:linear-gradient(to right,#3c3c3b 0 25%,#275da9 25% 50%,#41ae63 50% 75%,#f18a2d 75% 100%);}
header.hide{transform:translateY(-140%);transition-duration:0.4s !important}
header.fixed{transition-duration:0.8s !important}

#logo{position:relative;margin-left:0;margin-right:0;height:80px;transition:all 0.3s;}
#logo picture{top:50%;transform:translate(0,-50%);position:relative;transition:all 0.3s;width:initial;max-height:100%;}


header .menu_top{margin:0 0 15px;display:flex;align-items:center;justify-content:flex-end;}
header .menu_top .email{margin-right:18px;font-size:14px;color:#333;display:flex;align-items:center;line-height:30px;}
header .menu_top .email i{display:inline-block;font-size:18px;color:var(--color-main);margin-right:5px;}
header .menu_top .email:hover span{text-decoration:underline;color:var(--color-main);}
header .menu_top .sharelist{display:flex;align-items:center;margin:0 8px 0 0;}
header .menu_top .sharelist .ico{margin-right:15px;text-align:center;}
header .menu_top .sharelist .ico i{font-size:20px;display:block;}
header .menu_top .sharelist .ico:hover i{}


#Menu{transition:all .3s;margin:0;padding:18px 0;}
#Menu .flex_vcenter{justify-content:flex-end;}
#Menu ul.menunav{display:flex;justify-content:space-between;position:relative;margin:0;}
#Menu ul.menunav>li{display:inline-block;padding:0;margin:0 25px;}
#Menu ul.menunav>li>a{position:relative;display:flex;line-height:30px;padding:0;font-size:16px;color:#333;}
#Menu ul.menunav>li>a:before{content:"";position:absolute;left:50%;bottom:0;right:50%;height:3px;background-color:var(--color-main);transition:all 0.3s;}
#Menu ul.menunav>li.active>a,#Menu ul.menunav>li>a:hover{color:var(--color-main);}
#Menu ul.menunav>li.active>a:before,#Menu ul.menunav>li>a:hover:before{left:0;right:0;}

#Menu ul>li{position:relative;}
#Menu ul>li ul.dropdown-menu{position:absolute;top:100%;z-index:2;margin-top:30px;transition:all 0.3s;visibility:hidden;opacity:0;left:0%;min-width:170px;background-color:var(--color-main);}
#Menu ul>li ul.dropdown-menu>li{display:block;}
#Menu ul>li ul.dropdown-menu>li>a{line-height:24px; font-size:15px; padding:10px 40px 10px 15px;display:block;white-space:nowrap;text-align:left;position:relative;position:relative;z-index:2;color:#fff;}
#Menu ul>li ul.dropdown-menu>li>a:before{content:"\e600";font-family:iconfont;position:absolute;right:10px;font-size:16px;opacity:0;transform:rotate(-90deg);color:#fff;}
#Menu ul>li ul.dropdown-menu>li>a:after{content:"";width:6px;height:6px;border-radius:50%;position:absolute;left:15px;top:calc(50% - 3px);opacity:0;}
#Menu ul>li ul.dropdown-menu>li:not(:last-child){border-bottom:1px solid #dcdcdc;} 
#Menu ul>li ul.dropdown-menu>li:not(:last-child)>a{}
#Menu ul>li ul.dropdown-menu>li>a>i{font-size:14px;line-height:24px;position:absolute;right:10px;}
#Menu ul>li ul.dropdown-menu>li:hover>a,#Menu ul>li ul.dropdown-menu>li>a:hover{}
#Menu ul>li ul.dropdown-menu>li:hover>a:before,#Menu ul>li ul.dropdown-menu>li>a:hover:before{opacity:1;}
#Menu ul>li ul.dropdown-menu>li:hover>a:after,#Menu ul>li ul.dropdown-menu>li>a:hover:after{opacity:1;}
#Menu ul>li:hover ul.dropdown-menu{margin-top:0;visibility:visible;opacity:1;}

#Menu .getainquiry{display:none;}
#Menu .menu_content{display:flex;flex-wrap:wrap;justify-content:flex-end;}
#search{margin:0 0 0 0;position:relative;}
#search .btnsearch{}
#search .btnsearch>i{display:block;font-size:16px;color:#fff;width:30px;height:30px;line-height:30px;cursor:pointer;text-align:center;background-color:var(--color-main);border-radius:50%;}
#search #sform{width:250px;box-sizing:border-box;transition:all 0.3s;overflow:hidden;display:flex;align-items:center;background-color:#fff;position:absolute;top:100%;right:0;opacity:0;visibility:hidden;height:0;z-index:1;}
#search #sform input{width:calc(100% - 45px);padding-left:15px;font-size:16px;height:100%;background-color:transparent;}
#search #sform input::placeholder{color: #999;font-size:14px;}
#search #sform button{width:45px;position:relative;text-align:center;border:none;cursor:pointer;display:flex;align-items:center;justify-content:center;font-size:16px;height:100%;background-color:transparent;}
#search #sform button>i{font-size:17px;line-height:1;color:#666;}
#search.show #sform{opacity:1;visibility:visible;height:45px;border:1px solid var(--color-main);}


#lang{position:relative;margin:0;display:flex;align-items:center;}
#lang .link{display:flex;justify-content:space-around;align-items:center;position:relative;font-size:14px;}
#lang .link .imgbox{width:18px;height:12px;overflow:hidden;}
#lang .link .imgbox img{object-fit:cover;width:100%;height:100%;}
#lang .link span{display:inline-block;font-size:14px;font-family:var(--font-bold);text-transform:uppercase;margin:0 5px 0 8px;color:#333;}
#lang .link>i{display:inline-block;color:#666;}
#lang .link>i.icon-yuyan{font-size:24px;color:#333;line-height:28px;}
#lang .link>i.icon-xia{margin-left:5px;font-size:12px;color:#fff;}
#lang ul.dropdown-menu{position:absolute;top:100%;background-color:#fff;z-index:2;min-width:130px;box-shadow:0 5px 10px rgba(0,0,0,0.17);padding:5px 10px 5px;margin-top:30px;transition:all 0.3s;visibility:hidden;opacity:0;right:0;overflow:hidden;}
#lang ul.dropdown-menu>li>a{line-height:24px; font-size:14px; padding:5px 0 5px 0;white-space:nowrap;text-align:left;position:relative;z-index:2;color:#888;display:flex;align-items:center;justify-content:flex-start;}
#lang ul.dropdown-menu>li img{margin-left:0;margin-right:5px;}
#lang ul.dropdown-menu>li:hover>a{color:var(--color-main);}
#lang ul.dropdown-menu>li:not(:last-child)>a{border-bottom:1px solid #ddd;}
#lang:hover ul.dropdown-menu{margin-top:0;visibility:visible;opacity:1;}

/*手机导航*/
header #menu_btn{cursor:pointer; position: relative;display:inline-block;border-radius:50px;text-align:center;margin-top:15px;float:right;display:none;}
header #menu_btn>i{display:inline-block;font-size:24px;line-height:40px;}
header #menu_btn>i:before{content:"\e623";}
header #menu_btn.show>i:before{content:"\e641";}
@media (min-width:1080px) and (max-width:1439px) {

    #Menu{padding:10px 0;}
    #Menu ul.menunav>li{margin:0 12px;}
    #Menu ul.menunav>li>a{font-size:15px;}
    .getainquiry{padding:8px 20px;}
    #lang{margin-left:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    header{position:sticky;top:0;}
    header .logo{display:block;}
    

    #logo{height:60px;}
    #logo img{max-width:200px;max-height:50px;}

    #Menu .menu_right{margin:0;}
    #Menu .getainquiry{padding:8px 15px;width:100%;margin:0;text-align:center;background-color:#fff;color:var(--color-main);}
    #Menu .getainquiry:before,#Menu .getainquiry:after{background-color:#fff!important;}

    header #search{margin:0;width:100%;}
    header #search>a{display:none;}
    #search{padding:0;margin: 0 0 15px;}
    #search #sform{height:40px;width:100%;display:flex;position:relative;top:initial;right:initial;border:1px solid #fff;opacity:1;visibility:visible;}
    #search.show #sform{height:40px;}
    #search #sform input{width:calc(100% - 40px);}
    #search #sform button{width:40px;}
    #search #sform span{display:none;}
    #search #sform font{display:none;}
    #search::before{display:none;}

    header .menu_top{flex-wrap:wrap;}
    header .menu_top .email{margin-top:10px;color:#fff;}
    header .menu_top .email i{color:#fff}
    header .menu_top .sharelist{width:100%;}
    header .menu_top .sharelist .ico{color:#fff;}

    #lang ul.dropdown-menu{padding:0 15px;}

    header #menu_btn{display:block;margin-top:3px;margin-right:0;margin-left:10px;}
    
    header #Menu{display: flex;  flex-flow: column-reverse;justify-content: start;}
    header.show #Menu{left:0;z-index:2;padding:20px 15px 30px;}
    #Menu{display:block;width:220px;position:fixed;top:0;left:-230px;bottom:0;background-color:var(--color-main);box-shadow:0 0 3px #eee;padding-top:20px;overflow-y:scroll;padding-bottom:60px;transition:all 0.3s;margin-left:0;}
    #Menu ul.menunav{width:100%;display:block;padding-left:0;margin-bottom:30px;}
    #Menu ul.menunav>li{display:block;margin:0;}
    #Menu ul.menunav>li>a{padding:6px 0 6px 0;color:#fff;text-align:left;font-size:16px;}
    #Menu ul.menunav>li.active>a{color:#fff;}
    #Menu ul.menunav>li.active>a:before,#Menu ul.menunav>li:hover>a:before{display:none;}
    #Menu ul.menunav>li.active>a:after,#Menu ul.menunav>li:hover>a:after{display:none;}
    #Menu ul>li ul.dropdown-menu{display:block;position:relative;padding-left:0;padding-right:0;box-shadow:none;border-bottom:none;opacity:1;visibility:visible;margin-top:0;padding-top:0;background:none;width: 100%;position: relative;top: initial;left: initial;transform: initial;padding-bottom:0;}
    #Menu ul > li ul.dropdown-menu::before{display:none;}
    #Menu ul > li ul.dropdown-menu::after{display:none;}
    #Menu ul>li ul.dropdown-menu>li{padding:0;margin:0;width:100%;}
    #Menu ul > li ul.dropdown-menu > li > a > i{display:none;}
    #Menu ul>li ul.dropdown-menu>li>a{color:#fff;font-size:14px;padding:4px 10px 4px 10px;white-space:initial;margin:0;}
    #Menu ul>li ul.dropdown-menu>li>a.icon_right::after{top:5px;}
    #Menu ul>li ul.dropdown-menu>li:not(:last-child)>a{border:none;}
    #Menu ul>li ul.dropdown-menu ul.catemenu{display:block;position:relative;left:0;border-left:none;padding:0 0 0 5px;}
    #Menu ul>li ul.dropdown-menu ul.catemenu>li>a{font-size:12px;padding:4px 0 4px 15px;}

    #Menu ul.menunav > li.btninquiry > a{margin-left:0;padding:5px;display:flex;justify-content:center;font-size:14px;}
        
    #Menu #lang{display:block;margin-left:0;margin-top:15px;width:100%;}
    #Menu #lang .link{justify-content:flex-start;display:none;}
    #Menu #lang .link:not(:last-child){margin-right:0;padding-right:0;margin-bottom:10px;}
    #Menu #lang .link:not(:last-child)::before{display:none;}
    #Menu #lang img{margin:0 5px 0 0;}

    #lang ul.dropdown-menu{position:relative;top:initial;margin-top:0;visibility:visible;opacity:1;left:initial;transform:initial;margin-bottom:15px;padding:0 10px;}
}
/**********头部样式**********/
.feedbackbox ul{}
.feedbackbox ul>li{width:100%;position:relative;}
.feedbackbox ul>li:not(:last-child){margin-bottom:15px;}
.feedbackbox ul>li:last-child{margin-right:0;}
.feedbackbox ul>li.half{width:48%;margin-left:0;margin-right:0;}
.feedbackbox ul>li>label{text-align:left;font-weight:normal;font-size:16px;line-height:30px;margin-bottom:8px;display:block;}
.feedbackbox ul>li>label>em{color:#f00;font-style:initial;font-size:18px;line-height:30px;display:inline-block;vertical-align:top;margin-right:5px;}
.feedbackbox ul>li>.input{margin:0;height:49px;width:100%;border:1px solid #e6e8ec;padding-left:15px;background-color:transparent;}
.feedbackbox ul>li textarea.input{resize:none;position:relative;line-height:30px;font-size:16px;padding-top:6px;height:120px;}
.feedbackbox ul>li.tips{border-bottom:none;font-size:18px;line-height:24px;color:#747474;}
.feedbackbox .submit{display:inline-block;margin-top:30px;background-color:var(--color-main);color:#fff;text-align:center;padding:11px 25px;font-size:18px;line-height:30px;}
.feedbackbox .submit>i{margin-right:8px;font-size:18px;display:inline-block;vertical-align:top;}
.feedbackbox .submit:hover{background-color:var(--color-main);}
@media (min-width:1230px) and (max-width:1439px) {
}
@media (min-width:1080px) and (max-width:1439px) {
    .feedbackbox ul>li>label{font-size:16px;}
    .feedbackbox ul>li.btnli .btnlink{padding:3px 40px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .feedbackbox ul>li.half{margin-bottom:20px;width:100%;}
    .feedbackbox ul>li>label{font-size:16px;}
    .feedbackbox ul>li textarea.input{}
    .feedbackbox ul>li.btnli .morelink{padding:3px 40px;font-size:16px;line-height:32px;}
    .feedbackbox .submit{font-size:14px;padding:8px 25px;}
}

@keyframes rotateAnimation {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/**********底部样式**********/
.category{ position: fixed; top: 0; bottom: 52px; left: 0; width: 300px; background: #ddd; z-index: 999; max-width: 100%; transition: linear 0.35s; transform: translateX(-100%);}
.category[typeof='close']{}
.category[typeof='open']{ transform: translateX(0)}
.category .top{ background: var(--color-main); display: flex; justify-content: space-between; align-items: center; height: 55px; overflow: hidden;}
.category .top .logo{ width: 50%; margin: 0; display: inline-block; padding:0px 15px;}
.category .top .logo img{ max-height: 35px; width: auto;}
.category .top .close{ margin: 0; display: inline-block; cursor: pointer; padding: 15px;}
.category .top .close i{ font-size: 21px; color: #fff;}
.category .list{ position: relative; z-index: 1; height: calc(100% - 81px); box-sizing: border-box; padding: 30px 15px; overflow: hidden; overflow-y: auto;}
.category .list>ul{}
.category .list>ul>li{ display: block; border-bottom: 1px solid #fff;}
.category .list>ul>li>a{ display: block; font-size: 16px; padding: 10px 15px; color: #666; position: relative;}
.category .list ul>li>a:before{ content: ""; position: absolute; left: 0; top: 50%;transform:translate(0,-50%); width: 5px; height: 5px; background: var(--color-main);}
.category .list ul>li:hover>a{ color: var(--color-main);}
.category .list ul>li:last-child{ border-bottom: 0;}
.category .list ul>li>ul{ padding: 10px 20px 10px 10px;}
.category .list ul>li>ul>li{ margin-bottom: 10px; border-bottom: 1px dotted var(--color-main);}
.category .list ul>li>ul>li>a{ display: block; font-size: 12px; color: #999; padding: 5px 5px 5px 10px;position:relative;}
.category .list ul>li>ul>li:hover>a{ color: var(--color-main);}
.category .list ul>li>ul>li:last-child{ border-bottom: 0;}


footer{background-color:#203a7c;background-repeat:no-repeat;background-position:right bottom;padding-top:75px;}
footer dl dt,footer .tit_foot{margin-bottom:15px;font-size:18px;line-height:30px;position:relative;color:#fff;font-family:var(--font-b);}
footer dl dd{position:relative;}
footer dl dd:not(:last-child){margin-bottom:16px;}
footer dl dd>a{display:block;transition:all 0.3s;line-height:24px;color:#d1d1d1;font-size:16px;position:relative;}
footer dl dd>a:hover{text-decoration:underline;color:#fff;}

footer .left{width:60%;margin:0;}
footer .right{width:36%;margin:0;}
#fck1{width:40%;margin:0;}
#fck2{width:56%;margin:0;}
#fck3{width:100%;margin:40px 0 0;}

.footlogo{margin-bottom:40px;display:inline-block;}
.footlogo img{width:initial;}
#fck2 dl dd{width:49%;margin-left:0;margin-right:0;}
footer .right{padding-top:35px;}
footer .right .title{font-size:30px;line-height:1.4;font-family:var(--font-b);color:#fff;margin-bottom:20px;}
footer .feedbackbox ul > li:not(:last-child){margin-bottom:19px;}
footer .feedbackbox ul > li > .input{background-color:#fff;height:50px;}
footer .feedbackbox ul > li > .input::placeholder{font-size:14px;color:#999;}
footer .feedbackbox ul > li > textarea.input{height:120px;}
footer .feedbackbox .morelink{margin-top:26px;background-color:#5582f1;}


.footcontact .contitem{position:relative;display:flex;justify-content:flex-start;}
.footcontact .contitem:not(:last-child){margin-bottom:16px;}
.footcontact .contitem i{font-size:20px;line-height:24px;color:#5582f1;margin-right:15px;}
.footcontact .contitem a,.footcontact .contitem p{display:block;color:#d1d1d1;line-height:24px;font-size:16px;margin:0;}
.footcontact .contitem a.email{}
.footcontact .contitem a:hover{color:#fff;text-decoration:underline;}

#Subscribe{background-color:#141414;padding:65px 55px;}
#Subscribe .imgbox{margin-right:55px;margin-left:0;}
#Subscribe .titbox{width:600px;margin-left:0;margin-block:0;}
#Subscribe .titbox .tit{padding-right:120px;line-height:1.1;}
#Subscribe .titbox .slg{margin-top:20px;line-height:1.625;color:#b2b2b2;}
#Subscribe .subscribeBox{width:590px;margin-right:0;margin-left:100px;}
.subscribeBox{background-color:#fff;border-radius:4px;padding:15px;align-items:center;}
.subscribeBox .input{margin:0;height:54px;flex:1;background-color:transparent;}
.subscribeBox .input::placeholder{color:#515151;font-size:16px;}
.subscribeBox .btnSubscribe{width:54px;height:54px;line-height:54px;text-align:center;background-color:#000;color:#fff;border-radius:4px;}
.subscribeBox .btnSubscribe i{font-size:30px;}
.subscribeBox .btnSubscribe:hover{background-color:var(--color-main);}

@media (min-width:1080px) and (max-width:1439px) {
    #Subscribe{padding:20px;}
    #Subscribe .imgbox{margin-right:20px;}
    #Subscribe .titbox{width:360px;}
    #Subscribe .titbox .tit{padding-right:0;}
    #Subscribe .subscribeBox{width:360px;margin-right:0;margin-left:30px;padding:8px;}
    .subscribeBox .input{height:40px;}
    .subscribeBox .btnSubscribe{width:40px;height:40px;line-height:40px;}
    .subscribeBox .btnSubscribe i{font-size:24px;}
    
}
@media (min-width:1px) and (max-width:1079px) {
    footer .webtit{display:none;}


    #Subscribe{padding:20px;}
    #Subscribe .imgbox{margin-right:0;width:100%;margin-bottom:20px;}
    #Subscribe .titbox{width:100%;margin-bottom:20px;}
    #Subscribe .titbox .tit{padding-right:0;}
    #Subscribe .subscribeBox{width:100%;margin-right:0;margin-left:0;padding:8px;}
    .subscribeBox .input{height:40px;}
    .subscribeBox .btnSubscribe{width:40px;height:40px;line-height:40px;}
    .subscribeBox .btnSubscribe i{font-size:24px;}
}

.footshare{margin:0 7% 0 0;}
.footshare a>i{display:block;font-size:16px;color:#fff;width:30px;height:30px;line-height:30px;text-align:center;border-radius:4px;transition:all 0.3s;}
.footshare a:not(:last-child)>i{margin-right:10px;}
.footshare a:hover>i{margin-top:-5px;}
.footshare a.facebook>i{background-color:#1778f2;}
.footshare a.linkedin>i{background-color:#0077b5;}
.footshare a.twitter>i{background-color:#000000;}
.footshare a.youtube>i{background-color:#ce2020;}
.footshare a.pinterest>i{background-color:#e10600;}
.footshare a.instagram>i{background-color:#cf3d6b;}
.footshare a.whatsapp>i{background-color:#25d366;}
.footshare a.tiktok>i{background-color:#000;}

.copyright{padding-block:20px 25px;align-items:center;margin-top:65px;border-top:1px solid #3d538d;}
.copyright .footdiv{margin:0;color:#fff;font-size:15px;line-height:30px;}
.copyright .footdiv.footdiv_left{margin-right:auto;}
.copyright .footdiv.footdiv_right{text-align:right;}
.copyright .footdiv>a{color:#fff;font-size:15px;line-height:30px;}
.copyright .footdiv>a:hover{color:#fff;text-decoration:underline;}
@media (min-width:1080px) and (max-width:1439px) {
    footer{padding-top:60px;}
    footer dl dt,footer .tit_foot{font-size:20px;}
    footer dl dd{margin-bottom:10px;}
    footer dl dd > a{font-size:15px;}
    
    .footcontact p:not(:last-child){margin-bottom:20px;}
    
    .footshare{margin-right:3%;}
    .footshare a>i{width:36px;height:36px;line-height:36px;}
    .footshare a:not(:last-child)>i{margin-right:8px;}

    .copyright{margin-top:30px;padding-block:15px;}
    .copyright .footdiv{font-size:14px;}
    .copyright .footdiv > a{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #smooth-wrapper{padding-top:61px;}

    footer{padding:30px 0 50px;}
    footer:before{display:none;}
    footer:after{display:none;}

    .footercontent{display:none;}
    .footimgbox {display:none;}
    
    .footshare{display:flex;justify-content:center;width:100%;margin-bottom:8px;}
    .footshare a>i{width:36px;height:36px;line-height:36px;font-size:16px;}

    .copyright{margin-top:0;padding:0 0 15px 0;text-align:center;border-top:none;}
    .copyright .footdiv{flex:initial;margin:0;}
    .copyright .footdiv.left{width:100%;padding:0;font-size:14px;}
    .copyright .footdiv.right{width:100%;padding:0;text-align:center;font-size:14px;}
}


#mobMenu{min-height:50px;border:1px solid #dddddd;position:fixed;bottom:0;width:100%;display:none;z-index:10;background-color:#fff;}
#mobMenu .foot_nav{text-align:center;color: #898989;font-size:12px;flex:1;}
#mobMenu .foot_nav a{color:#000;}
#mobMenu .foot_nav i{display: block;padding: 3px 0px 0px 0px;font-size:18px;line-height:24px;}
#mobMenu .foot_nav .hamburger{position: inherit;float: none;margin: 0 auto;width:100%;}
@media (min-width:1px) and (max-width:1079px) {
    #mobMenu{display:flex;}
}


#float{position:fixed;right:0;top:60%;z-index:55;transform:translate(0,-50%);display: flex;  flex-direction: column;  align-items: flex-end;}
#float .ico{display:block;width:50px;height:50px;text-align:center;background:var(--color-main);position:relative;cursor:pointer;margin-bottom:6px;overflow:hidden;display:flex;justify-content:center;align-items:center;border-radius:8px;}
#float .ico>i{font-size:28px;line-height:50px;display:block;color:#fff;width:50px;}
#float .ico>.img{position:absolute;right:50px;width:140px;top:0;display:none;background-color:#fff;box-shadow:0 0 5px #b0b0b0;}
#float .ico>.img>img{width:100%;}
#float .ico>i.icon_whatsapp{background-color:#1bc73a;}
#float .ico:hover>.img{display:block;}
#float .ico.email{background-color:#f7aa3c;}
#float .ico.whatsapp{background-color:#25d366;}
#float .ico.getainquiry{background-color:#a4c6f9;}
@media (min-width:1px) and (max-width:1079px){
    #float .ico{width:40px;height:40px;margin-bottom:5px;}
    #float .ico>i{font-size:20px;line-height:40px;}
    #float .ico>.img{right:40px;}
}
#float .ico p{width:0;color:#fff;transition:all 0.3s;white-space:nowrap;}
#float .ico i .number{position:absolute;width:25px;height:25px;font-size:16px;border-radius:50%;left:-5px;z-index:13;line-height:25px;background-color:#c6171e;color:#fff;top:-5px;}
#float .ico.getainquiry i{animation:blink 1.6s infinite;}
#float .ico:hover{width:auto;}
#float .ico:hover p{width:auto;padding:0 15px 0 5px;min-width:30px;}
@keyframes blink {
    0% {
        opacity: 1;
        color: #fff
    }

    50% {
        opacity: 0.4
    }

    100% {
        opacity: 1
    }
}

#floatForm{position:fixed;right:20px;bottom:-30px;z-index:999;transform: translateY(100%);transition: all 0.35s;}
#floatForm.show{transform: translateY(0);bottom:0;}
#floatForm .bg{width:100%;height:100%;background:rgba(0,0,0,0.5);display:none;}
#floatForm .contactTop{ overflow: hidden; display: flex; justify-content: space-between; margin-left: -20px; margin-top: -30px; position: relative; height: 75px; margin-bottom: 0.2rem; align-items: center;}
#floatForm .contactTop:before{position:absolute;top:0;left:0;width:0;height:0;border-color:var(--color-main) transparent transparent transparent;border-style:solid;border-width:75px 98px 0 0;content:"";}
#floatForm .contactTop .contactLogo{ margin-left: 20px; margin-top: 5px; position: relative; z-index: 3; width: 50px; height: 50px; border-radius: 50%; overflow: hidden; box-shadow: 0 0 10px #f5f5f5; background:#fff; display: flex; align-items: center; justify-content: center; box-sizing: border-box; padding: 5px;}
#floatForm .contactTop .contactLogo picture{ max-width: inherit; width: 100%; height: auto;line-height:0;}
#floatForm .contactForm{width:90%;max-width:380px;position:relative;z-index:1;box-shadow:0 0 10px 1px var(--color-main);padding:30px 20px;background-color:#f3f3f3;border:1px solid #e1eaec;}
#floatForm .contactForm .btnclose{display:inline-flex;width:30px;height:30px;background-color:#000;border:3px solid #fff;border-radius:50%;z-index:1;align-items: center;justify-content: center;cursor:pointer; margin: 0;}
#floatForm .contactForm .btnclose>i{font-size:12px;line-height:24px;color:#fff;font-weight:bold;}
#floatForm .contactForm .quickQuoteTitle{font-size:22px;line-height:24px;color:#171717;font-weight:600;margin-bottom:20px;}
#floatForm .contactForm input,.contactForm textarea{padding:12px;width:100%;border:1px solid #dadada;margin-bottom:10px;background-color:#fff;color:#000;resize:none;}
#floatForm .contactForm .submit{padding:10px 20px;min-width:120px;font-size:16px;line-height:20px;border:1px solid var(--color-main);background-color:var(--color-main);text-align:center;color:#fff;display:inline-block;}
#floatForm .contactForm .submit:hover{}
/**********底部样式**********/

/**********首页样式**********/
#ibframe{position:relative;z-index:2;}
#ibframe:before{content:"";position:absolute;top:0;left:0;right:0;bottom:0;background-color:rgba(0,0,0,0);}
#ibframe .container{position:absolute;left:0;top:0;right:0;bottom:0;}
#ibframe .txt{position:absolute;top:50%;left:0;width:100%;transform:translate(0,-50%);z-index:1;max-width:600px;}
#ibframe .txt .tit{font-size:75px;line-height:1;color:#fff;}
#ibframe .txt .tit font{color:var(--color-main);line-height:1;}
#ibframe .txt .remark{font-size:48px;line-height:1.1458;color:#fff;margin-top:30px;}
#ibframe .txt .btnlist{margin-top:40px;}
#ibframe .txt .morelink{animation-name: slideInUpMore;}
#ibframe .txt .morelink:not(:last-child){margin-right:18px;}
#ibframe .txt .morelink:hover{margin-top:-10px;margin-bottom:10px;}
#ibframe .txt .morelink2{border-color:#fff;}
.char{opacity:0;display:inline-block;transform:translateY(6px);animation:charAnim 0.5s ease-out forwards}
@keyframes charAnim{
    to{opacity:1;transform:translateY(0)}
}
#ibframe .txt .tit .char{animation-duration:0.8s !important}
#ibframe .txt .remark .char{animation-duration:0.35s !important}
@keyframes slideInUpMore {
  from {
    transform: translate3d(0, 100px, 0);
    opacity: 0;
    visibility: hidden;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
    visibility: visible;
  }
}
#ibframe img{width:100%;}
#ibframe .swiper-slide a{display:block;}
#ibframe .swiper-pagination{bottom:3vw;}
#ibframe .swiper-pagination-bullet{width:20px;height:3px;margin:0 2px;background-color:#fff;transition:all 0.3s;border-radius:0;opacity:0.57;}
#ibframe .swiper-pagination-bullet-active{width:48px;opacity:1;}
#ibframe .btnlist .swbtn{display:inline-block;width:50px;height:50px;line-height:50px;text-align:center;position:absolute;color:#fff;top:calc(50% - 25px);z-index:1;background-color:rgba(0,0,0,0.3);border-radius:50%;transition:all 0.3s;display:none;}
#ibframe .btnlist .swbtn>i{font-size:30px;display:block;}
#ibframe .btnlist .swbtn.btn-prev{left:calc(4vw);transform:rotateY(180deg);}
#ibframe .btnlist .swbtn.btn-next{right:calc(4vw);}
#ibframe .btnlist .swbtn:hover{background-color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px) {
    #ibframe .txt .tit{font-size:40px;}
    #ibframe .txt .remark{font-size:16px;}
}
@media (min-width:1px) and (max-width:1079px){
    #ibframe{position:relative;margin-top:0;}
    #ibframe .swiper{height:initial;}
    #ibframe .swiper-slide img{width:100%;height:initial;object-fit:initial;}


    #ibframe .swiper-pagination{bottom:5px;}
    #ibframe .swiper-pagination-bullet{width:30px;}
    #ibframe .swiper-pagination-bullet-active{width:45px;}

    #ibframe .btnlist .swbtn{width:36px;height:36px;line-height:36px;}
    #ibframe .btnlist .swbtn>i{font-size:20px;}
    #ibframe .btnlist .swbtn.btn-prev{left:15px;}
    #ibframe .btnlist .swbtn.btn-next{right:15px;}

    #ibframe .txt{padding:0 15px;}
    #ibframe .txt .tit{font-size:18px;line-height:1.3;}
    #ibframe .txt .remark{font-size:13px;margin-top:10px;}
    #ibframe .txt .btnlist{margin-top:15px;}
    #ibframe .txt .morelink{padding:5px 10px;max-width:48%;}
    #ibframe .txt .morelink:not(:last-child){margin-right:12px;}
}

#frame_cate .slg{max-width:1230px;}
#frame_cate .introlist .item{width:calc((100% - 44px)/3);margin:0;border:1px solid #e3e9f1;padding:15px 30px 15px 38px;display:flex;align-items:center;justify-content:flex-start;}
#frame_cate .introlist .item i{width:50px;height:50px;line-height:50px;text-align:center;font-size:24px;background-color:#d8dff1;color:var(--color-main);margin-right:38px;margin-left:0;border-radius:50%;}
#frame_cate .introlist .item p{flex:1;}
#frame_cate .list .item{margin-top:80px;}
#frame_cate .list .item:nth-child(2n){flex-flow:row-reverse;}
#frame_cate .list .item .pic{width:49%;margin:0;}
#frame_cate .list .item .txt{width:48.5%;margin:0;}
#frame_cate .list .item:nth-child(2n+1) .txt{background:linear-gradient(to right,#f4f6fb 0 46%,#fff 46%);padding:45px 0 50px 55px;}
#frame_cate .list .item:nth-child(2n) .txt{background:linear-gradient(to left,#f4f6fb 0 46%,#fff 46%);padding:45px 55px 0 0;}
#frame_cate .list .item .proname{color:var(--color-main);font-size:18px;line-height:1.6667;margin-bottom:10px;font-family:var(--font-b);display:inline-block;}
#frame_cate .list .item .tit_cate{font-size:36px;line-height:1.2;margin-bottom:25px;font-family:var(--font-med);font-weight:bold;}
#frame_cate .list .item .line{width:75px;height:1px;background-color:var(--color-main);margin:0 0 20px;}
#frame_cate .list .item .remark{font-size:15px;line-height:2;margin-bottom:30px;}
#frame_cate .list .item .speed-badge{width:130px;height:130px;position:relative;display:inline-flex;align-items:center;justify-content:center;border-radius:50%;border:2px solid var(--color-main);}
#frame_cate .list .item .speed-badge::before{content:'';position:absolute;inset:0;border-radius:50%;border:1px dashed #275da9;animation:spin 15s linear infinite;margin:5px;}
#frame_cate .list .item .speed-content{text-align:center;z-index:1;width:100%;}
#frame_cate .list .item .speed-content .max{font-size:16px;color:#999;display:block}
#frame_cate .list .item .speed-content .num{font-size:36px;line-height:1;color:var(--color-main);font-family:var(--font-bold);max-width:86px;border-bottom:1px solid #ccc;display:block;margin:0 auto 3px;}
#frame_cate .list .item .speed-content .unit{font-size:16px;color:#999;display:block}
@keyframes spin{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}
@media (min-width:1080px) and (max-width:1439px){
    #frame_cate .introlist .item{padding:15px 20px;}
    #frame_cate .introlist .item i{margin-right:15px;}

    #frame_cate .list .item{align-items:center;margin-top:40px;}
    #frame_cate .list .item:nth-child(2n+1) .txt{padding:35px 0 20px 35px;}
    #frame_cate .list .item:nth-child(2n) .txt{padding:35px 35px 20px 0;}
    #frame_cate .list .item .tit_cate{font-size:30px;}
    #frame_cate .list .item .remark{line-height:1.8;}
}
 @media (max-width:1079px){
    #frame_cate .introlist .item{width:100%;padding:15px 20px;}
    #frame_cate .introlist .item:not(:last-child){margin-bottom:15px;}
    #frame_cate .introlist .item i{margin-right:15px;}

    #frame_cate .list .item{margin-top:30px;}
    #frame_cate .list .item:nth-child(2n){flex-flow:column;}
    #frame_cate .list .item .pic{width:100%;}
    #frame_cate .list .item .txt{width:100%;background:#f4f6fb!important;padding:25px!important;}
    #frame_cate .list .item .proname{margin-bottom:3px;}
    #frame_cate .list .item .tit_cate{font-size:20px;margin-bottom:15px;}
    #frame_cate .list .item .line{margin-bottom:10px;}
    #frame_cate .list .item .remark{margin-bottom:20px;}
    #frame_cate .list .item .speed-badge{width:100px;height:100px;}
    #frame_cate .list .item .speed-content .max{font-size:14px;}
    #frame_cate .list .item .speed-content .num{font-size:24px;max-width:60px;}
    #frame_cate .list .item .speed-content .unit{font-size:14px;}
}

#frame_about{background:linear-gradient(to bottom,#f7f9fc 0 80%,#fff 80%);padding-bottom:0;}
#frame_about .imgbox1 picture{margin:0;}
#frame_about .imgbox1 picture img{width:initial;}
#frame_about .titbox{width:47%;margin:0;}
#frame_about .titbox .remark{margin-top:15px;}
#frame_about .titbox .remark b{display:inline-block;font-weight:normal;font-family:var(--font-b);line-height:1.875;}
#frame_about .right{width:40%;margin:0;padding-top:40px;}
#frame_about .right .p1{margin-bottom:20px;display:flex;justify-content:flex-start;align-items:flex-start}
#frame_about .right .p1 img{margin-right:15px;margin-top:3px;}
#frame_about .right .p1 p{font-size:16px;line-height:1.875;flex:1;}
#frame_about .right .btnlist{margin-top:55px;}
#frame_about .videobox{margin-top:80px;position:relative;}
#frame_about .videobox .imgbox{position:relative;}
#frame_about .numlist{position:absolute;bottom:25px;left:0;width:100%;}
#frame_about .numlist .item{width:25%;text-align:center;}
#frame_about .numlist .item i{font-size:50px;line-height:1;color:#fff;}
#frame_about .numlist .item .num{font-size:36px;color:var(--color-main);font-family:var(--font-bold);color:#5582f1;margin-top:6px;}
#frame_about .numlist .item p{font-size:16px;color:#fff;}
@media (min-width:1080px) and (max-width:1439px){
    #frame_about .right{width:45%;}
    #frame_about .right .imgbox1{margin-left:20px;}
    #frame_about .videobox{margin-top:40px;}
}
 @media (max-width:1079px){
    #frame_about{background:#f7f9fc;padding-bottom:40px;}
    #frame_about .titbox{width:100%;}
    #frame_about .right{width:100%;}
    #frame_about .right .p1 p{font-size:14px;}
    #frame_about .right .btnlist{margin-top:25px;}
    #frame_about .right .imgbox1{margin:20px 0 0;}
    #frame_about .numlist{position:relative;bottom:initial;left:initial;margin-top:30px;}
    #frame_about .numlist .item{width:50%;margin-bottom:15px;}
    #frame_about .numlist .item i{color:var(--color-main);font-size:36px;}
    #frame_about .numlist .item .num{font-size:24px;}
    #frame_about .numlist .item p{color:#666;font-size:14px;}
}


#frame_why{background-repeat:no-repeat;background-position:bottom center;}
#frame_why .titbox{max-width:900px;}
#frame_why .titbox .line{margin-top:25px;}
#frame_why .list{margin-bottom:30px;}
#frame_why .item{width:33%;margin:0 0 50px;text-align:center;padding:0 40px;}
#frame_why .item i{width:96px;height:96px;line-height:96px;border-radius:50%;background:linear-gradient(to right,var(--color-main),#5583f3);color:#fff;font-size:48px;display:block;margin:0 auto;box-shadow:0 10px 8px rgba(38,80,178,0.2);}
#frame_why .item .tit_why{font-size:20px;text-transform:uppercase;font-family:var(--font);font-weight:bold;margin-top:20px;}
#frame_why .item .remark{font-size:15px;line-height:2;margin-top:8px;}
#frame_why .morelink i{font-size:20px;}
@media (min-width:1080px) and (max-width:1439px){
    #frame_why .item{padding:0 15px;}
    #frame_why .item .tit_why{font-size:18px;}
    #frame_why .item .remark{font-size:14px;line-height:1.8;}
}
 @media (max-width:1079px){
     #frame_why .item{width:100%;padding:0;margin-bottom:25px;}
     #frame_why .item i{width:80px;height:80px;line-height:80px;font-size:40px;}
     #frame_why .item .tit_why{font-size:18px;}
     #frame_why .item .remark{font-size:14px;line-height:1.6;}
}

#frame_solu{background-color:#f4f6fb;padding-top:0;}
#frame_solu>.flex_between{align-items:flex-end;}
#frame_solu .left{width:50%;margin:0;}
#frame_solu .left .titbox{padding-right:75px;margin-bottom:75px;}
#frame_solu .left .titbox .line{margin-left:auto;margin-right:0;margin-top:25px;margin-bottom:50px;}
#frame_solu .left .titbox .flex_end{display:flex;justify-content:flex-end;flex-wrap:wrap;}
#frame_solu .left .titbox .flex_end .tag{min-width:130px;padding:10px 20px;font-size:18px;line-height:1.5;text-align:center;color:#fff;border-radius:4px;background-color:var(--color-main);}
#frame_solu .left .titbox .flex_end .tag:not(:last-child){margin-right:40px;}
#frame_solu .left .imgbox1{padding:35px 30px;text-align:right;background:linear-gradient(to right,var(--color-main),#5482f0);}
#frame_solu .left .imgbox1 img{width:initial;}
#frame_solu .right{width:50%;margin:0;}
#frame_solu .solulist{padding-top:60px;margin-top:35px;border-top:1px solid #e8e8e8;}
#frame_solu .item .img{background-color:#fff;margin-bottom:4px;}
#frame_solu .item .tit_solu{font-size:16px;background-color:#fff;padding:10px 15px;text-align:center;font-family:var(--font);}
#frame_solu .swiper-wrapper {
    -webkit-transition-timing-function: linear; /*之前是ease-out*/
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
@media (min-width:1080px) and (max-width:1439px){
    #frame_solu .left .titbox{padding-right:30px;margin-bottom:25px;}
    #frame_solu .left .titbox .line{margin-bottom:20px;margin-top:15px;}
    #frame_solu .left .titbox .flex_end .tag:not(:last-child){margin-right:15px;}
    #frame_solu .left .titbox .flex_end .tag{padding:8px 16px;font-size:16px;}
    #frame_solu .item .tit_solu{font-size:14px;}
}
 @media (max-width:1079px){
    #frame_solu .left{width:100%;padding:20px 0 0;}
    #frame_solu .left .titbox{padding-right:0;margin-bottom:25px;padding:0 20px;}
    #frame_solu .left .titbox .flex_end .tag:not(:last-child){margin-right:10px;}
    #frame_solu .left .titbox .flex_end .tag{padding:8px 12px;font-size:14px;min-width:100px;}
    #frame_solu .left .imgbox1{padding:20px;}
    #frame_solu .left .imgbox1 img{width:100%;}
    #frame_solu .right{width:100%;}
    #frame_solu .solulist{padding-top:30px;margin-top:30px;}
    #frame_solu .item .tit_solu{font-size:14px;}
}


#frame_news{}
#frame_news .titbox{width:33.5%;margin:0;}
#frame_news .titbox .line{margin-left:0;}
#frame_news .titbox .slg{margin-top:50px;}
#frame_news .list{width:60.3%;margin:0;}
#frame_news .list .item{width:48%;box-shadow:0 0 16px rgba(38,80,178,0.11);padding:32px 35px 35px;}
#frame_news .list .item time{display:flex;align-items:center;width:fit-content;border-radius:4px;background-color:var(--color-main);padding:4px 10px;font-size:14px;line-height:24px;color:#fff;margin-bottom:15px;}
#frame_news .list .item time i{margin-right:6px;}
#frame_news .list .item .tit_news{font-size:18px;line-height:2;font-weight:bold;font-family:var(--font);margin-bottom:10px;}
#frame_news .list .item .more i{font-size:12px;line-height:1;}
#frame_news .list .item:hover .tit_news{color:var(--color-main);text-decoration:underline;}
#frame_news .list .item:hover .more i{color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px){
    #frame_news .titbox .slg{margin-top:25px;}
    #frame_news .list .item{padding:20px;}
    #frame_news .list .item .tit_news{font-size:16px;line-height:1.8;}
}
 @media (max-width:1079px){
    #frame_news .titbox{width:100%;margin-bottom:30px;}
    #frame_news .titbox .line{margin-left:0;}
    #frame_news .titbox .slg{margin-top:15px;}
    #frame_news .list{width:100%;margin:0;}
    #frame_news .list .item{padding:20px;width:100%;margin-bottom:20px;}
    #frame_news .list .item .tit_news{font-size:16px;line-height:1.6;}
}


#HomeFeedback .feedbackbox{width:44%;background-color:#fff;border-radius:8px;padding:50px 40px;margin:0;}
#HomeFeedback .feedbackbox .titbox{margin-bottom:30px;}
#HomeFeedback .feedbackbox .titbox .tit{font-family:var(--font-bold);text-align:center;}
#HomeFeedback .feedbackbox ul>li{position:relative;}
#HomeFeedback .feedbackbox ul>li:not(:last-child){margin-bottom:15px;}
#HomeFeedback .feedbackbox ul>li.half{width:47%;margin-left:0;margin-right:0;}
#HomeFeedback .feedbackbox ul>li>label{display:block;color:#333;}
#HomeFeedback .feedbackbox ul>li>.input{padding:0;border-radius:0;height:34px;border-top-color:transparent!important;border-left-color:transparent!important;border-right-color:transparent!important;border-bottom-color:#ccc;}
#HomeFeedback .feedbackbox ul>li>.input::placeholder{color:#ccc;font-size:14px;}
#HomeFeedback .feedbackbox ul>li textarea.input{height:90px;border-bottom-color:transparent;}
#HomeFeedback .feedbackbox .morelink{margin-top:10px;width:100%;background:#333;padding:12px 30px;}
@media (min-width:1080px) and (max-width:1439px){
    #HomeFeedback .feedbackbox{padding:30px;}
    #HomeFeedback .feedbackbox .titbox{margin-bottom:15px;}
    #HomeFeedback .feedbackbox .titbox .slg{font-size:14px;}
    #HomeFeedback .feedbackbox p{font-size:16px;}
    #HomeFeedback .feedbackbox ul > li:not(:last-child){margin-bottom:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #HomeFeedback{margin-bottom:0;padding-block:50px;}
    #HomeFeedback .left{width:100%;margin:0;}
    #HomeFeedback .left .contbox{padding:15px 0 15px 0;}
    #HomeFeedback .left .contbox i{width:60px;height:60px;line-height:60px;font-size:30px;}

    #HomeFeedback .feedbackbox{width:100%;margin-top:20px;padding:20px;}
    #HomeFeedback .feedbackbox .titbox{margin-bottom:15px;}
    #HomeFeedback .feedbackbox .titbox .slg{font-size:14px;}
    #HomeFeedback .feedbackbox ul > li.half{width:100%;}
    #HomeFeedback .feedbackbox ul > li:not(:last-child){margin-bottom:15px;}
    #HomeFeedback .feedbackbox p{font-size:14px;}
}
/**********首页样式**********/


#bframe{position:relative;z-index:2;}
#bframe picture,#bframe img{width:100%;height:100%;object-fit:cover;}
#bframe .txt{position:absolute;width:100%;top:50%;transform:translate(0,-50%);}
#bframe .tit{font-size:36px;line-height:1;color:#fff;}
#bframe .slg{color:#fff;margin-top:12px;line-height:1.875;font-size:14px;}
#bframe .line{display:inline-block;}
@media (min-width:1230px) and (max-width:1439px) {
}
@media (min-width:1080px) and (max-width:1439px) {
    #bframe{height:96px;overflow:hidden;}
    #bframe .tit{font-size:30px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #bframe{height:96px;}
    #bframe .txt{top:50%;}
    #bframe .tit{font-size:18px;line-height:1.2;margin-bottom:0;}
    #bframe .line{display:none;}
    #bframe .slg{display:none;}
    #bframe img{}
}

/*共用*/
#Location{width:100%;position:absolute;top:50%;left:0;transform:translate(0,-50%);}
#Location .crumbs{display:flex;align-items:center;width:fit-content;margin:0;position:relative;}
#Location .crumbs:before{content:"\e63f";font-family:iconfont;color:#fff;font-size:20px;line-height:1;margin-right:10px;}
#Location .crumbs a{font-size:16px;line-height:24px;color:#fff;}
#Location .crumbs a:hover{text-decoration:underline;}
#Location .crumbs a:not(:last-child)::after{content:"\e662";font-family:iconfont;margin:0 5px;display:inline-block;color:#fff;}
#Location .crumbs span{display:inline-block;font-size:16px;line-height:24px;color:#fff;}
#Location.prolocation{background-color:#f8f9fa;}
#Location.prolocation .crumbs a{color:#4b5563;}
#Location.prolocation .crumbs span{font-family:var(--font-bold);color:var(--color);}
#Location.ablocation{background-color:transparent;}
#Location.ablocation .crumbs a{color:#4b5563;}
#Location.ablocation .crumbs span{font-family:var(--font-bold);color:var(--color);font-size:16px;}
@media (min-width:1080px) and (max-width:1439px) {
    #Location .crumbs:before{font-size:16px;}
    #Location .crumbs a{font-size:14px;}
    #Location .crumbs span{font-size:14px;}

    #Location.prolocation{width:100%;left:0;}
}
@media (min-width:1px) and (max-width:1079px) {
    #Location .container{padding:0 15px;}
    #Location .crumbs{flex-wrap:wrap;padding:6px 15px;}
    #Location .crumbs:before{line-height:18px;}
    #Location .crumbs a{font-size:13px;line-height:18px;}
    #Location .crumbs a:not(:last-child)::after{line-height:18px;}
    #Location .crumbs a:first-child:before{font-size:16px;}
    #Location .crumbs span{font-size:13px;line-height:18px;}
}


.PageTitle{padding:25px 0 0;}
.PageTitle .tit{font-size:40px;line-height:1.2;font-family:var(--font-bold);}
@media (min-width:1080px) and (max-width:1439px) {
    .PageTitle{padding:15px 0;}
}
@media (min-width:1px) and (max-width:1079px) {
    .PageTitle{padding:0;display:none;}
    .PageTitle .tit{font-size:30px;}
}

/*左侧菜单*/
#left_nav{width:333px;margin:0;}
#right_nav{width:calc(100% - 380px);margin:0;}
#left_nav .leftbox{margin-bottom:25px;}
#left_nav .leftbox .tit{font-size:24px;line-height:36px;position:relative;margin-bottom:15px;font-family:var(--font-b);}
#left_nav dl{}
#left_nav dl>dd{position:relative;overflow:hidden;}
#left_nav dl>dd:not(:last-child){margin-bottom:12px;}
#left_nav dl>dd>a{font-size:18px;line-height:24px;display:block;color:#666;text-decoration:underline;}
#left_nav dl>dd.active>a,#left_nav dl>dd:hover>a{color:var(--color-main);}
#left_nav dl>dd ul{padding-top:10px;display:none;}
#left_nav dl>dd.active ul{display:block;border-top:1px solid #e1e1e1;padding-left:20px;}
#left_nav dl>dd ul>li{position:relative;}
#left_nav dl>dd ul>li>a{display:block;font-size:14px;line-height:30px;position:relative;color:#8c8c8c;padding-bottom:5px;margin-bottom:5px;}
#left_nav dl>dd ul>li>i{width:12px;height:12px;border:1px solid #e3e3e3;position:absolute;right:10px;top:9px;display:none;}
#left_nav dl>dd ul>li:not(:last-child)>a{}
#left_nav dl>dd ul>li.active>a,#left_nav dl>dd ul>li:hover>a{color:var(--color-main);}
#left_nav dl>dd ul>li.active>i,#left_nav dl>dd ul>li:hover>i{background-color:var(--color-main);}
#left_nav dl>dd ul>li.active>i:before,#left_nav dl>dd ul>li:hover>i:before{content:"\eaf1";font-family:iconfont;position:absolute;left:1px;top:0;font-size:10px;line-height:1;}
#left_nav dl>dd ul>li.active>ul{display:block;}
#left_nav dl>dd ul>li>ul.catelist{padding:0 20px 0;}
#left_nav dl>dd ul>li>ul.catelist>li>a{display:block;border-bottom:1px solid #d5d5d5;padding-left:8px;font-size:14px;}

#left_nav #LeftSearch{overflow:hidden;}
#sform2{overflow:hidden;margin:0;width:350px;border-bottom:1px solid #fff;}
#sform2 #stext2{width:calc(100% - 45px);height:45px;background-color:transparent;margin-left:0;margin:0;}
#sform2 #stext2::placeholder{font-size:15px;color:#fff;}
#sform2 #sbut2{background-color:transparent;border:none;}
#sform2 #sbut2>i{color:#fff;font-size:20px;cursor:pointer;}

#LeftPro .list{}
#LeftPro .list .item{border:1px solid #e7e7e7;position:relative;background-color:#fff;border-radius:5px;display:flex;justify-content:space-between;align-items:center;margin-bottom:12px;overflow:hidden;}
#LeftPro .list .item .img{width:100px;border-right:1px solid #e7e7e7;}
#LeftPro .list .item h4{width:calc(100% - 100px);padding:0 15px;font-size:18px;line-height:1.4;color:#111;word-break:keep-all;}
#LeftPro .list .item:hover h4{color:var(--color-main);}

.leftbox .feedbackbox{}
.leftbox .feedbackbox ul>li{margin-bottom:27px;}
.leftbox .feedbackbox ul>li>.input{height:56px;background-color:#fafafa;border-color:#efefef;font-size:14px;}
.leftbox .feedbackbox ul>li>.input::placeholder{color:#999;font-size:14px;line-height:20px;}
.leftbox .feedbackbox ul>li textarea.input{height:290px;}
.leftbox .feedbackbox .morelink{}


#LeftCateList{}
#LeftCateList dl>dd{border-left:9px solid var(--color-main);}
#LeftCateList dl>dd:not(:last-child){margin-block:43px;}
#LeftCateList dl>dd>a{padding:15px 0 15px 18px;line-height:30px;}
#LeftCateList dl>dd.active>a,#LeftCateList dl>dd:hover>a{text-decoration:underline;color:var(--color-main);}
#LeftCateList dl>dd>a:before{content:"";font-family:iconfont;font-size:24px;line-height:30px;position:absolute;left:0;top:9px;}

.leftbox .imgbox{margin-block:40px 20px;}

#LeftContact{}
#LeftContact .contbox{width:100%;position:relative;padding-left:36px;}
#LeftContact .contbox:not(:last-child){margin-bottom:16px;}
#LeftContact .contbox i{margin-right:8px;font-size:24px;line-height:24px;color:var(--color-main);position:absolute;left:0;top:0;}
#LeftContact .contbox span{font-size:15px;line-height:24px;color:#666;display:block;}
#LeftContact .contbox a{font-size:15px;line-height:24px;color:#666;display:block;}
#LeftContact .contbox a:hover{color:var(--color-main);text-decoration:underline;}
@media (min-width:1080px) and (max-width:1439px) {
    #left_nav{width:29%;}
    #right_nav{width:68%;}
    #left_nav .leftbox{margin-bottom:25px;}
    #left_nav .leftbox dl > dt, #left_nav .leftbox .tit{font-size:20px;}
    #left_nav dl > dd:not(:last-child){margin-bottom:30px;}
    #left_nav dl > dd > a{font-size:18px;padding:12px 0 12px 15px;}
    #left_nav #LeftCateList dl > dd > a{}
    #left_nav #LeftCateList dl > dd .img{left:0;}
    #left_nav .leftbox dl{}

    .leftbox .feedbackbox{}
    .leftbox .feedbackbox ul > li{margin-bottom:15px;}
    .leftbox .feedbackbox ul > li textarea.input{height:150px;}

    #left_nav #LeftProduct dl>dd>a{font-size:16px;}
    #left_nav dl>dd ul>li>a{font-size:15px;}
    #LeftNews .list .item{}
    #LeftNews .list .item .txt{padding:10px;}
    #LeftNews .list .item .morelink{padding:3px 30px;margin-top:10px;}


    #LeftContact .txt{}
    #LeftContact .contbox a{font-size:14px;}
    #LeftContact .contbox span{font-size:14px;line-height:1.6;}
}
@media (min-width:1px) and (max-width:1079px) {
    #left_nav{display:none;}
    #right_nav{width:100%;}
}

#right_nav .title{}
#right_nav .title h2{font-size:30px;}
@media (min-width:1080px) and (max-width:1439px) {
    #right_nav .title p{font-size:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #right_nav .title h2{font-size:24px;line-height:1.2;}
}

article.context,article.context>*{line-height:2;font-size:16px;}
@media (min-width:1px) and (max-width:1079px) {
    article.context,article.context>*{line-height:1.8;font-size:14px;}
}

/*关于我们*/
.abframe .titbox .tit{font-size:36px;line-height:1.3888;}
.abframe .subtit{display:flex;align-items:center;justify-content:start;font-size:16px;color:var(--color-main);text-transform:uppercase;font-weight:bold;margin-bottom:10px;}
.abframe .subtit img{margin-left:0;margin-right:10px;}
.abframe .titbox.txtcenter .subtit{justify-content:center;}
#abframe_ab .intro1{flex-flow:row-reverse;}
#abframe_ab .imgbox{margin:0;position:relative;}
#abframe_ab .intro1 .imgbox{text-align:right;width:48%;}
#abframe_ab .intro2 .imgbox{width:45.8%;}
#abframe_ab .txtcontent{width:48%;margin:0;}
#abframe_ab .txtcontent .tit_ab{font-size:44px;line-height:1.44;font-family:var(--font);margin-bottom:20px;}
#abframe_ab .txtcontent .tit_ab font{color:var(--color-main);font-weight:bold;}
#abframe_ab .txtcontent .remark{color:#444;line-height:2.215;}
#abframe_ab .txtcontent .numlist{margin-top:30px;}
#abframe_ab .txtcontent .numlist .item{width:fit-content;text-align:center;margin:0;}
#abframe_ab .txtcontent .numlist .item .num{font-size:40px;font-family:var(--font-b);color:var(--color-main);}
#abframe_ab .txtcontent .numlist .item p{font-size:14px;line-height:1.6;color:#555;}

#abframe_mark{background:url(/dist/images/ab_bg.jpg) no-repeat center/auto 100%;}
#abframe_mark .titbox{display:flex;justify-content:space-between;flex-wrap:wrap;align-items:flex-end;margin-bottom:80px;}
#abframe_mark .titbox .left{width:30%;margin:0;}
#abframe_mark .titbox .remark{max-width:65%;width:fit-content;margin:0;line-height:1.625;}
#abframe_mark .content{position:relative;}
#abframe_mark .imgbox{position:relative;width:76%;margin:0;}
#abframe_mark .imgbox picture img{width:initial;}
#abframe_mark .introbox{position:absolute;right:0;top:50%;transform:translate(0,-50%);width:380px;}
#abframe_mark .introbox .num{display:block;font-size:175px;line-height:1;font-family:var(--font-b);color:#dbdbdb;margin-bottom:-100px;letter-spacing:-0.02em;text-indent:-0.02em;}
#abframe_mark .introbox .num *{line-height:1;}
#abframe_mark .introbox .num_tit{font-size:36px;line-height:1.2;color:var(--color-main);font-family:var(--font-b);margin-bottom:5px;}
#abframe_mark .introbox p{color:#111;line-height:1.75;}
#abframe_mark .introbox .morelink{margin-top:50px;background-color:transparent;color:#111;border:1px solid #111;}
#abframe_mark .introbox .morelink i{color:var(--color-main);}
#abframe_mark .introbox .morelink:hover{color:#fff;border-color:#406bcc;}
#abframe_mark .introbox .morelink:hover i{color:#fff;}
#abframe_mark .pointimg{position:absolute;width:20px;height:20px;top:44%;left:78%;}
#abframe_mark .imgbox .point{position:absolute;z-index:1;border-radius:50%;}
#abframe_mark .imgbox .point i{width:16px;height:16px;border-radius:50px;background-color:transparent;position:relative;z-index:1;display:block;border:5px solid var(--color-main);}
#abframe_mark .imgbox .point.active:before{content:"";}
#abframe_mark .imgbox .point1{top:23%;left:73.5%;}
#abframe_mark .imgbox .point2{top:33%;left:49%;}
#abframe_mark .imgbox .point3{top:33%;left:56%;}
#abframe_mark .imgbox .point4{top:34%;left:59%;}
#abframe_mark .imgbox .point5{top:43%;left:44.5%;}
#abframe_mark .imgbox .point6{top:41%;left:50%;}
#abframe_mark .imgbox .point7{top:43%;left:53%;}
#abframe_mark .imgbox .point8{top:46%;left:57.5%;}
#abframe_mark .imgbox .point9{top:46%;left:63%;}
#abframe_mark .imgbox .point10{top:47.5%;left:50.5%;}
#abframe_mark .imgbox .point11{top:52%;left:55.5%;}
#abframe_mark .imgbox .point12{top:65%;left:54%;}
#abframe_mark .imgbox .point13{top:56%;left:77%;}
#abframe_mark .imgbox .point14{top:58%;left:79%;}
#abframe_mark .imgbox .point15{top:65.5%;left:76.5%;}
#abframe_mark .imgbox .point16{top:66%;left:82.5%;}
#abframe_mark .imgbox .point17{top:79%;left:86%;}
#abframe_mark .imgbox .point18{top:92.5%;left:95.5%;}
#abframe_mark .imgbox .point.active{
    animation: pointblink 1s infinite;
}
#abframe_mark .imgbox .point.active:before{content:"";width:16px;height:16px;border-radius:50%;position:absolute;left:50%;top:50%;transform:translate(-50%,-50%);}
#abframe_mark .imgbox .point.active i{background-color:#fff;border-color:var(--color-normal);}
@keyframes pointblink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

#abframe_work{}
#abframe_work .item{position:relative;cursor:pointer;}
#abframe_work .item .txt{position:absolute;left:0;top:0;bottom:0;right:0;background:rgba(38,80,178,0.29);display:flex;align-items:center;justify-content:center;padding:15px;flex-flow:column;transform:scale(0);transition:all 0.3s;pointer-events:none;}
#abframe_work .item .txt i{font-size:50px;line-height:1;color:#fff;display:block;margin-bottom:45px;}
#abframe_work .item .txt p{font-size:18px;color:#fff;}
#abframe_work .item:hover .txt{transform:scale(1);}
#abframe_work .morelink{margin-top:50px;}
#abframe_work .list{position:relative;}
#abframe_work .btnlist .swbtn{display:inline-block;text-align:center;position:absolute;top:calc(50% - 20px);z-index:1;color:#dbdbdb;}
#abframe_work .btnlist .swbtn>i{font-size:40px;line-height:1;display:block;}
#abframe_work .btnlist .swbtn.btn-prev{left:calc(-3vw);transform:rotate(90deg);}
#abframe_work .btnlist .swbtn.btn-next{right:calc(-3vw);transform:rotate(-90deg);}
#abframe_work .btnlist .swbtn:hover{color:var(--color-main);}

#abframe_ce{background-color:#f7f9fc;}
#abframe_ce .left{width:50%;margin:0;}
#abframe_ce .right{width:45.4%;margin:0;padding-right:100px;}
#abframe_ce .right .titbox{margin-bottom:30px;}
#abframe_ce .right .line{margin-left:0;margin-top:30px;}
#abframe_ce .remark{font-size:18px;line-height:2;margin-bottom:35px;}

#abframe_adv .item{width:calc((100% - 75px)/4);margin:0;box-shadow:10px 10px 24px rgba(0,0,0,0.1);padding:35px 30px;}
#abframe_adv .item i{font-size:55px;line-height:1;background:linear-gradient(to bottom, #759af2, var(--color-main));-webkit-background-clip: text;background-clip: text;-webkit-text-fill-color: transparent;display:block;margin-bottom:25px;}
#abframe_adv .item .tit_adv{font-size:26px;line-height:1.26;color:#1d1d1d;font-family:var(--font-b);margin-bottom:18px;}
#abframe_adv .item p{font-size:15px;line-height:1.7333;}
#abframe_adv .morelink{margin-top:55px;}
#abframe_adv .morelink i{font-size:25px;}
@media (min-width:1080px) and (max-width:1439px){
    .abframe .titbox .tit{font-size:30px;}

    #abframe_ab .intro1{margin-bottom:30px;}
    #abframe_ab .txtcontent .tit_ab{font-size:36px;}
    #abframe_ab .txtcontent .remark{line-height:1.8;}

    #abframe_mark .titbox .remark{font-size:14px;}
    #abframe_mark .introbox{width:300px;}
    #abframe_mark .introbox .num{font-size:100px;margin-bottom:-40px;}
    #abframe_mark .introbox .num_tit{font-size:30px;}
    #abframe_mark .introbox p{font-size:15px;}
    #abframe_mark .introbox .morelink{margin-top:30px;}
    
    #abframe_work .btnlist .swbtn.btn-prev{left:0;}
    #abframe_work .btnlist .swbtn.btn-next{right:0;}

    #abframe_ce .right{padding-right:0;}
    #abframe_ce .remark{font-size:16px;}

    #abframe_adv .item{padding:30px 20px;}
    #abframe_adv .item .tit_adv{font-size:22px;}
    #abframe_adv .item p{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .abframe .titbox .tit{font-size:24px;}

    #abframe_ab .intro1{flex-flow:column;}
    #abframe_ab .intro1 .imgbox{width:100%;}
    #abframe_ab .txtcontent{width:100%;margin-top:25px;}
    #abframe_ab .txtcontent .tit_ab{font-size:24px;}
    #abframe_ab .txtcontent .remark{line-height:1.8;}
    #abframe_ab .intro2{margin-top:30px;}
    #abframe_ab .intro2 .imgbox{width:100%;}
    #abframe_ab .txtcontent .numlist .item{width:32%;}
    #abframe_ab .txtcontent .numlist .item .num{font-size:30px;}
    #abframe_ab .txtcontent .numlist .item p{font-size:13px;}

    #abframe_mark{display:none;}
    #abframe_mark .titbox .left{width:100%;}
    #abframe_mark .titbox .remark{max-width:100%;margin-top:10px;}

    #abframe_work .morelink{margin-top:30px;}
    #abframe_work .btnlist .swbtn.btn-prev{left:0;}
    #abframe_work .btnlist .swbtn.btn-next{right:0;}

    #abframe_ce .left{width:100%;}
    #abframe_ce .right{width:100%;margin-top:25px;padding-right:0;}
    #abframe_ce .right .line{margin-top:10px;margin-bottom:10px;}
    #abframe_ce .remark{font-size:14px;}

    #abframe_adv .item{width:100%;padding:25px 20px;margin-bottom:25px;box-shadow:0 0 15px rgba(0,0,0,0.1);}
    #abframe_adv .item i{font-size:45px;margin-bottom:15px;}
    #abframe_adv .item .tit_adv{font-size:20px;margin-bottom:10px;}
    #abframe_adv .item p{font-size:14px;}
    #abframe_adv .morelink{margin-top:20px;}
}

#soframe1 .item{width:33%;margin:0;text-align:center;padding:0 45px;}
#soframe1 .item .imgbox{width:228px;height:228px;display:flex;align-items:center;justify-content:center;background-color:#f4f5f7;border-radius:50%;position:relative;margin-bottom:20px;}
#soframe1 .item .imgbox:before{content:"";width:100%;height:100%;background-color:#333;position:absolute;left:2px;top:2px;border-radius:50%;z-index:-1;}
#soframe1 .item .tit_so{font-size:20px;font-family:var(--font-b);margin-bottom:15px;}
#soframe1 .item .remark{font-size:14px;line-height:30px;}

#soframe2{background-color:#f4f5f7;}
#soframe2 .item{width:calc((100% - 70px)/3);margin:0 35px 35px 0;background-color:#fff;position:relative;}
#soframe2 .item:nth-child(3n){margin-right:0;}
#soframe2 .item .tit_so{position:absolute;left:0;bottom:0;width:100%;padding:13px;text-align:center;color:#fff;font-size:18px;line-height:1.6667;background-color:#6784c9;font-family:var(--font);}
@media (min-width:1080px) and (max-width:1439px) {
    #soframe1 .item{padding:0 20px;}
    #soframe1 .item .imgbox{width:180px;height:180px;}
    #soframe1 .item .imgbox img{width:90px;height:90px;}
    #soframe1 .item .tit_so{font-size:18px;}
    #soframe1 .item .remark{line-height:1.8;}

    #soframe2 .item{width:calc((100% - 30px)/3);margin:0 15px 15px 0;}
    #soframe2 .item .tit_so{font-size:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #soframe1 .item{width:100%;padding:0 15px;margin-bottom:25px;}
    #soframe1 .item .imgbox{width:120px;height:120px;}
    #soframe1 .item .imgbox img{width:60px;height:60px;}
    #soframe1 .item .tit_so{font-size:16px;}
    #soframe1 .item .remark{line-height:1.8;}
    
    #soframe2 .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    #soframe2 .item:nth-child(3n){margin-right:15px;}
    #soframe2 .item:nth-child(2n){margin-right:0;}
    #soframe2 .item .tit_so{font-size:14px;position:relative;padding:8px;line-height:1.5;}
}




#FAQPage{margin-bottom:30px;}
.faqlist dl{transition:all 0.3s;overflow:hidden;padding:0;position:relative;cursor:pointer;border:1px solid #fff;border-radius:8px;margin-bottom:20px;}
.faqlist dl>dt{font-size:20px;line-height:30px;position:relative;color:#fff;padding:18px 50px 18px 22px;}
.faqlist dl>dt:after{content:"\e795";font-family:iconfont;font-size:30px;line-height:30px;text-align:center;position:absolute;right:20px;top:18px;transition:all 0.3s;color:#fff;}
.faqlist dl>dd{overflow:hidden;font-size:16px;line-height:26px;position:relative;transition:all 0.3s;color:#fff;height:0;padding:0 22px;}
.faqlist dl.active>dt{color:var(--color);}
.faqlist dl.active>dt:after{content:"\e794";}
.faqlist dl.active>dd{height:auto;padding:27px 22px;border-top:1px solid #fff;}
@media (min-width:1080px) and (max-width:1439px) {
    .faqlist dl>dt{font-size:18px;}
    .faqlist dl>dd{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #faqframe{margin-top:30px;}
    .faqlist dl{}
    .faqlist dl>dt::before{line-height:24px;}
    .faqlist dl>dt::after{line-height:24px;right:10px;}
    .faqlist dl:after{line-height:21px;right:10px;top:15px;}
    .faqlist dl>dt{font-size:14px;line-height:24px;}
    .faqlist dl>dd{font-size:13px;line-height:21px;padding-right:15px;}
    .faqlist dl>dd::before{line-height:24px;}
    .faqlist dl.active>dd{margin-top:8px;}
}

.faqlist2 dl{transition:all 0.3s;overflow:hidden;padding:20px 0 20px 0;position:relative;cursor:pointer;background-color:#fafafa;counter-increment:number;padding-left:80px;margin-bottom:14px;}
.faqlist2 dl:before{content:counter(number);font-size:18px;font-weight:bold;position:absolute;left:0;top:0;width:60px;height:100%;background-color:#f2f2f2;text-align:center;padding-top:20px;border-right:1px solid #dadada;}
.faqlist2 dl>dt{font-size:16px;line-height:30px;position:relative;color:#4b5563;font-family:var(--font);font-weight:bold;padding-right:40px;}
.faqlist2 dl>dt:after{content:"\e605";font-family:iconfont;font-size:16px;line-height:30px;text-align:center;position:absolute;right:20px;top:0;transition:all 0.3s;color:#bebebe;}
.faqlist2 dl>dd{overflow:hidden;font-size:16px;line-height:26px;position:relative;transition:all 0.3s;color:#111827;height:0;}
.faqlist2 dl.active:before{color:var(--color-main);}
.faqlist2 dl.active>dt{color:var(--color-main);}
.faqlist2 dl.active>dt:after{content:"\eaf5";}
.faqlist2 dl.active>dd{height:auto;margin-top:15px;padding-bottom:5px;}
@media (min-width:1080px) and (max-width:1439px) {
    .faqlist2 dl>dt{font-size:16px;}
    .faqlist2 dl>dd{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .faqlist2 dl{}
    .faqlist2 dl>dt::before{line-height:24px;}
    .faqlist2 dl>dt::after{line-height:24px;right:10px;top:0px;}
    .faqlist2 dl:after{line-height:21px;right:10px;top:15px;}
    .faqlist2 dl>dt{font-size:14px;line-height:24px;}
    .faqlist2 dl>dd{font-size:13px;line-height:21px;padding-right:15px;}
    .faqlist2 dl>dd::before{line-height:24px;}
    .faqlist2 dl.active>dd{margin-top:8px;}
}

#DownloadPage{}
#DownloadPage .item{width:calc((100% - 105px)/4);margin:0 35px 35px 0;background-color:#eee;border:1px solid #e6eaf2;}
#DownloadPage .item:nth-child(4n){margin-right:0;}
#DownloadPage .item .img{}
#DownloadPage .item .txt{padding-top:10px;}
#DownloadPage .item .txt p{font-size:18px;line-height:30px;color:var(--color);margin-bottom:15px;text-align:center;}
#DownloadPage .item .txt a.morelink{padding:4px 15px;border-radius:4px;font-size:16px;text-transform:capitalize;margin-right:auto;}
#DownloadPage .item .txt a.morelink>i{font-size:18px;margin-right:8px;margin-left:0;}
#DownloadPage .item .downbox{align-items:center;}
#DownloadPage .item .downbox span{padding:6px 13px;border:1px solid var(--color-main);color:var(--color-main);border-radius:4px;}
#DownloadPage .item .downbox span.ext{border-color:#6b7280;color:#6b7280;margin-left:8px;}
@media (min-width:1080px) and (max-width:1439px){
    #DownloadPage .item{width:calc((100% - 80px)/3);margin:0 40px 40px 0;}
    #DownloadPage .item .txt p{font-size:16px;line-height:1.6;}
}
@media (min-width:1px) and (max-width:1079px) {
    #DownloadPage .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    #DownloadPage .item:nth-child(2n){margin-right:0;}
    #DownloadPage .item .txt{padding:10px 0;}
    #DownloadPage .item .txt p{font-size:14px;line-height:1.6;margin-bottom:10px;}
    #DownloadPage .item .txt .morelink{min-width:initial;padding:5px 10px;font-size:13px;}
    #DownloadPage .item .txt a.downlink span{font-size:13px;}
    #DownloadPage .item .downbox span{display:none;}
}


.GalleryList2 .item{width:calc((100% - 90px)/4);margin:0 30px 30px 0;display:block;padding:5px;border:1px solid #ddd;transition:all 0.3s;}
.GalleryList2 .item:nth-child(4n){margin-right:0;}
.GalleryList2 .item p{text-align:center;padding-top:10px;padding-bottom:5px;}
.GalleryList2 .item:hover{box-shadow:0 0 15px #ddd;}
@media (min-width:1080px) and (max-width:1439px) {
    .GalleryList2 .item{width:calc((100% - 60px)/4);margin:0 20px 20px 0;padding:5px;}
    .GalleryList2 .item p{margin-top:8px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .GalleryList2 .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;padding:5px;}
    .GalleryList2 .item:nth-child(4n){margin-right:15px;}
    .GalleryList2 .item:nth-child(2n){margin-right:0;}
    .GalleryList2 .item p{margin-top:8px;font-size:14px;}
}

#GalleryPage .cecatelist{margin-bottom:60px;}
#GalleryPage .cecatelist .link{border:1px solid var(--color-main);padding:7px;text-align:center;line-height:30px;font-size:16px;transition:all 0.3s;min-width:20%;border-radius:4px;margin:0 9px;}
#GalleryPage .cecatelist .link.active,#GalleryPage .cecatelist .link:hover{background-color:var(--color-main);color:#fff;}
.GalleryList1{}
.GalleryList1 .item{width:calc((100% - 100px)/6);margin:0 20px 20px 0;display:block;padding:5px;border:1px solid #ddd;transition:all 0.3s;}
.GalleryList1 .item:nth-child(6n){margin-right:0;}
.GalleryList1 .item p{text-align:center;padding-top:10px;padding-bottom:5px;}
.GalleryList1 .item:hover{box-shadow:0 0 15px #ddd;}
@media (min-width:1080px) and (max-width:1439px) {
    .GalleryList1 .item{width:calc((100% - 60px)/4);}
    .GalleryList1 .item:nth-child(6n){margin-right:20px;}
    .GalleryList1 .item:nth-child(4n){margin-right:0;}
}
@media (min-width:1px) and (max-width:1079px) {
    .GalleryList1 .item{width:calc((100% - 20px)/2);}
    .GalleryList1 .item:nth-child(2n){margin-right:0;}
}

#Mftframe_1 .flex_between{align-items:center;}
#Mftframe_1 .left{width:46.38%;margin:0;}
#Mftframe_1 .left .imgbox{border-radius:8px;overflow:hidden;}
#Mftframe_1 .right{width:50%;margin:0;}
#Mftframe_1 .right .titbox{max-width:520px;margin-left:0;margin-bottom:25px;}
#Mftframe_1 .right .remark{line-height:1.875;color:#666;}
#Mftframe_1 .right .remark b{color:#666;font-weight:normal;}
#Mftframe_2{background-color:#f5f5f5;}
#Mftframe_2 .item{width:calc((100% - 54px)/4);margin:0 18px 40px 0;background-color:#fff;border-radius:4px;cursor:pointer;}
#Mftframe_2 .item:nth-child(4n){margin-right:0;}
#Mftframe_2 .item .img{border-radius:4px;}
#Mftframe_2 .item .txt{padding:25px;}
#Mftframe_2 .item .txt .tit{margin-bottom:30px;font-size:18px;}
#Mftframe_2 .item .txt .counter span{margin:0;font-size:50px;line-height:1;-webkit-text-stroke:1px #ededed;-webkit-text-fill-color:transparent;text-stroke:1px #ededed;text-fill-color:transparent;font-family:var(--font-bold);}
#Mftframe_2 .item .txt .counter .line{width:210px;height:1px;background-color:#ededed;}
#Mftframe_2 .item:hover .txt .tit{color:var(--color-main);transition: color 0.3s ease;}
@media (min-width:1080px) and (max-width:1439px) {
    #Mftframe_2 .item .txt{padding:15px;}
    #Mftframe_2 .item .txt .tit{font-size:16px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #Mftframe_1 .left{width:100%;}
    #Mftframe_1 .right{width:100%;margin-top:20px;}

    #Mftframe_2 .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    #Mftframe_2 .item:nth-child(2n){margin-right:0;}
    #Mftframe_2 .item .txt{padding:15px 10px;}
    #Mftframe_2 .item .txt .tit{font-size:16px;margin-bottom:15px;}
}


#seframe1 .titbox{max-width:920px;}
#seframe1 .titbox .tit{font-size:36px;}
#seframe1 .list .item{width:calc((100% - 88px)/5);margin:0;border:1px solid #e5eaf2;padding:40px 15px 30px 25px;display:flex;flex-flow:column;justify-content:space-between;}
#seframe1 .list .item .number{display:block;font-size:48px;line-height:1;font-family:var(--font-b);color:var(--color-main);margin:0 0 20px;}
#seframe1 .list .item .tit_se{font-size:20px;font-family:var(--font-b);margin:0 0 15px;}
#seframe1 .list .item .remark{font-size:16px;line-height:1.625;margin-top:0;margin-bottom:auto;}
#seframe1 .list .item i{margin:35px 0 0;display:block;font-size:70px;color:#ccc;line-height:1;}

#seframe2{background-color:#f4f5f7;}
#seframe2 .flex_vcenter{flex-flow:row-reverse;}
.seframe2 .txtcontent{width:37.5%;margin:0;}
.seframe2 .item{counter-increment:number;}
.seframe2 .item:not(:last-child){margin-bottom:35px;}
.seframe2 .item .tit_se{position:relative;padding-left:24px;font-size:24px;line-height:2;color:var(--color-main);font-family:var(--font-b);margin-bottom:20px;}
.seframe2 .item .tit_se:before{content: counter(number, decimal-leading-zero);font-size:48px;line-height:1;color:#e7eaf1;font-family:var(--font-b);font-style:italic;position:absolute;left:0;top:0;z-index:-1;}
.seframe2 .item p{position:relative;padding-left:48px;font-size:16px;line-height:24px;color:#666;}
.seframe2 .item p:not(:last-child){margin-bottom:12px;}
.seframe2 .item p:before{content:"";width:7px;height:7px;background-color:var(--color-main);border-radius:50%;position:absolute;left:24px;top:8.5px;}
.seframe2 .imgbox{width:53.5%;margin:0;text-align:right;}
@media (min-width:1080px) and (max-width:1439px) {
    #seframe1 .list .item{width:calc((100% - 60px)/5);padding:20px 15px;}
    #seframe1 .list .item .number{font-size:40px;margin-bottom:10px;}
    #seframe1 .list .item .tit_se{font-size:18px;margin-bottom:6px;}
    #seframe1 .list .item .remark{font-size:14px;line-height:1.6;}
    #seframe1 .list .item i{margin-top:20px;font-size:55px;}

    .seframe2 .txtcontent{width:42%;}
    .seframe2 .item:not(:last-child){margin-bottom:20px;}
    .seframe2 .item .tit_se{font-size:20px;margin-bottom:10px;}
    .seframe2 .item .tit_se::before{font-size:40px;}
    .seframe2 .item p:not(:last-child){margin-bottom:8px;}
    .seframe2 .item p{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #seframe1 .titbox .tit{font-size:24px;}

    #seframe1 .list .item{width:100%;padding:20px 15px;margin-bottom:20px;}
    #seframe1 .list .item .number{font-size:40px;margin-bottom:10px;}
    #seframe1 .list .item .tit_se{font-size:18px;margin-bottom:6px;}
    #seframe1 .list .item .remark{font-size:14px;line-height:1.6;}
    #seframe1 .list .item i{margin-top:20px;font-size:55px;}
    
    #seframe2 .flex_vcenter{flex-flow:column;}
    .seframe2 .txtcontent{width:100%;margin-top:25px;}
    .seframe2 .item:not(:last-child){margin-bottom:20px;}
    .seframe2 .item .tit_se{font-size:20px;margin-bottom:10px;line-height:30px;}
    .seframe2 .item .tit_se::before{font-size:40px;line-height:30px;}
    .seframe2 .item p:not(:last-child){margin-bottom:8px;}
    .seframe2 .item p{font-size:14px;}
    .seframe2 .imgbox{width:100%;}
}



/*联系我们*/
#ContactPage{position:relative;}
#contact{width:46%;margin:0;}
#contact .titbox .tit{margin-bottom:15px;}
#contact .contlist{margin-bottom:60px;}
#contact .contbox{position:relative;min-height:24px;padding-left:40px;}
#contact .contbox:not(:last-child){margin-bottom:24px;}
#contact .contbox .ico{position:absolute;left:0;top:0;}
#contact .contbox .ico i{display:block;font-size:24px;line-height:1;color:var(--color-main);}
#contact .contbox .tit_cont{display:block;font-size:16px;line-height:24px;font-family:var(--font);margin-bottom:5px;}
#contact .contbox a{font-size:18px;line-height:24px;display:block;color:#333;font-weight:bold;font-family:var(--font);}
#contact .contbox p.address{font-size:18px;line-height:24px;color:#333;font-weight:bold;font-family:var(--font);}
#contact .contbox a:hover{text-decoration:underline;color:var(--color-main);}
#ContactPage .sharelist{}
#ContactPage .sharelist .sharename{font-size:24px;line-height:1.25;color:#333;margin-bottom:20px;font-family:var(--font-b);font-weight:bold;}
#ContactPage .sharelist a{width:48px;height:48px;line-height:48px;text-align:center;background-color:#e5ebf5;color:var(--color-main);}
#ContactPage .sharelist a:not(:first-child){margin-left:10px;}
#ContactPage .sharelist a>i{display:block;font-size:24px;}
#ContactPage .sharelist a.facebook:hover{background-color:#3c5a99;color:#fff;}
#ContactPage .sharelist a.linkedin:hover{background-color:#0077b5;color:#fff;}
#ContactPage .sharelist a.twitter:hover{background-color:#000000;color:#fff;}
#ContactPage .sharelist a.youtube:hover{background-color:#d54029;color:#fff;}
#ContactPage .sharelist a.pinterest:hover{background-color:#e10600;color:#fff;}
#ContactPage .sharelist a.instagram:hover{background-color:#cf3d6b;color:#fff;}
#ContactPage .sharelist a.whatsapp:hover{background-color:#25d366;color:#fff;}
#ContactPage .sharelist a.tiktok:hover{background-color:#000;color:#fff;}
@media (min-width:1080px) and (max-width:1439px) {
    #contact .contbox{}
    #contact .contbox .list a{font-size:16px;margin-bottom:5px;}
    #contact .contbox p.address{font-size:16px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #contact{width:100%;}
    #contact .contlist{margin-bottom:30px;}
    #contact .contbox:not(:last-child){margin-bottom:20px;}
    #contact .contbox .tit_cont{font-size:14px;margin-bottom:5px;}
    #contact .contbox a{font-size:14px;line-height:24px;}
    #contact .contbox p.address{font-size:14px;}
    #ContactPage .sharelist .sharename{font-size:16px;}
    #ContactPage .sharelist a{width:36px;height:36px;line-height:36px;}
    #ContactPage .sharelist a>i{font-size:20px;}
}

#feedback{width:50%;margin:0;background-color:#f2f4f8;padding:40px 35px 75px;}
#feedback .titbox{margin-bottom:25px;}
#feedback .titbox .tit{font-size:24px;}
#feedback .titbox .slg{margin-top:10px;}
#feedback .feedbackbox ul{margin-bottom:28px;}
#feedback .feedbackbox li:not(:last-child){margin-bottom:15px;}
#feedback .feedbackbox label{display:block;font-size:15px;margin-bottom:0;line-height:24px;font-family:var(--font);display:none;}
#feedback .feedbackbox .input{background-color:#fff;border-color:#fff;}
#feedback .feedbackbox .input::placeholder{color:#999;font-size:14px;line-height:24px;display:none;}
#feedback .feedbackbox textarea.input{height:130px;}
@media (min-width:1080px) and (max-width:1439px) {
    #feedback{padding:30px 25px 50px;}
    #feedback .titbox{margin-bottom:20px;}

}
@media (min-width:1px) and (max-width:1079px) {
    #feedback{width:100%;margin-top:30px;padding:20px;}
    #feedback .titbox{margin-bottom:10px;}
    #feedback .titbox .tit{font-size:20px;}
    #feedback .feedbackbox label{font-size:14px;}
    #feedback .feedbackbox li:not(:last-child){margin-bottom:15px;}
    #feedback .feedbackbox .input{height:45px;font-size:14px;}
    #feedback .feedbackbox textarea.input{height:90px;}
    #feedback .feedbackbox .submit{margin-top:15px;}
    
}

#ConteTeam{padding-bottom:140px;}
#ConteTeam .left{width:48%;margin:0;}
#ConteTeam .titbox{margin-bottom:30px;}
#ConteTeam .titbox .line{margin-left:0;}
#ConteTeam .left .list{margin-bottom:40px;}
#ConteTeam .left .item{margin-bottom:25px;}
#ConteTeam .left .item .tit{font-size:18px;font-family:var(--font);font-weight:bold;margin-bottom:3px;}
#ConteTeam .left .item p{color:#444;}
#ConteTeam .left .morelink{padding:5px 33px 5px 33px;background:#444;}
#ConteTeam .right{width:50%;margin:0;}
#ConteTeam .swiper{border-radius:8px;}
#ConteTeam .tipbox{position:absolute;left:0;bottom:0;width:192px;height:142px;background-color:rgba(216,33,40,0.87);z-index:1;display:flex;justify-content:center;align-items:center;flex-flow:column;}
#ConteTeam .tipbox span{font-size:30px;font-family:var(--font-bold);color:#fff;line-height:1;margin-bottom:10px;}
#ConteTeam .tipbox p{font-size:14px;color:#fff;}
#ConteTeam .swiper .swbtn{display:inline-block;text-align:center;transition:all 0.3s;color:#fff;position:absolute;top:calc(50% - 15px);line-height:30px;z-index:1;}
#ConteTeam .swiper .swbtn>i{font-size:30px;display:block;}
#ConteTeam .swiper .swbtn.btn-prev{left:5px;}
#ConteTeam .swiper .swbtn.btn-next{right:5px;transform:rotate(-180deg);}
@media (min-width:1px) and (max-width:1079px){
    #ConteTeam{padding-block:50px;}
    #ConteTeam .titbox{margin-bottom:20px;}
    #ConteTeam .left{width:100%;}
    #ConteTeam .left .list{margin-block:20px;}
    #ConteTeam .left .item{margin-bottom:15px;}
    #ConteTeam .right{width:100%;margin-top:20px;}

    #ConteTeam .tipbox{height:100px;width:150px;}
    #ConteTeam .tipbox span{font-size:24px;margin-bottom:5px;}
    #ConteTeam .tipbox p{font-size:13px;}
}

/*分类页面*/
#nbframe{background:#00503c url(/dist/images/cate_bg.png) no-repeat bottom right 30%;padding-top:65px;padding-bottom:65px;}
#nbframe .left{width:50%;margin:0;}
#nbframe .left .subtit{display:inline-block;font-size:16px;line-height:1.875;padding:5px 15px;background-color:rgba(255,255,255,0.13);border-radius:50px;color:#fff;margin-bottom:10px;}
#nbframe .left .tit{font-size:40px;color:#fff;}
#nbframe .left .slg{font-size:18px;line-height:30px;color:#cfe3dd;}
#nbframe .right{width:50%;margin:0;display:flex;justify-content:flex-end;align-items:center;}
#nbframe .tech{margin:0;text-align:center;}
#nbframe .tech:not(:last-child){border-right:1px solid #337b6a;margin-right:40px;padding-right:40px;}
#nbframe .tech span{color:#fff;font-size:36px;font-family:var(--font-bold);}
#nbframe .tech p{color:#87b9ac;}
#nbframe .ntitbox{max-width:600px;}
#nbframe .ntitbox span{display:inline-block;font-size:16px;line-height:30px;color:#fff;text-align:center;text-transform:uppercase;background-color:#216755;padding:5px 25px;border-radius:50px;margin-bottom:20px;}
#nbframe .ntitbox .tit{font-size:40px;line-height:1.4;position:relative;margin-bottom:15px;font-weight:bold;color:#fff;}
#nbframe .ntitbox .slg{font-size:16px;line-height:1.625;color:#b3cfc8;}
#nbframe.downpage{padding-top:30px;padding-bottom:40px;}
#nbframe.downpage .flex_between{align-items:center;}
#nbframe.downpage .right .imgbox{text-align:right;margin:0;padding-right:10%;}
#nbframe.downpage .ntitbox{max-width:495px;margin:0 0 50px;}
#nbframe.downpage .tech:not(:last-child){margin-right:50px;padding-right:50px;}
#nbframe.contpage .left .subtit{padding:5px 25px;}
#nbframe.contpage .left .slg{max-width:550px;margin-left:0;}
@media (min-width:1px) and (max-width:1079px){
    #nbframe .left{width:100%;}
    #nbframe .left .subtit{font-size:14px;margin-bottom:5px;}
    #nbframe .left .tit{font-size:30px;}
    #nbframe .right{width:100%;margin-top:10px;justify-content:flex-start;}
    #nbframe .tech:not(:last-child){padding-right:20px;margin-right:20px;}
    #nbframe .tech span{font-size:24px;}


    #nbframe{padding-top:30px;padding-bottom:30px;}
    #nbframe .ntitbox span{font-size:14px;margin-bottom:6px;}
    #nbframe .ntitbox .tit{font-size:24px;margin-bottom:8px;}
    #nbframe .ntitbox .slg{font-size:14px;}

    #nbframe.downpage .ntitbox{margin-bottom:20px;}
    #nbframe.downpage .tech:not(:last-child){margin-right:30px;padding-right:30px;}
    #nbframe.downpage .right{display:none;}

    #nbframe.contpage .left .slg{font-size:14px;line-height:1.6;}
}

#cateframe1{background:#fafafa;}
#cateframe1 .titbox .slg{width:fit-content;}
#cateframe1 .list{position:relative;}
#cateframe1 .item{text-align:center;max-width:400px;margin:0 auto;display:block;}
#cateframe1 .item:nth-child(1){margin-bottom:50px;}
#cateframe1 .item .img{width:300px;height:300px;border-radius:8px;overflow:hidden;position:relative;}
#cateframe1 .item .img::after {content: '';position: absolute;left: 0;top: 0;width: 100%;height: 100%;border-radius: 8px;box-shadow: inset 0 0 9px rgba(0,0,0,0.17);pointer-events: none;z-index: 2;}
#cateframe1 .item .txt{padding-top:15px;}
#cateframe1 .item .txt .tit_cate{font-size:26px;line-height:30px;}
#cateframe1 .item .txt .remark{font-size:15px;line-height:2;height:120px;margin-top:5px;color:#666;}
#cateframe1 .btnlist{margin-top:35px;align-items:center;}
#cateframe1 .btnlist .swbtn{line-height:1;margin:0 5px;}
#cateframe1 .btnlist .swbtn i{font-size:24px;line-height:1;display:block;}
#cateframe1 .btnlist .swbtn.btn-next i{transform:rotateY(180deg);}
#cateframe1 .btnlist .swiper-pagination{position:relative;margin:0;width:initial;top:initial;left:initial;bottom:initial;font-size:0;}
#cateframe1 .btnlist .swiper-pagination .swiper-pagination-bullet{width:8px;height:8px;opacity:1;background-color:#bbb;margin:0 5px;}
#cateframe1 .btnlist .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{background-color:var(--color-main);}

#cateframe2 .titbox{max-width:850px;margin:0 auto 50px;}
#cateframe2 .titbox .slg{width:fit-content;}
#cateframe2 .titbox .tit b{display:inline-block;}
#cateframe2 .list{margin-bottom:-45px;}
#cateframe2 .item{width:calc((100% - 45px)/2);margin:0 45px 45px 0;box-shadow:0 0 29px rgba(0,0,0,0.11);padding:30px 30px 30px 95px;position:relative;cursor:pointer;}
#cateframe2 .item:nth-child(2n){margin-right:0;}
#cateframe2 .item i{font-size:48px;line-height:1;color:var(--color-main);position:absolute;left:30px;top:40px;transition:all 0.3s;}
#cateframe2 .item .tit_adv{font-size:26px;line-height:1.2;margin-bottom:10px;}
#cateframe2 .item .remark{line-height:1.875;}
#cateframe2 .item:hover i{transform:scaleX(-1);}

#cateframe3{background-repeat:no-repeat;background-position:center;background-attachment:fixed;}
#cateframe3 .titbox{margin-bottom:0;}
#cateframe3 .titbox .tit{font-family:var(--font-bold);margin-bottom:10px;font-size:36px;color:#222;}
#cateframe3 .remark{margin-bottom:30px;color:#333;}
#cateframe3 .morelink{padding:10px 45px;}

#cateframe4{}
#cateframe4 .titbox .slg{width:fit-content;}
#cateframe4 .titbox .tit b{display:inline-block;}
#cateframe4 .item{position:relative;width:calc((100% - 70px)/3);margin:0 35px 35px 0;border-radius:8px;overflow:hidden;}
#cateframe4 .item:nth-child(3n){margin-right:0;}
#cateframe4 .item .txt{padding:10px 0;position:absolute;left:0;top:0;width:100%;height:100%;padding:35px;background-color:rgba(0,0,0,0.34);display:flex;flex-flow:column;justify-content:center;text-align:center;}
#cateframe4 .item .title{font-size:24px;font-family:var(--font-bold);color:#fff;width:100%;margin-bottom:5px;}
#cateframe4 .item .remark{line-height:1.5;color:#fff;width:100%;transition: height 0.3s ease-in-out;display:none;}
#cateframe4 .item:hover .title{animation: _height2 1s ease-out 0.3s both;}
#cateframe4 .item:hover .remark{display:block;animation: _height 1s ease-out 0.3s both;}
@-webkit-keyframes _height {
  from { transform:translateY(100%);opacity:0;}
  to { transform: translateY(0);opacity:1;}
}
@-webkit-keyframes _height2 {
  from { transform:translateY(100%);}
  to { transform: translateY(0);}
}
@media (min-width:1080px) and (max-width:1439px) {
    #cateframe2 .list{margin-bottom:-20px;}
    #cateframe2 .item{width:calc((100% - 20px)/2);margin:0 20px 20px 0;}
    #cateframe4 .item{width:calc((100% - 40px)/3);margin:0 20px 20px 0;}
}
@media (min-width:1px) and (max-width:1079px) {
    #cateframe1 .item{width:100%;}
    #cateframe1 .item:nth-child(1){margin-bottom:20px;}
    #cateframe1 .item .img{width:100%;height:auto;}
    #cateframe1 .item .txt .tit_cate{font-size:18px;}
    #cateframe1 .item .txt .remark{font-size:14px;line-height:20px;height:80px;}
    #cateframe1 .btnlist{margin-top:20px;}
    
    #cateframe2 .list{margin-bottom:-20px;}
    #cateframe2 .item{width:100%;margin:0 0 20px;padding:20px 20px 20px 70px;}
    #cateframe2 .item i{left:15px;top:25px;font-size:40px;}
    #cateframe2 .item .tit_adv{font-size:20px;}
    #cateframe2 .item .remark{line-height:1.6;}

    #cateframe3 .titbox .tit{font-size:24px;}
    #cateframe4 .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    #cateframe4 .item:nth-child(3n){margin-right:15px;}
    #cateframe4 .item:nth-child(2n){margin-right:0;}
    #cateframe4 .item .txt{padding:10px;}
    #cateframe4 .item .title{font-size:14px;}
}

#ApplicationPage .item{position:relative;width:calc((100% - 45px)/2);margin:0 45px 45px 0;position:relative;border-radius:8px;overflow:hidden;}
#ApplicationPage .item:nth-child(2n){margin-right:0;}
#ApplicationPage .item .img{border:1px solid #ddd;}
#ApplicationPage .item .img img{width:100%;}
#ApplicationPage .item .txt{padding:10px 0;position:absolute;left:0;top:0;width:100%;height:100%;padding:35px;background-color:rgba(0,0,0,0.34);transition:background-color 0.3s;display:flex;flex-flow:column;justify-content:flex-end;}
#ApplicationPage .item .txt i{font-size:24px;line-height:1;color:#fff;position:absolute;top:40px;right:40px;}
#ApplicationPage .item .title{font-size:24px;font-family:var(--font-bold);color:#fff;width:100%;margin-bottom:5px;}
#ApplicationPage .item .remark{line-height:1.75;color:#fff;width:100%;}
#ApplicationPage .item:hover .txt{background-color:rgba(0,0,0,0.08);}
@media (min-width:1080px) and (max-width:1439px) {
}
@media (min-width:1px) and (max-width:1079px) {
    #ApplicationPage .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    #ApplicationPage .item .txt{padding:10px;}
    #ApplicationPage .item .txt i{display:none;}
    #ApplicationPage .item .title{font-size:15px;text-align:center;}
    #ApplicationPage .item .remark{display:none;}
}


/*产品中心*/

.mobProCatelist{display:flex;justify-content:center;flex-wrap:wrap;}
.mobProCatelist .link{display:inline-block;font-size:16px;line-height:24px;padding:10px 22px 10px 15px;border:1px solid #707070;text-align:center;margin:0 9px 16px;border-radius:50px;}
.mobProCatelist .link.active,.mobProCatelist .link:hover{background-color:var(--color-main);color:#fff;border-color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px) {
    .mobProCatelist .link{min-width:120px;padding:8px 15px;font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .mobProCatelist{justify-content:flex-start;}
    .mobProCatelist .link{min-width:initial;padding:5px 15px;font-size:13px;margin:0 5px 5px 0;}
    .mobProCatelist .link:before{margin-right:5px;}
}

.bg_p{background-color:#fafafa;}
#ProductPage .CateList{margin-bottom:50px;}
#ProductPage .CateList .link{display:flex;justify-content:center;align-items:center;padding:22px 20px;box-shadow:2px 0 32px rgba(0,0,0,0.16);width:calc((100% - 56px)/3);margin:0;font-size:19px;line-height:1.3;font-weight:bold;}
#ProductPage .CateList .icoimg{width:40px;height:45px;overflow:hidden;margin:0 10px 0 0;}
#ProductPage .CateList .icoimg img{transition:all 0.3s;}
#ProductPage .CateList .link:hover{color:var(--color-main);text-decoration:underline;}
#ProductPage .CateList .link:hover .icoimg img{margin-top:-45px;}
#ProductPage .titbox{max-width:1300px;}
#ProductPage .titbox .tit{margin-bottom:10px;}
#ProductPage article,#ProductPage article p{font-size:16px;line-height:1.875;color:#666;}

.ProList{}
.ProList .item{align-items:center;}
.ProList .item:nth-child(2n+1){flex-flow:row-reverse;}
.ProList .item:not(:last-child){margin-bottom:75px;}
.ProList .item .img{width:50%;margin:0;box-shadow:2px 0 18px rgba(0,0,0,0.18);}
.ProList .item .txt{width:43.2%;margin:0;}
.ProList .item .txt .subtit{font-size:18px;line-height:1.5;color:var(--color-main);font-family:var(--font-b);margin-bottom:5px;}
.ProList .item .txt .proname{font-size:36px;font-weight:bold;position:relative;width:fit-content;margin-left:0;line-height:1.22;font-family:var(--font-med);margin-bottom:26px;}
.ProList .item .txt .proname:before{content:"";position:absolute;left:0;width:100%;bottom:0;height:19px;background-color:#e0e6f4;z-index:-1;}
.ProList .item .txt .line{margin-left:0;width:75px;height:1px;background-color:var(--color-main);margin-bottom:20px;}
.ProList .item .txt .remark{font-size:15px;line-height:2;color:#333;margin-bottom:25px;}
.ProList .item .txt .param p{margin-bottom:10px;position:relative;padding-left:30px;}
.ProList .item .txt .param p:before{content:"";position:absolute;left:0;top:4px;width:16px;height:16px;border-radius:50%;background:radial-gradient(circle,#fff,#d3dbef);}
.ProList .item .txt .param p:after{content:"";position:absolute;left:6px;top:10px;width:4px;height:4px;background-color:var(--color-main);border-radius:50%;}
.ProList .item .txt .param p b{font-family:var(--font-bold);color:var(--color-main);font-weight:normal;}
.ProList .item .txt .morelink{margin-top:40px;}
.ProList .item:hover .txt .proname{color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px) {
}
@media (min-width:1px) and (max-width:1079px) {
    #ProductPage .CateList .link{width:100%;margin-bottom:20px;box-shadow:0 0 15px rgba(0,0,0,0.16);padding:10px;font-size:16px;}
    #ProductPage article, #ProductPage article p{font-size:14px;line-height:1.6;}
    
    .ProList .item:nth-child(2n+1){flex-flow:column;}
    .ProList .item .img{width:100%;margin:0;box-shadow:0 0 15px rgba(0,0,0,0.18);}
    .ProList .item .txt{width:100%;margin:25px 0 0;}
    .ProList .item .txt .subtit{font-size:16px;}
    .ProList .item .txt .proname{font-size:22px;}
    .ProList .item .txt .proname::before{height:8px;}
    .ProList .item .txt .remark{font-size:14px;line-height:1.6;}
    .ProList .item .txt .morelink{margin-top:20px;}
}

.currertkeywords{margin-bottom:30px;font-size:18px;}
.currertkeywords b{display:inline-block;margin-right:10px;font-size:18px;}


/*产品详情部分 样式还原*/
.table-responsive{overflow-x:auto;}
.editor .tit h3{color:#333;background-color:#fff;border:1px solid #d7d7d7;border-bottom:none;cursor:pointer;transition:all 0.3s;font-size:20px;margin-right:5px;}
.editor .tit h3.active,.editor .tit h3:hover{background-color:var(--color-main);color:#fff;border-color:var(--color-main);}
.editor .paneltitle h3{color:#fff;background-color:var(--color-main);margin-bottom:30px;font-size:20px;padding:15px 15px;font-family:var(--font);}
.editor .panel{position:relative;z-index:0;margin-bottom:30px;}
.editor ol,.editor ul,.editor li{all: revert;}
.editor ul{padding-left:15px;}
.editor li{padding-left:5px;}
.editor p{margin:revert;margin:revert-layer;}
.editor table{border-collapse:collapse}
.editor table td{line-height:2;padding:6px 0;font-size:14px;}
.editor table[border]:not([border="0"]):not([style*=border-width]) td,.editor table[border]:not([border="0"]):not([style*=border-width]) th{border-width:1px}
.editor table[border]:not([border="0"]):not([style*=border-style]) td,.editor table[border]:not([border="0"]):not([style*=border-style]) th{border-style:solid}
.editor table[border]:not([border="0"]):not([style*=border-color]) td,.editor table[border]:not([border="0"]):not([style*=border-color]) th{border-color:#ccc}
/*产品详情部分 样式还原*/

/***********产品详情***********/
#ProDetailPage{overflow:initial;}
#proframe1 .IntroImg{width:50%;margin:0;}
#BigImg{border:1px solid #e7e9ec;overflow:hidden;position:relative;}
#BigImg .btnlist .swbtn{display:inline-block;width:50px;height:50px;line-height:50px;text-align:center;position:absolute;color:#4b5563;top:calc(50% - 15px);z-index:1;border-radius:50%;transition:all 0.3s;box-shadow:0 0 4px rgba(0,0,0,0.13);background-color:#fff;}
#BigImg .btnlist .swbtn>i{font-size:20px;display:block;}
#BigImg .btnlist .swbtn.btn-prev{left:calc(1vw);transform:rotateY(180deg);}
#BigImg .btnlist .swbtn.btn-next{right:calc(1vw);}
#BigImg .btnlist .swbtn:hover{background-color:var(--color-main);color:#fff;}
#BigImg .swiper-pagination{position:absolute;right:12px;bottom:12px;background-color:#666;border-radius:4px;color:#fff;padding:2px 15px;display:flex;width:fit-content;top:initial;left:initial;}
#SmallImg{width:100%;margin-top:20px;padding-bottom:5px;}
#SmallImg .swiper-slide{margin-left:0;border:1px solid #e5e7eb;overflow:hidden;position:relative;box-sizing:border-box;}
#SmallImg .swiper-slide-thumb-active{border-color:transparent;}
#SmallImg .swiper-slide-thumb-active:before{content:"";width:100%;height:100%;border:2px solid var(--color-main);position:absolute;left:0;top:0;z-index:1;box-sizing:border-box;}
#proframe1 .IntroText{width:45%;margin:0;}
#proframe1 .IntroText .subtit{font-size:18px;color:var(--color-main);font-weight:bold;margin-bottom:8px;}
#proframe1 .IntroText .title{font-size:36px;margin-bottom:15px;}
#proframe1 .IntroText .remark{font-size:18px;line-height:1.625;margin-bottom:30px;}
#proframe1 .IntroText .btnlist .morelink{width:calc((100% - 15px)/2);margin:0;justify-content:center;text-transform:initial;border-radius:8px;}
#proframe1 .IntroText .btnlist .morelink i{margin-left:0;margin-right:8px;font-weight:normal;font-size:24px;}
#proframe1 .IntroText .btnlist .morelink.whatsapp{background-color:#25d366;color:#fff;}
#proframe1 .IntroText .btnlist .morelink.whatsapp::before{background-color:#2be070;}
#proframe1 .IntroText .param{margin-bottom:30px;}
#proframe1 .IntroText .param p{margin-bottom:10px;position:relative;padding-left:30px;}
#proframe1 .IntroText .param p:before{content:"";position:absolute;left:0;top:4px;width:16px;height:16px;border-radius:50%;background:radial-gradient(circle,#fff,#d3dbef);}
#proframe1 .IntroText .param p:after{content:"";position:absolute;left:6px;top:10px;width:4px;height:4px;background-color:var(--color-main);border-radius:50%;}
#proframe1 .IntroText .param p b{font-family:var(--font-bold);color:var(--color-main);font-weight:normal;}

.proframe{margin-top:50px;}
.proframe .titbox{margin-bottom:30px;}
.proframe .titbox .tit{font-size:30px;position:relative;font-weight:normal;}
.proframe .titbox .line{margin-left:0;}

#pro_inquiry .feedbackbox ul > li > .input{background-color:#fff;}
#pro_inquiry .morelink{margin-top:25px;padding:5px 30px;}

.relateprolist .item{width:calc((100% - 60px)/4);margin:0 20px 0 0;}
.relateprolist .item:nth-child(4n){margin-right:0;}
.relateprolist .item .img{box-shadow:0 0 15px rgba(0,0,0,0.18);}
.relateprolist .item .txt{padding-top:20px;}

@media (min-width:1080px) and (max-width:1439px){
    #proframe1 .IntroImg{width:45%;}
    #proframe1 .IntroText{width:52%}
    #proframe1 .IntroText .taglist{margin-top:0;margin-bottom:8px;}
    #proframe1 .IntroText .title{font-size:30px;margin-bottom:10px;}
    #proframe1 .IntroText .remark{font-size:15px;margin-bottom:15px;}
    #proframe1 .IntroText .btnlist .morelink{margin-bottom:10px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .proframe .titbox .tit{font-size:24px;}

    #proframe1 .IntroImg{width:100%;}
    #proframe1 .IntroText{width:100%;margin-top:20px;}
    #proframe1 .IntroText .taglist{margin-top:0;margin-bottom:8px;}
    #proframe1 .IntroText .tag{font-size:13px;padding:2px 10px;}
    #proframe1 .IntroText .title{font-size:24px;margin-bottom:10px;}
    #proframe1 .IntroText .remark{font-size:14px;margin-bottom:15px;}
    #proframe1 .IntroText .techlist{margin-bottom:15px;}
    #proframe1 .IntroText .tech{padding:8px 10px;}
    #proframe1 .IntroText .tech .tech_tit{font-size:16px;}
    #proframe1 .IntroText .btnlist .morelink{padding:6px 15px;}

    .relateprolist .item{width:calc((100% - 15px)/2);margin:0 15px 15px 0;}
    .relateprolist .item:nth-child(2n){margin-right:0;}
}

/***********产品详情***********/


/*新闻*/
#newsframe{}
#newsframe .titbox{margin-left:0;flex:1;}
#newsframe .news_cate_list{margin-right:0;display:flex;justify-content:flex-end;flex-wrap:wrap;width:25%;}
#newsframe .news_cate_list .link{font-size:16px;line-height:1.5;padding:12px;border:1px solid #363636;border-radius:50px;background-color:#000;min-width:150px;text-align:center;font-family:var(--font-bold);box-shadow:inset 2px 0 40px rgba(255,255,255,0.18);transition:all 0.3s;}
#newsframe .news_cate_list .link:not(:last-child){margin-right:10px;}
#newsframe .news_cate_list .link.active,#newsframe .news_cate_list .link:hover{background-color:#fefefe;color:#000;box-shadow:initial;}
.NewsList .item{width:100%;position:relative;}
.NewsList .item:not(:last-child){margin-bottom:32px;}
.NewsList .item .img{width:480px;margin:0;}
.NewsList .item .txt{padding:35px;background-color:#fff;position:absolute;right:0;top:50%;transform:translate(0,-50%);width:640px;border-radius:5px;z-index:1;box-shadow:3px 1px 21px rgba(0,0,0,0.16);}
.NewsList .item .tit_news{font-size:18px;line-height:1.6667;margin-bottom:12px;font-family:var(--font);font-weight:bold;}
.NewsList .item .line{width:77px;height:3px;background-color:var(--color-main);margin-left:0;margin-bottom:15px;}
.NewsList .item .remark{color:#777;margin-bottom:25px;}
.NewsList .item time{display:flex;align-items:center;width:fit-content;font-size:16px;line-height:24px;color:#666;}
.NewsList .item time i{margin-right:6px;color:var(--color-main);}
.NewsList .item:hover .tit_news{color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px) {
    #newsframe .news_cate_list{width:30%;}
    #newsframe .news_cate_list .link{padding:8px 12px;}

    .NewsList .item .txt{width:500px;}
    .NewsList .item .tit_news{font-size:16px;margin-bottom:10px;}
    .NewsList .item .remark{font-size:14px;margin-bottom:15px;}
    .NewsList .item time{font-size:14px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #newsframe .titbox{width:100%;}
    #newsframe .news_cate_list{width:100%;justify-content:start;}
    #newsframe .news_cate_list .link{padding:8px 12px;}

    .NewsList .item{width:100%;margin:0 0 15px 0;}
    .NewsList .item .img{display:none;}
    .NewsList .item .txt{width:100%;padding:20px;position:relative;}
    .NewsList .item .timebox{display:none;}
    .NewsList .item .intro{margin-bottom:10px;}
    .NewsList .item .tit_news{font-size:15px;line-height:1.5;margin-top:0;margin-bottom:8px;}
    .NewsList .item .remark{font-size:13px;margin-bottom:5px;}
    .NewsList .item time{margin-bottom:5px;font-size:13px;}
    .NewsList .item .more{font-size:13px;}
}

#NewsDetailPage{}
#NewsDetailPage .box{padding:3.5%;border:1px solid #ddd;}
#NewsDetailPage .title{border-bottom:1px solid #ddd;padding-bottom:15px;margin-bottom:20px;}
#NewsDetailPage .title .tit{font-size:30px;font-family:var(--font-bold);}
#NewsDetailPage .title p{margin-top:5px;}
.prevlist{margin-top:40px;background-color:#eee;padding:20px 25px;}
.prevlist>.link{font-size:16px;display:block;}
.prevlist>.link:nth-child(1){margin-bottom:5px;}
.prevlist>.link span{color:#999;display:inline-block;vertical-align:top;margin-right:5px;}
.proprevlist{display:flex;justify-content:space-between;padding:15px 20px;flex-wrap:wrap;}
.proprevlist .link{display:flex;justify-content:flex-start;align-items:center;}
.proprevlist>.link:nth-child(1){margin-bottom:0;}
.proprevlist .img{width:36px;height:36px;border-radius:50%;overflow:hidden;margin-right:8px;}
.proprevlist .link span{font-weight:bold;font-size:17px;}
.proprevlist .link:hover span{color:var(--color-main);}
.proprevlist .link.prev:before{content:"\e601";font-family:iconfont;font-size:28px;line-height:1;margin-right:8px;transform:rotateY(180deg);}
.proprevlist .link.next:after{content:"\e601";font-family:iconfont;font-size:28px;line-height:1;margin-left:8px;}
@media (min-width:1080px) and (max-width:1439px) {
    #NewsDetailPage .title .tit{font-size:24px;line-height:1.3;margin-bottom:10px;}
    .prevlist{padding:15px;}
}
@media (max-width:1079px){
    #NewsDetailPage .title .tit{font-size:20px;}
    .prevlist{padding:15px;margin-top:25px;}
    .prevlist>.link{font-size:14px;}
    .proprevlist .link.prev{margin-bottom:5px;}
    .proprevlist .link span{font-size:13px;font-weight:normal;}
}


.profaq dl{transition:all 0.3s;overflow:hidden;position:relative;cursor:pointer;background-color:#f4f4f4;padding:0;margin-bottom:22px;}
.profaq dl>dt{font-size:18px;line-height:30px;position:relative;font-family:var(--font-bold);color:#333;box-shadow:0 12px 21px rgba(0,0,0,0.04);padding:15px 70px;}
.profaq dl>dt:before{content:"";width:32px;height:31px;background:url(/dist/images/faq_q.png) no-repeat center;position:absolute;left:20px;top:15px;}
.profaq dl>dt:after{content:"\e6a1";font-family:iconfont;font-size:20px;line-height:30px;color:#333;position:absolute;right:20px;top:0;transition:all 0.3s;transform:rotate(90deg);display:none;font-weight:normal;}
.profaq dl>dd{overflow:hidden;font-size:16px;line-height:28px;position:relative;transition:all 0.3s;color:#666;height:0;padding:0 70px;}
.profaq dl>dd:before{content:"";width:32px;height:31px;background:url(/dist/images/faq_a.png) no-repeat center;position:absolute;left:20px;top:15px;}
.profaq dl.active>dt:after{transform:rotate(-90deg);}
.profaq dl.active>dd{height:auto;padding:15px 70px 20px;overflow:initial;}
@media (min-width:1080px) and (max-width:1439px) {
    .profaq dl>dt{font-size:18px;}
    .profaq dl>dd{font-size:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    .profaq dl{margin-bottom:15px;}
    .profaq dl>dt::before{line-height:24px;}
    .profaq dl>dt::after{line-height:24px;right:0;}
    .profaq dl:before{width:50px;padding-top:15px;font-size:14px;line-height:1.5;}
    .profaq dl:after{line-height:21px;right:10px;top:15px;}
    .profaq dl>dt{font-size:14px;line-height:24px;padding-right:30px;}
    .profaq dl>dd{font-size:13px;line-height:24px;}
    .profaq dl>dd::before{line-height:24px;}
    .profaq dl.active>dd{margin-top:8px;}
}

#rdframe1 .item{position:relative;align-items:center;}
#rdframe1 .item:nth-child(2n+1){flex-flow:row-reverse;}
#rdframe1 .item:not(:last-child){margin-bottom:65px;}
#rdframe1 .item .img{width:46.37%;margin:0;border-radius:8px;overflow:hidden;}
#rdframe1 .item .img img{width:100%;}
#rdframe1 .item .txt{width:49%;margin:0;}
#rdframe1 .item .txt .titbox{margin-bottom:15px;}
#rdframe1 .item .remark{line-height:1.875;}
#rdframe1 .item .btnlink{margin-top:20px;color:var(--color-main);display:inline-block;}
#rdframe1 .item .btnlink:hover{text-decoration:underline;}

#rdframe2{padding-bottom:110px;background-color:#fafafa;}
#rdframe2 .titbox .slg{width:fit-content;}
#rdframe2 .titbox .tit b{display:inline-block;}
#rdframe2 .swiper-slide{width:390px;margin:0;padding:0;}
#rdframe2 .item{padding:15px;background:url(/dist/images/ce_bg.jpg) no-repeat;background-size:100% 100%;display:block;}
#rdframe2 .item .imgbox{overflow:hidden;position:relative;}
#rdframe2 .item .imgbox img{width:100%;height:100%;object-fit:cover;}
#rdframe2 .btnlist{margin-top:35px;align-items:center;}
#rdframe2 .btnlist .swbtn{line-height:1;margin:0 5px;}
#rdframe2 .btnlist .swbtn i{font-size:24px;line-height:1;display:block;}
#rdframe2 .btnlist .swbtn.btn-next i{transform:rotateY(180deg);}
#rdframe2 .btnlist .swiper-pagination{position:relative;margin:0;width:initial;top:initial;left:initial;bottom:initial;font-size:0;}
#rdframe2 .btnlist .swiper-pagination .swiper-pagination-bullet{width:8px;height:8px;opacity:1;background-color:#bbb;margin:0 5px;}
#rdframe2 .btnlist .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{background-color:var(--color-main);}
@media (min-width:1080px) and (max-width:1439px) {
    #rdframe1 .item .remark{line-height:1.6;}

    #rdframe2{padding-bottom:80px;}
    #rdframe2 .swiper-slide{width:302px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #rdframe1 .item{flex-flow:column;}
    #rdframe1 .item:nth-child(2n+1){flex-flow:column;}
    #rdframe1 .item:not(:last-child){margin-block:40px;}
    #rdframe1 .item .img{width:100%}
    #rdframe1 .item .txt{width:100%;margin-top:20px;}
    #rdframe1 .item .remark{line-height:1.6;}

    #rdframe2{padding-bottom:50px;}
    #rdframe2 .swiper-slide{width:200px;}
}


/*分页*/
ul.pagination {box-shadow:none;width:100%;border-radius:0;text-align:center;margin:20px 0 0;padding-left:0;display:flex;justify-content:center;}
ul.pagination li{display:inline-block;margin:3px;overflow:hidden;}
ul.pagination li a,ul.pagination li span{display:inline-block;font-size:16px;border-radius:50px;width:40px;height:40px;line-height:40px;position:relative;color:#fff;text-decoration:none;border:1px solid #353535;}
ul.pagination li.active span,ul.pagination li.active a{background-color:var(--color-main);border-color:var(--color-main);color:#fff;}
ul.pagination li:hover a{background-color:var(--color-main);color:#fff;}

#VideoPage{}
#VideoPage .titbox{margin-block:40px;}
#VideoPage .videobox:not(:last-child){margin-bottom:60px;}
#VideoPage .VideoList{}
#VideoPage .VideoList .item{width:calc((100% - 60px)/3);overflow:hidden;margin:0 30px 30px 0;cursor:pointer;position:relative;}
#VideoPage .VideoList .item:nth-child(3n){margin-right:0;}
#VideoPage .VideoList .item .img{position:relative;border-radius:8px;overflow:hidden;}
#VideoPage .VideoList .item .img i{position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);font-size:60px;line-height:1;color:#f00;}
#VideoPage .VideoList .item .txt{padding:15px 50px 15px;text-align:center;}
#VideoPage .VideoList .item .tit_video{font-size:18px;line-height:30px;font-family:var(--font);font-weight:bold;color:#222;}
#VideoPage .VideoList .item:hover .tit_video{color:var(--color-main);}
video{width:100%;display:block;}
@media (min-width:1080px) and (max-width:1439px) {
    #VideoPage .VideoList .item{width:calc((100% - 30px)/3);margin:0 15px 15px 0;}
    #VideoPage .VideoList .item:nth-child(3n){margin-right:0;}
    #VideoPage .VideoList .item .txt{padding:15px;}
}
@media (min-width:1px) and (max-width:1079px) {
    #VideoPage .VideoList .item{width:100%;margin:0 0 15px;}
    #VideoPage .VideoList .item .txt{padding:15px 0 0;}
    #VideoPage .VideoList .item .txt .tit_video{font-size:16px;}
    #VideoPage .VideoList .item .txt p{height:auto;font-size:14px;}
}

#PrivacyPolicyPage .title{margin-bottom:20px;}
#PrivacyPolicyPage article h4{font-size:20px;margin-bottom:10px;}
#PrivacyPolicyPage article p{font-size:16px;line-height:1.5;color:#999;margin-bottom:10px;}
@media (max-width:1079px) {
    #PrivacyPolicyPage article h4{font-size:16px;}
    #PrivacyPolicyPage article p{font-size:13px;}
}


.img-wrapper{position:relative;overflow:hidden;}
.img-wrapper:after {
  background:#fff;
  content:"";
  filter:blur(6px);
  height:300%;
  top:0;
  right:0;
  bottom:0;
  left:0;
  margin:auto;
  opacity:.6;
  position:absolute;
  transform:translate(-100%,-100%) rotate(45deg);
  width:25px;
}
.img-hover:hover .img-wrapper:after {
  animation:move 1s ease-out;
  display:block
}
@keyframes move {
  0% {
    transform:translate(-200px,-200px) rotate(45deg)
  }
  to {
    transform:translate(200px,200px) rotate(45deg)
  }
}

.video_icon{position:absolute;top:50%;left:50%;transform: translate(-50%, -50%);width:56px;height:56px;line-height:56px;text-align:center;}
.video_icon i.iconfont{display:block;font-size:24px;background-color:var(--color-main);border-radius:50%;color:#fff;}
.video_icon .play,
.video_icon .play:before,
.video_icon .play:after {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 0 rgba(38,80,178, 0.6);
    -webkit-animation: play 3s infinite;
    animation: play 3s infinite;
}

.video_icon .play:before {
    -webkit-animation-delay: 0.9s;
    animation-delay: 0.9s;
    content: "";
    position: absolute;
}

.video_icon .play:after {
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    content: "";
    position: absolute;
}

@-webkit-keyframes play {
    70% {
        box-shadow: 0 0 0 20px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}

@keyframes play {
    70% {
        box-shadow: 0 0 0 20px rgba(10, 165, 205, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(10, 165, 205, 0);
    }
}