:root{
    --title--:#303133;
    --default--:#606266;
    --green--:#96B737;
    --font--:#909399;
    --end--:#3C3C3D;
}
body{
    overflow-x:hidden;
}
@font-face {
	font-family: AlibabaPuHuiTi-2-55-Regular;
	src:url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.eot) format('embedded-opentype'),
    url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.otf) format('opentype'),
    url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.ttf) format('TrueType'),
    url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.woff) format('woff'),
    url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-55-Regular/AlibabaPuHuiTi-2-55-Regular.woff2) format('woff2');
}
@font-face {
	font-family: AlibabaPuHuiTi-2-45-Light;
	src:url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-45-Light/AlibabaPuHuiTi-2-45-Light.eot) format('embedded-opentype'),
url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-45-Light/AlibabaPuHuiTi-2-45-Light.otf) format('opentype'),
url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-45-Light/AlibabaPuHuiTi-2-45-Light.ttf) format('TrueType'),
url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-45-Light/AlibabaPuHuiTi-2-45-Light.woff) format('woff'),
url(https://puhuiti.oss-cn-hangzhou.aliyuncs.com/AlibabaPuHuiTi-2/AlibabaPuHuiTi-2-45-Light/AlibabaPuHuiTi-2-45-Light.woff2) format('woff2');
}
@font-face {
    font-family:Poppins-Medium;
    src:url('../font/Poppins-Medium.ttf')
}
@font-face {
    font-family:DINPro-Medium;
    src:url('../font/DINPro-Medium.ttf')
}
*{
    box-sizing: border-box;
    padding:0;
    margin:0;
    font-family:' AlibabaPuHuiTi-2-45-Light','微软雅黑','Arial','PingFang SC';
}
ul,li{
    list-style: none;
}
a:hover,
a{
    text-decoration: none;
    color:var(--title--);
}
img{
    border:none;
    max-width:100%;
}
.cl{
    clear: both;
}
.containers{
    max-width:1300px;
    margin:0 auto;
}

/* header */
.header{
    height:100px;
    width:100%;
    z-index: 333;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all .6s;
    -webkit-transition: all .6s;
    -moz-transition: all .6s;
    -ms-transition: all .6s;
    -o-transition: all .6s;
}
@media (max-width:1440px){
    .header{
        height:90px;
    }
}
.header.white-header{
    background: #2C333E;
}
.header .containers{
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1730px;
    height:100%;
}
@media (max-width:1800px){
    .header .containers{
        max-width: 90%;
        margin:0 auto;
    }
}
.logo{
    width:268px;
    height:56px;
    margin:0;
}
@media (max-width:1440px){
    .logo{
        width:200px;
        height:42px;
    }
}
.navi{
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.navbox{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-right:70px;
}
@media (max-width:1440px){
    .navbox{
        padding-right:60px;
    }
}
.navbox>li{
    position: relative;
}
.navbox>li>a{
    position: relative;
    display: block;
    padding:15px 30px;
    margin:0 6px;
    font-family: 'AlibabaPuHuiTi-2-55-Regular';
    color: #606266;
    font-size: 18px;
    font-weight: 500;
    line-height: 25px;
    letter-spacing: 0.02em;    
}
@media (max-width:1800px){
    .navbox>li>a{
        padding:20px 12px;
    }
}
@media (max-width:1440px){
    .navbox>li>a{
        padding:16px 10px;
    }
}
.navbox>li>a::after{
    content: '';
    position: absolute;
    left:50%;
    bottom: 0;
    width:0;
    height:3px;
    opacity: 0;
    background: var(--green--);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.navbox>li:hover>a::after,
.navbox>li.on>a::after{
    width:38px;
    opacity: 1;
}
.navbox>li .navbox-parent{
    display: none;
    position: absolute;
    left:50%;
    top:50px;
    z-index: 333;
    height:auto;
    padding:8px 4px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.navbox>li dl{
    margin-top:43px;
    position: relative;
    width:160px;
    padding:10px 0;
    background: #FFFFFF;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    box-shadow: 0px 14px 43px 0px #3345740A;
}
.navbox>li dl::before{
    content: '';
    width:13px;
    height:6px;
    background: url(../images/navbox-before.png) no-repeat center;
    position: absolute;
    left:50%;
    top:-5px;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
}
.navbox>li dl.navmax{
    width:212px;
}
.navbox>li dl dd a{
    display: block;
    padding:10px 0;
    color: var(--title--);
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: center;
}
.navbox>li dl dd a:hover{
    color:var(--green--);
}
.tel{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-right:20px;
}
@media (max-width:1800px){
    .tel{
        padding-right:0;
    }
}
.tel::before{
    content: '';
    width:40px;
    height:40px;
    background: url(../images/tel.svg) no-repeat center;
    background-size: cover;
    position: absolute;
    left:-10px;
    top:50%;
    transform: translate(-100%,-50%);
    -webkit-transform: translate(-100%,-50%);
    -moz-transform: translate(-100%,-50%);
    -ms-transform: translate(-100%,-50%);
    -o-transform: translate(-100%,-50%);
}
@media (max-width:1440px){
    .tel::before{
        width:34px;
        height:34px;
    }
}
.tel span{
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    letter-spacing: 0.02em;
    text-align: right;
    color: #96B737;
}
.tel a{
    font-family: 'DINPro-Medium';
    color:#96B737;
    font-size: 28px;
    font-weight: 600;
    line-height: 36px;
    letter-spacing: 0px;
    text-align: left;
}
@media (max-width:1440px){
    .tel a{
        font-size: 20px;
        line-height: 26px;
    }
}
.banner .swiper-pagination{
    bottom: 32px;
}
.banner .swiper-pagination-bullet{
    width:10px;
    height:10px;
    background: #D9D9D9;
    opacity: 1;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
.banner .swiper-pagination-bullet-active{
    transform: translateY(20%);
    width:14px;
    height:14px;
    border: 2px solid #FA8700;
    background: rgba(255, 255, 255, 0);
    -webkit-transform: translateY(20%);
    -moz-transform: translateY(20%);
    -ms-transform: translateY(20%);
    -o-transform: translateY(20%);
}
.bar-desc{
    width:717px;
}
.banner .containers{
    width:1300px;
    position: absolute;
    left:50%;
    top:200%;
    transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transition: all .8s;
    -webkit-transition: all .8s;
    -moz-transition: all .8s;
    -ms-transition: all .8s;
    -o-transition: all .8s;
}
.banner .swiper-slide-active .containers{
    top:50%;
}

/* about */
.about{
    height:822px;
    background: url(../images/about-bg.jpg) no-repeat center;
    background-size: cover;
    padding-top:140px;
    position: relative;
}
.about .containers{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.about-main{
    width:680px;
}
.about-pic{
    width:520px;
}
.about-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.tab{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tab span{
    color: #303133;
    font-size: 36px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    letter-spacing: 1.44px; 
}
.tab p{
    margin:25px 0;
    color:  #303133;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.4px;
}
.about-top .tab{
    align-items: flex-start;
}
.more{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width:148px;
    height:48px;
    background: #96B737;
    border-radius: 40px;
    -webkit-border-radius: 40px;
    -moz-border-radius: 40px;
    -ms-border-radius: 40px;
    -o-border-radius: 40px;
    color: #FFF;
    font-size: 18px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.72px;
}
.more::after{
    content: '';
    width:18px;
    height:18px;
    background: url(../images/more.svg) no-repeat center;
    background-size: cover;
    margin-left:4px;
}
.more:hover{
    color:#ffffff;
}
.about-top .more{
    margin-bottom: 26px;
}
.about-desc{
    color:  #606266;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.36px;
}
.about-ul{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:30px;
}
.about-ul li{
    width:300px;
    margin-top:16px;
    margin-bottom: 18px;
}
.about-ul li:last-child{
    width:100%;
}
.about-ul li span{
    display: block;
    position: relative;
    color: #303133;
    font-size: 20px;
    font-style: normal;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.4px;
}
.about-ul li span::after{
    content: '';
    background: #96B737;
    width:3px;
    height:25px;
    position: absolute;
    left:-10px;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.about-ul li p{
    margin-top:8px;
    color: #909399;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 162%;
    letter-spacing: 0.28px;
}

/* 服务范围 */
.server{
    height:889px;
    background: url(../images/server-bg.jpg) no-repeat center;
    background-size: cover;
    padding-top:100px;
}
.server-top{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.server-top .tab{
    align-items: flex-start;
}
.server-top .tab p,
.server-top .tab span{
    color:#ffffff;
}
.server-top .tab span{
    font-size:45px;
    font-weight: 400;
}
.server-top .tab p{
    margin:20px 0;
}
.more.on{
    background: #ffffff;
    color:var(--green--);
    margin-top: 36px;
}
.more.on::after{
    background-image: url(../images/more-server.svg);
}
.server-main{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top:30px;
}
.server-li{
    width:410px;
    height:520px;
    border-radius: 10px 10px 0px 0px;
    overflow: hidden;
}
.server-img{
    height:306px;
    width:100%;
    overflow: hidden;
}
.server-img img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.server-txt{
    height:214px;
    background: #ffffff;
    padding:20px 30px;
    border-radius:0px 0px 10px 10px;
    -webkit-border-radius:0px 0px 10px 10px;
    -moz-border-radius:0px 0px 10px 10px;
    -ms-border-radius:0px 0px 10px 10px;
    -o-border-radius:0px 0px 10px 10px;
}
.server-txt span{
    color: #303133;
    font-size: 24px;
    font-weight: 500;
    line-height: 145%;
    letter-spacing: 0.48px;
}
.server-txt p{
    margin-top:6px;
    color:  #909399;
    text-align: justify;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.28px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.server-more{
    width:350px;
    height:36px;
    border-radius: 20px;
    border: 0.6px solid  #96B737;
    -webkit-border-radius: 20px;
    -moz-border-radius: 20px;
    -ms-border-radius: 20px;
    -o-border-radius: 20px;
    color: #96B737;
    font-size: 15px;
    font-weight: 400;
    line-height: 145%;
    letter-spacing: 0.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top:20px;
}
.server-li.on .server-more{
    background: var(--green--);
    color:#ffffff;
}
.server-li.on .server-img 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);
}

/* 我们的优势 */
.adva{
    height:840px;
    background:#f7f9fa url(../images/adva-bg.jpg) no-repeat top center;
    background-size: auto contain;
    padding-top:170px;
    position: relative;
}
.adva .tab p,
.adva .tab span{
    color:#ffffff;
}
.adva .tab span{
    font-size:50px;
    font-weight: 400;
}
.adva .tab p{
    font-size:32px;
    font-weight: 400;
}
.adva-main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.adva-li{
    width: 325px;
    height: 423px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    border-left:1px solid #EBEEF5;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.adva-li:first-child{
    border:none;
}
.adva-img{
    margin-top:40px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--green--);
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    overflow: hidden;
}
.adva-img svg:last-child{
    display: none;
}
.adva-li.on .adva-img svg:first-child{
    display: none;
}
.adva-li.on .adva-img svg:last-child{
    display: block;
}
.adva-li.on{
    background: var(--green--);
}
.adva-li.on .adva-img{
    background: #FFF;
}
.adva-txt{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top:24px;
}
.adva-txt span{
    color: #303133;
    font-size: 24px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.adva-li.on .adva-txt p,
.adva-li.on .adva-txt span{
    color:#ffffff;
}
.adva-txt p{
    margin-top:20px;
    color: #606266;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.32px;
    transition: all .5s;
    -webkit-transition: all .5s;
    -moz-transition: all .5s;
    -ms-transition: all .5s;
    -o-transition: all .5s;
}
.adva-li .more{
    margin-top:48px;
    border: 1px solid #E4E7ED;
}

/* 新闻资讯 */
.news{
    background:#f7f9fa;
    padding:60px 0 100px 0;
}
.news .containers{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.news-top{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    width:100%;
}
.news-top .tab{
    align-items: flex-start;
}
.news-top .tab span{
    font-size:45px;
    font-weight: 400;
}
.news-top .tab p{
    margin:10px 0;
    font-size:22px;
    font-weight: 100;
    color: #909399;
}
.news-tag{
    display: flex;
    align-items: center;
}
.news-tag a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 162px;
    height: 52px;
    background: #F5F6F8;
    color: #303133;
    font-size: 20px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.8px;
    overflow: hidden;;
}
.news-tag a:first-child{
    border-radius: 26px 0px 0px 26px;
    -webkit-border-radius: 26px 0px 0px 26px;
    -moz-border-radius: 26px 0px 0px 26px;
    -ms-border-radius: 26px 0px 0px 26px;
    -o-border-radius: 26px 0px 0px 26px;
}
.news-tag a:last-child{
    border-radius: 0 26px 26px 0;
    -webkit-border-radius: 0 26px 26px 0;
    -moz-border-radius: 0 26px 26px 0;
    -ms-border-radius: 0 26px 26px 0;
    -o-border-radius: 0 26px 26px 0;
}
.news-tag a.on{
    background: #96B737;
    color:#FFFFFF;
}
.news-lay{
    width:1300px;
}
.news-main{
    padding:40px 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}
.news-list,
.news-sell{
   width:635px; 
}
.sell-slide{
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.sell-pic{
    width:635px;
    height:397px;
    overflow: hidden;
}
.sell-pic>img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.sell-pic:hover>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);
}
.sell-txt{
    position: absolute;
    left:0;
    bottom: 0;
    width: 100%;
    height: 94px;
    border-radius: 0px 0px 6px 6px;
    background: rgba(0, 0, 0, 0.75);
    padding:20px;
    overflow: hidden;
}
.sell-txt p{
    padding-right:40px;
    color: #FFF;
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.4px;
    margin-top:8px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.sell-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.sell-title b{
    color: var(--unnamed, #FFF);
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.469px;
    text-transform: uppercase;
}
.sell-title span{
    color: var(--unnamed, #FFF);
    text-align: right;
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: 180%;
    letter-spacing: 0.4px;
}
.news-li{
    position: relative;
    width:635px;
    height:120px;
    border-radius: 10px;
    border: 1px solid #EBEEF5;
    background: #FFF;
    padding:16px 20px 20px 20px;
    margin-bottom: 18px;
    transition: all .4s;
    -webkit-transition: all .4s;
    -moz-transition: all .4s;
    -ms-transition: all .4s;
    -o-transition: all .4s;
}
.news-li.on{
    border: 1px solid #96B737;
}
.news-li a{
    height:100%;
    width:100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.news-time{
    display: flex;
    flex-direction: column;
    align-items: center;
    width:72px;
}
.news-time span{
    color: #606266;
    font-size: 29px;
    font-weight: 600;
    letter-spacing: 0.4px;
}
.news-time p{
    color: #606266;
    font-size: 12px;
    font-weight: 300;
    line-height: 2;
}
.news-txt{
    position: relative;
    flex:1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-left:16px;
}
.news-txt span{
    color: #303133;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 0.469px;
}
.news-txt p{
    margin-top:8px;
    color: #909399;
    font-size: 14px;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.4px;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-txt::before{
    content: '';
    height:74px;
    width:1px;
    background: #EBEEF5;
    position: absolute;
    left:0px;
    top:50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}
.news-li::after{
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    right:0;
    bottom:0;
    background: url(../images/come-on.svg) no-repeat;
    background-size: cover;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.news-li.on::after{
    background: url(../images/come-before.svg) no-repeat;
    background-size: cover;
}
.sell-slide{
    margin-bottom: 20px;
}

.news-sell .swiper-pagination{
    text-align: right;
    padding-right:20px;
}
.news-sell .swiper-pagination,
.news-sell .swiper-pagination span{
    color: #FFF;
    text-align: right;
    font-size: 14px;
    font-weight: 300;
    line-height: 180%;
    letter-spacing: 4px;
}

/* foot */
.foot{
    background: #303133;
    padding:32px 0 40px 0;
}
.foot-logo{
    width:268px;
    height:56px;
    margin:0 auto;
}
.foot-menu{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height:73px;
    width:100%;
    border-top:1px solid #FFFFFF14;
    border-bottom:1px solid #FFFFFF14;
    margin-top:32px;
}
.foot-menu li a{
    font-size: 18px;
    font-weight: 400;
    line-height: 25px;
    letter-spacing: 0.02em;
    text-align: center;
    color: #B3B9C3;
}
.foot-info{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:30px;
}
.code{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.code span{
    color: #909399;
    text-align: center;
    font-size: 14px;
    font-family: Source Han Sans SC;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.code p{
    width: 112px;
    height: 112px;
    margin-bottom: 13px;
}
.foot-add{
    display: flex;
    align-items: flex-start;
    padding-top:24px;
}
.foot-li{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.foot-li:first-child{
    margin-right:60px;
}
.foot-li span{
    display: block;
    margin:16px 0;
    color: #909399;
    font-size: 18px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.72px;
}
.foot-li p{
    color: #909399;
    font-size: 15px;
    font-weight: 400;
    line-height: 2;
    letter-spacing: 0.6px;
}
.foot-li b{
    color: #909399;
    font-size: 28px;
    font-family: 'DINPro-Medium';
    font-style: normal;
    font-weight: 700;
    line-height: 1;
}
.foot-copy{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding-top:26px;
}
.foot-copy span{
    color: #909399;
    font-size: 24px;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.96px;
}
.foot-copy p a,
.foot-copy p{
    color: #909399;
    text-align: justify;
    font-size: 15px;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}

.page_bar{
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
    height:600px;
}
.page_bar .containers{
    height:100%;
    display:flex;
    align-items: center;
}
.page-box{
    display:flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
}
.page-box span{
    font-size: 45px;
    line-height: 63px;
    letter-spacing: 0.018em;
    color: #FFFFFF;
    text-shadow: 0px 4px 11px rgba(14, 53, 86, 0.46);
}
.page-box p{
    padding-top:16px;
    font-size: 24px;
    line-height: 26px;
    letter-spacing: 0.04em;
    color: #FFFFFF;
    text-shadow: 0px 4px 11px rgba(14, 53, 86, 0.46);
}
.page-tag{
    height:156px;
    background: #ffffff;
}
.page-tag .containers{
    height:100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page-tag a{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 186px;
    height: 56px;
    color: #606266;
    font-size: 20px;
    font-weight: 400;
    letter-spacing: 0.8px;
    margin:0 20px;
    border: 1px solid #E4E7ED;
}
.page-tag a.on{
    border: 1px solid #96B737;
    background: #96B737;
    color:#ffffff;
}
.about-h2{
    color: #303133;
    text-align: justify;
    font-size: 20px;
    font-weight: 600;
    line-height: 145%;
    letter-spacing: 0.4px;
    padding:30px 0 15px 0;
}
.page-about{
    padding:120px 0 130px 0;
    height:auto;
}
/* 春蹊文化 */
.iab{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.iab span{
    position: relative;
    color:#303133;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.571px;
}
.iab span::before{
    content: '';
    width:30px;
    height:3px;
    background: #0B8212;
    position: absolute;
    top:50%;
    right:-46px;
}
.iab span::after{
    content: '';
    width:30px;
    height:3px;
    background: #0B8212;
    position: absolute;
    top:50%;
    left:-46px;
}
.iab p{
    color: #303133;
    text-align: center;
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.571px;
}
.culture{
    padding:130px 0;
    position: relative;
}
.culture-main{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    padding-top:54px;
}
.culture-li{
    width:414px;
    height:552px;
    line-height: 0;
}
.culture-li img{
    line-height: 0;
}
.culture-txt{
    background: #F5F6F8;
    width:100%;
    height: 259px;
    border:1px solid #EBEEF5;
    overflow: hidden;
    border-radius:0 0 10px 10px;
    -webkit-border-radius:0 0 10px 10px;
    -moz-border-radius:0 0 10px 10px;
    -ms-border-radius: 0 0 10px 10px;
    -o-border-radius: 0 0 10px 10px;
    padding:18px 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.culture-txt span{
    color: #303133;
    font-size: 28px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.12px;
}
.culture-txt p{
    padding-top:10px;
    color: #606266;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 200%;
    letter-spacing: 0.8px;
}
.honner{
    padding:130px 0 100px 0;
    background:#F5F6F8;
    position: relative;
}
.honner-main{
    padding:34px 0 40px 0;
    position: relative;
}
.honner-main .swiper-pagination{
    bottom:0px;
    width:100%;
}
.honner-main .swiper-pagination-bullet{
    margin:0 10px;
}
.honner-main .swiper-pagination-bullet-active{
    background:#0B8212;
}
/* background: var(--unnamed, #E4E7ED); */
.honner-main .swiper-slide a{
    display: flex;
    align-items: center;
    justify-content: center;
    width:100%;
    height: 227px;
    background: #E4E7ED;
}
.honner-main .swiper-slide a img{
    width: 250px;
    height: 157px;
}
.honner-main .swiper-button-next{
    right:-50px;
    background-image: url(../images/next.svg);
    transform: rotateY(-180deg);
    -webkit-transform: rotateY(-180deg);
    -moz-transform: rotateY(-180deg);
    -ms-transform: rotateY(-180deg);
    -o-transform: rotateY(-180deg);
}
.honner-main .swiper-button-prev{
    left:-50px;
    background-image: url(../images/next.svg);
}

/* 师资团队 */
.team{
    background: url(../images/team-bg.jpg) ;
    background-size: cover;
    padding:120px 0 60px 0;
}
.team-top{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.team-top span{
    color: #202020;
    text-align: center;
    font-size: 45px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 1.8px;
}
.team-top p{
    color: #909399;
    text-align: center;
    font-size: 24px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.96px;
    margin-top:20px;
}
.team-ul{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding:60px 0 30px 0;
}
.team-li{
    width: 635px;
    height: 320px;
    border-radius: 10px;
    border: 1px solid #EBEEF5;
    background: #FFF;
    margin:15px 30px 15px 0;
}
.team-li:nth-child(2n+0){
    margin-right:0;
}
.team-pic{
    width: 187px;
    height: 249px;
    overflow: hidden;
    border-radius: 10px;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    -ms-border-radius: 10px;
    -o-border-radius: 10px;
}
.team-li a{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width:100%;
    height:100%;
    padding:34px;
}
.team-txt{
    width:360px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.team-txt span{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding-top:2px;
}
.team-txt span b{
    margin-right:20px;
    color: #303133;
    font-size: 24px;
    font-weight: 500;
    line-height: 170%;
    letter-spacing: 0.96px;
}
.team-txt span i{
    display: inline-block;
    border-radius: 4px;
    background: rgba(149, 182, 55, 0.10);
    padding:0 5px;
    height: 26px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    -ms-border-radius: 4px;
    -o-border-radius: 4px;
    font-style: normal;
    color: #95B637;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0.32px;
}
.team-ranks{
    color:#303133;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.56px;
    margin:14px 0;
}
.team-desc{
    color: #909399;
    text-align: justify;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 180%;
    letter-spacing: 0.52px;
}

/* 分页 */
.pagination {
	display: inline-block;
	border-radius: 4px;
    padding:3rem 0 4rem 0;
}
.pager {
	display: flex;
	justify-content: center;
	width:100%;
}
.pager li {
	display: inline;
}
.pager li span,  .pager li a {
	margin:0 8px;
	padding:7px 12px;
    background:var(--green--);
	color:#fff;
    border-radius:4px;
    border-color:#fff;
}
.pager li a:hover,
.pagination > .active > span {
	background:#C0C4CC;
	color:#fff;
    border-color:#fff;
}
.pagination > .disabled > span {
	background: white !important;
	color:#666666;
    border-color:#fff;
}

.page-news .news-li{
    width:100%;
}
.page-news{
    padding:80px 0 20px 0;
    background: #F5F6F8;
}
.nav{
    height:56px;
    background: #f0f0f0;
}
.nav .containers{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height:100%;
}
.nav-l{
    position: relative;
    padding-left:30px;
}
.nav-l::before{
    content:'';
    width:20px;
    height:20px;
    background:url(../images/home.svg) no-repeat center;
    background-size: 100% 100%;
    position: absolute;
    z-index: 22;
    left:0;
    top:50%;
    transform: translateY(-50%);
    -ms-transform:translateY(-50%);
    -moz-transform:translateY(-50%);
    -webkit-transform:translateY(-50%);
    -o-transform:translateY(-50%);
}
.nav-l a{
    overflow: hidden;
    padding:0 4px;
}
.nav-l a,
.nav-l{
    color: #3b3a44;
    font-size:16px;
}
.nav-tag{
    display:flex;
    justify-content:center;
    align-items: center;
    height:100%;
}
.nav-tag li{
    min-width: 100px;
    height: 100%;
    transition: all .3s;
}
.nav-tag li a{
    font-size: 16px;
    line-height: 26px;
    display: flex;
    justify-content: center;
    align-items: center;
    width:100%;
    height:100%;
    padding:0 16px;
    transition: all .3s;
}
.nav-tag li:hover,
.nav-tag li.on{
    background: var(--green--);
}
.nav-tag li:hover a,
.nav-tag li.on a{
    color:#fff;
}
.view{
    margin-top:50px;
}
.view h1{
    font-weight: normal;
    font-size: 24px;
    text-align: center;
    color:#303133;
    margin:6px 0;
}
.view-time{
    border-bottom: 1px solid #ddd;
    text-align: center;
}
.view-time span{
    font-size: 12px;
    margin: 0 10px;
    color: #999;
    line-height: 36px;    
}
.content{
    margin: 30px 0;
    line-height: 30px;
    color: #303133;
    font-size: 16px;
    padding:0 16px;
}
.prepage{
    line-height: 30px;
    margin:25px 0;
    color: #303133;
    font-size: 14px;
}
.prepage a{
    color:var(--yellow--);
}
.join-ul{
    padding:40px 0;
}
.join-ul li{
    width: 100%;
    min-height: 180px;
    background: #F9F9F9;
    border-radius: 10px;
    padding:16px 26px ;
    margin-bottom: 26px;
    cursor: pointer;
    position: relative;
    border: 1px solid #ffffff;
}
.join-ul li.on{
    background: #FFFFFF;
    border: 1px solid #E4E7ED;
}
.join-ul li>b{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    font-weight: 400;
    font-size: 28px;
    line-height: 1.8;
    letter-spacing: 0.04em;
    color: #303133;
}
.join-ul li>p{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 10px;
}
.join-ul li>p span{
    display: inline-block;
    margin-bottom: 8px;
    padding-left: 12px;
    width: 33%;
    font-weight: 400;
    font-size: 17px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #606266;
}
.join-desc{
    display: none;
    font-weight: 400;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 0.04em;
    color: #909399;
    padding:20px 16px;
}
.join-ul li::after{
    content: '';
    position: absolute;
    top:20px;
    right:40px;
    width:45px;
    height:45px;
    background:url(../images/job-click.svg);
    background-size: cover;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.join-ul li.on::after{
    transform: rotate(-180deg);
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
}
.social{
    position: relative;
}
#advantage,
#social,
#about,
#wenhua,
#honner{
    position: absolute;
    top:0px;
}
.picture-ul{
    display: flex;
    flex-wrap:wrap;
    align-items: flex-start;
    justify-content: flex-start;
}
.picture-li{
    width:25%;
    padding:.2rem 1rem;
    margin-bottom: 1rem;
}
.picture-li a{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.picture-li a span{
    font-size:16px;
    color:#707070;
    display: block;
    padding-top:.5rem;
}
.picture-pic{
    width:100%;
    height:220px;
    overflow: hidden;
}
.picture-pic img{
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    -ms-transition: all .3s;
    -o-transition: all .3s;
}
.picture-li:hover .picture-pic 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);
}







