@charset "utf-8";

/*
全局css变量定义
--mainColor    // 主色调
--textColor    // 文字深色调
--textColor1   // 文字浅色调
--bgColor      // 辅助背景色
*/
:root{
    --mainColor:#3d68b2;
    --textColor:#333;
    --textColor1:#999;
    --textColor2:#fff;
    --bgColor:#fff;
    --bgColor1:#f5f5f5;
    --lineColor:#e0e0e0;
}

.main{width:calc(100% - 80px);max-width:1920px;padding:0 80px;}
.inside-main{width:100%;max-width:1480px;margin:0 auto;padding:0 20px;}
@media(min-width: 2000px){
    .main{margin:0 auto;}
}
@media(max-width: 1560px){
    .main{width:calc(100% - 72px);padding:0 72px;}
}
@media(max-width: 1440px){
    .main{width:calc(100% - 68px);padding:0 68px;}
}
@media(max-width: 1080px){
    .main{width:calc(100% - 48px);padding:0 4%;}
    .inside-main{padding:0;}
}

.section{padding-top:80px;padding-bottom:80px;}

.section-top{padding-top:140px;}
.section-bottom{padding-bottom:140px;}

.section-top1{padding-top:120px;}
.section-bottom1{padding-bottom:120px;}

.section-top2{padding-top:220px;}
.section-bottom2{padding-bottom:220px;}


@media(max-width: 1680px){
    .section-top{padding-top:128px;}
    .section-bottom{padding-bottom:128px;}

    .section-top1{padding-top:100px;}
    .section-bottom1{padding-bottom:100px;}

    .section-top2{padding-top:180px;}
    .section-bottom2{padding-bottom:180px;}
}
@media(max-width: 1560px){
    .section-top{padding-top:112px;}
    .section-bottom{padding-bottom:112px;}

    .section-top1{padding-top:84px;}
    .section-bottom1{padding-bottom:84px;}

    .section-top2{padding-top:160px;}
    .section-bottom2{padding-bottom:160px;}
}

@media(max-width: 1440px){
    .section{padding-top:68px;padding-bottom:68px;}

    .section-top{padding-top:100px;}
    .section-bottom{padding-bottom:100px;}

    .section-top1{padding-top:72px;}
    .section-bottom1{padding-bottom:72px;}

    .section-top2{padding-top:140px;}
    .section-bottom2{padding-bottom:140px;}

}

@media(max-width: 1080px){
    .section{padding-top:56px;padding-bottom:56px;}

    .section-top{padding-top:80px;}
    .section-bottom{padding-bottom:80px;}

    .section-top1{padding-top:60px;}
    .section-bottom1{padding-bottom:60px;}

    .section-top2{padding-top:120px;}
    .section-bottom2{padding-bottom:120px;}

}

@media(max-width: 769px){
    .section{padding-top:40px;padding-bottom:40px;}

    .section-top{padding-top:60px;}
    .section-bottom{padding-bottom:60px;}

    .section-top1{padding-top:40px;}
    .section-bottom1{padding-bottom:40px;}

    .section-top2{padding-top:80px;}
    .section-bottom2{padding-bottom:80px;}

}



// .home-page{width:100%;height:100vh;overflow-y:auto;}

/*头部*/
.top {width:100%; margin:0 auto;padding:0;position:absolute;z-index:99;}
.header{width:100%;transition: all 0.3s; -webkit-transition: all 0.3s;padding:50px 80px 0;display: flex;align-items: center;justify-content:space-between;}

.top-logo{width:19%;max-width:272px;}
.top-logo a{display: block;width:100%;}
.top-logo a img{display:block;width:100%;}
.top-logo1{display:block;}
.top-logo2{display:none;}


.nav-list{width:81%;display: flex;align-items: center;justify-content:center;}
.nav-list ul{display:flex;flex-direction: row;justify-content: space-around;align-items: center;}
.nav-list li{margin-left:30px;margin-right:30px;}
.nav-list li .first-nav{width:100%;}
.nav-list li .first-nav a{display:block;width:100%;text-align:center;transition: all 0.3s; -webkit-transition: all 0.3s;}
.nav-list li .first-nav a span{font-size:24px;color:var(--textColor2);line-height:48px;font-family: 'NotoMedium';transition: all 0.3s; -webkit-transition: all 0.3s;position:relative;}
.nav-list li .first-nav a span:after{content:"";position:absolute;bottom:-4px;left:50%;width:0;height:1px;background-color:#fff;transition: all 0.3s; -webkit-transition: all 0.3s;}
.nav-list li:hover .first-nav a span:after{width:100%;left:0;}
.nav-list li.cur .first-nav a span:after{width:100%;left:0;}
.apply-btn{width:128px;margin-left:20px;}
.apply-btn a{display:block;width:100%;font-size:24px;background-color:var(--mainColor);color:#fff;line-height:46px;border-radius:40px;text-align:center;transition: all 0.3s; -webkit-transition: all 0.3s;font-family: 'NotoMedium';}
.apply-btn a:hover{background-color:#fff;color:var(--mainColor);box-shadow:0 2px 12px rgba(255,255,255,0.3);}


.no-banner .top-logo1{display:none;}
.no-banner .top-logo2{display: block;}
.no-banner .nav-list li .first-nav a span{color:#000;}
.no-banner .nav-list li .first-nav a span:after{background-color:#000;}

.position{position:relative;}

.side-bar-box{position:fixed;z-index:100;width:80px;height:100vh;right:0;top:0;padding:10px 0;display: flex;justify-content:center;border-left:#e0e0e0 solid 1px;}
.side-bar{width:100%;}
.side-bar .bar-item{width:100%;margin-top:30px;text-align:center;}
.side-bar .bar-item a{display:block;width:100%;}
.side-bar .bar-item .icon i{font-size:18px;color:#333;}
.side-bar .bar-item .txt{font-size:16px;color:#333;line-height:24px;margin-top:4px;font-family: 'NotoRegular';}

.side-bar-box.first-screen{background:none;}
.side-bar-box.first-screen .side-bar .bar-item .icon i{color:#fff;}
.side-bar-box.first-screen .side-bar .bar-item .txt{color:#fff;}

.side-bar-box.open{background:none;}
.side-bar-box.open .side-bar .bar-item .icon i{color:#fff;}
.side-bar-box.open .side-bar .bar-item .txt{color:#fff;}

.back-top{width:38px;height:38px;border:#000 solid 1px;border-radius:50%;position:absolute;bottom:40px;left:50%;margin-left:-19px;cursor:pointer;display:none;}
.back-top a{display: flex;align-items:center;justify-content:center;height:100%;font-size:18px;color:#000;}
.back-top.bottom{border-color: #fff;}
.back-top.bottom a{color:#fff;}

.bar-line{position:absolute;left:-1px;bottom:0;width:1px;height:50%;background-color:#e0e0e0;display:none;}


.nav-icon{width:28px;height:18px;margin:0 auto;position:relative;cursor:pointer;transform: scale(0.85);}
.nav-icon span{position:absolute;top:2px;left:4px;width:20px;height:2px;background:#000;border-radius:2px;transition: all 0.3s; -webkit-transition: all 0.3s;}
.nav-icon span.line2{top:8px;opacity:1;}
.nav-icon span.line3{top:14px;}

.nav-icon.open span.line1{transform:rotate(45deg);top:8px;}
.nav-icon.open span.line2{opacity: 0;}
.nav-icon.open span.line3{transform:rotate(-45deg);top:8px;}

.side-bar-box.first-screen .nav-icon span{background-color:#fff;}
.side-bar-box.open .nav-icon span{background-color:#fff;}

@media(max-width: 1680px){
    .header{padding:40px 80px 0;}
    .nav-list li .first-nav a span{font-size:20px;}
    .apply-btn{width:112px;}
    .apply-btn a{font-size:20px;line-height:40px;}
}

@media(max-width: 1560px){
    .header{padding:32px 72px 0;}
    .nav-list li .first-nav a span{font-size:18px;}
    .apply-btn{width:112px;}
    .apply-btn a{font-size:18px;line-height:40px;}

    .side-bar-box{width:72px;}

    .back-top{width:34px;height:34px;bottom:32px;margin-left:-17px;}
    .back-top a{font-size:16px;}
}

@media(max-width: 1440px){
    .header{padding:20px 68px 0;}
    .nav-list li{margin-left:20px;margin-right:20px;}
    .nav-list li .first-nav a span{font-size:16px;line-height:40px;}
    .apply-btn{width:100px;}
    .apply-btn a{font-size:16px;line-height:36px;}

    .side-bar-box{width:68px;}
    .side-bar .bar-item{margin-top:20px;}
    .side-bar .bar-item .icon i{font-size:16px;}
    .side-bar .bar-item .txt{font-size:14px;line-height:20px;}

    .nav-icon{transform:scale(0.88);}
}

@media(max-width: 1080px){
    .header{padding:16px 4% 0;}
    .top-logo{width:46%;}
    .nav-list{display:none;}

    .side-bar-box{width:48px;padding:0;}
    .side-bar .bar-item{margin-top:16px;}
    .side-bar .bar-item .txt{font-size:12px;line-height:20px;margin-top:0;}

    .back-top{width:30px;height:30px;bottom:24px;margin-left:-15px;}
    .back-top a{font-size:14px;}
}

/*导航弹窗*/
.menu-box{width:100%;padding:60px 0;position:fixed;z-index:90;top:-200%;right:0;height:100%;background-color:#000;transition: all 0.6s;-webkit-transition: all 0.6s;}
.menu-close{position:absolute;right:100px;top:60px;font-size:32px;color:#fff;line-height:40px;width:32px;cursor:pointer;}
.menu-box.open{top:0;}
.menu-box .main{height:100%;}
.menu-height{width:100%;height:calc(100% - 40px);}
.menu-nav{width:100%;max-width:1280px;margin:0 auto;}
.menu-nav dl{width:27%;float:left;min-height:300px;padding-left:40px;padding-right:8%;border-left:#333 solid 1px;}
.menu-nav dl:nth-child(1){min-height:600px;}
.menu-nav dl:nth-child(4){width:19%;padding-right:0;}
.menu-nav dl:nth-child(7){width:19%;padding-right:0;}
.menu-nav dl dt a{display:block;width:100%;font-size:36px;color:#fff;line-height:68px;}
.menu-nav dl dt a p{line-height:inherit;font-family:'fzyh';}
.menu-nav dl dt .iconfont{display:none;font-size:12px;color:#fff;line-height:20px;transition: all 0.2s;-webkit-transition: all 0.2s;}
.menu-nav dl dd{margin-top:16px;}
.menu-nav dl dd a{font-size:20px;color:#fff;line-height:24px;font-family:'NotoRegular';position:relative; transition: all 0.2s; -webkit-transition: all 0.2s;}
.menu-nav dl dd a:after{content:"";position:absolute;bottom:-4px;left:50%;width:0;height:1px;background-color:#fff;transition: all 0.3s; -webkit-transition: all 0.3s;}
.menu-nav dl dd:hover a:after{width:100%;left:0;}
.menu-nav dl dd.active a:after{width:100%;left:0;}


@media(max-width: 1560px){
    .menu-nav dl{min-height:280px;}
    .menu-nav dl dt a{font-size:32px;line-height:60px;}
    .menu-nav dl dd a{font-size:18px;}

    .menu-close{right:96px;}
}
@media(max-width: 1440px){
    .menu-box{padding:48px 0;}
    .menu-nav dl{min-height:240px;padding-left:32px;}
    .menu-nav dl:nth-child(1){min-height:480px;}
    .menu-nav dl dt a{font-size:28px;line-height:56px;}
    .menu-nav dl dd{margin-top:12px;}
    .menu-nav dl dd a{font-size:16px;}

    .menu-close{right:80px;top:48px;font-size:28px;}
}
@media(max-width: 1280px){
    .menu-box{padding:36px 0;}
    .menu-nav dl{min-height:200px;padding-left:24px;}
    .menu-nav dl:nth-child(1){min-height:400px;}
    .menu-nav dl dt a{font-size:24px;line-height:40px;}
    .menu-nav dl dd{margin-top:8px;}
    .menu-nav dl dd a{font-size:14px;}

    .menu-close{top:36px;}
}
@media(max-width: 1080px){
    .menu-box{padding:24px 0;}
    .menu-nav dl{min-height:180px;padding-left:16px;padding-right:4%;}
    .menu-nav dl:nth-child(1){min-height:360px;}
    .menu-nav dl dt a{font-size:20px;line-height:32px;}

    .menu-close{right:6%;top:24px;font-size:24px;line-height:24px;}
}
@media(max-width: 769px){
    .menu-box{padding:16px 0;}
    .menu-height{display:block;overflow-y:auto;height:calc(100% - 40px);overflow-x: hidden;}
    .menu-nav{margin-top:24px;}
    .menu-nav dl{width:100%;float:none;min-height:0;padding-left:0;padding-right:0;border-left:none;}
    .menu-nav dl:nth-child(1){min-height:0;}
    .menu-nav dl:nth-child(4){width:100%;}
    .menu-nav dl:nth-child(7){width:100%;}
    .menu-nav dl dt .iconfont{display:block;font-size:12px;color:#fff;line-height:20px;transition: all 0.2s;-webkit-transition: all 0.2s;}
    .menu-nav dl dt a{font-size:18px;line-height:48px;display: flex;align-items:center;justify-content:space-between;border-bottom:#333 solid 1px;}
    .menu-nav dl dd{margin-top:0;display: none;}
    .menu-nav dl dd a{line-height:32px;}

    .menu-close{right:60px;top:16px;font-size:18px;width:20px;}
}


/*footer*/
.footer{width:100%;padding:80px 0;background:#000;overflow:hidden;position:relative;z-index:80;}
.fooer-main{width:100%;max-width:1760px;margin:0 auto;}
.footer-logo{width:46%;max-width:272px;}
.footer-logo a{display:block;width:100%;}
.footer-logo a img{display: block;width:100%;}
.footer-list{width:100%;display: flex;justify-content:space-between;flex-wrap:wrap;margin-top:56px;}
.footer-text{width:34%;max-width:380px;font-size:16px;color:#ccc;line-height:28px;font-family: 'NotoRegular';display: flex;flex-direction: column;justify-content: space-between;}

.footer-nav{width:60%;}
.footer-nav dl{width:28%;float:left;min-height:168px;padding-right:8%;margin-bottom:6%;}
.footer-nav dl:nth-child(4){width:16%;padding-right:0;}
.footer-nav dl:nth-child(7){width:16%;padding-right:0;}
.footer-nav dl dt{margin-bottom:24px;}
.footer-nav dl dt a{display:block;width:100%;font-size:12px;color:#fff;line-height:20px;}
.footer-nav dl dt a p{line-height:inherit;font-family: 'NotoRegular';}
.footer-nav dl dt .iconfont{display:none;font-size:12px;color:#fff;line-height:20px;transition: all 0.2s;-webkit-transition: all 0.2s;}
.footer-nav dl dd a{display:block;width:100%;font-size:16px;color:#ccc;line-height:24px;font-family: 'NotoRegular';transition: all 0.2s; -webkit-transition: all 0.2s;}
.footer-nav dl dd a:hover{color:#fff;}

.footer-info-btn{width:180px;height:48px;margin-top:40px;}
.footer-info-btn a{display:block;width:100%;font-size:20px;color:#fff;line-height:46px;border:#fff solid 1px;text-align:center;transition: all 0.3s;-webkit-transition: all 0.3s;font-family: 'NotoRegular';}
.footer-info-btn a:hover{background-color:#fff;color:#000;}

.copyright{width:100%;font-size:16px;color:#fff;line-height:20px;margin-top:80px;display: flex;align-items:center;justify-content:space-between;}
.copyright .cp-left{font-family: 'HalyardRegular';display: flex;align-items:center;}
.copyright .cp-left .icp{margin-left:20px;padding-left:20px;border-left:#e0e0e0 solid 1px;font-size:16px;color:#fff;line-height:20px;}
.copyright .cp-right{display: flex;align-items:center;font-family: 'NotoRegular';}
.copyright .cp-right a{margin-right:20px;font-size:16px;color:#fff;line-height:20px;font-family: 'NotoRegular';}

@media(max-width:1560px){
    .footer{padding:72px 0;}
    .footer-list{margin-top:48px;}

    .footer-info-btn{width:160px;height:44px;margin-top:32px;}
    .footer-info-btn a{font-size:18px;line-height:42px;}
    .copyright{margin-top:72px;}
}
@media(max-width:1440px){
    .footer{padding:68px 0;}
    .footer-list{margin-top:40px;}
    .footer-text{font-size:14px;line-height:24px;}

    .footer-nav dl{min-height:152px;padding-right:4%;}
    .footer-nav dl dt{margin-bottom:16px;}
    .footer-nav dl dd a{font-size:14px;}

    .footer-info-btn{width:144px;height:38px;margin-top:24px;}
    .footer-info-btn a{font-size:16px;line-height:36px;}
    .copyright{margin-top:68px;font-size:14px;}
    .copyright .cp-left .icp{margin-left:16px;padding-left:16px;font-size:14px;}
    .copyright .cp-right a{margin-right:16px;font-size:14px;}
}

@media(max-width:1080px){
    .footer{padding:32px 0 20px;}
    .footer-list{margin-top:16px;}
    .footer-text{font-size:12px;line-height:20px;width:100%;max-width:100%;}

    .footer-nav{width:100%;display:block;margin-top:16px;}
    .footer-nav dl{width:100%;border-bottom:rgba(255,255,255,0.3) solid 1px;padding:0;min-height:0;margin-bottom:0;}
    .footer-nav dl:nth-child(4){width:100%;}
    .footer-nav dl:nth-child(7){width:100%;}
    .footer-nav dl:last-child{border-bottom:none;}
    .footer-nav dl dt{margin-bottom:0;}
    .footer-nav dl dt a{display: flex;align-items: center;justify-content:space-between;font-size:12px;line-height:40px;font-weight:normal;}
    .footer-nav dl dt .iconfont{display:block;}
    .footer-nav dl dd{width:100%;display:none;margin:0;}
    .footer-nav dl dd a{font-size:14px;line-height:32px;padding:0 16px;}

    .footer-info-btn{width:100px;height:32px;margin-top:16px;}
    .footer-info-btn a{font-size:14px;line-height:30px;}
    .copyright{margin-top:20px;font-size:12px;display:block;text-alidn:center;}
    .copyright .cp-left .icp{margin-left:8px;padding-left:8px;font-size:12px;}
    .copyright .cp-right a{margin-right:12px;font-size:12px;}
}

@media(max-width:769px){
    .copyright .cp-left{display: block;}
    .copyright .cp-left .icp{margin-left:0;padding-left:0;border:none;}
    .copyright .cp-right{display: block;}
}

/* 内页banner */
/*.inside-banner{width:100%;position:relative;}
.inside-banner .banner-img{width:100%;min-height:100px;}
.inside-banner .banner-img img{display:block;width:100%;}

.inside-banner-cont{position:absolute;top:0;left:0;width:100%;height:100%;display: flex;align-items: center;}

.no-banner{width:100%;height:80px;}
@media(max-width:1440px){
    .no-banner{height:72px;}
}
@media(max-width:1080px){
    .no-banner{height:48px;}
}*/

/*面包屑导航*/
/*.location{width:100%;border-bottom:#e0e0e0 solid 1px;padding:16px 0;}
.crumbs-nav{display:flex;align-items: center;color:#333;}
.crumbs-nav i{font-size:16px;margin-left:12px;margin-right:12px;color:#ccc;}
.crumbs-nav a{line-height:40px;font-size:16px;color:#333;}
.crumbs-nav a:hover{color:var(--mainColor);}
.crumbs-nav strong{line-height:40px;font-size:16px;color:var(--mainColor);}

@media (max-width:1440px){
    .location{padding:12px 0;}
    .crumbs-nav i{font-size:14px;margin-left:8px;margin-right:8px;}
    .crumbs-nav a{line-height:36px;font-size:14px;}
    .crumbs-nav strong{line-height:36px;font-size:14px;}
}

@media (max-width:1080px){
    .crumbs-nav{display:none;}
    .wap-location{display:none;}
}*/

/*内页导航*/
/*.inside-nav-box{width:100%;background:var(--bgColor1);position:relative;}
.inside-nav-height{width:100%;background:var(--bgColor1);position:relative;}
.inside-nav{width:100%;position:relative;}
.inside-nav ul{justify-content:center;}
.inside-nav li{width:auto;position:relative;padding:0 60px;}
.inside-nav a{display:block;font-size:18px;color:#333;line-height:88px;font-weight:bold;transition: all 0.2s;-webkit-transition: all 0.2s;position:relative;}
.inside-nav li a:after{content:"";position: absolute;top:50%;margin-top:-20px;left:-60px;width:2px;height:40px;background:#e0e0e0;transition:all 0.3s;-webkit-transition:all 0.3s;}
.inside-nav li.active a{color:var(--mainColor);}
.inside-nav li:hover a{color:var(--mainColor);}
.inside-nav li:first-child a:after{display:none;}

.inside-nav .swiper-button-next,.inside-nav .swiper-button-prev{width:32px;height:100%;margin-top:0;z-index:9;transition:all 0.3s;-webkit-transition:all 0.3s;opacity:1;left:0;top:0;font-size:16px;color:#000;display:flex;align-items: center;background: linear-gradient(to right, rgb(245,245,245), rgba(245,245,245,.5));justify-content:flex-start;}
.inside-nav .swiper-button-next {left:auto;right:0;background: linear-gradient(to left, rgb(245,245,245), rgba(245,245,245,5));justify-content:flex-end;}
.inside-nav .swiper-button-next:hover,.inside-nav .swiper-button-prev:hover{color:var(--mainColor);}
.inside-nav .swiper-button-prev.swiper-button-disabled {opacity:0;}
.inside-nav .swiper-button-next.swiper-button-disabled {opacity:0;}

.inside-nav-height.scroll{position:fixed;top:0px;z-index:20;box-shadow:0 2px 12px rgba(0,0,0,0.1);}


@media(max-width:1440px){
    .inside-nav li{padding:0 40px;}
    .inside-nav a{font-size:16px;line-height:68px;}
    .inside-nav li a:after{margin-top:-16px;left:-40px;width:1px;height:32px;}
}

@media(max-width:1080px){
    .inside-nav{max-width:100%;}
    .inside-nav li{padding:0 32px;}
    .inside-nav a{font-size:14px;line-height:60px;}
    .inside-nav li a:after{margin-top:-12px;left:-32px;height:24px;}
}
@media(max-width:768px){
    .inside-nav li{padding:0 16px;}
    .inside-nav a{line-height:48px;}
    .inside-nav li a:after{margin-top:-10px;left:-16px;height:20px;}
}
*/
/*.page-title{margin-top:80px;margin-bottom:56px;width:100%;text-align:center;position:relative;}
.page-title h1{font-size:36px;color:var(--textColor);line-height:40px;position:relative;z-index:3;font-weight:bold;}
.page-title h2{font-size:36px;color:var(--textColor);line-height:40px;position:relative;z-index:3;font-weight:bold;}
.page-title p{font-size:18px;color:#333;line-height:28px;margin-top:16px;}

@media (max-width:1440px){
    .page-title{margin-top:60px;margin-bottom:40px;}
    .page-title h1{font-size:32px;line-height:36px;}
    .page-title h2{font-size:32px;line-height:36px;}
    .page-title p{font-size:16px;margin-top:12px;}
}
@media (max-width:1080px){
    .page-title{margin-top:40px;margin-bottom:20px;}
    .page-title h1{font-size:24px;line-height:28px;}
    .page-title h2{font-size:24px;line-height:28px;}
    .page-title p{font-size:14px;margin-top:8px;}
}*/


/*编辑器*/
.editor{font-size:24px;color:#333;line-height:46px;font-family: 'NotoRegular';}
.editor a{font-size:24px;color:#333;line-height:46px;font-family: 'NotoRegular';}
.editor h5{font-size:36px;color:#333;line-height:40px;font-family: 'fzyh';margin-bottom:20px;margin-top:68px;}
.editor h6{margin-bottom:20px;font-size:28px;color:var(--mainColor);line-height:48px;font-family: 'NotoRegular';}
.editor p{line-height:inherit;margin-bottom:16px;}
.editor img{max-width:100%;}
.editor strong{font-weight:bold;}
.editor em{font-style:italic;}
.editor ul,.editor ol,.editor li{list-style:unset;font-size:24px;color:#333;line-height:40px;font-family: 'NotoRegular';margin-bottom:16px;border:none!important;}
.editor ul{padding-left:24px;}
.editor li::marker{text-indent:24px!important;font-size:14px;line-height:40px;}

@media(max-width:1680px){
    .editor{font-size:22px;line-height:44px;}
    .editor a{font-size:22px;line-height:44px;}
    .editor h5{font-size:32px;line-height:36px;margin-bottom:20px;margin-top:60px;}
    .editor h6{margin-bottom:20px;font-size:24px;line-height:44px;}
    .editor p{margin-bottom:16px;}
    .editor ul,.editor li{font-size:22px;}
}
@media(max-width:1560px){
    .editor{font-size:20px;line-height:40px;}
    .editor a{font-size:20px;line-height:40px;}
    .editor h5{font-size:30px;line-height:36px;margin-bottom:18px;margin-top:56px;}
    .editor h6{margin-bottom:16px;font-size:22px;line-height:40px;}
    .editor p{margin-bottom:12px;}
    .editor ul,.editor li{font-size:20px;line-height:36px;margin-bottom:12px;}
    .editor ul{padding-left:20px;}
    .editor li::marker{text-indent:20px!important;line-height:36px;}
}

@media(max-width:1440px){
    .editor{font-size:18px;line-height:36px;}
    .editor a{font-size:18px;line-height:36px;}
    .editor h5{font-size:28px;line-height:32px;margin-bottom:16px;margin-top:48px;}
    .editor h6{margin-bottom:12px;font-size:20px;line-height:36px;}
    .editor p{margin-bottom:10px;}
    .editor ul,.editor li{font-size:18px;line-height:32px;margin-bottom:10px;}
    .editor li::marker{line-height:32px;}
}
@media(max-width:1280px){
    .editor h5{font-size:24px;line-height:28px;margin-bottom:12px;margin-top:40px;}
}
@media(max-width:1080px){
    .editor{font-size:16px;line-height:28px;}
    .editor a{font-size:16px;line-height:28px;}
    .editor h5{font-size:20px;line-height:24px;margin-bottom:12px;margin-top:32px;}
    .editor h6{margin-bottom:8px;font-size:18px;line-height:28px;}
    .editor p{margin-bottom:8px;}
    .editor ul,.editor li{font-size:16px;line-height:24px;margin-bottom:8px;}
    .editor li::marker{line-height:24px;}
}
@media(max-width:769px){
    .editor{font-size:14px;line-height:24px;}
    .editor a{font-size:14px;line-height:24px;}
    .editor h5{font-size:16px;line-height:20px;margin-bottom:8px;margin-top:28px;}
    .editor h6{font-size:16px;line-height:24px;}
    .editor ul,.editor li{font-size:14px;line-height:20px;}
    .editor li::marker{line-height:20px;}
}

/*
.form-box{width:100%;background-color:#f5f5f5;padding-top:1px;}
.form-list{width:100%;max-width:500px;margin:0 auto;}
.form-list li{width:100%;margin-bottom:24px;position:relative;}
.form-list li h6{font-size:16px;color:#999;line-height:32px;transition:all 0.3s;-webkit-transition:all 0.3s;position:absolute;left:20px;top:50%;transform:translateY(-50%);z-index:3;}
.form-list li h6 em{color:var(--mainColor);}
.form-list li .form-input{width:100%;height:56px;background:none;background-color:#fff;padding:18px 20px 18px 48px;text-align:right;font-size:16px;line-height:20px;color:#333;outline:none;border:#e0e0e0 solid 1px;position:relative; transition:all 0.3s;-webkit-transition:all 0.3s;border-radius:8px;}
.form-list li .select{width:100%;height:56px;background:none;background-color:#fff;padding:18px 20px 18px 48px;text-align:right;font-size:16px;line-height:20px;color:#333;outline:none;border:#e0e0e0 solid 1px;position:relative; transition:all 0.3s;-webkit-transition:all 0.3s;border-radius:8px;}

.form-list li .layui-form-select .layui-input{width:100%;height:56px;background-color:#fff;padding:18px 40px;text-align:right;font-size:16px;line-height:20px;color:#333;outline:none;border:#e0e0e0 solid 1px;position:relative; transition:all 0.3s;-webkit-transition:all 0.3s;border-radius:8px;}
.form-list li .layui-form-select .layui-edge{background-image:url(../images/icon-down.png);background-position:92% center;background-repeat:no-repeat;background-size:16px;border:none;width:16px;height:16px;margin-top:-7px;right:16px;}
.form-list li  .layui-form-select dl{text-align:right;}
.form-list li  .date-input{position:absolute;width:50%;height:100%;right:0;top:0;background-image:url(../images/icon-down.png);background-position:92% center;background-repeat:no-repeat;background-size:16px;border:none;outline: none;border-radius:8px;text-align:right;padding-right:40px;}

.form-list li.form-textarea{width:100%;}
.form-list li textarea{width:100%;height:160px;padding:16px 20px 16px 48px;font-size:16px;color:#333;line-height:28px;transition:all 0.3s;-webkit-transition:all 0.3s;background-color:var(--bgColor1);outline:none;border:none;position:relative; font-family:"微软雅黑";}
.form-list li .icon{width:48px;height:56px;display:flex;align-items: center;justify-content:center;font-size:20px;color:#999;position:absolute;left:0;bottom:0;z-index:5;}
.form-list li.form-textarea .icon{bottom:auto;top:40px;}

.form-list li.form-code .form-input{width:calc(100% - 160px);border-top-right-radius: 0;border-bottom-right-radius: 0;border-right:none;}
.form-list li .yzm-img{width:160px;position:absolute;right:0;bottom:0;height:56px;overflow:hidden;background-color:#fff;padding:9px 20px;border-radius:8px;border:#e0e0e0 solid 1px;border-left:none;border-top-left-radius: 0;border-bottom-left-radius: 0;}
.form-list li .yzm-img img{display:block;width:100%;height:100%;}

.form-list li.form-btn{margin-top:40px;}
.form-list li .submit-btn{width:230px;height:56px;background:var(--mainColor);border:none;border-radius:8px;font-size:16px;color:#fff;transition:all 0.3s;-webkit-transition:all 0.3s;cursor:pointer;margin:0 auto;display:block;}
.form-list li .submit-btn:hover{box-shadow:0 2px 12px rgba(234,89,14,0.6);}

.form-tel{width:100%;max-width:500px;margin:30px auto 0;display:flex;align-items:center;justify-content:space-between;font-size:16px;color:#999;line-height:24px;}
.form-tel a{text-decoration:underline;color:var(--mainColor);}

@media(max-width:769px){
    .form-list li{margin-bottom:16px;}
    .form-list li h6{font-size:14px;line-height:24px;left:12px;}
    .form-list li .form-input{height:40px;padding:10px 32px;font-size:14px;}
    .form-list li .select{height:40px;padding:10px 32px;font-size:14px;}
    .form-list li .layui-form-select .layui-input{height:40px;padding:10px 32px;font-size:14px;}
    .form-list li  .date-input{padding-right:32px;}

    .form-list li.form-code .form-input{width:calc(100% - 100px);}
    .form-list li .yzm-img{width:100px;height:40px;padding:4px 8px;}

    .form-list li.form-btn{margin-top:32px;}
    .form-list li .submit-btn{width:160px;height:44px;font-size:14px;}

    .form-tel{margin:30px auto 0;display:block;font-size:14px;line-height:32px;text-align:center;}
}






.inside-content{padding:100px 0;}

@media (max-width:1440px){
    .inside-content{padding:80px 0;}
}
@media (max-width:1200px){
    .inside-content{padding:60px 0;}
}
@media (max-width:769px){
    .inside-content{padding:40px 0;}
}
*/

/*分页*/
.list-more{width:100%;margin-top:20px;margin-bottom:20px;display:none;}
.list-more a{display:block;width:120px;margin:0 auto;background:#fff;border:#e0e0e0 solid 1px;border-radius:40px;font-size:12px;color:#888;text-align:center;line-height:36px;transition: all 0.6s;-webkit-transition: all 0.6s;}
.list-more a:hover{background:#000;color:#fff;transition: all 0.6s;-webkit-transition: all 0.6s;}

.page01 { text-align:center; width:100%;margin-top:20px;margin-bottom:40px;}
.page01 a{display:inline-block;zoom:1;*display:inline;padding:0 16px;height:46px;line-height:46px;color:#999;font-size: 18px;cursor: pointer; text-align:center;font-family:"Arial";}
.page01 .current{ color:#000;}
.page01 a:hover{color:#000;}
.page01 input{display:inline-block;zoom:1;*display:inline;width:60px;padding:0 8px;height:40px;border:none;background:#fff;}
.page01 input.go{border:#000 solid 2px;color:#000;}
.page02 { float:left;width:100%; height:45px; line-height:45px; text-align:center;color:#333; font-size:16px; background:#fff; margin-top:20px; display:none;}
.page01 button.btn{width:46px;height:46px;border:none;background-color:#000;border-radius:50%;outline:none;font-size:20px;color:#fff;cursor:pointer;}
.page01 button.btn.disabled{background-color:#ccc;}

@media (max-width:991px){
    .list-more{display:block;}
    .page01{display:none;}
}

.empty{width:100%;padding:80px 0;display:none;}
.empty img{display:block;max-width: 100%;margin:0 auto;}
.empty p{font-size:12px;color:#999;line-height:40px;text-align:center;}

.gray{-webkit-filter: grayscale(100%);-moz-filter: grayscale(100%);-ms-filter: grayscale(100%);-o-filter: grayscale(100%);filter: grayscale(100%);filter: gray;transition: all 0.3s;-webkit-transition: all 0.3s;opacity:0.8;}
.gray:hover{-webkit-filter: grayscale(0);-moz-filter: grayscale(0);-ms-filter: grayscale(0);-o-filter: grayscale(0);filter: grayscale(0);filter:none;opacity:1;}

/*视频弹框*/
.popup-video-bg{position:fixed;z-index:1000;top:0;left:0;background:#000;opacity:0.8;width:100%;height:100%;display:none;}
.videobox-popup{position:fixed;z-index:1001;width:60%;top:10vh;left:20%;height:80vh;display:flex;align-items:center;justify-content:center;display:none;}
.videobox-popup .popup-video-close{position:absolute;right:-24px;top:-24px;width:48px;height:48px;background:rgba(0,0,0,0.6) url(../images/icon-nav-close01.png) no-repeat center;background-size:28px;border:#fff solid 2px;border-radius:50%;cursor:pointer;opacity:0.8;}
.video-content{width:100%;height:100%;display:flex;align-items:center;justify-content:center;}
.videobox-popup video{display:block;max-width:100%;max-height:100%;object-fit: cover;}

@media(max-width:1280px){
    .videobox-popup{width:80%;left:10%;}
}

@media(max-width:769px){
    .videobox-popup{width:95%;left:2.5%;}
    .videobox-popup .popup-video-close{right:auto;top:auto;bottom:-48px;left:50%;margin-left:-14px;width:28px;height:28px;border:#fff solid 1px;background:rgba(0,0,0,0.6) url(../images/icon-nav-close01.png) no-repeat center;background-size:16px;}
}


.pc-cont{display:block!important;}
.wap-cont{display:none!important;}

@media(max-width:769px){
    .pc-cont{display:none!important;}
    .wap-cont{display:block!important;}
}



/*
.popup-bg{width:100%;position:fixed;z-index:100000;height:100%;left:0;top:0;background-color: #000;opacity:0.4;display:none;}
.popup-box{width:680px;position:fixed;z-index:100001;left:50%;top:50%;background-color: #fff;border-radius:16px;padding:80px;transform:translate(-50%,-50%);display:none;}
.popup-close{width:36px;height:36px;border-radius:50%;position:absolute;right:10px;top:10px;background-color:#f0f0f0;font-size:16px;color:#888;text-align:center;line-height:36px;cursor: pointer;transition:all 0.2s;-webkit-transition:all 0.2s;}
.popup-close:hover{background-color:var(--mainColor);color:#fff;}
.popup-content{width:100%;text-align:center;}
.popup-content .icon{width:80px;margin:0 auto;}
.popup-content .icon img{display:block;width:100%;}
.popup-content .title{font-size:24px;color:#333;line-height:32px;margin-top:24px;}
.popup-content .txt{max-width:426px;margin:0 auto;margin-top:16px;font-size:16px;color:#888;line-height:32px;}
.popup-content .btn{width:100%;margin-top:40px;display: flex;align-items:center;justify-content:space-between;}
.popup-content .btn .btn-item{width:47%;background-color:var(--mainColor);color:#fff;font-size:16px;line-height:24px;padding:10px;border-radius:8px;}

@media(max-width:769px){
    .popup-box{width:90%;border-radius:8px;padding:40px 20px;}
    .popup-close{width:36px;height:36px;}
    .popup-content .icon{width:60px;}
    .popup-content .title{font-size:18px;line-height:28px;margin-top:16px;}
    .popup-content .txt{margin-top:12px;font-size:14px;line-height:28px;}
    .popup-content .btn{margin-top:24px;}
    .popup-content .btn .btn-item{font-size:14px;line-height:24px;padding:8px;}
}


.anchor{position:relative;top:-80px;}
@media(max-width:769px){
    .anchor{top:-48px;}
}
*/

/*
.cookie-popup{position:fixed;bottom:0;left:0;width:100%;z-index:99;background-color:rgba(0,0,0,0.7);}
.cookie-main{width:100%;max-width:840px;padding:40px 20px;margin:0 auto;}
.cookie-text{font-size:16px;color:#fff;line-height:28px;width:calc(100% - 200px);}
.cookie-btn .btn{display:block;width:120px;border:#fff solid 1px;background: none;font-size:14px;color:#fff;text-align:center;line-height:36px;border-radius:4px;margin-bottom:8px;cursor: pointer;}
.cookie-btn .btn.agree{background-color:#fff;color:#333;}

@media(max-width:769px){
    .cookie-main{padding:24px 16px;display:block;}
    .cookie-text{width:100%;font-size:14px;line-height:24px;}
    .cookie-btn{width:100%;margin-top:20px;display:flex;align-items:center;justify-content:center;}
    .cookie-btn .btn{margin-bottom:0;margin-left:8px;margin-right:8px;width:100px;font-size:12px;line-height:32px;}
}

*/

.wx-popup{position:fixed;left:-128px;bottom:20%;z-index:85;transition:all 0.6s;-webkit-transition:all 0.6s;display: flex;flex-direction:row-reverse;cursor: pointer;}
.wx-popup .wx-code{width:128px;height:128px;background-color:#fff;overflow:hidden;box-shadow:0 0 12px rgba(0,0,0,0.03);}
.wx-popup .wx-code img{display: block;width:100%;}
.wx-popup .icon{display: flex;align-items:center;justify-content:center;width:48px;height:48px;font-size:36px;color:#000;background-color:rgba(255,255,255,0.5);}
.wx-popup:hover{left:0;}
.wx-popup:hover .icon{background-color:rgba(255,255,255,1);}

@media(max-width:769px){
    .wx-popup{left:-100px;bottom:15%;}
    .wx-popup .wx-code{width:100px;height:100px;}
    .wx-popup .icon{width:36px;height:36px;font-size:24px;}
}

/*团队信息弹窗*/
.team-popup-bg{position:fixed;left:0;top:0;z-index:80;width:100%;height:100%;background-color:#000;opacity:0.3;display:none;}
.team-popup{position:fixed;left:50%;top:50%;z-index:85;width:640px;height:720px;background-color:#fff;border-radius:12px;margin-left:-320px;margin-top:-360px;padding:60px;display:none;}
.team-popup-close{width:32px;height:32px;position:absolute;top:16px;right:16px;display: flex;align-items:center;justify-content:center;font-size:24px;color:#000;cursor:pointer;}
.team-popup-content{width:100%;position:relative;height:100%;}
.team-popup-img{width:48%;margin:0 auto;position:relative;overflow:hidden;}
.team-popup-img .img-cont{width:100%;height:0;padding-bottom:100%;overflow:hidden;position: relative;}
.team-popup-img .img-cont .img-flex{position:absolute;width:100%;height:100%;top:0;left:0;background-color:#f5f5f5;border-radius:50%;overflow:hidden;display:flex;align-items:center;justify-content:center;}
.team-popup-img .img-cont img{display:block;max-width:100%;max-height: 100%;object-fit: cover;transition: all 1s;-webkit-transition: all 1s;}
.team-popup-title{width:100%;margin-top:20px;line-height:40px;font-size:24px;color:#333;text-align:center;font-family: 'NotoRegular','HalyardRegular';}
.team-popup-title .email{color:#3d68b2;font-size:18px;line-height:32px;font-family: 'HalyardRegular';}
.team-popup-text{width:100%;margin-top:40px;}

@media(max-width:1680px){
    .team-popup{height:700px;margin-top:-350px;padding:56px;}
    .team-popup-title{margin-top:16px;line-height:36px;font-size:22px;}
    .team-popup-title .email{font-size:16px;line-height:28px;}
    .team-popup-text{margin-top:36px;}
}

@media(max-width:1560px){
    .team-popup{height:680px;margin-top:-340px;padding:48px;}
    .team-popup-title{margin-top:16px;line-height:32px;font-size:20px;}
    .team-popup-title .email{font-size:16px;line-height:24px;}
    .team-popup-text{margin-top:32px;}
}
@media(max-width:1440px){
    .team-popup{height:640px;margin-top:-320px;padding:40px;}
    .team-popup-title{margin-top:12px;line-height:28px;font-size:18px;}
    .team-popup-title .email{font-size:14px;line-height:20px;}
    .team-popup-text{margin-top:28px;}
}

@media(max-width:1080px){
    .team-popup{width:560px;margin-left:-280px;height:600px;margin-top:-300px;padding:32px;}
    .team-popup-title{margin-top:12px;line-height:24px;font-size:16px;}
    .team-popup-text{margin-top:24px;}
}

@media(max-width:769px){
    .team-popup-close{width:28px;height:28px;top:10px;right:10px;font-size:20px;}
    .team-popup{width:80%;margin-left:0;left:4%;height:80vh;margin-top:-40vh;padding:20px;}
    .team-popup-title{font-size:14px;}
    .team-popup-text{margin-top:20px;}
}



/*首页通知弹窗*/
.notice-popup-bg{position:fixed;left:0;top:0;z-index:80;width:100%;height:100%;background-color:#000;opacity:0.3;}
.notice-popup{position:fixed;left:50%;top:50%;z-index:85;width:560px;height:720px;background-color:#fff;border-radius:12px;margin-left:-280px;margin-top:-360px;padding:60px;}
.notice-popup-close{width:32px;height:32px;position:absolute;top:16px;right:16px;display: flex;align-items:center;justify-content:center;font-size:24px;color:#000;cursor:pointer;}
.notice-popup-content{width:100%;position:relative;height:100%;}
.notice-popup-txt{width:100%;text-align:center;}
.notice-time{font-size:48px;color:var(--mainColor);line-height:64px;text-align: center;font-family:'fzyh';}
.notice-time span{font-size:24px;}
.notice-time em{font-family:'HalyardRegular';font-weight: bold;}

@media(max-width:1680px){
    .notice-popup{height:680px;margin-top:-340px;padding:56px;}
    .notice-time{font-size:44px;line-height:60px;}
    .notice-time span{font-size:22px;}
}

@media(max-width:1560px){
    .notice-popup{width:520px;margin-left:-260px;height:640px;margin-top:-320px;padding:48px;}
    .notice-time{font-size:40px;line-height:60px;}
    .notice-time span{font-size:20px;}
}
@media(max-width:1440px){
    .notice-popup{width:480px;margin-left:-240px;height:580px;margin-top:-290px;}
    .notice-time{font-size:32px;line-height:48px;}
    .notice-time span{font-size:16px;}
}
@media(max-width:1280px){
    .notice-popup{width:400px;margin-left:-200px;height:520px;margin-top:-260px;}
    .notice-time{font-size:28px;line-height:44px;}
}
@media(max-width:1080px){
    .notice-popup{width:320px;margin-left:-160px;height:440px;margin-top:-220px;padding:40px;}
    .notice-time{font-size:24px;line-height:40px;}
    .notice-time span{font-size:14px;}
}

@media(max-width:769px){
    .notice-popup-close{width:28px;height:28px;top:10px;right:10px;font-size:20px;}
    .notice-popup{width:280px;margin-left:-140px;height:320px;margin-top:-160px;padding:24px;}
    .notice-time{font-size:18px;line-height:24px;}
}








