/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2022-05-10)  
*/


@charset "utf-8";
:root{
    --color-primary: #722476;
}
/* 防止用户自定义背景颜色对网页的影响 */
html{
    color:#333;background:#fff;
}
/* 内外边距重置 */
*{
    margin:0;padding:0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
html,body{
    font-family:sans-serif, Arial, "Microsoft Yahei", 微软雅黑;
    word-wrap: break-word;
    color: #333;
    line-height: 1.7;
    font-size:15px;
    overflow-x: hidden;
}

input,select,textarea{
    font-size:100%;
}
div:focus{
    outline:none;
}
/* 去掉各Table  cell 的边距并让其边重合 */
table{
    border-collapse:collapse;border-spacing:0;
}
/* IE bug fixed: th 不继承 text-align*/
th{
  text-align:inherit;
}
ol,ul{
    list-style: none;
}
a,a:visited,a:focus,a:hover{
  text-decoration:none;
  outline: none;
}

.clearB{
    clear: both;
}
.layui-btn{
    background: var(--color-primary);
}
.block img{
    width: 100%;
}
.text-center{
    text-align: center!important;
}
.text-left{
    text-align: left!important;
}
.text-right{
    text-align: right!important;
}
.text-justify{
    text-align: justify!important;
}
.layui-btn-lg{
    padding: 18px 100px;
    height: auto;
    line-height: 1;
}
@media (min-width: 1400px){
    .layui-container {
        width: 1260px;
    }
}
.layui-container {
    width: 100%!important;
    padding: 0 5%;
    max-width: 1500px;
    margin: 0 auto;
}
@media screen and (max-width: 567px) {
    .layui-btn-lg{
        width: 100%;
    }
}

@media screen and (max-width: 767px) and (min-width:568px) {
    .layui-col-xsm6{
        width: 50%;
    }
}
@media screen and (max-width: 767px){
    .layui-container{
        width: 100%;
    }
}
.iconfont{
    font-size: inherit;
}
/* header */

header{
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}
.site-mobile header,
header.header-fixed{
    background: linear-gradient(34deg, #662E85 0%, #AE4167 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
header a{
    color: #fff;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
header .logo img{
    height: 60px;
}

header .layui-container{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.header-right{
    display: flex;
    align-items: center;
}
.header-right .right-btn{
    display: flex;
    align-items: center;
}
.header-right .right-btn::before{
    content: '';
    display: block;
    width: 1px;
    height: 14px;
    background-color: #fff;
    margin: 0 20px;
    opacity: .7;
}
.header-right .right-btn .language-box a{
    display: flex;
    align-items: center;
}
.header-right .right-btn .language-box a i{
    margin-right: 5px;
}
.header-right .right-btn a:hover{
    color: #fff;
    opacity: .9;
}
.header-right .right-btn .button{
    display: none;
    background-color: #fff;
    color: var(--color-primary);
    padding: 12px 20px;
    border-radius: 5px;
    line-height: 1;
    margin-left: 15px; 
    transition: all .3s;
}
.header-right .right-btn .button:hover{
    color: #fff;
    background-color: var(--color-primary);
}

@media screen and (min-width: 992px) {
    .layui-nav {
        /* position: absolute;
        top: 10px;
        right: 0px;
        left: 200px; */
        padding: 0;
        z-index: 99;
        background: none;
        text-align: right;
    }
    .layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after{
        background-color: #fff;
        height: 2px;
        transform: scaleX(.5);
    }
    .layui-nav ul{
        font-size: 0;
        display: table;
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }
    .layui-nav li{
        display: table-cell;
        text-align: right;
    }
    .layui-nav li a{
        font-size: 15px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
    }
    .layui-nav .layui-nav-item{
        margin: 0 8px;
    }
    .layui-nav .layui-nav-item a{
        color: #eee;
        padding: 0;
    }
    .layui-nav .layui-nav-item a:hover, .layui-nav .layui-this a{
        color: #fff;
    }
}
header .button-box{
    position: absolute;
    right: 15px;
    top: 0;
    top: 21px;
}
header .button-box .layui-btn{
    background: #fff;
    margin-left: 10px;
    border: 1px solid #fff;
    line-height: 36px;
    color: #01225F;
    font-weight: bold;
}
header .button-box .login{
    background: none;
    border: 1px solid #fff;
    color: #fff;
}
@media screen and (max-width: 1199px) and (min-width: 992px) {
    .layui-nav .layui-nav-item a{
        font-size: 15px;
    }
    .layui-nav .layui-nav-item{
        margin: 0 5px;
    }
}
.header-mobile{
    display: none;
}
@media screen and (max-width: 1100px) {
    .layui-nav{
        background: linear-gradient(34deg, #662E85 0%, #AE4167 100%);
    }
    header {
        z-index: 999;
    }
    header .layui-nav{
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        position: relative;
        z-index: 999;
        display: none;
    }
    .site-mobile .layui-nav{
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
    }
    .layui-nav .layui-this:after, .layui-nav-bar, .layui-nav-tree .layui-nav-itemed:after{
        content: none;
        background: rgba(255,255,255,.5);
        height: 1px;
    }
    .layui-nav .layui-nav-item{
        display: block;
        text-align: center;
    }
    .layui-nav .layui-nav-item a{
        padding: 0px 20px;
        border-bottom: 1px solid rgba(1,34,95,.1);
        font-size: 15px;
    }
    .layui-nav .layui-nav-item:nth-last-of-type(1) a{
        border-bottom: 0;
    }
    header .layui-btn{
        display: none;
    }

    .header-mobile{
        position: absolute;
        right: 0;
        top: 0;
        width: 54px;
        height: 80px;
        display: block;
    }

    .site-tree-mobile{
        display: block!important;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        padding: 0 15px;
        color: #fff;
        position: absolute;
        z-index: 999;
        right: 0;
        top: 0px;
        bottom: 0;
        padding: 31px 15px;
        line-height: 1;
    }
    .site-tree-mobile .icon-reorder{
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
    .site-tree-mobile .icon-reorder:last-child{
        margin-bottom: 0;
    }
    .site-mobile .site-tree-mobile .icon-reorder{
        margin: 0;
    }
    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(1){
        margin-top: 10px;
        -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
        -o-transform: rotate(42deg);
        transform: rotate(42deg);
    }
    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(3){
        margin-top: -4px;
        -webkit-transform: rotate(-42deg);
        -ms-transform: rotate(-42deg);
        -o-transform: rotate(-42deg);
        transform: rotate(-42deg);
    }
    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(2){
        opacity: 0;
    }
    .site-mobile .site-mobile-shade{
        content: ''; 
        position: fixed; 
        top: 0; 
        bottom: 0; 
        left: 0; 
        right: 0; 
        background-color: rgba(0,0,0,.85); 
        z-index: 998;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
}
@media screen and (max-width: 1100px){
    .header-right{
        padding-right: 15px;
    }
    .header-right .right-btn::before{
       display: none;
    }
    header .logo img{
        height: 50px;
    }
    header.header-fixed .logo img{
        height: 50px;
    }
}
@media screen and (max-width: 767px) {
    .header-right{
        padding-right: 30px;
    }
    header {
        height: 70px;
        transition: all .3s;
    }
    header .logo{
        transition: all .3s;
    }
    header .logo img{
        height: 38px;
        transition: all .3s;
    }
    .site-tree-mobile{
        padding: 25px 15px!important;
        transition: all .3s;
    }
    header.header-fixed{
        height: 70px;
    }
    .header-mobile{
        height: 70px;
       
    }
    header.header-fixed .logo img{
        height: 38px;
    }
    header.header-fixed .site-tree-mobile{
        padding: 25px 15px!important;
    }
}
@media screen and (max-width: 480px) {
    .header-right{
        padding-right: 30px;
    }
    header {
        height: 50px;
    }
    header .logo img{
        height: 35px;
        transition: all .3s;
    }
    
    header.header-fixed{
        height: 50px;
    }
    .header-mobile{
        height: 50px;
       
    }
    header.header-fixed .logo img{
        height: 35px;
    }
    header.header-fixed .site-tree-mobile {
        padding: 16px 15px!important;
    }
    header .site-tree-mobile {
        padding: 16px 15px!important;
    }
}
/* header END */

/*banner*/
.banner{
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    width: 100vw;
    height: 58vw;
    max-height: 100vh;
}
.banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/*swiper-button*/
.swiper-button-prev,
.swiper-button-next{
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    z-index: 999;
    border-radius: 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.swiper-button-prev{
    background: url(../images/icon_arrow_left.png) center center no-repeat;
    background-size: 40px;
    left: 20px;
}
.swiper-button-next{
    background: url(../images/icon_arrow_right.png) center center no-repeat;
    background-size: 40px;
    right: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    content: none;
}
@media screen and (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next{
        width: 40px;
        height: 40px;
        background-size: 40px;
        margin-top: -20px;
        background-size: 20px;
    }
    .swiper-button-prev{
        left: 0;
    }
    .swiper-button-next{
        right: 0;
    }
}
/*swiper-button END*/

.banner-text{
    /*width: 100%;*/
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 5;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
/*.banner-text .box{
    margin: 0 auto;
}*/
.banner-text .box{
    width: 70%;
}
.banner-text .box .title{
    color: #FFFFFF;
    line-height: 1.3;
    position: relative;
    margin-bottom: 0px;
    font-size: 68px;
    /* font-weight:600; */
}
.banner-text .box .desc{
    font-size: 28px;
    color: #FFFFFF;
    /* font-weight: lighter; */
    line-height: 1.4;
}
.banner-text .box .desc.top{
    margin-top: 20px;
}
@media screen and (max-width: 1600px){
    .banner-text .box .title{
        font-size: 62px;
    }
    .banner-text .box .desc{
        font-size: 26px;
    }
}
@media screen and (max-width: 1200px){
    .banner-text .box .title{
        font-size: 54px;
    }
    .banner-text .box .desc{
        font-size: 20px;
    }
}
@media screen and (max-width: 991px){
    .banner-text{
        padding-top: 40px;
    }
    .banner-text .box .title{
        font-size: 40px;
    }
    .banner-text .box .desc{
        font-size: 18px;
    }
}
@media screen and (max-width: 767px){
    .banner-text{
        padding-top: 40px;
    }
    .banner-text .box{
        width: 100%;
    }
    .banner-text .box .title{
        font-size: 30px;
    }
   
    .banner-text .box .desc{
        font-size: 15px;
    }
    .banner-text .box .desc.top{
        margin-top: 10px;
    }
    
    
}
@media screen and (max-width: 556px){
   
    .banner-text .box .title{
        font-size: 24px;
    }
    .banner-text .box .desc{
        font-size: 13px;
    }
    .banner-text .box .desc.top{
        margin-top: 5px;
    }
    /* .banner{
        height: 58vw;
    } */
    
}

/*banner-END*/

/*block*/
.block{
    padding: 60px 0;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-position:center;
    background-repeat: no-repeat;
    background-size: cover;
}
.block.grey{
    background-color: #F6F8FF;
}
.block.black{
    background-color: #29282D;
}
.block.bg{
    background-attachment: fixed;
}
.block.bg>*{
    position: relative;
    z-index: 9;
}
.block.bg:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.65);
    z-index: 0;
}
.block.bg .container,.block.color_white .container{
    z-index: 2;
    position: relative;
    color: #fff;
}
.color_white{
    color: #fff;
}
@media screen and (max-width:767px) {
    .block{
        padding: 50px 0;
    }
}
/*block END*/

/*index_title*/
.index_title{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.index_title .title{
    position: relative;
    font-size: 30px;
    font-weight: 600;
    color: var(--color-primary);
}
.index_title .title::after{
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background-color: #FDB127;
}
.index_title.white .en-title{
    color: #fff;
    opacity: .5;
    
}
.index_title .en-title{
    font-size: 13px;
    color: #c1c1c1;
    margin-top: 8px;
    text-transform:uppercase;
}
.index_title.white .title{
    color: #fff;
}
@media screen and (max-width: 991px){
    .index_title .title{
        font-size: 26px;
    }
    .index_title .title::after{
        width: 31px;
    }
    .index_title .en-title{
        font-size: 13px;
    }
}
@media screen and (max-width: 767px){
    .index_title .title{
        font-size: 22px;
    }
    .index_title .title::after{
        width: 26px;
    }
    .index_title .en-title{
        font-size: 12px;
    }
}

/*index_title END*/
.page-content{
    font-size: 15px;
}
.page-content p{
    text-align: justify;
}
.page-content p,.page-content li{
    line-height: 1.8;
    margin-bottom: 12px;
}
.page-content li{
    padding-left: 5px;
}
.page-content ul,.page-content ol{
    padding-left: 20px;
}
.page-content ul,.page-content ul li{
    list-style: disc outside;
}
.page-content ol,.page-content ol li{
    list-style: decimal outside;
}
.page-content h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #01225F;
    margin-top: 20px;
}
.page-content>*:nth-of-type(1):not(h4){
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .page-content{
        font-size: 14px;
    }
}

.row-flex{
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
}
.layui-row.row-flex:after, .layui-row.row-flex:before{
    content: none;
}

#button-to-top {
    background: rgba(114, 36, 118, 1);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    text-align: center;
    font-size: 22px;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}


.anchor {
    position: relative;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
     z-index: -1; 
}


/*footer*/
footer{
    background:linear-gradient(35deg, #B52AA7 0%, #3A52E6 62%, #0CAEFA 100%);
}

footer,footer a,footer a:visited{
    color: #fff;
    font-size: 13px;
}
footer a:hover,
footer a:focus{
    color: #fff;
}
.footer-top{
    position: relative;
    padding: 30px 0;
    
}
.footer-top::after{
    content: '';
    position: absolute;
    display: block;
    top: 0;
    bottom: -43px;
    left: 0;
    right: 0;
    background-image: url(../images/footer-bg.png) ;
    background-size: 100% 100%;
    background-position: left bottom;
    background-repeat: no-repeat;
    color: #fff;
}
.footer-top img{
    max-width: 100%;
}
.footer-top .footer-logo{
    margin-bottom: 15px;
}
.footer-top .footer-logo img{
    max-height: 60px;
}
footer .title{
    margin-bottom: 10px;
    font-size: 18px;
    color: #4d4d4f;
}
.footer-top p{
    margin-bottom: 5px;
}

.footer-top ul,
.footer-top ul li{
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-top .footer-link li{
    line-height: 150%;
    position: relative;
    border-bottom: 1px solid #D0D0D1;
}
.footer-top .footer-link li a{
    display: block;
    padding: 12px 0;
    color: #fff;
}
.qrcode-flex{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    margin-top: 15px;
}
.footer-qrcode {
    display: inline-block;
    font-size: 12px;
    margin-top: 12px;
}
.footer-qrcode +.footer-qrcode {
    margin-left: 30px;
}
.footer-qrcode .qrcode-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.footer-qrcode .qrcode-box{
    width: 100%;
    max-width: 130px;
    margin-bottom: 8px;
    overflow: hidden;
}
.footer-qrcode img{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .footer-top,.footer-qrcode{
        text-align: center;
    }
    .footer-qrcode{
        margin-top: 0;
    }
    .footer-qrcode .qrcode-item{
        margin: 0;
        text-align: center;
    }
    .footer-qrcode .qrcode-box{
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .footer-qrcode .qrcode-item p{
        font-size: 12px;
        margin-top: 5px;
    }
}


.footer-copyright{
    padding: 10px 0;
    color: #fff;
    border-top: 1px solid #fff;
    opacity: .4;
}
.footer-copyright a:hover{
    color: #fff;
}

/*footer END*/


/* slide-door */
.slide-door{
    margin-bottom: 1px;
    border-bottom: 1px solid #eaeaea;
}
.slide-door .accordion-title{
    padding: 20px 0;
    padding-right: 36px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}
.slide-door .accordion-title:after{
    content: "\f067";
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/toggle-grey.svg) right center no-repeat;
    transition: all .3s;
}
.slide-door:not(.open):hover .accordion-title:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-door.open .accordion-title:after{
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}

.slide-door .accordion-content{
    padding: 0 0 20px 30px;
    display: none;
    color: #4d4d4f;
}
.slide-door .accordion-content>*:last-child{
    margin-bottom: 0;
}
.slide-door .accordion-title .num{
    font-weight: bold;
    color: #01225F;
    position: relative;
    left: -5px;
    font-family: "Arial";
}
@media screen and (max-width: 767px) {
	.slide-door .accordion-title{
		font-size: 16px;
	}
	.slide-door .accordion-title:after{
		width: 18px;
		height: 18px;
		margin-top: -9px;
	}
    .slide-door .accordion-content{
        padding-left: 0;
    }
}
/* slide-door END */


/* overview */
.overview-img{
    max-width: 420px;
    display: block;
    margin: 0 auto;
}
/* overview END */

/*swiper-button*/
.swiper-button-prev,
.swiper-button-next{
    position: absolute;
    top: 50%;
    margin-top: -24px;
    width: 36px;
    height: 36px;
    z-index: 997;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: #01225F;
    border-radius: 50%;
    color: #fff;
    border: 1px solid #01225F;
}
.swiper-button-next.swiper-button-disabled, 
.swiper-button-prev.swiper-button-disabled{
    background-color: transparent;
    color: #000;
    opacity: 1;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
    background: #01225F;
}
.swiper-button-next:after, 
.swiper-button-prev:after{
    content: unset;
}
.swiper-button-prev .iconfont{
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.swiper-button-next .iconfont, 
.swiper-button-prev .iconfont{
    font-size: 17px;
    font-weight: lighter;
    position: relative;
}
.swiper-button-next .iconfont{
    left: 0;
}
.swiper-button-next .iconfont{
    right: 0;
}
.swiper-button-prev{
    left: -50px;
}
.swiper-button-next{
    right: -50px;
}
.swiper-button-prev:before,
.swiper-button-next:before{
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: -5px;
    top: -5px;
    border: 1px dashed rgba(1,34,95,.5);
    border-radius: 50%;
    transition: all 1s linear;
    transform: rotate(0deg);
}
.swiper-button-prev:hover:before,
.swiper-button-next:hover:before{
    border-color: rgba(1,34,95,1);
    transform: rotate(180deg);
}
.swiper-button-prev:hover .iconfont{
    animation: arrowLeft 1s ease;
    -webkit-animation: arrowLeft 1s ease;
}
.swiper-button-next:hover .iconfont{
    animation: arrowRight 1s ease;
    -webkit-animation: arrowRight 1s ease;
}
@-webkit-keyframes arrowRight{
    0%{
        opacity: 1;
        left: 0;
    }
    47%{
        opacity: 0;
        left: 10px;
    }
    53%{
        opacity: 0;
        left: -10px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
@keyframes arrowRight{
    0%{
        opacity: 1;
        left: 0;
    }
    47%{
        opacity: 0;
        left: 10px;
    }
    53%{
        opacity: 0;
        left: -10px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
@-webkit-keyframes arrowLeft{
    0%{
        opacity: 1;
        left: 0;
    }
    47%{
        opacity: 0;
        left: -10px;
    }
    53%{
        opacity: 0;
        left: 10px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
@keyframes arrowLeft{
    0%{
        opacity: 1;
        left: 0;
    }
    47%{
        opacity: 0;
        left: -10px;
    }
    53%{
        opacity: 0;
        left: 10px;
    }
    100%{
        opacity: 1;
        left: 0;
    }
}
/*swiper-button END*/


/* class-swiper-nav */
.class-swiper-nav{
    margin-bottom: 40px;
}
.class-swiper-nav .class-nav-item{
    padding: 12px 20px;
    margin: 0 auto;
    border: 1px solid #01225F;
    color: #01225F;
    border-radius: 60px;
    overflow: hidden;
    width: 100%;
    text-align: center;
    cursor: pointer;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.class-swiper-nav .class-nav-item:hover,
.class-swiper-nav .swiper-slide-thumb-active .class-nav-item{
    border: 0;
    background: linear-gradient(322deg, #B58444 0%, #FFBD6E 50%, #B18142 100%);
    color: #fff;
}
/* class-swiper-nav END */

/* class-swiper-img */
.class-swiper-img{
    position: relative;
    z-index: 1;
    height: 100%;
}
.class-swiper-img .img-box{
    width: 100%;
    height: 100%;
    position: relative;
}
.class-swiper-img .swiper-container,
.class-swiper-img .swiper-wrapper,
.class-swiper-img .swiper-slide{
    width: 100%;
    height: 100%;
}
.class-swiper-img .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* class-swiper-img END */

/* class-swiper-text */
.class-container{
    padding: 50px 0;
}
.class-swiper-text{
    background-color: rgba(255,255,255,.9);
    /* padding: 40px; */
    position: relative;
    margin-left: -50%;
    z-index: 2;
    border-radius: 8px;
}
.class-swiper-text .swiper-container{
    overflow: unset;
}
.class-swiper-text>*{
    position: relative;
    z-index: 1;
}
.class-swiper-text:before{
    content: "\e90a";
    font-family: "iconfont";
    position: absolute;
    right: 30px;
    top: 30px;
    line-height: 1;
    color: #01225F;
    font-size: 90px;
    z-index: 0;
    opacity: .03;
    transition: all .3s ease-in-out;
}
.class-swiper-text .text-body{
    font-size: 14px;
    padding: 40px;
}
.class-swiper-text .swiper-btn{
    justify-content: flex-end;
    padding: 0 40px 40px 40px;
}
.class-swiper-text .title{
    font-size: 20px;
    color: #01225F;
    margin-bottom: 15px;
    font-weight: bold;
}
.class-swiper-text .tag{
    color: #fff;
    font-size: 15px;
    height: 50px;
    line-height: 42px;
    position: relative;
}
.class-swiper-text .tag>*{
    position: relative;
    z-index: 2;
}
.class-swiper-text .tag:after{
    content: "";
    position: absolute;
    left: -50.5px;
    top: 0;
    height: 50px;
    right: 0;
    background: url(../images/type-bg.png) center left no-repeat;
    background-size: auto 100%;
    z-index: 1;
}
.class-swiper-text .content{
    font-size: 14px;
    padding-top: 5px;
}
.class-swiper-text .content .item{
    margin-bottom: 10px;
    display: flex;
}
.class-swiper-text .content .item>strong{
    color: #01225F;
    width: 90px;
    padding-right: 10px;
}
.class-swiper-text .content .item>span{
    flex: 1;
    color: #666;
}
@media screen and (max-width:1199px) {
    .class-swiper-text .text-body{
        font-size: 14px;
        padding: 30px;
    }
    .class-swiper-text .tag:after{
        left: -40.5px;
    }
}
@media screen and (max-width:991px) {
    .class-swiper-nav .class-nav-item{
        font-size: 14px;
    }
    .class-swiper-text{
        margin-left: 0;
        margin-top: -50%;
    }
    .class-container{
        padding: 15px;
    }
    .class-swiper-text .title{
        font-size: 18px;
    }
}
@media screen and (max-width:767px) {
    .class-swiper-text .title{
        font-size: 16px;
    }
    .class-swiper-text .tag{
        font-size: 14px;
    }
    .class-swiper-text .text-body{
        padding: 20px;
    }
    .class-swiper-text .tag:after{
        left: -30.5px;
    }
    .class-swiper-text .content .item{
        display: block;
    }
    .class-swiper-text .content .item>strong{
        width: unset;
        padding-right: 0;
    }
    .class-swiper-text .content .item>strong>br{
        display: none;
    }
}
/* class-swiper-text END */


/* slide */
.slide{
    padding: 30px;
    border-radius: 8px;
    height: 100%;
    background-color: #fff;
    position: relative;
    display: block;
    transition: all .3s;
    top: 0;
}
a.slide:hover{
    top: -5px;
}
.slide>*{
    position: relative;
    z-index: 2;
}
.slide .title{
    font-size: 18px;
    color: #000;
    font-weight: bold;
    margin-bottom: 15px;
}
.slide .title::first-letter{
    font-size: 1.8em;
    color: #B48547;
    margin-right: 2px;
}
.slide .tag{
    color: #fff;
    height: 50px;
    line-height: 42px;
    position: relative;
}
.slide .tag>*{
    position: relative;
    z-index: 2;
}
.slide .tag:after{
    content: "";
    position: absolute;
    left: -40.5px;
    top: 0;
    height: 50px;
    right: 0;
    background: url(../images/type-bg-2.png) center left no-repeat;
    background-size: auto 100%;
    z-index: 1;
}
.slide .content{
    color: #666;
    margin-top: 15px;
}
.slide .content ol li{
    position: relative;
    padding-left: 2em;
    counter-increment: section;
}
.slide .content ol li:before{
    content: counters(section,".") " )";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    color: #CA9450;
    font-weight: bold;
    width: 2em;
}
.slide .letter{
    position: absolute;
    bottom: 0;
    right: 0;
    width: 33%;
    max-width: 100px;
}
.slide-list{
    margin-top: 40px;
}
@media screen and (max-width: 767px) {
    .slide{
        padding: 20px;
    }
    .slide .title{
        font-size: 16px;
    }
    .slide .tag:after{
        left: -30.5px;
    }
}
/* slide END */



table{
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.5;
}
table th,
table td{
    padding: 8px 16px;
}
table tr:nth-of-type(even) td{
    background-color: rgba(1,34,95,.05);
}
table thead tr{
    background-color: rgba(1,34,95,1);
    color: #fff;
}
table thead tr th{
    padding: 12px 20px;
}
@media screen and (max-width: 767px) {
    table th,
    table td{
        padding: 4px 2px;
        font-size: 12px;
    }
    table thead tr th{
        padding: 12px 8px;
    }
}

/*course-block*/
.course-tab{
    margin: 50px 0 30px;
}
.course-tab .layui-tab-title{
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    border-bottom: 0;
    height: unset;
    line-height: unset;
}
.course-tab .layui-tab-title li{
    -webkit-flex: 1;
    -moz-flex: 1;
    -ms-flex: 1;
    -o-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -ms-align-items: center;
    align-items: center;
    padding: 8px 5px;
    text-align: center;
    justify-content: center;
    font-size: 18px;
    color: #01225F;
    position: relative;
    background-color: rgba(1,34,95,.05);
}
.course-tab .layui-tab-title .layui-this:after{
    content: none;
}
.course-tab .layui-tab-title .layui-this:before{
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border: 10px solid transparent;
    border-top: 12px solid #01225F;
    top: 100%;
    left: 50%;
    margin-left: -20px;
}
.course-tab .layui-tab-title li:hover,
.course-tab .layui-tab-title .layui-this{
    background: #01225F;
    color: #fff;
}
.course-tab .layui-tab-content{
    padding: 50px 30px 30px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    height: auto;
    background-color: #fff;
}
.course-tab .layui-tab-content .label{
    color: #01225F;
    font-weight: bold;
    margin-bottom: 12px;
}
.course-tab .layui-tab-content .con{
    color: #5D5E68;
}

@media screen and (max-width: 991px) {
    .course-tab .layui-tab-content{
        padding-top: 40px;
    }
    .course-tab .layui-tab-title li{
        font-size: 16px;
    }
    .course-tab table{
        table-layout: unset!important;
    }
}
@media screen and (max-width: 767px) {
    .course-tab{
        margin: 0;
    }
    .course-tab .layui-tab-title li{
        display: block;
        text-align: center;
        padding: 12px 5px;
        font-size: 14px;
        margin: 0px;
        width: 50%;
    }
    .course-tab .layui-tab-title li:nth-of-type(2){
        border-left: 0;
        border-right: 0;
    }
    .course-tab .icon-box{
        width: 24px;
        height: 24px;
        line-height: 24px;
        font-size: 24px;
        margin: 0 auto 8px;
    }
    .course-tab .icon-box+.text{
        line-height: 1;
    }
    .course-tab .layui-tab-title .layui-this:before{
        border: 18px solid transparent;
        border-top: 9px solid #01225F;
        margin-left: -18px;
    }
    .course-tab .layui-tab-content{
        padding: 30px 0 0;
        background-color: unset;
    }
    .course-tab table th, .course-tab table td{
        text-align: center;
    }
    .course-tab table tr th:last-child, .course-tab table tr td:last-child{
        text-align: left;
    }
}


/*course-block END*/

/* study */
.study-list .study-item{
    display: block;
    background: rgba(255,255,255,.3);
    box-shadow: 0px 2px 22px 0px rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    margin-bottom: 16px;
    color: inherit;
    display: flex;
    align-items: center;
    padding: 12px 16px;
    transition: all .3s;
    font-size: 15px;
}
.study-list .study-item .text-box{
    flex: 1;
    padding: 0 16px;
}
.study-list .study-item .more-box,
.study-list .study-item .avatar-box{
    border: 1px dashed rgba(255,255,255,.5);
    border-radius: 50%;
    overflow: hidden;
    padding: 3px;
}
.study-list .study-item .more-box .icon,
.study-list .study-item .avatar-box .img{
    width: 36px;
    height: 36px;
    background-color: #fff;
    border-radius: 50%;
    overflow: hidden;
    padding: 2px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.study-list .study-item .avatar-box img{
    width: 32px;
    height: 32px;
    border-radius: 50%;
    overflow: hidden;
    object-fit: cover;
}
.study-list .study-item .more-box .iconfont{
    font-size: 16px;
    color: #01225F;
    position: relative;
    right: 0;
}
.study-list .study-item:hover .more-box .iconfont{
    animation: arrowRight 1s ease;
    -webkit-animation: arrowRight 1s ease;
}
.study-list .study-item:hover{
    background-color: rgba(255,255,255,.75);
    color: #01225F;
}
@media screen and (max-width: 767px) {
    .study-list .study-item{
        font-size: 14px;
    }
    .study-list .study-item .text-box{
        padding: 0 12px;
    }
}
/* study END */

/* more-btn */
.more-btn{
    padding: 14px 50px;
    color: #fff;
    background: linear-gradient(322deg, #B58444 0%, #FFBD6E 50%, #B18142 100%);
    border-radius: 50px;
    margin-top: 20px;
    font-size: 16px;
    display: inline-block;
}
.more-btn:hover{
    color: #fff;
}
/* more-btn END */

/* event-swiper */
.event-swiper {
    position: relative;
}
.event-swiper .swiper-container{
    padding: 5px 9px;
    overflow: hidden;
}
.event-swiper .slide .title{
    color: #01225F;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    height: 61px;
}
.event-swiper .slide .title::first-letter{
    font-size: inherit;
    line-height: 1.5;
    margin-right: 0;
}
.event-swiper .content{
    text-align: center;
}
.event-swiper .apply-btn{
    padding: 8px 24px;
    border: 1px solid #01225F;
    color: #01225F;
    border-radius: 50px;
    display: inline-block;
    margin-top: 10px;
    transition: all .3s;
}
.event-swiper .apply-btn:hover{
    background-color: #01225F;
    color: #fff;
}
.event-swiper .apply-btn.is-end{
    background-color: #eee;
    color: #666;
    border-color: #eee;
}
@media screen and (max-width: 767px) {
    .event-swiper .swiper-button-prev{
        left: 0;
    }
    .event-swiper .swiper-button-next{
        right: 0;
    }
    .event-swiper .slide .title{
        height: 56px;
    }
}
/* event-swiper END */

/* process-tab */

/*process-tab*/
.process-tab{
    padding-bottom: 0;
    font-size: 14px;
}
.process-tab .layui-tab-title{
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}
.process-tab .layui-tab-title:before{
    content: "";
    position: absolute;
    left: 90px;
    right: 90px;
    top: 50px;
    border-bottom: 1px dashed rgba(255,255,255,.25);
}
.process-tab .layui-tab-title li{
    font-size: 17px;
    padding: 10px;
    text-align: center;
}
.process-tab .layui-tab-title{
    width: 100%;
    border-bottom: 0;
    text-align: center;
    color: #ccc;
}
.process-tab .layui-tab-title li .icon-box{
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}
.process-tab .layui-tab-title li .icon-box>*{
    position: relative;
    z-index: 1;
}
.process-tab .layui-tab-title li .icon-box:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: #01225F linear-gradient(270deg, #B58444 0%, #FFBD6E 52%, #B18142 100%);
    opacity: 0;
    transition: all .3s;
    z-index: 0;
    border-radius: 50%;
}
.process-tab .layui-tab-title li.layui-this .icon-box:before,
.process-tab .layui-tab-title li:hover .icon-box:before{
    opacity: 1;
}
.process-tab .layui-tab-title li .icon-box img{
    width: 42px;
    height: 42px;
    object-fit: cover;
}
.process-tab .layui-tab-title li .unselect{
    display: block;
}
.process-tab .layui-tab-title li .selected{
    display: none;
}
.process-tab .layui-tab-title li.layui-this .selected{
    display: block;
}
.process-tab .layui-tab-title li.layui-this .unselect{
    display: none;
}

.process-tab .layui-tab-title li .icon-box:after{
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 1px dashed rgba(255,255,255,.5);
    border-radius: 50%;
}
.process-tab .layui-tab-title li.layui-this{
    color: #fff;
}
.process-tab .layui-tab-title li.layui-this .icon-box{
    border-color: rgba(255,255,255,1);
}
.process-tab .layui-tab-brief>.layui-tab-more li.layui-this:after,
.process-tab .layui-tab-brief>.layui-tab-title .layui-this:after{
    content: none;
}
.process-tab .process-tab-title{
    font-size: 24px;
    margin-bottom: 30px;
    font-family: "Microsoft Yahei Light","Microsoft Yahei","Helvetica Neue","Helvetica","Arial",sans-serif;
}
.process-tab .layui-tab-content{
    position: relative;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    padding: 40px;
    color: #333;
    margin-top: 20px;
}
.process-tab .layui-tab-content h4{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #01225F;
}

.process-tab .layui-tab-bar{
    display: none;
}

@media screen and (max-width: 1199px){
    .process-tab .layui-tab-title li{
        font-size: 14px;
    }
    .process-tab .layui-tab-title li .icon-box{
        width: 72px;
        height: 72px;
        line-height: 72px;
    }
}
@media screen and (max-width: 767px) {
    .process-tab .layui-tab-title:before{
        top: 33px;
        left: 16.66666%;
        right: 16.66666%;
    }
    .process-tab .layui-tab-title:after{
        content: "";
        position: absolute;
        top: 138px;
        left: 16.66666%;
        right: 16.66666%;
        border-bottom: 1px dashed rgba(255,255,255,.25);
    }
    .layui-tab-bar{
        height: 60px;
        line-height: 60px;
        display: none;
    }
    .process-tab .layui-tab-title{
        border-bottom: 0;
        margin-top: 0px;
    }
    .process-tab .layui-tab-title li{
        font-size: 13px;
        width: 33.333333%;
        padding: 5px;
    }
    .process-tab .layui-tab-title li .icon-box{
        width: 56px;
        height: 56px;
        font-size: 24px;
        line-height: 56px;
        margin-bottom: 0;
    }
    .process-tab .layui-tab-title li .icon-box:after{
        right: -5px;
        top: -5px;
        left: -5px;
        bottom: -5px;
    }
    .process-tab .layui-tab-title li .icon-box img{
        width: 32px;
        height: 32px;
    }
    .process-tab .layui-tab-content{
        margin: 40px 0;
    }
    .process-tab .process-tab-title{
        font-size: 20px;
        margin: 20px 0;
    }

    .process-tab .layui-tab-content{
        padding: 20px;
        margin-top: 10px;
    }
    .process-tab .layui-tab-content h4{
        margin-bottom: 10px;
        text-align: center;
    }
}
/*process-tab END*/

/* overview-page */
.overview-page h4{
    color: #fff;
    font-size: 15px;
    height: 40px;
    line-height: 34px;
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
    overflow: hidden;
}
.overview-page h4:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    right: 0;
    background: url(../images/type-bg.png) center left no-repeat;
    background-size: auto 100%;
    z-index: 1;
}
.overview-page h4>*{
    position: relative;
    z-index: 1;
}
/* overview-page END */

/* logo-list */
.ranking-list,
.logo-list{
    padding: 20px;
    /* background: linear-gradient(322deg, #B58444 0%, #FFBD6E 50%, #B18142 100%); */
    background: #D69D57;
}
.logo-list img{
    width: 100%;
}
.ranking-list{
    margin-top: 20px;
}
.ranking-list td{
    background-color: rgba(255,255,255,.85)!important;
}
.ranking-list table{
    table-layout: unset;
    margin: 0;
}
.ranking-list img{
    width: unset;
    max-width: 120px;
    max-height: 40px;
}
@media screen and (max-width: 767px) {
    .logo-list{
        padding: 8px;
    }
    .ranking-list{
        margin-top: 10px;
        padding: 6.5px;
    }
    .ranking-list td{
        padding: 8px;
    }
    .ranking-list img{
        max-width: 80px;
    }
}
/* logo-list END */



/* faculty-item */
.faculty-item {
    color: #666;
    font-size: 14px;
    padding: 20px;
    height: 100%;
}
.faculty-item .faculty-name{
    color: #000;
    font-size: 18px;
}
.faculty-item .avatar img{
    width: 48px;
    height: 48px;
    border-radius: 48px;
    overflow: hidden;
    object-fit: cover;
}
.faculty-item li{
    margin-bottom: 0;
}
.faculty-item.slide .tag{
    margin-top: 10px;
    margin-bottom: 10px;
    line-height: 36px;
    height: 40px;
}
.faculty-item.slide .tag:after{
    height: 40px;
    left: -28.5px;
}
.faculty-item .top{
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}
.faculty-item .top .text{
    padding-left: 15px;
    flex: 1;
}
.faculty-item .desc{
    min-height: 75px;
}
.faculty-item ul{
    padding-left: 18px;
    list-style: none;
}
.faculty-item li{
    padding-left: 0;
    list-style: none!important;
    position: relative;
}
.faculty-item li:after{
    content: "";
    position: absolute;
    left: -16px;
    width: 5px;
    height: 5px;
    border-radius: 5px;
    background-color: #CA9450;
    top: 10px;
}

.faculty-swiper .swiper-container{
    width: 100%;
    overflow: hidden;
}
.faculty-swiper .swiper-container{
    padding-left: 8.5px;
}
.faculty-swiper .swiper-slide{
    height: 100%;
}
.faculty-swiper{
    margin-left: -8.5px;
}
.ala-flex{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.ala-flex h4{
    flex: 1;
    margin: 0;
}
.swiper-btn.button-white .swiper-button-prev, 
.swiper-btn.button-white .swiper-button-next{
    background-color: #fff;
    border-color: #fff;
    color: #01225F;
}
.swiper-btn.button-white .swiper-button-prev:before, 
.swiper-btn.button-white .swiper-button-next:before{
    border-color: rgba(255,255,255,.3);
}
.swiper-btn.button-white .swiper-button-prev.swiper-button-disabled, 
.swiper-btn.button-white .swiper-button-next.swiper-button-disabled{
    color: #fff;
    background-color: unset;
    opacity: .75;
}
@media screen and (max-width:991px) {
    .faculty-swiper .swiper-container{
        overflow: unset;
    }
    .faculty-swiper .swiper-slide .faculty-item{
        transform: scale(.9);
        opacity: .85;
        transition: all .3s ease-in-out;
    }
    .faculty-swiper .swiper-slide-active .faculty-item{
        transform: scale(1);
        opacity: 1;
    }
}
@media screen and (max-width: 567px) {
    .faculty-swiper .swiper-slide{
        height: unset;
    }
    .faculty-item .desc{
        min-height: unset;
    }
}
/* faculty-item END */


/* index-data Start */
.index-keywords .swiper-container{
    overflow: hidden;
}
.index-keywords{
    margin-top: 40px;
    position: relative;
    padding-bottom: 40px;
    margin-bottom: 30px;
}
.index-keywords .swiper-pagination{
    bottom: 0px;
    left: 0;
    right: 0;
    text-align: center;
}
.index-keywords .swiper-pagination-bullet{
    background-color: #fff;
}
.index-keywords .item{
    display: flex;
    align-items: flex-start;
}
.index-keywords .item img{
    width: 68px;
    margin-right: 10px;
    margin-top: 5px;
}
.index-keywords .item .num-box{
    font-size: 16px;
}
.index-keywords .item .num{
    font-size: 42px;
    line-height: 1.2;
    margin-right: 4px;
}
.index-keywords .item .name{
    opacity: .7;
    font-size: 14px;
}
@media screen and (max-width: 567px){
    .index-keywords .item {
        flex-direction: column;
        justify-content: center;
    }
    .index-keywords .item img{
        margin-right: 0;
        margin: 0 auto;
    }
    .index-keywords .item .info{
        margin-top: 10px;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
}
table tr:nth-of-type(even) td {
    background-color: #fff;
}
/* index-data End */
/* index_about  */
.index_about .left-box{
    padding-right: 50px;
    height: 100%;
    display: flex;
    align-items: center;
}
.index_about .left-box .img{
    position: relative;
}
.index_about .left-box .img::after {
    position: absolute;
    content: '';
    display: block;
    width: 8px;
    height: 140px;
    background-color: rgba(7, 189, 252, 1);
    left: -18px;
    bottom: 0;
}
.index_about .right-box{
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
}
.index_about .right-box .desc{
    margin-top: 30px;
    color: #828181;
}
.index_about .right-box .desc p{
    margin-bottom: 5px;
}
.index_about .right-box .info-box{
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
}
.index_about .right-box .info-box .item{
    display: flex;
    color: var(--color-primary);
    font-weight: 600;
    width: 50%;
    margin-bottom: 20px;
}
.index_about .right-box .info-box .item:last-child{
    margin-bottom: 0;
    width: 100%;
}
.index_about .right-box .info-box .img{
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}
.index_about .right-box .info-box .img img{
    width: 17px;
}
.index_about .right-box .info-box .text{
    flex: 1;
    padding-top: 3px;
}
@media screen and (max-width:1300px) {
    .index_about .left-box{
        padding-right: 40px;
        
    }
    
}
@media screen and (max-width:992px) {
    .index_about .left-box{
        display: none;
    }
    
}
@media screen and (max-width:767px) {
    .index_about .right-box .desc{
        margin-top: 15px;
    }
    
}
@media screen and (max-width:556px) {
    .index_about .right-box .info-box .item{
        width: 100%;
    } 
    .index_about .right-box .desc{
        margin-top: 15px;
    }
    
}
/* index_about End */
/* schedule-box */
.schedule-box{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    padding: 80px 70px 60px 0;
}
.schedule-box .item {
    position: relative;
    width: 33.33%;
    margin-bottom: 120px;
}
.schedule-box .item:nth-child(4){
    margin-bottom: 0;
}
.schedule-box .item:nth-child(5){
    margin-bottom: 0;
}
.schedule-box .item:nth-child(6){
    margin-bottom: 0;
}
.schedule-box .item .line{
    position: relative;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed rgba(255, 255, 255, .5);
}
.schedule-box .item .yuan{
    position: absolute;
    left: 50%;
    margin-left: -7px;
    top: 50%;
    margin-top: -7px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: var(--color-primary);
}
.schedule-box .ban-yuan{
    position: absolute;
    right: 0;
    width: 70px;
    height: 122px;
    border-radius: 0 61px 61px 0;
    border: 1px dashed rgba(255, 255, 255, .45);
    border-left: none;
}
.schedule-box .ban-yuan .img{
    position: absolute;
    height: 70px;
    top: 30px;
    right: 20px;
}
.schedule-box .ban-yuan .img img{
    height: 100%;
    object-fit: contain;
    
}
.schedule-box .item .text-box{
    position: absolute;
    left: 50%;
    top: 50%;
    width: 100%;
    transform: translate(-50%,-50%);
    color: #fff;
    font-size: 15px;
    text-align: center;
}
.schedule-box .item .text-box .time{
    color: #ccc;
    margin-top: 4px;
    margin-bottom: 34px;
    font-size: 14px;
}
.schedule-box .item .arrow{
    width: 12px;
    position: absolute;
    left: -4px;
    top: -12px;
}
.schedule-box .item .arrow img{
    width: 100%;
}
.mobile-schedule-box{
    margin-top: 30px;
    position: relative;
    width: 100%;
    display: none;
    justify-content: center;
}
.mobile-schedule-box .content-box{
    width: 100%;
    padding: 30px 0;
}  
.mobile-schedule-box .item{
    width: 100%;
    display: flex;

}
.mobile-schedule-box .item .text{
    width: 50%;
    margin-bottom: 0px;
    padding-right: 20px;
    color: #fff;
    font-size: 15px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    position: relative;
    z-index: 2;
}
.mobile-schedule-box .item.right .text{
    align-items: flex-start;
    padding-left: 20px;
}
.mobile-schedule-box .item .time{
    color: #ccc;
    font-size: 14px;
}
.mobile-schedule-box .item .yuan{
    margin: 0px 0;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #fff;
    background-color: var(--color-primary);
    position: relative;
    left: 27px;
}
.mobile-schedule-box::after{
    left: 50%;
    position: absolute;
    content: '';
    display: block;
    width: 1px;
    top: 0;
    bottom: 0;
    border-left: 1px dashed rgba(255, 255, 255, .5);
    z-index: 1;

}
.mobile-schedule-box .item.right .yuan{
    left: unset;
    right: 27px;
}
.mobile-schedule-box .item:last-child .text{
    margin-bottom: 0;
}
@media screen and (max-width:991px){
    .schedule-box .item .text-box{
        font-size: 14px;
    }
}
@media screen and (max-width:767px){
    .schedule-box{
        display: none;
    }
    .mobile-schedule-box{
        display: flex;
    }
    
}
/* schedule-box End */
/* apply-box */
/* apply-box */
.apply-block{
    padding-bottom: 0px;

}
.apply-block::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 120px;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url(../images/bg2.png);
    z-index: 2;
}
.apply-block .layui-container{
    z-index: 9;
}
.apply-box .swiper-pagination{
    bottom: 0px;
}

.apply-box .swiper-pagination-bullet{
    background-color: var(--color-primary);
    width: 10px;
    height: 10px;
    opacity: .4;
   
}
.apply-box .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 6px;
}
.apply-box .swiper-pagination-bullet-active{
    background-color: var(--color-primary);
    opacity: .9;
}
.apply-box{
    overflow: hidden;
    margin-top: 40px;
}
.apply-box .swiper-slide{
    height: auto;
}
.apply-item {
    background-color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.apply-item .top-box{
    position: relative;
    padding: 40px 20px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.apply-item .top-box .img{
    width: 140px;
    margin-bottom: 10px;
}
.apply-item .top-box .img img{
    width: 100%;
}
.apply-item .top-box .title{
    font-size: 16px;
    color: var(--color-primary);
    font-weight: 600;
    height: 55px;
}
.apply-item .top-box .line{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed rgba(151, 151, 151, .4);
}
.apply-item .top-box .line::after,
.apply-item .top-box .line::before{
    position: absolute;
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #F1F1F1;
    bottom: -10px;
}
.apply-item .top-box .line::after{
    right: -10px;
}
.apply-item .top-box .line::before{
    left: -10px;
}
.apply-item .apply-content{
    flex: 1;
    padding: 20px 30px 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.apply-item .apply-content .text{
    color: #6E6E6E;
    text-align: left;
}
.apply-item .apply-content .bottom-box{
    margin-top: 40px;
    display: flex;
    justify-content: space-between;
}
.apply-item .apply-content .bottom-box .btn{
    display: block;
    flex: 1;
    padding: 12px 5px;
    text-align: center;
    background-color: var(--color-primary);
    border-radius: 5px;
    color: #fff;
    line-height: 1;
}
.apply-item .apply-content .bottom-box .btn+.btn{
    margin-left: 25px;
}
.apply-item .apply-content .bottom-box .btn.plain{
    color: var(--color-primary);
    border: 1px solid var(--color-primary);
    background-color: #fff;
}
.apply-box .tip{
    color: #828181;
    margin-top: 30px;
    margin-bottom: 60px;
}
.swiper-title-btn{
    display: flex;
}
.apply-box .apply-swiper{
    overflow: hidden;
    padding: 0 45px;
    position: relative;
    padding-bottom: 40px;
}
.apply-box .apply-swiper .swiper-container{
    width: 100%;
    overflow: hidden;
}
.apply-btn{
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(114, 36, 108, 1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 1px dashed var(--color-primary);
    transform: all .3s;
}
.apply-btn.swiper-button-disabled{
    color: var(--color-primary);
    background-color: rgba(114, 36, 108, 0);
}
.apply-btn i{
    font-size: 12px;
    transform: scale(.5);
}
.apply-button-prev{
    left: 0;
}
.apply-button-next{
    right: 0px;
    
}
@media screen and (max-width:767px) {
    .apply-box{
        margin-top: 20px;
    }
    .apply-btn{
        display: none;
    }
    .apply-box .apply-swiper{
        padding: 0;
        padding-bottom: 30px;
    }
    .apply-box .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
    }
    .apply-box .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        margin:0 4px;
    }
    .apply-item .apply-content .bottom-box .btn+.btn{
        margin-left: 5px;
    }
}
@media screen and (max-width:520px) {
   
    .apply-item .top-box .title{
       
        height: auto;
    }
    
}
/* apply-box  End*/
/* timing */
.timing{
    position: relative;
    width: 100%;
    padding: 40px 40px 60px;
    background: linear-gradient(34deg, #662E85 0%, #AE4167 100%);
}
.timing::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url(../images/timing_bg.png);
    z-index: 1;
}
.timing .content{
    position: relative;
    z-index: 2;
}
.timing .title-btn{
    display: block;
    line-height: 1;
    padding: 14px 40px;
    background-color: #fff;
    color: var(--color-primary);
    border-radius: 5px;
    font-size: 16px;
}
.timing .desc{
    color: #fff;
    margin-top: 50px;
    font-size: 16px;
}
@media screen and (max-width:767.9px) {
    .timing{
        padding: 20px 20px 30px;
    }
    .timing .desc{
        margin-top: 30px;
    }
    .timing .title-btn {
        padding: 10px 25px;
        font-size: 14px;
    }
}
/* timing End */
/* video-block */
.video-block{
    padding: 220px 0;
    position: relative;
}
.video-block .layui-container{
    z-index: 2;
}
@media screen and (max-width:767.9px) {
    .video-block{
        padding: 120px 0;
    }
}
.video-bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.video-bg video{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}
.video-block .icon-play{
    position: relative;
    top: unset;
    margin-top: unset;
    width: 60px;
    height: 60px;
    margin-left: -30x;
    margin-bottom: 30px;
    margin-top: 30px;
    background: unset;
    cursor: pointer;
    transition: all .3s;
    background-color: rgba(255,255,255,.35);
    border: unset;
}
.video-block .icon-play:before {
    content: "";
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    -webkit-animation: warn-3 1.8s ease-out infinite;
    animation: warn-3 1.8s ease-out infinite;
    z-index: 0;
}
.video-block .icon-play:hover{
    border-color: transparent;
    background-color: var(--color-primary);
    opacity: .85;
}
.video-block:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(38,46,61,.65);
}
.icon-play{
    width: 50px;
    height: 50px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -25px;
    margin-left: -25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    border: 2px solid rgba(255,255,255,.85);
    background: rgba(255,255,255,.15);
    opacity: 1;
}
.icon-play span{
    border: 10px solid transparent;
    border-left: 14px solid rgba(255,255,255,.85);
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -10px;
    margin-left: -5px;
}
@-webkit-keyframes warn-3{
    0%{
        opacity: .35;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    60%{
        opacity: 0;
        -webkit-transform:scale(2.5);
        transform:scale(2.5)
    }
    100%{
        opacity: 0;
        -webkit-transform:scale(2.5);
        transform:scale(2.5)
    }
}
@keyframes warn-3{
    0%{
        opacity: .35;
        -webkit-transform:scale(0);
        transform:scale(0)
    }
    60%{
        opacity: 0;
        -webkit-transform:scale(2.5);
        transform:scale(2.5)
    }
    100%{
        opacity: 0;
        -webkit-transform:scale(2.5);
        transform:scale(2.5)
    }
}
/* video-block END */
/*layui-layer tc-video*/
.layui-layer.tc-video{
    background: none;
    max-height: 95vh;
    max-width: 95vw;
}
.layui-layer.tc-video .video-player{
    height: 100%;
}
.layui-layer.tc-video .video-js{
    width: 100%;
    height: 100%;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2{
    color: #fff;
}
.layui-layer.tc-video .layui-layer-setwin{
    top: 10px;
    right: 10px;
    margin: 0;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2:hover{
    color: #fff;
}
.layui-layer .layui-layer-setwin{
    /* top: 40px; */
    right: 5%;
    margin-right: 15px;
}
.layui-layer .layui-layer-setwin .layui-layer-close2{
    top: 0px;
    right: 0px;
    background: none;
    position: relative;
    text-align: center;
    line-height: 50px;
    transition: all .3s;
    color: #fff;
    width: 48px;
    height: 48px;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 22px;
}
/* .layui-layer .layui-layer-setwin .layui-layer-close2:after{
    content: "\e60a";
    font-family: 'iconfont';
    font-weight: bold;
} */
.layui-layer .layui-layer-setwin .layui-layer-close2:hover{
    background: var(--color-primary);
    color: #fff;
}
.layui-layer .layui-layer-setwin .layui-layer-close2:after {
    content: "\e60b";
    font-family: 'iconfont';
    font-weight: bold;
}
@media screen and (max-width: 767px) {
    .layui-layer.tc-video{
        background: none;
        height: 100vh!important;
        width: 100vw!important;
        max-height: 100vh;
        max-width: 100vw;
    }
}
/*layui-layer tc-video END*/
/* year-swiper */
.year-swiper{
    position: relative;
    padding: 0 60px;
}
.year-swiper .swiper-container{
    overflow: hidden;
    padding-bottom: 50px;
    padding-top: 10px;
}
.year-swiper::before,
.year-swiper::after{
    content: '';
    display: block;
    position: absolute;
    
    top: 9px;
    height: 1px;
    width: 32px;
    border-bottom: 1px dashed #AAAAAA;
}
.year-swiper::after{
    right: 28px;
}
.year-swiper::before{
    left: 28px;
}
.year-item{
    cursor: pointer;
}
.year-item .line{
    position: relative;
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #AAAAAA;
}
.year-item .line .num{
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    color: var(--color-primary);
}
.year-item .line::after{
    position: absolute;
    top: 1px;
    left: 50%;
    margin-left: -0.5px;
    content: '';
    width: 1px;
    height: 12px;
    border-left: 1px solid #AAAAAA;
}
.year-item .line::before{
    position: absolute;
    top: -5px;
    left: 50%;
    margin-left: -5px;
    border-radius: 50%;
    content: '';
    width: 6px;
    height: 6px;
    border: 2px solid var(--color-primary);
    background-color: #FFFFFF;
    z-index: 2;
    opacity: 0;
    transition: all .3s;
}
.swiper-slide-thumb-active .year-item .line::after{
    border-color: var(--color-primary);
}
.swiper-slide-thumb-active .year-item .line .num{
    font-weight: 600;
}
.swiper-slide-thumb-active .year-item .line::before{
    opacity: 1;
}
.year-btn{
    position: absolute;
    top: -5px;   
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transform: all .3s;
}
.year-btn.swiper-button-disabled{
    background-color: #CDCDCD;
}
.year-btn i{
    font-size: 12px;
    transform: scale(.4);
}
.year-button-prev{
    left: 0px; 
}
.year-button-next{
    right: 0px; 
}
@media screen and (max-width: 767px){
    .year-item .line .num{
       display: flex;
       flex-direction: column;
       align-items: center;
    }
    .year-swiper{
        padding: 0 30px;
    }
    .year-swiper .swiper-container{
        padding-bottom: 70px;
    }
    .year-swiper::before, .year-swiper::after{
        width: 0;
    }
}
/* year-swiper End */
/* img-swiper */
.img-swiper{
    margin-top: 40px;
    margin-bottom: 50px;
    overflow: hidden;
}
.swiper-container.img-list{
    overflow: hidden;
}
.img-list .img-box{
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}
.img-list .img-box .img{
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    overflow: hidden;
}
.img-list .img-box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* img-swiper End */
/* card-swiper */
.awards-box{
    margin-top: 40px;
    display: none;
}
.awards-box.active{
    display: block !important;
}
.card-swiper{
    display: flex;
    overflow: hidden;
    width: 100%;
}
.card-swiper+.card-swiper{
    margin-top: 30px;
}
.card-swiper-head{
    position: relative;
    font-size: 22px;
    background: linear-gradient(49deg, #662E85 0%, #AE4167 100%);
    background-size: cover;
    color: #fff;
    padding: 14px 36px;
    width: 32px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.card-swiper-head .title{
    position: relative;
    z-index: 2;
}
.card-swiper-head::after{
    content: '';
    display: block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
    background-image: url(../images/title_bg.png);
    background-position: top left;
    background-size: 100%;
    background-repeat: no-repeat;

}
.card-swiper-body{
    position: relative;
    background-color: #fff;
    display: flex;
    flex: 1;
    overflow: hidden;
    
}
.card-swiper-body::after{
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #FFFFFF linear-gradient(49deg, #662E85 0%, #AE4167 100%);
    opacity: .2;
    z-index: 1;
}
.card-swiper-img{
    width: 50%;
    background-color: var(--border-color-light);
    padding: 30px;
    padding-right: 40px;
    position: relative;
    z-index: 2;
}
.card-swiper-img .img-box{
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
}
.card-swiper-img .img-box .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.card-swiper-img .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.card-swiper-img .thumb-swiper{
    margin-top: 10px;
    overflow: hidden;
}
.card-swiper-img .thumb-swiper .swiper-container{
    padding: 15px 0;
}
.card-swiper-img .thumb-swiper .swiper-slide{
    transform: scale(.9);
    transition: all .3s ease-in-out;
}
.card-swiper-img .thumb-swiper .swiper-slide-thumb-active{
    transform: scale(1.1);
}
.card-swiper-img .thumb-swiper .img-box{
    cursor: pointer;
}
.card-swiper-text{
    position: relative;
    flex: 1;
    overflow: hidden;
    padding: 30px;
    padding-bottom: 100px;
    z-index: 2;
}
.card-swiper-text .swiper-btn{
    padding: 30px;
    position: absolute;
    right: 0;
    bottom: 0;
}
.card-swiper-text .people-body{
    padding: 0;
}
.card-swiper-text .label{
    color: var(--color-primary);
}
.card-swiper-text a{
    color: inherit;
}
.card-swiper-text a:hover{
    color: var(--color-primary);
}
.card-swiper-text .img-intro .title{
    font-size: 18px;
    font-weight: 600;
    color: var(--color-primary);
    padding: 10px 0;
    border-bottom: 1px dashed #ccc;
    margin-bottom: 20px;
}
.card-swiper-text .img-intro ul li{
    position: relative;
    margin-bottom: 5px;
    padding-left: 14px;
}
.card-swiper-text .img-intro ul li::before{
    position: absolute;
    left: 0;
    top: 8px;
    content: '';
    display: block;
    width: 3px;
    height: 3px;
    border: 2px solid var(--color-primary);
    background-color: #fff;
    border-radius: 50%;
}
.text-btn-box{
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
}
.text-button{
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(114, 36, 108, 1);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    border: 1px dashed var(--color-primary);
    transform: all .3s;
}
.text-button.swiper-button-disabled{
    color: var(--color-primary);
    background-color: rgba(114, 36, 108, 0);
}
.text-button i{
    font-size: 12px;
    transform: scale(.5);
}
.text-button-prev{
    margin-right: 15px;
    
}
.card-swiper-text .swiper-pagination{
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: unset;
}
.card-swiper-text .swiper-pagination-current{
    font-size: 25px;
    color: var(--color-primary);
}
@media screen and (max-width: 1199px) {
    .card-swiper{
        display: block;
    }
    .card-swiper-head{
        width: 100%;
        background: linear-gradient(49deg, #662E85 0%, #AE4167 100%);
        padding: 10px 20px;
        letter-spacing: 3px;
    }
    .card-swiper-head::after{
        display: none;
    }
    .card-swiper-img{
        width: 50%;
        padding: 20px;
    }
    .card-swiper-text{
        padding: 20px;
        padding-bottom: 80px;
    }
    .card-swiper-text .swiper-btn{
        padding: 20px;
    }
}
@media screen and (max-width: 767px) {

    .card-swiper-head{
        font-size: 20px;
        font-size: 20px;
    }
    .card-swiper-body{
        display: block;
    }
    .card-swiper-img{
        width: 100%;
    }
    .card-swiper-text{
        padding: 20px;
        padding-bottom: 95px;
    }
    .card-swiper-img .photo-swiper,
    .card-swiper-img .thumb-swiper{
        /* max-width: 240px; */
        margin: 0 auto;
    }
    .card-swiper-img .thumb-swiper{
        margin-top: 10px;
    }
    .card-swiper-text .swiper-btn{
        display: none;
    }
}
/* card-swiper END */
/*  change-box*/
.change-box{
    position: relative;
}
.change-box .name-box{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100px;
    padding: 10px 25px;
    background-color: var(--color-primary);
    color: #fff;
    text-align: center;
    border-radius: 5px;
    cursor: pointer;
}
.change-box .name-box .icon{
    position: relative;
    top: 2px;
    width: 0px;
    height: 0px;
    border-width: 5px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
}
.change-box .dropdown{
    top: 48px;
    left: 0;
    width: 100%;
    position: absolute;
    padding: 10px;
    background-color: #fff;
    box-shadow: 0 0 10px 0 rgb(46 45 41 / 15%);
    border-radius: 5px;
    z-index: 5;
    opacity: 0;
    height: 0;
    overflow: hidden;
    transition: opacity .3s;
}
.change-box .dropdown .item{
    padding-bottom:5px;
    cursor: pointer;
}
.change-box .dropdown .item:last-child{
    padding-bottom: 0;
   
}
.change-box .dropdown .item:hover{
    color: var(--color-primary);
}
.change-box:hover .dropdown{
    opacity: 1;
    height: auto;
}
@media screen and (max-width:767px) {
    .change-box .name-box{
        width: 100px;
        padding: 7px 20px;
    }
}
/*  change-box End*/
/* apply-wrap */
.apply-wrap{
    height: calc(100% + 120px);
   top: -60px;
   position: absolute;
   background-color: var(--color-primary);
   padding: 30px;
   color: #fff;
   

}
.apply-wrap::after{
    content: '';
    display: block;
    width: 100%;
    height: 6px;
    background-color: #FDB127;
    position: absolute;
    top: -6px;
    left: 0;
}
.apply-wrap .content{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 20px;
}
.apply-wrap .content .img-box{
    margin-top: 20px;
    margin-bottom: 10px;
}
.apply-wrap .img-box{
    width: 140px;
}
.apply-wrap .content .tip{
    font-size: 12px;
    opacity: .7;
}
.schedule-apply .layui-col-md9{
    padding-right: 50px;
}
.schedule-apply .layui-col-md3{
    padding-left: 20px;
}
.block.schedule-apply{
    overflow: unset;
}
@media screen and (max-width:991px){
    .schedule-apply .layui-col-md9{
        padding-right: 0px;
    }
    .schedule-apply .layui-col-md3{
        padding-left: 0px;
    }
    .apply-wrap{
        margin-top: 30px;
      height: unset;
       position: unset;
       background-color: var(--color-primary);
    }
    .apply-wrap::after{
        top: 24px;
    }
}
@media screen and (max-width:767px){
    .schedule-apply .layui-col-md9{
        padding-right: 0px;
    }
    .schedule-apply .layui-col-md3{
        padding-left: 0px;
    }
    .apply-wrap{
        padding: 20px;
    }
}
/* apply-wrap END */
/* process-wrap START */
.process-wrap .item{
    position: relative;
    padding: 0 0 50px 25px;
    border-left: 1px dashed var(--color-primary);

}
.process-wrap .item:last-child{
    padding-bottom: 0;
}
.process-wrap .item::after{
    position: absolute;
    top: 0px;
    left: -11px;
    content: '';
    display: block;
    width: 22px;
    height: 22px;
    background: url(../images/progress_icon.png) no-repeat;
    background-size: 100%;
}
.process-wrap .item .top{
    display: flex;
    align-items: center;
}
.process-wrap .item .top .time{
    color: var(--color-primary);
    font-size: 20px;
    font-weight: 800;
    margin-right:25px;
    line-height: 1;
}
.process-wrap .item .top .tag{
    position: relative;
    background-color: #EDE2EE;
    color: var(--color-primary);
    padding: 3px 20px;
    line-height: 1.3;
    border-radius: 3px;
    min-width: 80px;
    font-size: 13px;
} 
.process-wrap .item .top .tag::after{
    position: absolute;
    top: 5px;
   
    left: -12px;
    content: '';
    display: block;
    border-width: 6px;
    border-style: solid;
    border-color:transparent  #EDE2EE transparent transparent;
}
.process-wrap .item .bottom-content{
    margin-top: 20px;
    width: 100%;
    border: 1px solid #EDE2EE;
    background-color: #fff;
    border-radius: 0px 0px 0px 29px;
    padding: 20px 0;
    padding-bottom: 0;
}
.process-wrap .number-item{
    display: flex;
    margin:0 20px;
    margin-bottom: 20px;

}
.process-wrap .number-item .img-box{
    display: none;
    width: 50px;
    margin-right: 15px;
}
.process-wrap .number-item .img-box img{
    width: 100%;
}
.process-wrap .number-item .text-box .name{
    font-size: 16px;
    font-weight: 800;
    color: #000;
}
.process-wrap .number-item .text-box{
    flex: 1;
}
.process-wrap .number-item .text-box .intro{
    color: #A2A2A2;
    font-size: 13px;
    line-height: 1.4;
}
.process-wrap .item .tip{
    padding-bottom: 10px;
    color: #000;
    border-bottom: 1px dashed #CBCBCB;
    font-size: 14px;
    margin: 0 20px;
    margin-bottom: 20px;
}
.process-wrap .title-tag{
    background: linear-gradient(49deg, #662E85 0%, #AE4167 100%);
    border-radius: 0px 36px 36px 0px;
    color: #fff;
    padding: 4px 20px;
    width: 95px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-size: 13px;
}
.process-wrap .awards-list{
    width: 100%;
    padding-bottom: 20px;
}
.process-wrap .awards-list .awards-item{
    display: flex;
    flex-direction: column;
    align-items: center;
}

.process-wrap .awards-list .awards-item .img{
    width: 130px;
    margin-bottom: 5px;
}
.process-wrap .awards-list .awards-item .img img{
    width: 100%;
}
@media screen and (max-width:767px){
    .process-wrap .item .top {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .process-wrap .item .top .time{
        margin-bottom: 5px;
        margin-right: 0;
    }
}
/* process-wrap END */
/* video-swiper */
.video-swiper .swiper-pagination{
    bottom: -40px;
}

.video-swiper .swiper-pagination-bullet{
    background-color: #ffffff;
    width: 10px;
    height: 10px;
    opacity: .4;
   
}
.video-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
    margin:0 6px;
}
.video-swiper .swiper-pagination-bullet-active{
    background-color: #ffffff;
    opacity: .9;
}
.video-container{
    position: relative;
    padding: 80px 0;
}
.video-swiper{
    position: relative;
    z-index: 2;
}
.video-container::after{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../images/timing_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    background: linear-gradient(34deg, #662E85 0%, #AE4167 100%);
    z-index: 1;
}
.video-container::before{
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background-image: url(../images/timing_bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center;
    z-index: 2;
}

.video-swiper .video-item{
    width: 100%;
}
.video-swiper .video-item .title{
    font-size: 18px;
    color: #ffffff;
    text-align: center;
    padding-top: 15px;
    display: none;
}
.video-swiper .video-item .img-box{
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    
}
.video-swiper .video-item .img-box .img{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
.video-swiper .video-item .img-box .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* .video-item .img-box::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.4);
} */
.icon-paly img{
    width: 60px;
    height: 60px;
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    z-index: 1;
}

.video-swiper .swiper-slide{
    /*-webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;*/
    -webkit-transform: scale(0) translateX(0);
    -ms-transform: scale(0) translateX(0);
    -o-transform: scale(0) translateX(0);
    transform: scale(0) translateX(0);
    z-index: 0;
}
.video-swiper .swiper-slide-active{
    -webkit-transform: scale(1) translateX(0);
    -ms-transform: scale(1) translateX(0);
    -o-transform: scale(1) translateX(0);
    transform: scale(1) translateX(0);
    z-index: 1!important;
    cursor: pointer;
    opacity: 1;
}
.video-swiper .swiper-slide-prev{
    -webkit-transform: scale(.8) translateX(60%);
    -ms-transform: scale(.8) translateX(60%);
    -o-transform: scale(.8) translateX(60%);
    transform: scale(.8) translateX(60%);
    /* opacity: .75; */
}
.video-swiper .swiper-slide-next{
    -webkit-transform: scale(.8) translateX(-60%);
    -ms-transform: scale(.8) translateX(-60%);
    -o-transform: scale(.8) translateX(-60%);
    transform: scale(.8) translateX(-60%);
    /* opacity: .75; */
}
.video-swiper .swiper-slide-next .video-item .img-box::after,
.video-swiper .swiper-slide-prev .video-item .img-box::after{
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.3);
    z-index: 2;
}
.video-swiper .swiper-slide-next .video-item .title,
.video-swiper .swiper-slide-prev .video-item .title{
    display: none;

}
/* video-swiper END */
/*layui-layer tc-video*/
.layui-layer.tc-video{
    background: none;
    max-height: 95vh;
    max-width: 95vw;
}
.layui-layer.tc-video .video-player{
    height: 100%;
}
.layui-layer.tc-video .video-js{
    width: 100%;
    height: 100%;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2{
    background: rgba(255,255,255,.75);
}
.layui-layer.tc-video .layui-layer-setwin{
    top: 10px;
    right: 10px;
    margin: 0;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2:hover{
    background: var(--color-primary);
    color: #fff;
}
@media screen and (max-width: 767px) {
    .layui-layer.tc-video{
        background: none;
        height: 100vh!important;
        width: 100vw!important;
        max-height: 100vh;
        max-width: 100vw;
    }
    .video-container{
        position: relative;
        padding: 50px 0;
    }
    .icon-paly img{
        width: 40px;
        height: 40px;
    }
    .video-swiper .swiper-pagination{
        bottom: -25px;
    }
    .video-swiper .swiper-pagination-bullet{
        width: 8px;
        height: 8px;
    }
    .video-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet{
        margin:0 4px;
    }
    
    /* .video-container .video-swiper{
        overflow: hidden;
    }  */
}
/*layui-layer tc-video END*/
/* cooperate-box */
.cooperate-box{
    position: relative;
    width: 100%;
    background: linear-gradient(36deg, #7B1B70 0%, #B64AB1 53%, #B540A8 100%);
    color:#fff;
    padding: 40px;
    font-size:15px;
   
}
.cooperate-box::after{
    content:'';
    display:block;
    width:100%;
    height:calc(100% - 40px);
    position: absolute;
    left: 0;
    bottom: 0;
    background-image: url(../images/cooperate_bg.png);
    background-size: 100%;
    background-position: left top;
    background-repeat: no-repeat;
    z-index: 1;

}
.cooperate-box .cooperate-content{
    position: relative;
    z-index: 2;
}
.cooperate-box .bottom-info{
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,.2);
    display:flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 25px;
}
.cooperate-box .bottom-info .left-text{
    display:flex;
}
.cooperate-box .bottom-info .left-text p{
    display: flex;
    align-items: center;
}
.cooperate-box .bottom-info .left-text p + p{
    margin-left: 40px;
}
.cooperate-box .bottom-info .left-text img{
    width: 30px;
    margin-right: 6px;
}
@media screen and (max-width: 767px) {
    .cooperate-box{
        padding: 20px;
    }
    .cooperate-box .bottom-info {
        flex-direction: column;
        align-items: flex-start;
    }
    .cooperate-box .bottom-info .left-text{
        flex-direction: column;
        margin-bottom: 10px;
    }
    .cooperate-box .bottom-info .left-text p + p{
        margin-left: 0;
        margin-top: 10px;
    }

}

/* cooperate-box END */