*,
html,
body {
    padding: 0;
    margin: 0;
    border: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box; 
    color: #303030;
    font: 16px/2 "Montserrat";
    font-weight: 300;
    line-height: 1.6;
    /* letter-spacing: 0.5px; */
}

@font-face {
    font-family: "Montserrat";
    font-weight: 300;
    src: url(../fonts/Montserrat-Light-6.otf);
}
@font-face {
    font-family: "Montserrat";
    font-weight: 400;
    src: url(../fonts/Montserrat-Regular-8.otf);
}
@font-face {
    font-family: "Montserrat";
    font-weight: 500;
    src: url(../fonts/Montserrat-Medium-7.otf);
}
@font-face {
    font-family: "Montserrat";
    font-weight: 600;
    src: url(../fonts/Montserrat-SemiBold-9.otf);
}


ul,
ol,
dl,
li,
dt,
dd {
    padding: 0;
    margin: 0;
    list-style: none;
}

img {
    vertical-align: middle;
    border: 0;
}

a,
a:active,
a:focus,
a:hover,
a:visited {
    text-decoration: none;
}

a {
    cursor: pointer;
}

a,
img,
select,
button,
input,
input[type=password],
input[type=text],
textarea {
    outline: none;
    resize: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
    font-size: 100%;
    font-weight: normal;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

:root {
    --blue: #0172be;
    --white: #ffffff;
  }

/*清除浮动*/
.clearfix::after,
.clearfix::before {
    content: ".";
    height: 0;
    line-height: 0;
    display: block;
    visibility: hidden;
    clear: both;
}

input { cursor: pointer; -webkit-appearance: none; }
select {
    -webkit-appearance:button;
}

.padd {
    padding: 98px 0;
}
.inner{
    width: 90%;
    margin: 0 auto;
    max-width: 1440px;
}
@media(max-width:1440px){
    .padd{
        padding: 78px 0;
    }
}
@media(max-width:900px){
    .padd{
        padding: 58px 0;
    }
}
@media(max-width:680px){
    .padd{
        padding: 48px 0;
    }
}
@media(max-width:1280px) {
    .inner{
        width: 90%;
        margin: 0 auto;
    }
}
/* swiper.js 控制器样式 */
.pos.swiper-pagination {
    width: 100%;
    bottom: 0 !important;
    position: relative;
    margin-top: 20px;
}

@media(max-width:500px) {

    .pos.swiper-pagination{
        margin-top: 10px;
    }   
}


.swiper-pagination-bullet,
.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 8px;
}

.swiper-container-horizontal>.swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
    bottom: 28px;
}

.swiper-pagination-bullet {
    cursor: pointer;
    opacity: 1;
    position: relative;
    border-radius: 38px;
    background: rgba(255, 255, 255, 0.58);
    transition: all 0.48s;
}

.swiper-pagination-bullet.my-bullet-active {
    width: 52px;
    background: rgba(255, 255, 255, 1);
}




/* 动画效果 */
.wgt-fade-animate {
        opacity: .1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
}

.appear {
    -webkit-animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_show 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_show {
    0% {
        opacity: .1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
}

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
}

@keyframes opacity_show {
    0% {
        opacity: .1;
        transform: translateY(100px);
        -webkit-transform: translateY(100px);
        -moz-transform: translateY(100px);
        -ms-transform: translateY(100px);
        -o-transform: translateY(100px);
}

    100% {
        transform: translateY(0);
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -ms-transform: translateY(0);
        -o-transform: translateY(0);
}
}



.app_left {
    transform: translateX(-150px);
    opacity: 0;
    -moz-transform: translateX(-150px);
    -ms-transform: translateX(-150px);
    -o-transform: translateX(-150px);
    -webkit-transform: translateX(-150px);
}

.app_h {
    -webkit-animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    animation: opacity_left 1s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    opacity: 1 !important;
}

@-webkit-keyframes opacity_left {
    0% {
        -webkit-transform: translateX(-150px);
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
}

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}
}

@keyframes opacity_left {
    0% {
        transform: translateX(-150px);
        opacity: 0;
        -moz-transform: translateX(-150px);
        -ms-transform: translateX(-150px);
        -o-transform: translateX(-150px);
        -webkit-transform: translateX(-150px);
}

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}
}

.app_right {
    transform: translate(150px);
    -webkit-transform: translate(150px);
    -moz-transform: translate(150px);
    -ms-transform: translate(150px);
    -o-transform: translate(150px);
    opacity: 0;
}

.app_r {
    animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
    -webkit-animation: opacity_right 0.8s 1 cubic-bezier(0.445, 0.05, 0.55, 0.95) forwards;
}

@-webkit-keyframes opacity_right {
    0% {
        opacity: 0;
        -webkit-transform: translateX(150px);
        transform: translateX(150px);
        -moz-transform: translateX(150px);
        -ms-transform: translateX(150px);
        -o-transform: translateX(150px);
}

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}
}

@keyframes opacity_right {
    0% {
       opacity: 0;
       transform: translate(150px);
       -webkit-transform: translate(150px);
       -moz-transform: translate(150px);
       -ms-transform: translate(150px);
       -o-transform: translate(150px);
}

    100% {
        -webkit-transform: translateX(0);
        -webkit-transform: translateX(0);
        transform: translateX(0);
        opacity: 1;
        -moz-transform: translateX(0);
        -ms-transform: translateX(0);
        -o-transform: translateX(0);
}
}
.appImg img{
    transform: scale(1.1);
    -webkit-transform: scale(1.1);
    -moz-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transition: all 0.8s ease;
    -webkit-transition: all 0.8s ease;
    -moz-transition: all 0.8s ease;
    -ms-transition: all 0.8s ease;
    -o-transition: all 0.8s ease;
}   
.appImg.app_I img{
    transform: scale(1);
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
   
}
.appArf::before{
    width: 100%;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    content: '';
    background: #fff;
    transition: all 1s .1s;
    -webkit-transition: all 1s .1s;
    -moz-transition: all 1s .1s;
    -ms-transition: all 1s .1s;
    -o-transition: all 1s .1s;
}
.appArf.appArter::before{
    width: 0%;
}



/*滚动条宽高及背景*/
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

/*轨道颜色、内阴影及圆角*/
::-webkit-scrollbar-track {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #fff;
    border-radius: 0px;
}

/*滑块*/
::-webkit-scrollbar-thumb {
    border-radius: 2px;
    box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, .3);
    background-color: #66c2ad;
}

/*两端按钮*/
::-webkit-scrollbar-button {
    background-color: none;
    height: 0;
}

/*右下角汇合处样式*/
::-webkit-scrollbar-corner {
    background: #fff;
}






.inTit{
    font-size: 42px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: capitalize;
}
.inTit.white{
    color: #fff;
}
.inTit.center{
    text-align: center;
}
.inText{
    font-size: 20px;
    color: #555;
    margin-top: 10px;
    max-width: 950px;
    margin: 0 auto;
    margin-top: 10px;
    text-align: center;
}
.inText.center{
    text-align: center;
}
.inText.white{
    color: #fff;
}



.inBtn {
    position: relative;
}

.inBtn a {
    width: 180px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    text-transform: capitalize;
    letter-spacing: 1px;
    background: linear-gradient(to right, #87dd7d, #2ba8e2);
    line-height: 1;
    border-radius: 50px;
    color: #fff;
    transition: all 0.48s;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.inBtn a span{
    font-size: 20px;
    text-transform: capitalize;
    color: #fff;
    line-height: 1;
    letter-spacing: 1px;
    transition: all 0.48s;
    position: relative;
    z-index: 2;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.inBtn a:hover span{
    font-weight: 600;
}
.inBtn.white a {
   background: #fff;
   position: relative;
   overflow: hidden;
}
.inBtn.white a span{
    background: -webkit-linear-gradient(90deg, #86dd7d, #2ba8e1);
   background: linear-gradient(90deg, #86dd7d, #2ba8e1);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;
}

.inBtn.white a::after{
    width: 0%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    content: '';
    border-radius: 50px;
    transition: all 0.48s;
    background: linear-gradient(to right, #86dd7d, #2ba8e1);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.inBtn.white a:hover::after{
    width: 100%;
}
.inBtn.white a:hover{
    background: transparent;
}
.inBtn.white a:hover span{
    color: #fff;
    background: transparent;
    -webkit-text-fill-color: #fff;
}

.secBtn a{
    background: #66c2ad;
}
.secBtn{
    margin-left: 10px;
}



/* 内页 */

.byBox{
    position: relative;
    width: 100%;
    height: 700px;
}
.byBox img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.byTbox{
    width: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.byTop{
    position: relative;
}
.byTbox .inner{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
    /* height: 220px; */
}
.byTit{
    font-size: 50px;
    font-weight: 600;
    line-height: 1.2;
    color: #fff;
}
.byText{
    font-size: 18px;
    /* line-height: 1; */
    color: #fff;
    margin-top: 10px;
}
.byTying{
    margin-top: 100px;
    display: inline-block;
    font-size: 22px;
    line-height: 1;
    padding: 10px 20px;
    border-radius: 50px;
    color: #fff;
    background: linear-gradient(90deg, #86dd7d, #2ba8e1);
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    -ms-border-radius: 50px;
    -o-border-radius: 50px;
}
.byTyBtn{
    display: flex;
    margin-top: 50px
}
.byTyBtn a{
    width: 200px;
}
.byTyBtn.white a span{
    color: #333;
    -webkit-text-fill-color: #666;
}

.supBanBox {
    height: 460px;
}

.supBanBox .inCInp {
    width: 65%;
    height: 55px;
    margin: 0 auto;
}

.supBanBox .byTit {
    margin: 60px 0 30px;
    text-align: center;
    font-weight: 500;
    display: block;
    width: 100%;
    font-size: 44px;
}
@media(max-width:1368px){
    .supBanBox .byTit {
    font-size: 36px;
    }
}
@media(max-width:1280px){
    .supBanBox .byTit {
    font-size: 32px;
    }
    .supBanBox .inCInp{
        width: 90%;
    }
}
@media(max-width:900px){
    .supBanBox .inCInp {
        width: 100%;
        height: 50px;
    }
    .supBanBox .byTit {
        font-size: 28px;
    }
    .supBanBox {
    height: 420px;
}
}
@media(max-width:680px){
    .supBanBox .byTit {
        font-size: 24px;
        margin: 30px 0 15px;
    }
    .supBanBox {
    height: 400px;
}
.inCBtn{
    width: 100px;
}
.supPWItem {
        padding: 15px 0;
    }
}



@media(max-width:1440px){
    .inTit {
        font-size: 38px;
    }
    .byTit {
        font-size: 44px;
    }
    .byTying{
        font-size: 20px;
    }
    .byText {
        margin-top: 0;
    }
}
@media(max-width:1368px){
    .inTit {
        font-size: 36px;
    }
    .inText {
        font-size: 18px;
    }
}
@media(max-width:1280px){
    .byTit {
        font-size: 42px;
    }
    .byTying {
        font-size: 18px;
        margin-top: 70px;
    }
    .inTit {
        font-size: 32px;
    }
    .inBtn a {
        width: 135px;
        height: 45px;
    }
    .inBtn a span {
        font-size: 18px;
    }
}
@media(max-width:1024px){
    .byTit {
        font-size: 38px;
    }
    .byBox {
        height: 650px;
    }
    .byTying {
        font-size: 16px;
        margin-top: 50px;
    }
}
@media(max-width:900px){
    .byTit {
        font-size: 36px;
    }
    .byBox {
        height: 600px;
    }
    .byTying {
        margin-top: 30px;
    }
    .inTit {
        font-size: 28px;
    }
    .inText {
        font-size: 16px;
    }
    .inBtn a {
        width: 130px;
        height: 40px;
    }
}
@media(max-width:768px){
    .byTyBtn{
        margin-top: 30px;
    }
}
@media(max-width:680px){
    .byBox {
        height: 500px;
    }
    .inTit {
        font-size: 24px;
    }
    .inBtn a span {
        font-size: 16px;
    }
    .byTit {
        font-size: 32px;
    }
    .byText {
        font-size: 16px;
        margin-top: 8px;
    }
}
@media(max-width:500px){
    .byTying {
        font-size: 14px;
    }
    .inTit {
        font-size: 22px;
    }
    .inText {
        font-size: 14px;
        margin-top: 0;
    }
    .byTit {
        font-size: 28px;
    }
}

/* 头部 */

header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 30px;
    width: 95%;
    z-index: 999;
    transition: all 0.48s;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    background: #fff;
    border-radius: 50px;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
header.header_bg{
    width: 100%;
    border-radius: 0;
    top: 0;
    border-bottom: 1px solid rgba(0, 0, 0, .05);
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    -o-border-radius: 0;
}
header.header_info{
    background: #f4f6f8;
}
.headLogo {
    width: 70px;
    padding-top: 5px;
}

.headLogo img {
    width: 100%;
}

.headrig {
    display: flex;
    align-items: center;
}

.headNav {
    display: flex;
    position: relative;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}

.headNav ul {
    display: flex;
    align-items: center;
}

.headNav ul a {
    font-size: 18px;
    font-weight: 500;
    line-height: 1;
    color: #333;
    padding: 0 25px;
    text-transform: uppercase;
    transition: all 0.48s;
}
.headNav ul a:hover{
    background: linear-gradient(to right, #87dd7d, #2ba8e2);
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: transparent;
color: transparent;
}
.headList {
    display: flex;
    align-items: center;
    margin-left: 30px;
}
.headInpBox{
    position: relative;
    display: flex;
    align-items: center;
}
.headInp{
    position: relative;
    transition: all 0.48s;
    height: 42px;
    display: flex;
    align-items: center;
    border-radius: 8px;
    background: #f7f8f9;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
    background: transparent;
}
.headInp.headItemAct{
    opacity: 1;
    padding: 0 35px 0 12px;
    background: #f7f8f9;
}
.header_info .headInp.headItemAct{
    background: #fff;
}
.headItemAct .headInpImg{
    opacity: .4;
}
.headInp.headItemAct input{
    width: 200px;
    background: transparent;
}


.headInp input{
    width: 0;
    transition: all 0.48s;
    height: 100%;
    margin-left: 10px;
    font-size: 16px;
    color: #666;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.headInpImg{
    width: 18px;
    height: 18px;
    position: relative;
    z-index: 2;
    transition: all 0.48s;
    object-fit: contain;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.headItem {
    margin-left: 20px;
    font-size: 24px;
    line-height: 1;
    color: #666;
    font-weight: 500;
    cursor: pointer;
}
.headItemAct .headInpCon{
    opacity: .4;
}
.headInpCon{
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    right: 10px;
    opacity: 0;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.headInpCon svg{
    width: 100%;
    height: 100%;
}
.headInpCon svg path{
    fill: #333;
}

.headItem img {
    width: 20px;
    height: 20px;
}
.headItem .img1{
    display: block;
}
.headItem .img2{
    display: none;
}
.headItem:hover .img2{
    display: block;
}
.headItem:hover .img1{
    display: none;
}





/* 900导航 */
.moHead_mlb {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: translateY(100%);
    z-index: 9;
    width: 100%;
    height: calc(100vh - 60px);
    background: #fff;
    overflow: hidden;
}

.moHead_mlbXq {
   padding: 30px 30px;
   height: 80vh;
   overflow-y: auto;
}

.moHead_mlb li {
    width: 100%;
    max-width: none;
    border-bottom: 1px solid rgb(0, 0, 0,.07);
    position: relative;
}
.moHead_mlb li{
    border-top: none;
}
.moHead_mlb li svg{
    width: 20px;
    height: 20px;
    transition: all 0.48s;
}
.moHead_mlb li svg path{
    fill: #999;
}
.moHead_mlb li a {
    font-size: 16px;
    color: #333;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.moHead_mlb li:hover a{
    color: #92e1c0;
}
.moHead_mlb li:hover svg path{
    fill: #92e1c0;
}



.headMenu {
    cursor: pointer;
    position: fixed;
    z-index: 99999;
    right: 30px;
    display: none;
}

.headMenu span {
    display: block;
    width: 22px;
    height: 2px;
    margin: 4px 0;
    background: #999;
    -webkit-transition: all 0.48s ease-in-out;
    -moz-transition: all 0.48s ease-in-out;
    -ms-transition: all 0.48s ease-in-out;
    -o-transition: all 0.48s ease-in-out;
    transition: all 0.48s ease-in-out;
}

/* .header_bg .headMenu span {
    background: #92e1c0;
} */

.headMenu.active span {
    background: #92e1c0;
}

.headMenu.active span.headMenu_span1 {
    transform: rotate(45deg) translate(4px, 7px);
    -webkit-transform: rotate(45deg) translate(4px, 7px);
    -moz-transform: rotate(45deg) translate(4px, 7px);
    -ms-transform: rotate(45deg) translate(4px, 7px);
    -o-transform: rotate(45deg) translate(4px, 7px);
}

.headMenu.active span.headMenu_span2 {
    opacity: 0;
}

.headMenu.active span.headMenu_span3 {
    transform: rotate(-45deg) translate(1px, -5px);
    -webkit-transform: rotate(-45deg) translate(1px, -5px);
    -moz-transform: rotate(-45deg) translate(1px, -5px);
    -ms-transform: rotate(-45deg) translate(1px, -5px);
    -o-transform: rotate(-45deg) translate(1px, -5px);
}








@media(max-width:1680px){
    .headInp.headItemAct input{
        width: 150px;
    }
    .headNav ul a{
        padding: 0 20px;
    }
}
@media(max-width:1468px){
    header{
        width: 98%;
    }
    .headNav ul a{
        padding: 0 18px;
    }
    .headInp.headItemAct input{
        width: 130px;
    }
    .headList {
        margin-left: 10px;
    }
    .headItem {
        margin-left: 15px;
    }
}
@media(max-width:1280px){
    .headNav ul a{
        font-size: 16px;
    }
    .headInp.headItemAct input {
        width: 110px;
    }
    header {
        top: 20px;
        padding: 12px 30px;
    }
    .headItem img {
        width: 18px;
        height: 18px;
    }
    .headLogo {
        width: 60px;
    }
    .headInpImg {
        width: 16px;
        height: 16px;
    }
}
@media(max-width:1200px){
    .headInp.headItemAct input {
        width: 80px;
    }
    .headInp.headItemAct {
        padding: 0 25px 0 8px;
    }
    .headNav ul a {
        padding: 0 14px;
    }
    .headList {
        margin-left: 0;
    }
    .headItem {
        margin-left: 10px;
    }
}
@media(max-width:900px){
    .headNav{
        display: none;
    }
    .headList{
        margin-right: 40px;
    }
    .headMenu{
        display: block;
    }
    header{
        width: 100%;
        top: 0;
        border-radius: 0;
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        -ms-border-radius: 0;
        -o-border-radius: 0;
}
}
@media(max-width:680px){
    header{
        padding: 10px 15px;
    }
    .headMenu {
        right: 20px;
    }    
}


/* 底部 */
footer{
    overflow: hidden;
    position: relative;
}
.footTop{
    padding: 70px 0 50px 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    display: flex;
    justify-content: space-between;
}
.footTLeft{
    display: flex;
}
.footLogo{
    width: 80px;
}
.footLogo img{
    width: 100%;
}
.footTList{
    display: flex;
align-items: center;
width: 250px;
justify-content: flex-end;
}
.footTItem{
    display: flex;
align-items: center;
justify-content: center;
width: 48px;
height: 48px;
border-radius: 50%;
background: #f1f2f3;
margin-left: 8px;
position: relative;
z-index: 2;
}
.footTItem img{
    width: 98%;
    height: 98%;
    object-fit: contain;
}
.footTItem p{
    opacity: 0;
    font-size: 14px;
    color: #aaa;
    position: absolute;
    left: 50%;
    transition: all 0.48s;
    top: calc(100% + 5px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
}
.footTItem:hover p{
    opacity: 1;
}
.footTInp{
    width: 500px;
    height: 50px;
    border-radius: 50px;
    background: #f1f2f3;
    overflow: hidden;
    position: relative;
}
.footTInp input{
    width: 100%;
    height: 100%;
    background: transparent;
    padding: 0 30px;
    font-size: 18px;
}
.footTInp input::placeholder{
    color: #fff;
}
.footTInp img{
    width: 50px;
    height: 50px;
    position: absolute;
    right: 0;
    top: 0;
}
.footCon{
    padding: 50px 0;
    position: relative;
}
.footCon ul{
    width: calc(100% - 300px);
    display: flex;
    justify-content: space-between;
}
.footCon li{
    position: relative;
}
.footCon li a{
    font-size: 18px;
    font-weight: 500;
    position: relative;
    display: block;
}
.footCon li a::after{
    width: 20px;
    border-radius: 30px;
    height: 4px;
    position: absolute;
    left: 3px;
    bottom: -2px;
    content: '';
    background: #92e1c0;
}
.footBon{
    display: flex;
    margin: 70px 0;
    font-size: 16px;
    justify-content: flex-end;
    align-items: center;
    color: #666;
}
.footCBox{
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}
.footCLeft{
    padding: 25px 30px;
    background: #f1f2f3;
    display: flex;
    justify-content: space-between;
    width: calc(100% - 270px);
    border-radius: 8px;
}

.footCRig{
    width: 250px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.footCLogo{
    width: 70px;
    height: 70px;
}
.footCLogo img{
    width: 100%;
    height: 100%;
}
.footCEWmBox{
    width: 170px;
    margin-right: 10px;
    display: flex;
    align-items: center;
}
.footCEWm{
    width: 70px;
    height: 70px;
}
.footCEWm img{
    width: 100%;
    height: 100%;
}
.footCEWmBox p{
    width: 100px;
    padding-left: 10px;
    line-height: 25px;
    font-size: 16px;
    color: #666;
}
.footCLidt{
    display: flex;
    margin-top: 10px;
    justify-content: space-between;
    width: 100%;
}
.footCIcon{
    width: 120px;
    padding: 10px 15px;
    height: 50px;
    background: #f1f2f3;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.footCIcon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footCItem1{
   width: 17%; 
}
.footCItem2{
    width: 55%;
}
.footCItem3{
    width: 23%;
}
.footCTit{
    display: flex;
    text-transform: capitalize;
    align-items: center;
    font-size: 20px;
    line-height: 1;
    margin-bottom: 20px;
    font-weight: 400;
}
.footCTit img{
    width: 20px;
    height: 20px;
    object-fit: contain;
    margin-right: 8px;
}
.footCTbox{
    margin-top: 10px;
}
.footCTbox p{
    font-size: 16px;
    line-height: 1.5;
    color: #999;
}
.footCflex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footTRig{
    font-size: 18px;
    color: #999;
}
.seBox{
    position: fixed;
    bottom: 10%;
    right: 10px;
}
.seItem{
    transform: translateX(100px);
    width: 45px;
    height: 45px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    -ms-border-radius: 8px;
    -o-border-radius: 8px;
    z-index: 6;
    transition: all 0.48s;
    -webkit-transition: all 0.48s;
    -moz-transition: all 0.48s;
    -ms-transition: all 0.48s;
    -o-transition: all 0.48s;
    -webkit-transform: translateX(100px);
    -moz-transform: translateX(100px);
    -ms-transform: translateX(100px);
    -o-transform: translateX(100px);
}
.seItem.seItemAct{
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
}
.seItem svg{
    width: 50%;
    height: 50%;
}
.seItem svg path{
    fill: #66c2ad;
}
.seItem:hover{
    background: linear-gradient(90deg, #86dd7d, #2ba8e1);
}
.seItem:hover svg path{
    fill: #fff;
    opacity: .8;
}

@media(max-width:1468px){
    .footTItem {
        width: 42px;
        height: 42px;
    }
    .footCEWmBox p {
        font-size: 14px;
    }
    .footCTbox p {
        font-size: 14px;
    }    
    .footCLeft{
        padding: 20px;
    }

    .footCTit {
        font-size: 18px;
    }
    .footCEWm {
        width: 65px;
        height: 65px;
    }
    .footCLogo {
        width: 65px;
        height: 65px;
    }
    .footTop {
        padding: 50px 0 30px 0;
    }
    .footTRig {
        font-size: 16px;
    }
}
@media(max-width:1280px){
    .footTop {
        padding: 50px 0 20px 0;
    }
    .footCon{
        padding: 30px 0;
    }
}
@media(max-width:1200px){
    .footCflex{
        flex-wrap: wrap;
    }
    .footCon ul{
        width: 100%;
    }
    .footTList{
        width: 100%;
        margin-top: 30px;
        justify-content: flex-start;
    }
    .footCBox{
        flex-wrap: wrap;
    }
    .footCRig{
        width: 100%;
        margin-top: 30px;
    }
    .footCLidt{
        width: auto;
        margin: 0;
    }
    .footCIcon{
        width: 150px;
        height: 60px;
        margin-left: 10px;
    }
    .footCLeft{
        width: 100%;
    }
    .footCLogo {
        width: 60px;
        height: 60px;
    }
    .footCEWm {
        width: 60px;
        height: 60px;
    }  
    .footCEWmBox{
        width: auto;
    }
    .footBon {
        margin: 50px 0;
        justify-content: flex-start;
    }
}
@media(max-width:900px){
    .footCon li a {
        font-size: 16px;
    }
    .footCBox {
        margin-top: 30px;
    }
    .footCLeft{
        flex-wrap: wrap;
        padding: 30px;
    }
    .footCItem{
        width: 100%;
        margin-bottom: 40px;
    }
    .footCTit{
        margin-bottom: 10px;
    }
    .footCItem:last-child{
        margin-bottom: 0;
    }
}
@media(max-width:768px){
    .footCon ul{
        display: none;
    }
    .footCEWm {
        width: 50px;
        height: 50px;
    }
    .footCLogo {
        width: 50px;
        height: 50px;
    }
    .footCIcon {
        width: 130px;
        height: 50px;
    }
    .footTList{
        margin-top: 0;
    }
}
@media(max-width:680px){
    .footCIcon {
        width: 100px;
        height: 50px;
    }
    .footTItem p {
        font-size: 12px;
    }
}
@media(max-width:500px){
    .footCLeft {
        flex-wrap: wrap;
        padding: 20px;
    }
    .footCItem {
        width: 100%;
        margin-bottom: 25px;
    }
    .footTItem {
        width: 38px;
        height: 38px;
    }
    .footCLidt {
        margin-top: 10px;
    }
    .footBon{
        font-size: 14px;
        margin: 30px 0;
    }
    .footCTit {
        font-size: 16px;
    }
   
    .footTRig {
        font-size: 14px;
    }
    .footLogo {
        width: 65px;
    }
    .footTop {
        padding: 50px 0 12px 0;
    }
    .footBon{
        font-size: 14px;
    }
}






