@charset"utf-8";
.container{
    width: 1200px;
    margin: auto;
}
/*开始你的内容创作之旅*/
.header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
    padding: 0 40px;
}
.header:after{
    content: "";
    width: 100%;
    height: 100%;
    background: url(../images/headbg.png) no-repeat top left/cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.header.colBg:after{
    visibility: visible;
    opacity: 1;
}
.headAb{
    justify-content: space-between;
    align-items: center;
}
.logo{
    display: flex;
    align-items: center;
    margin-right: 70px;
}
.logo .text{
    font-size: 16px;
    color: #fff;
    margin-left: 12px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.logo .abut{
    font-size: 0;
    position: relative;
    display: block;
}
.swpBan .imgDiv{
    width: 100vw;
    height: 100vh;
}
.swpBan .imgDiv img{
    object-fit: cover;
}
.headLt, .headRt{
    align-items: center;
}
.nav{
    display: flex;
}
.navLi{
    padding: 0 20px;
    position: relative;
}
.navLi .list{
    position: absolute;
    top: 100%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #333333;
    width: 128px;
    visibility: hidden;
    opacity: 0;
}
.navLi .list li{
    padding: 4px 0;
}
.navLi .list li a{
    min-height: 40px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    color: rgba(255,255,255,.65);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.nav-a{
    display: block;
    height: 64px;
    line-height: 64px;
    font-size: 14px;
    color: #fff;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.navLi.active .nav-a{
    color: #ED5757;
}
.proNavList{
    width: 100vw;
    background-color: rgba(51,51,51,1);
    position: absolute;
    top: 100%;
    left: 0;
    padding: 16px 120px;
    display: flex;
    visibility: hidden;
    opacity: 0;
}
.proNavLi{
    padding: 0 20px;
    width: 25%;
}
.proNavLi .title{
    position: relative;
    margin-bottom: 16px;
}
.proNavLi .tit{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    font-size: 14px;
    color: #fff;
}
.proNavLi .lists a{
    font-size: 13px;
    display: flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    color: rgba(255,255,255,0.65);
    -webkit-transition: all 0.3s ease 0s;
    transition: all 0.3s ease 0s;
}
.search img{
    display: block;
}
.link-a a{
    font-size: 14px;
    color: #fff;
    margin-left: 30px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
/*banner*/
.banner{
    position: relative;
}
.banList{
    position: absolute;
    bottom: 70px;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    text-align: center;
}
.banLi{
    width: 200px;
    cursor: pointer;
}
.banList .en{
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    height: 46px;
    color: rgba(255,255,255,.15);
}
.banList .cn{
    height: 24px;
    line-height: 24px;
    color: #fff
}
.banner .down{
    position: absolute;
    bottom: 24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 3;
}
.banner .down img{
    animation: down 1s ease 0s infinite;
}
@keyframes down{
    0%{
        transform: translateY(5px);
    }
    60%{
        transform: translateY(0px);
    }
    100%{
        transform: translateY(5px);
    }
}
/*案例*/
.caseLeft{
    display: flex;
    width: 100%;
    justify-content: center;
}
.caseLeft .div{
    width: 400px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-top: 80px;
}
.caseLeft .topBody .topTit{
    justify-content: space-between;
    margin-bottom: 16px;
    height: 24px;
    align-items: center;
}
.caseLeft .topBody .tit{
    font-size: 16px;
    color: #999999;
}
.moreBut{
    font-size: 14px;
    color: #999999;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.caseLeft .topBody .title{
    font-size: 26px;
    color: #333333;
    font-weight: bold;
    line-height: 40px;
    margin-bottom: 32px;
}
.caseLeft .topBody .text{
    font-size: 12px;
    line-height: 24px;
    color: #666666;
}
.caseLeft .butBox{
    display: flex;
    align-items: center;
    margin-bottom: 40px;
}
.seeMore, .caseLeft .butBox .next{
    width: 140px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #333333;
}
.seeMore{
    border: solid 2px #333333;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.caseLeft .butBox .seeMore{
    margin-right: 12px;
}
.caseLeft .butBox .next{
    background-color: #F5F5F5;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.caseLeft .pagePg .swiper-pagination-bullet{
    width: 40px;
    height: 2px;
    background-color: #F5F5F5;
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    border-radius: 0;
    margin-right: 8px !important;
    margin-left: 0 !important;
}
.caseLeft .pagePg .swiper-pagination-bullet-active{
    background-color: #333333;
}
.caseRight{
    width: 66.667%;
    flex-shrink: 0;
}
.caseRight .swiper-slide{
    position: relative;
}
.videoBut{
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    z-index: 3;
    width: 157px;
    height: 48px;
    border-radius: 24px;
    background: rgba(255,255,255,0.5);
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.videoBut .icon{
    display: block;
    font-size: 0;
    position: relative;
}
.videoBut .icon img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.videoBut .icon .img1{
    visibility: visible;
    opacity: 1;
}
.videoBut .icon .img2{
    visibility: hidden;
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
}
/*最新消息*/
.indexBox{
    padding-top: 120px;
}
.idxHead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px;
    margin-bottom: 55px;
}
.idxHead .title{
    display: flex;
    align-items: center;
}
.idxHead .title .en{
    font-size: 28px;
    color: #333333;
    margin-right: 25px;
    font-weight: bold;
    text-transform: uppercase;
}
.idxHead .title .cn{
    font-size: 18px;
    color: #333333;
}
.idxHead .moreBut{
    font-size: 16px;
}
.toplist, .btmlist{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}
.toplist{
    margin-bottom: 70px;
}
.topliCol{
    width: 50%;
    padding: 0 15px;
}
.btmliCol{
    width: 33.333%;
    padding: 0 15px;
}
.idxNew-dl .imgDiv{
    margin-bottom: 30px;
    overflow: hidden;
}
.idxNew-dl .imgDiv img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.idxNew-dl .tit{
    font-size: 20px;
    color: #333333;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 15px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.topliCol .idxNew-dl .tit{
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.idxNew-dl .txt{
    font-size: 12px;
    line-height: 24px;
    color: #666666;
    margin-bottom: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    height: 72px;
}
.idxNew-dl .seeMore{
    width: 128px;
}
.btmliCol .idxNew-dl{
    padding: 40px 30px 30px;
    border-top: solid 2px #E2E3E7;
    border-bottom: solid 2px #E2E3E7;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.btmliCol .idxNew-dl .tit{
    font-size: 18px;
    line-height: 26px;
    margin-bottom: 24px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 52px;
}
.btmliCol .idxNew-dl .txt{
    margin-bottom: 40px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.btmliCol .moreSpan{
    display: flex;
    align-items: center;
    font-size: 12px;
    color: #999999;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.btmliCol .moreSpan img{
    margin-right: 8px;
    display: block;
}
/*合作模式*/
.indexCooper{
    padding-bottom: 120px;
    padding-top: 100px;
}
.cooperList{
    display: flex;
    flex-wrap: wrap;
}
.cooperLi{
    width: 33.333%;
    position: relative;
}
.cooperLi .imgDiv{
    overflow: hidden;
}
.cooperLi .imgDiv img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.cooperText{
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    padding-bottom: 30px;
    text-align: center;
    color: #fff;
}
.cooperText:after{
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 48px;
    height: 2px;
    background-color: #ED5757;
    border-radius: 2px;
}
.cooperText .en{
    font-size: 46px;
    line-height: 70px;
    margin-bottom: 12px;
    font-weight: bold;
}
.cooperText .cn{
    font-size: 22px;
    line-height: 38px;
}
.cooperLi:last-child .cooperText{
    color: #333333;
}
/*期待与您的合作*/
.idxCooper{
    height: 480px;
    background-color: #3F4044;
    padding-top: 150px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.idxCooper .title{
    font-size: 32px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 16px;
    line-height: 40px;
}
.idxCooper .text{
    font-size: 14px;
    color: #fff;
    line-height: 32px;
}
.idxCooper .text span{
    font-size: 16px;
    margin-left: 12px;
}
.idxCooper .but{
    width: 148px;
    height: 40px;
    border-radius: 28px;
    background-color: #ED5757;
    font-size: 14px;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: auto;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    margin-top: 45px;
    display: none;
}
.threeCanvass{
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    bottom: 0;
    overflow: hidden;
    z-index: -1;
    background: url(../images/hz-bg.png) no-repeat center center/cover;
}
.indexNews{
    background: url(../images/new-bg.png) no-repeat center center/cover;
    padding-bottom: 100px;
}
/*footer*/
.footer{
    background-color: #372529;
    padding-top: 56px;
}
.footTop{
    display: flex;
    justify-content: space-between;
    padding-bottom: 45px;
}
.footLogo{
    margin-bottom: 30px;
}
.footLogo img{
    width: 98px;
    height: 14px;
}
.infoList{
    font-size: 14px;
    color: #fff;
    opacity: .4;
    line-height: 20px;
    margin-bottom: 20px;
}
.infoList li{
    padding: 6px 0;
}
.infoList li .nm{
    margin-right: 20px;
}
.fxList{
    display: flex;
    margin-left: -8px;
    margin-right: -8px;
}
.fxList .fxLi{
    position: relative;
    font-size: 0;
    padding: 0 8px;
}
.fxList .fxLi .ewmDiv{
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    bottom: 100%;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
}
.fxList .fxLi .ewmDiv img{
    width: 100px;
}
/**/
.footTop-rt{
    width: 50%;
}
.demo-ruleForm{
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}
.demo-ruleForm .ab{
    width: 77.333%;
    flex-shrink: 0;
    flex-wrap: wrap;
    margin: 0 -12px;
}
.fmCol, .fmCols{
    padding: 0 12px;
}
.fmCol{
    width: 50%;
}
.fmCols{
    width: 100%;
}
.demo-ruleForm .but{
    width: 96px;
    height: 144px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid 2px rgba(255,255,255,.05);
    background-color: rgba(0,0,0,0);
    color: rgba(255,255,255,.45);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    border-radius: 0;
}
.demo-ruleForm .el-input__inner{
    background-color: rgba(0,0,0,0);
    border-top: 0 !important;
    border-left: 0 !important;
    border-right: 0 !important;
    border-radius: 0 !important;
    padding: 0;
    font-size: 16px;
    color: #fff;
    border-color: rgba(255,255,255,.05);
}
.demo-ruleForm .el-input__inner::placeholder{
    color: rgba(255,255,255,.15);
}
.footTop-rt .title{
    margin-bottom: 24px;
    color: rgba(255,255,255,.45);
    font-size: 18px;
}
.footBtm{
    padding: 30px 0;
    border-top: solid 1px rgba(255,255,255,.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footBtm-lt, .footBtm-lt a{
    font-size: 12px;
    color: rgba(255,255,255,.35);
}
.footBtm-lt .ga{
    width: 14px;
    margin-right: 4px;
}
.footBtm-lt,
.footBtm-lt span{
    display: flex;
    align-items: center;
}
.footBtm-lt span, .footBtm-lt a{
    margin-right: 15px;
}
.footBtm .list{
    display: flex;
    align-items: center;
    font-size: 12px;
}
.footBtm .list strong{
    color: rgba(255,255,255,.45);
    margin-right: 18px;
}
.footBtm .list a, 
.footBtm .list .gang{
    color: rgba(255,255,255,.35);
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.footBtm .list .gang{
    margin: 0 8px;
}
/*详情页*/
.pageBan .imgDiv img{
    min-height: 300px;
    object-fit: cover;
}
.pageBody{
    position: relative;
    z-index: 1;
    background-color: #F8F8F8;
}
.pageBody .container{
    background-color: #fff;
    padding: 50px;
    -webkit-transform: translateY(-100px);
    transform: translateY(-100px);
}
.pageBody .idxCaseVdo{
    width: 640px;
    margin: auto;
    margin-bottom: 56px;
}
.pageBody .title{
    font-size: 40px;
    color: #333333;
    line-height: 56px;
    margin-bottom: 23px;
    padding-bottom: 23px;
    position: relative;
    text-align: center;
}
.pageBody .title:after{
    content: "";
    width: 120px;
    height: 1px;
    background-color: #999999;
    position: absolute;
    left: 50%;
    bottom: 0;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
}
.pageBody .txt{
    font-size: 14px;
    color: #333333;
    line-height: 20px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 56px;
}
.pageBody .text{
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}
.pageBody .text img{
    max-width: 100%;
}
.page2Body{
    background-color: #fff;
}
.page2Body .container{
    -webkit-transform: translateY(0);
    transform: translateY(0);
    display: flex;
    justify-content: space-between;
    padding: 72px 0 100px;
}
.page2Body .pageRight{
    width: 100%;
}
.sidebar{
    width: 170px;
    flex-shrink: 0;
    margin-right: 128px;
}
.sidebar .icon{
    width: 10px;
    display: block;
    position: absolute;
    left: 100%;
    top: 50%;
    -webkit-transform: translate(-10px, -50%);
    transform: translate(-10px, -50%);
    margin-left: 18px;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.sidebar li{
    margin-bottom: 8px;
}
.sidebar li.active .icon{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.sidebar li a{
    width: 170px;
    display: flex;
    align-items: center;
    position: relative;
    font-size: 14px;
    color: #BBBBBB;
    position: relative;
    height: 48px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.sidebar li.active a{
    font-size: 16px;
    color: #333;
}
/**/
body{
    position: relative;
}
.videoBg{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
    z-index: 98;
    display: none;
}
.videoBox{
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 900px;
    max-width: 80%;
    z-index: 99;
    display: none;
}
.videoBox .close{
    position: absolute;
    bottom: 100%;
    left: 100%;
    margin-left: 10px;
    margin-bottom: 10px;
    cursor: pointer;
}
.pageBan{
    position: relative;
}
.banText{
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    text-align: center;
    color: #fff;
    width: 100%;
}
.banText .title{
    font-size: 48px;
    font-weight: bold;
    line-height: 68px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.banText .tit{
    font-size: 40px;
}
.banText .txt{
    font-size: 14px;
    line-height: 24px;
    color: #fff;
    max-width: 800px;
    margin: auto;
    margin-top: 56px;
}
.newsList{
    background-color: #f5f7fa;
    padding: 72px 0 100px;
}
.newsDl{
    padding: 24px 0;
    padding-right: 12px;
    background-color: #fff;
}
.newsDl:not(:last-child){
    border-bottom: solid 2px rgba(0,0,0,.05);
}
.newsDl a{
    display: flex;
    align-items: center;
}
.newsDl .imgDiv{
    overflow: hidden;
    width: 272px;
    flex-shrink: 0;
    margin-right: 30px;
}
.newsDl .imgDiv img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    height: 200px;
    object-fit: cover;
}
.newsDl .title{
    font-size: 20px;
    color: #333333;
    line-height: 28px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    font-weight: bold;
    height: 56px;
    margin-bottom: 12px;
}
.newsDl .text{
    font-size: 14px;
    line-height: 20px;
    color: #999999;
    margin-bottom: 40px;
}
.newsDl .date{
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}
.el-pagination.is-background .el-pager{
    display: flex;
    margin: 0 -4px;
    margin-top: 40px;
}
.el-pagination.is-background .el-pager li{
    width: 32px;
    height: 32px;
    border: solid 1px #E8E8E8;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #999999;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    margin: 0 4px;
    border-radius: 0;
    font-weight: 400;
}
.el-pagination.is-background .el-pager li:not(.disabled).active{
    color: #fff;
    background-color: #333333;
    border-color: #333333;
}
/*关于我们*/
.aboDivs:not(:last-child){
    margin-bottom: 40px;
}
.aboDivs .aboTit{
    font-size: 22px;
    color: #333333;
    line-height: 32px;
    margin-bottom: 25px;
}
.aboDivs .jsText{
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}
.aboDivs .div{
    margin-top: 30px;
}
.aboDivs .aboSmlTit{
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 15px;
}
.courseList .courseLi{
    display: flex;
    align-items: flex-start;
    line-height: 32px;
}
.courseList .courseLi:not(:last-child){
    margin-bottom: 8px;
}
.courseList i{
    width: 12px;
    height: 12px;
    background: url(../images/dian.png) no-repeat center center/cover;
    margin-right: 8px;
    margin-top: 10px;
    position: relative;
}
.courseList i:after{
    content: "";
    width: 1px;
    height: 32px;
    background-color: rgba(0,0,0,.1);
    position: absolute;
    left: 50%;
    top: 100%;
}
.courseList .courseLi:last-child i:after{
    display: none;
}
.courseList .date{
    font-size: 16px;
    color: #4BBA74;
    font-weight: bold;
    margin-right: 23px;
}
.courseList .txts{
    font-size: 14px;
    color: #666666;
}
.whList{
    margin: 0 -12px;
    display: flex;
    flex-wrap: wrap;
}
.whLi{
    padding: 0 12px;
    width: 33.333%;
}
.whLi dl{
    border-radius: 10px;
    overflow: hidden;
    background-color: #f1f2f5;
    height: 100%;
}
.whLi dl dd{
    height: 80px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    font-size: 14px;
    color: #333333;
    line-height: 20px;
}
.zzhiList{
    display: flex;
    flex-wrap: wrap;
    margin: -6px;
}
.zzhiLi{
    padding: 6px;
    width: 25%;
}
.zzhiLi span{
    display: flex;
    height: 72px;
    align-items: center;
    padding: 0 16px;
    border-radius: 5px;
    background-color: #F0F2F5;
}
.yjList .courseLi i{
    margin-right: 15px;
}
.yjList .courseLi i:after{
    display: none;
}
.rYuSwp{
    width: 900px;
}
.rYuDl{
    position: relative;
    border-radius: 10px;
    overflow: hidden;
}
.rYuDl dd{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fff;
    background-color: rgba(0,0,0,.65);
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.rYuSwp .imgDiv{
    height: 300px;
    display: flex;
    align-items: center;
    background-color: #000;
}
.rYuSwp .imgDiv img{
    max-height: 100%;
    object-fit: cover;
}
.icon-left-circle, .icon-right-circle{
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 3;
    cursor: pointer;
}
.icon-left-circle{
    left: 0;
}
.icon-right-circle{
    right: 0;
}
.icon-left-circle img, .icon-right-circle img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.logoList{
    margin: -12px -40px;
    display: flex;
    flex-wrap: wrap;
}
.logoLi{
    padding: 12px 40px;
    width: 25%;
}
.aboSidebar{
    position: sticky;
    top: 65px;
    height: 100%;
}
/**/
.search{
    position: relative;
}
.searchSch{
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    display: none;
}
.inline-input{
    width: 220px;
    height: 40px;
    display: block;
}
.inline-input .el-input .el-input__clear:before{
    display: none;
}
.inline-input .el-input .el-input__clear{
    background: url(../images/cha.png) no-repeat center center/14px 14px;
}
.inline-input .el-input__inner{
    background-color: rgba(0,0,0,0);
    border: none;
    color: #fff;
}
.search .icon{
    cursor: pointer;
}
.banner .txt{
    font-size: 16px;
    line-height: 24px;
}

/*案例*/
.caseList{
    padding: 72px 0 100px;
}
.caseList .list{
    display: flex;
    flex-wrap: wrap;
    margin: -12px;
}
.listCol{
    width: 25%;
    padding: 12px 0;
}
.caseDl{
    height: 100%;
    padding: 12px;
    padding-bottom: 24px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.caseDl dt{
    overflow: hidden;
}
.caseDl dt img{
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
    height: 156px;
    object-fit: cover;
}
.caseDl dd{
    padding-top: 24px;
}
.caseDl .tit{
    font-size: 16px;
    color: #333333;
    line-height: 24px;
    margin-bottom: 12px;
}
.caseDl .txt{
    font-size: 12px;
    color: #999999;
    line-height: 20px;
}
.joinList{
    background-color: #F2F3F5;
    padding: 72px 0 100px;
}
.joinList .list{
    margin: -12px;
    display: flex;
    flex-wrap: wrap;
}
.joinList .listCol{
    padding: 12px;
    width: 33.333%;
}
.joinList .listCol .div{
    background-color: #fff;
    border-radius: 8px;
    padding: 24px;
    padding-top: 32px;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.joinList .listCol .tit{
    font-size: 18px;
    color: #000000;
    line-height: 32px;
    font-weight: bold;
    margin-bottom: 16px;
}
.joinList .bqList{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px 16px;
}
.joinList .bqList li{
    padding: 2px 8px;
    font-size: 14px;
    color: #666666;
    margin: 0 4px;
    background-color: #F5F5F5;
    border-radius: 4px;
}
.joinList .date{
    font-size: 12px;
    line-height: 20px;
    color: #999999;
    padding: 10px 0;
    box-shadow: inset 0 -1px 0 0 rgba(240,240,240,1);
    margin-bottom: 16px;
}
.joinList .money{
    font-size: 18px;
    color: #F77234;
    font-weight: bold;
    line-height: 24px;
}
.modeBox{
    padding: 72px 0 100px;
}
.modeBox .divs{
    display: flex;
    align-items: center;
}
.modeBox-one{
    margin-bottom: 72px;
}
.modeBox-one .imgDiv{
    width: 50%;
    flex-shrink: 0;
    margin-right: 56px;
}
.modeBox .title{
    font-size: 32px;
    line-height: 45px;
    padding: 23px 0;
    display: inline-block;
    border-bottom: solid 1px #333333;
    margin-bottom: 24px;
}
.modeBox .en{
    font-size: 14px;
    line-height: 20px;
    color: #333333;
    margin-bottom: 32px;
    text-transform: uppercase;
}
.modeBox .text{
    font-size: 14px;
    line-height: 24px;
    color: #666666;
}
.modeBox-two{
    background-color: #EDEDEE;
    margin-bottom: 72px;
}
.modeBox-two .imgDiv{
    width: 58.333%;
    flex-shrink: 0;
    margin-left: 100px;
}
.modeThList{
    display: flex;
    width: 65%;
    flex-shrink: 0;
    margin-left: 100px;
}
.modeThDl{
    position: relative;
}
.modeThDl dd{
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 200px;
    padding: 0 30px;
}
.modeThDl dd .tit{
    font-size: 32px;
    line-height: 44px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 25px;
}
.modeThDl dd .txt{
    font-size: 14px;
    color: #fff;
    line-height: 20px;
}
.modeThDl .icon{
    position: absolute;
    top: 50%;
    left: 100%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    background-color: #fff;
    border-radius: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}
.modeThDl:last-child .icon{
    display: none;
}
/*筛选*/
.joinForm{
    display: flex;
    justify-content: flex-end;
    margin-bottom: 32px;
}
.joinForm .el-form-item{
    margin-bottom: 0;
}
.joinForm .el-form-item:not(:last-child){
    margin-right: 16px;
}
.joinForm .el-select{
    width: 96px;
}
.joinForm .el-select .el-input .el-select__caret{
    display: flex;
    align-items: center;
}
.joinForm .el-select .el-input__inner{
    background-color: rgba(0,0,0,0);
    border: 0;
    padding: 0;
    padding-right: 28px;
    text-align: right;
    height: 32px;
    line-height: 32px;
}
.joinForm .el-input__icon{
    width: 12px;
}
.joinForm .el-select .el-icon-arrow-up:before{
    content: '';
    background: url(../images/icon-caret-up.png) no-repeat center center;
    width: 12px;
    height: 12px;
    display: inline-block;
}
.joinForm .address .el-select{
    width: 105px;
}
.joinForm .address .el-input__inner{
    text-align: right;
}
.el-popper .popper__arrow::after{
    display: none;
}
.el-select-dropdown__item.hover{
    background-color: #f5f5f5;
}
.el-select-dropdown__item.selected{
    color: #ED5757;
    font-weight: 400;
}
.joinForm .el-form-item__content{
    height: 32px;
    line-height: 32px;
}
.joinForm .sxName .el-input__inner{
    width: 240px;
    height: 32px;
    font-size: 14px;
    color: #000;
    background: url(../images/sx-but.png) no-repeat right 13px center #fff;
}
.joinForm .sxName .el-input__inner::input-type-placeholder{
    color: #BBBBBB;
}
.joinForm .sxName .el-input__suffix{
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 13px;
    width: 14px;
    height: 14px;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    background: #fff url(../images/sxclose.png) no-repeat center center;
}
.el-icon-circle-close:before{
    display: none;
}

.el-pagination .btn-prev, .el-pagination .btn-next{
    display: none;
}
.el-icon-more:before, .el-icon-d-arrow-right:before, .el-icon-d-arrow-left:before{
    content: '...';
}
.videoBut span{
    margin-left: 12px;
    font-size: 14px;
    color: #333333;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
#dituContent{
    width: 343px;
    height: 160px;
    border-radius: 5px;
    margin-bottom: 15px;
}
/* 新增关于我们修改 */
.aboJieshao .imgDiv{
    width: 360px;
    flex-shrink: 0;
    margin-right: 25px;
    border-radius: 8px;
    overflow: hidden;
}
.aboJieshaoDiv{
    box-shadow: 0 2px 24px 0 rgba(0,0,0,0.1);
    border-radius: 12px;
    padding: 25px;
}
.aboDivs .aboSmlTit{
    font-size: 18px;
    font-weight: bold;
}
.aboSmlTit small{
    color: #E8E8E8;
    text-transform: uppercase;
    font-size: 18px;
    margin-left: 16px;
    font-weight: 400;
}
.courseList .date{
    color: #ED5757;
}
.courseList .lts{
    display: flex;
}
.courseList .courseLi{
    flex-direction: column;
    line-height: 28px;
}
.courseList .txts{
    margin-left: 20px;
}
.courseList i{
    margin-top: 7px;
}
.courseList i:after{
    height: 55px;
}
.aboDivs .aboSmlTit{
    font-size: 16px;
    padding-left: 12px;
    position: relative;
    font-weight: 400;
}
.aboDivs .aboSmlTit:after{
    content: "";
    width: 4px;
    height: 16px;
    background-color: #ED5757;
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.zzhiList .zzhiLi{
    display: flex;
    align-items: center;
}
.zzhiList .zzhiLi .dir{
    width: 64px;
    height: 88px;
    background-color: #fff;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.zzhiList .zzhiLi .dir div{
    width: 44px;
    height: 44px;
    background: linear-gradient(180deg, rgba(237,87,87,1) 0%, rgba(237,87,87,0) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100%;
    color: #fff;
    text-align: center;
    line-height: 16px;
}
.zzhiLi .divs{
    display: flex;
    /*height: 72px;*/
    align-items: center;
    border-radius: 5px;
    background-color: #F0F2F5;
    width: 100%;
    background: rgba(243,246,248,1);
    box-shadow: 0 2px 8px 0 rgba(189,196,201,0.5);
    overflow: hidden;
}
.zzhiLi .divs span{
    padding: 0 16px;
}
.yejiList{
    margin: -2px;
    display: flex;
    flex-wrap: wrap;
}
.yejiLi{
    width: 50%;
    padding: 2px;
}
.yejiLi .imgDiv{
    width: 100%;
    height: 162px;
}
.yejiLi .imgDiv img{
    height: 100%;
    object-fit: cover;
}
.yejiLiDivs{
    position: relative;
}
.yejiLiDivs .divTxt{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 24px;
    color: #fff;
}
.yejiLiDivs .divTxt .count{
    font-size: 28px;
    color: #fff;
    font-weight: bold;
    margin-bottom: 10px;
}
.yejiLiDivs .divTxt .txtss{
    font-size: 14px;
    line-height: 22px;
    height: 66px;
}

/* 搜索结果页 */
.searchBan .banText{
    text-align: left;
}
.searchHead{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 35px 0;
}
.searchHead .list{
    padding: 3px;
    background-color: #F2F3F5;
    border-radius: 4px;
    display: flex;
}
.searchHead .list li{
    height: 26px;
    padding: 0 15px;
    border-radius: 4px;
    font-size: 14px;
    color: #333;
    line-height: 26px;
    cursor: pointer;
}
.searchHead .list li.active{
    background-color: #fff;
    color: #ED5757;
}
.searchHead .tit{
    font-size: 14px;
    color: #000000;
}
.searchBox{
    min-height: 50vh;
    padding-bottom: 100px;
}
.searchLi{
    padding: 24px 0;
}
.searchLi:not(:last-child){
    border-bottom: solid 1px #E8E8E8;
}
.searchLi .bQian{
    /*width: 44px;*/
    padding: 0 10px;
    height: 24px;
    background-color: #F2F3F5;
    border-radius: 4px;
    display: inline-block;
    line-height: 24px;
    margin-right: 12px;
}
.newBqian{
    color: #1890FF;
}
.proBqian{
    color: #ED5757;
}
.jobBqian{
    color: #4BBA74;
}
.headTit{
    display: flex;
    margin-bottom: 15px;
}
.headTit .title{
    font-size: 20px;
    line-height: 24px;
    color: #333333;
    font-weight: bold;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.searchLi .text{
    font-size: 14px;
    line-height: 20px;
    color: #999999;
}
.searchLi .date{
    margin-top: 20px;
    font-size: 14px;
    color: #999999;
}
.searchLi .list{
    display: flex;
    flex-wrap: wrap;
    margin: 0 -4px;
}
.searchLi .list li{
    padding: 0 8px;
    height: 24px;
    line-height: 24px;
    font-size: 14px;
    color: #666666;
    background-color: #F5F5F5;
    border-radius: 4px;
    margin: 0 4px;
}

/* IE浏览器版本兼容调试 */
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active){
	
}

/* 放置全部hover效果 */
@media screen and (min-width: 992px){

.searchLi:hover .headTit .title{
    color: #ED5757;
}
.el-select-dropdown__item:hover{
    background-color: #f5f5f5;
}
.el-pagination.is-background .el-pager li:not(.disabled):hover{
    color: #fff;
    background-color: #333333;
    border-color: #333333;
}
.sidebar li:hover .icon{
    visibility: visible;
    opacity: 1;
    -webkit-transform: translate(0, -50%);
    transform: translate(0, -50%);
}
.header:hover:after{
    visibility: visible;
    opacity: 1;
}
.navLi:hover .list,
.navLi:hover .proNavList{
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.navLi .list li:hover a{
    background-color: #292929;
    color: #fff;
}
.joinList .listCol:hover .div{
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.15);
}
.caseDl:hover dt img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.caseDl:hover{
    box-shadow: 0 4px 32px 0 rgba(0,0,0,0.15);
}
.icon-left-circle:hover img, .icon-right-circle:hover img{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.rYuDl:hover dd{
    visibility: visible;
    opacity: 1;
}
.newsDl:hover .imgDiv img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.sidebar li:hover a{
    color: #333;
}
.footBtm .list a:hover{
    color: rgba(255,255,255,1);
}
.demo-ruleForm .but:hover{
    background-color: #fff;
    color: #333;
    font-weight: bold;
}
.fxList .fxLi:hover .ewmDiv{
    visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s ease 0s;
    transition: all 0.5s ease 0s;
}
.idxCooper .but:hover{
    /*box-shadow: 0px 0px 10px 0px #4BBA74;*/
    background-color: #fff;
    color: #ED5757;
}
.cooperLi:hover .imgDiv img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.btmliCol .moreSpan:hover{
    color: #333;
}
.btmliCol .idxNew-dl:hover{
    background-color: #333;
    border-color: #333;
}
.btmliCol .idxNew-dl:hover .tit, .btmliCol .idxNew-dl:hover .txt,
.btmliCol .idxNew-dl:hover .moreSpan{
    color: #fff;
}
.idxNew-dl:hover .tit{
    -webkit-transform: translateY(-5px);
    transform: translateY(-5px);
}
.idxNew-dl:hover .imgDiv img{
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}
.navLi:hover .nav-a{
    color: #ED5757;
}
.proNavLi .lists a:hover{
    background-color: #292929;
    color: #fff;
}
.link-a a:hover{
    color: #ED5757;
}
.moreBut:hover{
    color: #ED5757;
}
.seeMore:hover{
    background-color: #333333;
    color: #fff;
}
.caseLeft .butBox .next:hover{
    background-color: #ECECEC;
    /*box-shadow: 0px 0px 15px 0px rgba(0,0,0,.3);*/
}
.videoBut:hover .icon .img1{
    visibility: hidden;
    opacity: 0;
}
.videoBut:hover .icon .img2{
    visibility: visible;
    opacity: 1;
}
.videoBut:hover{
    background-color: #ED5757;
}
.videoBut:hover span{
    color: #fff;
}

}


.pc{
    display: flex;
}
.mbl, .mblNav, .pageNavList, .pageCase, .pageMenu{
    display: none;
}
/*移动端*/
@media screen and (max-width: 768px){
    .pc{
        display: none;
    }
    .mbl{
        display: flex;
    }
    .pageNavList, .pageCase, .pageMenu{
        display: block;
    }
    .menu{
        font-size: 0;
    }
    .menu img{
        width: 16px;
    }
    .menu .img2{
        display: none;
    }
    .menu.act .img1{
        display: none;
    }
    .menu.act .img2{
        display: block;
    }
    /*首页*/
    .logo .text, .nav, .headRt{
        display: none;
    }
    .headAb{
        height: 56px;
    }
    .header{
        padding: 0 24px;
    }
    .swpBan .imgDiv img{
        height: 100%;
    }
    .banList{
        display: none;
    }
    .swpBan .imgDiv, .pageBan .imgDiv{
        height: 500px;
    }
    .pageBan .imgDiv img{
        height: 100%;
        object-fit: cover;
    }
    .banText .title{
        font-size: 26px;
        line-height: 24px;
    }
    .banner .txt{
        font-size: 14px;
        line-height: 20px;
        margin-top: 0;
    }
    .banText{
        padding: 0 24px;
    }
    .container{
        width: 100%;
    }
    .indexCase .ab{
        width: 100%;
        flex-wrap: wrap;
    }
    .caseLeft .div{
        width: 100%;
        padding: 30px 30px 0px 30px;
    }
    .caseLeft .topBody .text{
        text-align: justify;
        margin-bottom: 30px;
    }
    .caseRight{
        width: 100%;
    }
    .pagePg{
        font-size: 0;
    }
    .indexNews{
        padding-top: 24px;
        padding-bottom: 24px;
    }
    .idxHead .title .en,
    .btmlist{
        display: none;
    }
    .idxHead{
        padding: 0 16px;
        margin-bottom: 16px;
    }
    .toplist{
        margin-bottom: 0;
    }
    .topliCol{
        width: 100%;
        padding: 0 16px;
    }
    .toplist{
        margin: 0;
    }
    .topliCol:not(:last-child){
        margin-bottom: 15px;
    }
    .indexCooper{
        padding-top: 24px;
        padding-bottom: 0;
    }
    .cooperLi{
        width: 100%;
    }
    .cooperLi .imgDiv{
        height: 300px;
    }
    .cooperLi .imgDiv img{
        height: 100%;
        object-fit: cover;
    }
    .cooperText .en{
        font-size: 40px;
        line-height: 48px;
        letter-spacing: 3px;
    }
    .cooperText .cn{
        font-size: 24px;
        line-height: 32px;
    }
    .idxCooper .text span{
        display: block;
        margin-top: 4px;
    }
    .idxCooper .text{
        line-height: 24px;
    }
    .idxCooper{
        padding-top: 0;
        display: flex;
        align-items: center;
    }
    .footer{
        padding-left: 16px;
        padding-right: 16px;
    }
    .footTop{
        flex-wrap: wrap;
    }
    .footLogo{
        margin-bottom: 16px;
    }
    .infoList{
        margin-bottom: 15px;
    }
    .footTop-lt{
        width: 100%;
        margin-bottom: 30px;
    }
    .fmCol, .demo-ruleForm .ab, .footTop-rt{
        width: 100%;
    }
    .demo-ruleForm .ab{
        margin: 0;
        flex-shrink: 1;
    }
    .fmCol, .fmCols{
        padding-left: 0;
    }
    .el-form-item{
        margin-bottom: 0;
    }
    .demo-ruleForm .but{
        height: 160px;
        width: 80px;
    }
    .footBtm, .footBtm-lt{
        flex-flow: wrap;
    }
    .footBtm-lt span, .footBtm-lt a{
        display: block;
        width: 100%;
        font-size: 12px;
        line-height: 16px;
        margin-bottom: 15px;
    }
    .footBtm-lt a:last-child{
        margin-bottom: 0;
    }
    .footBtm .list{
        flex-wrap: wrap;
        letter-spacing: 1px;
        margin-bottom: 20px;
    }
    .footBtm .list strong{
        display: block;
        width: 100%;
        margin-right: 0;
        margin-bottom: 16px;
    }
    .footTop{
        padding-bottom: 24px;
    }
    .footBtm{
        padding: 24px 0 56px;
        display: flex;
        flex-direction: column-reverse;
    }
    /*项目案例*/
    .banText .title{
        font-size: 32px;
        line-height: 44px;
        letter-spacing: 2px;
        margin-bottom: 16px;
    }
    .banText .tit{
        font-size: 32px;
        line-height: 44px;
    }
    .caseList .list{
        margin: 0;
    }
    .listCol{
        width: 100%;
    }
    .listCol:not(:last-child){
        margin-bottom: 10px;
    }
    .caseList{
        padding-top: 0;
    }
    .listCol{
        padding: 0;
    }
    .caseDl .tit{
        height: 48px;
        overflow: hidden;
    }
    .pagination{
        margin-left: 0;
        margin-right: 0;
        padding: 0 12px;
    }
    .banner .txt{
        margin-top: 24px;
        font-size: 12px;
        text-align: justify;
    }
    .modeBox-one .imgDiv{
        width: 100%;
    }
    .modeBox .divs{
        flex-wrap: wrap;
    }
    .modeBox{
        padding-top: 0;
        padding-bottom: 0;
    }
    .modeBody{
        padding-top: 17px;
        padding-left: 16px;
        padding-right: 16px;
    }
    .modeBox-one{
        margin-bottom: 40px;
    }
    .modeBox-two .imgDiv{
        margin-left: 0;
        width: 100%;
    }
    .modeBox-two .imgDiv{
        margin-top: 24px;
    }
    .modeBox-two{
        padding-bottom: 40px;
        margin-bottom: 0;
    }
    .modeThList{
        display: none;
    }
    .modeBox-three .modeBody{
        padding-bottom: 40px;
    }
    .newsList{
        padding-top: 0;
    }
    .newsDl{
        padding: 12px;
    }
    .newsDl .imgDiv{
        width: 100px;
    }
    .newsDl .imgDiv img{
        height: 73px;
    }
    .newsDl .text{
        display: none;
    }
    .newsDl .title{
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        height: 40px;
        margin-bottom: 8px;
    }
    .newsDl .date{
        font-size: 12px;
    }
    .newsList{
        background-color: #fff;
    }
    .newsDl{
        border-bottom: solid 2px rgba(0,0,0,.05);
    }
    /*详情*/
    .sidebar{
        display: none;
    }
    .pageRight{
        padding: 0 16px;
    }
    .pageBody .idxCaseVdo{
        width: 100%;
    }
    .pageCase .btmlist{
        display: flex;
        flex-wrap: wrap;
        margin: 0;
    }
    .pageCase .btmlist .btmliCol{
        width: 100%;
        padding: 0 16px;
    }
    .pageCase .btmlist .btmliCol:not(:last-child){
        margin-bottom: 16px;
    }
    .pageCase .btmlist .btmliCol:nth-child(n+3){
        display: none;
    }
    .pageCase .idxHead{
        margin-bottom: 24px;
    }
    .pageCase .btmliCol .idxNew-dl{
        border-width: 1px;
        padding: 30px 24px;
    }
    .pageCase .btmliCol .idxNew-dl .tit{
        font-size: 16px;
        line-height: 24px;
        height: 48px;
        margin-bottom: 16px;
    }
    .pageCase .idxNew-dl .txt{
        line-height: 22px;
        height: 66px;
    }
    .pageCase .btmliCol .moreSpan{
        font-size: 0;
    }
    .pageCase .btmliCol .moreSpan img{
        margin-right: 0;
    }
    .page2Body .container{
        padding-bottom: 72px;
    }
    /*内页导航*/
    .pageNavList{
        position: fixed;
        z-index: 99;
        top: 0;
        left: -300px;
        height: 100vh;
        width: 250px;
        background-color: #fff;
        box-shadow: 0 3px 6px -4px rgba(0,0,0,0.12), 0 6px 16px 0 rgba(0,0,0,0.08), 0 9px 28px 8px rgba(0,0,0,0.05);
        padding: 30px 12px;
        -webkit-transition: all 0.5s ease 0s;
        transition: all 0.5s ease 0s;
    }
    .pageNavList.active{
        left: 0;
    }
    .pageNavList .title{
        font-size: 20px;
        line-height: 28px;
        color: #000;
        font-weight: bold;
        margin-bottom: 16px;
    }
    .pageNavList .list a{
        font-size: 14px;
        line-height: 20px;
        color: #000;
    }
    .pageNavList .list li{
        padding: 12px 0;
    }
    .pageNavList .list li.active a{
        color: #ED5757;
    }
    .pgMenuClose{
        position: absolute;
        width: 40px;
        height: 40px;
        background-color: #ED5757;
        border-radius: 0px 4px 4px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .pgMenuClose img{
        width: 14px;
        display: block;
    }
    .pgMenuClose{
        position: absolute;
        bottom: 60px;
        left: 100%;
    }
    .pageMenu{
        position: fixed;
        bottom: 40px;
        width: 56px;
        height: 56px;
        border-radius: 100%;
        background-color: #ED5757;
        left: 24px;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 9;
    }
    .pageMenu img{
        display: block;
        width: 20px;
    }
    .mblNav{
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: #333333;
        padding: 12px 16px 0;
        display: none;
    }
    .mblNav .list{
        border-bottom: solid 1px rgba(255,255,255,0.15);
        padding: 16px 0;
    }
    .mblNav a{
        color: rgba(255,255,255,0.65);
        padding: 0 12px;
    }
    .mblNav .list li, .mblNav .btmBox .div{
        padding: 12px 0;
    }
    .mblNav .list a, .mblNav .btmBox a{
        line-height: 20px;
        display: block;
    }
    .mblNav .btmBox{
        padding: 16px 0;
    }
    .mblNav .list li.active a{
        color: #ED5757;
    }
    /*加入我们*/
    .joinList{
        padding-top: 24px;
    }
    .joinForm{
        flex-wrap: wrap;
    }
    .joinForm .el-form-item:not(:last-child){
        width: 25%;
        margin-right: 0;
    }
    .joinForm .address .el-select, .joinForm .el-select{
        width: 100% !important;
    }
    .joinForm .el-select .el-input__inner{
        padding-right: 15px;
        font-size: 12px;
    }
    .el-input__suffix{
        right: 2px;
    }
    .joinForm .el-form-item:last-child{
        width: 100%;
        margin-top: 10px;
    }
    .joinForm{
        padding: 0 12px;
    }
    .joinForm .sxName .el-input__inner{
        width: 100%;
    }
    .joinList .listCol{
        width: 100%;
        padding-top: 0;
        padding-bottom: 0;
    }
    .joinList .list{
        margin: 0;
    }
    .joinList{
        padding-bottom: 72px;
    }
    .pageBody .container{
        padding-left: 15px;
        padding-right: 15px;
        width: 90%;
    }
    .page2Body .container{
        width: 100%;
        overflow: hidden;
    }
    .page1Ban .imgDiv{
        height: 250px;
    }
    body, html{
        overflow-x: hidden;
    }
    #dituContent{
        width: 100%;
    }
    .aboPageRight{
        padding: 0;
    }
    .aboJieshao .imgDiv{
        width: 100%;
        margin-bottom: 24px;
    }
    .aboJieshao{
        flex-wrap: wrap;
    }
    .aboJieshao .jsText{
        text-align: justify;
    }
    .aboSmlTit small{
        display: none;
    }
    .courseList .txts{
        line-height: 20px;
        height: 40px;
    }
    .courseList i:after{
        height: 66px;
    }
    .whLi{
        width: 100%;
    }
    .whLi:not(:last-child){
        margin-bottom: 24px;
    }
    .zzhiLi, .yejiLi{
        width: 100%;
    }
    .rYuSwp{
        width: 100%;
    }
    .logoLi{
        width: 50%;
        padding: 20px 40px;
    }
    .logoList{
        margin: -20px -40px;
    }
    #aboDivs4{
        overflow: hidden;
    }
}