/* layout */
.layout {
    padding-left: 70px;
    width: 100%;
    /* overflow: hidden; */
}

.main {
    position: relative;
    z-index: 97;
}

.main-hidden{
    overflow: hidden;
}

/* menu-toggle */
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: all .3s ease-in-out;
}

.menu-toggle .toggle-iconfont {
    transition: 0.4s;
    position: relative;
    z-index: 20;
    float: right;
    cursor: pointer;
    width: 1.25vw;
    height: 0.9375vw;
    margin: 0 auto;
}

.menu-toggle .toggle-iconfont span {
    display: block;
    width: 100%;
    margin-top: 0.416667vw;
    height: var(--size-2);
    background: initial;
    position: relative;
    cursor: pointer;
}

.left-container .menu-toggle .toggle-iconfont span {
    background: #fff;
}

.menu-toggle span:after,
.menu-toggle span:before {
    content: "";
    position: absolute;
    display: inline-block;
    left: 0;
    width: 1.25vw;
    height: var(--size-2);
    background-color: #fff;
    -webkit-transition-duration: .3s, .3s;
    -moz-transition-duration: .3s, .3s;
    -ms-transition-duration: .3s, .3s;
    -o-transition-duration: .3s, .3s;
    transition-duration: .3s, .3s;
    -webkit-transition-delay: .3s, 0s;
    -moz-transition-delay: .3s, 0s;
    -ms-transition-delay: .3s, 0s;
    -o-transition-delay: .3s, 0s;
    transition-delay: .3s, 0s
}

.menu-toggle span:before {
    top: -0.416667vw;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
    transform-origin: 0 50%;
}

.menu-toggle span:after {
    bottom: -0.416667vw;
    width: .78125vw;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
    transform-origin: 0 50%;
}
.menu-toggle.open span:after,
.menu-toggle.open span:before{
    width: 1.25vw;
}
.menu-toggle.open span:before {
    top: -0.416667vw;
    -webkit-transform: rotate(42deg);
    -ms-transform: rotate(42deg);
    -o-transform: rotate(42deg);
    transform: rotate(42deg);
}

.menu-toggle.open span:after {
    bottom: -0.416667vw;
    -webkit-transform: rotate(-42deg);
    -ms-transform: rotate(-42deg);
    -o-transform: rotate(-42deg);
    transform: rotate(-42deg);
}

.menu-toggle.open .toggle-iconfont span {
    background-color: transparent !important;
}

@media screen and (max-width: 1920px) {
    .menu-toggle .toggle-iconfont {
        width: 24px;
        height: 18px;
    }

    .menu-toggle .toggle-iconfont span {
        margin-top: 8px;
        height: 2px;
    }

    .menu-toggle span:after,
    .menu-toggle span:before {
        width: 24px;
        height: 2px;
    }

    .menu-toggle span:before {
        top: -8px;
    }

    .menu-toggle span:after {
        bottom: -8px;
        width: 15px;
    }

    .menu-toggle.open span:after, 
    .menu-toggle.open span:before{
        width: 24px;
    }

    .menu-toggle.open span:before {
        top: -8px;
    }

    .menu-toggle.open span:after {
        bottom: -8px;
    }
}


/* menu-toggle END */

/* left-container */
.left-container {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 70px;
    background-color: var(--bg-grey);
    z-index: 999;
    
}
.left-menu{
    position: relative;
    color: #fff;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    height: 100%;
    flex-direction: column;
    justify-content: space-between;
    background-color: var(--bg-grey);
    z-index: 111;
    padding: var(--size-36) 0;
}
.left-menu .menu-toggle {
    width: 100%;
    height: 3.125vw;
}

.left-menu .language-btn {
    border-top: 1px solid rgba(255, 255, 255, .3);
}

.left-menu .language-btn .item {
    height: 3.125vw;
    line-height: 3.125vw;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    cursor: pointer;
    display: block;
    color: #fff;
}

.left-menu .language-btn .item.active {
    background-color: rgba(0, 0, 0, .3);
}

.left-menu .bottom-wrap {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 3.125vw;
    display: flex;
    align-items: center;
    width: unset;
    white-space: nowrap;
}

.left-menu .bottom-wrap .btn {
    width: 3.125vw;
    height: 3.125vw;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-secondary);
    transition: all .3s ease-in-out;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.left-menu .bottom-wrap.open>.btn {
    opacity: 0;
}

.left-menu .bottom-wrap .open-box .btn {
    width: 2.08333vw;
    height: 2.08333vw;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}

.left-menu .bottom-wrap .open-box {
    display: flex;
    align-items: center;
    height: 100%;
    opacity: 0;
    transition: all .3s ease-in-out;
    width: 0;
    transform: scaleX(0);
    transform-origin: 0 50%;
    overflow: hidden;
}

.left-menu .bottom-wrap.open .open-box {
    opacity: 1;
    width: auto;
    transform: scaleX(1);
    transition: all .3s ease-in-out;
}

.left-menu .bottom-wrap .open-box ul {
    display: flex;
    align-items: center;
    height: 100%;
    background-color: var(--color-secondary);
    color: #fff;
    padding-right: 1.5625vw;
    margin-right: 0.52083vw;
}

.left-menu .bottom-wrap .open-box ul a {
    color: #fff;
    display: flex;
    align-items: center;
    transition: all .3s ease-in-out;
}

.left-menu .bottom-wrap .open-box ul a .iconfont {
    margin-right: .3125vw;
}

.left-menu .bottom-wrap .open-box ul a:hover span {
    text-decoration: underline;
}
header .header .menu-toggle {
    display: none;
}
@media screen and (max-width:1200px){
    .left-container {
        width: 60px;
    }
    
    header .header .search-btn {
        margin-left: var(--size-20);
        color: var(--color-text-primary);
    }
    .show-menu header .header .search-btn,
    .show-search header .header .search-btn {
        color: #fff;
    } 
}
@media screen and (max-width:991px){
    header .header .menu-toggle,
    header .header .search-btn {
        display: block;
        font-size: 20px;
    }
     header .header .right .language-btn{
        display: none;
    }
}
@media screen and (max-width:772px){
    .left-container {
        display: none;
        width: 0 !important;
    }
    .menu-container, 
    .search-container {
        left: 0 !important;
    }
    .layout {
        padding-left: 0 !important; 
    }
    
    
   
    .show-menu .menu-container.sitemap,
    .show-search .search-container {
        width: 100% !important;
        height: 100%;
    }
    .show-menu .menu-container.sitemap,
    .show-search .search-container{
        left: 0 !important;
    }
    .show-menu .menu-container .menu-body {
        top: 100px !important;
    }
    .search-container .search-body{
        margin-top: 120px !important; 
    }
}
/* left-container END */

/* body-container */
.body-container {
    flex: 1;
    position: relative;
}

/* body-container END */
@media screen and (max-width:1200px){
    .layout {
        padding-left: 60px;
    }
}
@media screen and (max-width:991px){
    .layout {
        padding-left: 60px;
    }
}
@media screen and (max-width: 1440px) {
    

    

    .left-menu .menu-toggle {
        height: 45px;
    }

    .left-menu .menu-toggle .toggle-iconfont {
        width: 16px;
        height: 16px;
    }

    .left-menu .menu-toggle .toggle-iconfont span {
        margin-top: 6px;
        height: 2px;
    }

    .left-menu .menu-toggle span:after,
    .left-menu .menu-toggle span:before {
        width: 16px;
        height: 2px;
    }

    .left-menu .menu-toggle span:before {
        top: -6px;
    }

    .left-menu .menu-toggle.open span:before {
        top: -6px;
        width: 17px;
    }

    .left-menu .menu-toggle.open span:after {
        bottom: -6px;
        width: 17px;
    }

    .left-menu .menu-toggle span:after {
        bottom: -6px;
    }

    .left-menu .language-btn .item {
        height: 45px;
        line-height: 45px;
    }

    .left-menu .bottom-wrap {
        height: 45px;
    }

    .left-menu .bottom-wrap .btn {
        width: 45px;
        height: 45px;
    }

    .left-menu .bottom-wrap .open-box .close-btn {
        width: 30px;
        height: 30px;
    }

    .left-menu .bottom-wrap .open-box ul {
        padding-right: 22.5px;
        margin-right: 9px;
    }

    .left-menu .bottom-wrap .open-box ul a .iconfont {
        margin-right: 6px;
    }

    .left-menu .bottom-wrap .open-box ul li+li {
        margin-left: 22.5px;
    }
}

@media screen and (max-width: 991px) {
    .left-container {
        width: 60px;
    }
    .layout {
        padding-left: 60px;
    }
}

/* layout END */



/* header */
header {
    left: 0;
    right: 0;
    top: 0;
    position: absolute;
    /* z-index: 999; */
    /* padding: var(--size-36) 0; */
}
header .logo {
    /* position: absolute; */
    top: var(--size-36);
    z-index: 999;
}

/* .show-menu.logo-fixed header .logo a,
.logo-fixed.show-search header .logo a,
.show-menu header .logo a,
.show-search header .logo a{
    position: fixed;
} */

.show-menu.logo-fixed header .logo .index-logo,
.logo-fixed.show-search header .logo .index-logo,
.show-menu header .logo .index-logo,
.show-search header .logo .index-logo {
    display: block;
    position: fixed;
}

.show-menu.logo-fixed header .logo .inner-logo,
.logo-fixed.show-search header .logo .inner-logo,
.show-menu header .logo .inner-logo,
.show-search header .logo .inner-logo {
    opacity: 0;
    
}

/* .show-menu .header .right,
.show-search .header .right {
    position: absolute;
} */
.show-search .search-container .search-body {
    opacity: 1;
}
.search-container .search-body {
    opacity: 0;
}

header .logo img {
    height: 3.375vw;
    position: relative;
}

header .layui-container {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--size-24);
}

.header {
    transition: height .5s ease-in-out;
}

.header .right{
    /* position: absolute; */
    top: var(--size-36);
    right: 5.208333vw;
    z-index: 99;
    display: flex;
    align-items: center;
}
.header .right .language-btn a:hover,
header .header .search-btn i:hover {
    /* color: var(--color-secondary); */
    cursor: pointer;
}

@media screen and (max-width:1440px){
    header .logo img,
    .menu-container .menu-logo img,
    .search-logo img {
        height: 45px !important;
    }
}
header .language-btn a{
    color: var(--color-text-primary);
    /* margin-right: var(--size-36); */
    position: relative;
}

header .language-btn a.lang i{
    padding-right: var(--size-6);
}
header .language-btn a.lang::before{
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: var(--size-1);
    background-color: rgba(27, 21, 52, .6);
}

@media screen and (min-width:991px){
    .banner-word-swiper .desc{
        width: 50%;
    }
}

@media screen and (max-width: 992px) {
    .rorate .small-banner .inner-banner-text .title {
        margin-bottom: 0;
    }
    .banner-word-swiper .desc {
        padding-bottom: var(--size-20);
    }
}
@media screen and (max-width:772px){
    .header .right {
        z-index: 999 !important;
    }
}

@keyframes layui-upbit {
    from {
        transform: translate3d(-50%,15px,0);
        opacity: .3
    }

    to {
        transform: translate3d(-50%,0,0);
        opacity: 1
    }
}
.submenu-desc {
    margin-top: var(--size-4);
    color: #5E5E5E;
}
/* header-nav */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .layui-nav .layui-this:after {
    content: unset;
}

.header-nav .layui-nav-bar {
    display: none !important;
}

.header-nav .layui-nav .layui-nav-child:before,
.header-nav .layui-nav .layui-nav-child:after {
    content: unset;
}
@media screen and (min-width: 992px) {
    .header-nav .layui-nav {
        padding: 0;
        background: none;
        display: flex;
        margin: 0 -1.40625vw;
    }

    .header-nav .layui-nav>.layui-this:after {
        content: unset;
    }

    .header-nav .layui-nav-bar {
        display: none;
    }

    .header-nav .layui-nav ul {
        font-size: 0;
        display: table;
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }

    .header-nav .layui-nav .layui-nav-item {
        display: table-cell;
        margin: 0;
        height: var(--size-72);
        line-height: var(--size-72);
    }

    .header-nav .layui-nav .layui-nav-item>a {
        display: block;
        display: inline-block;
        padding: 0 var(--size-36);
        color: var(--color-text-primary);
        position: relative;
        z-index: 2;
        transition: all .3s ease-in-out;
        background-color: transparent;
        white-space: nowrap;
    }

    .header-nav .layui-nav .layui-nav-more {
        right: 3px;
        font-size: var(--size-18);
    }

    .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header-nav .layui-nav .layui-nav-item.layui-this>a {
        /* font-weight: bold; */
        /* background-color: rgba(255, 255, 255, .1); */
        border-radius: var(--size-4);
    }

    /* .header-nav .layui-nav .layui-nav-item>a:after {
        content: "";
        position: absolute;
        left: 1.40625vw;
        right: 1.40625vw;
        bottom: 0;
        height: var(--size-4);
        background: #fff;
        transition: all .3s ease-in-out;
        transform: scaleX(0);
    } */
    

    /* .header-nav .layui-nav .layui-nav-item.layui-this>a {
        color: var(--color-secondary);
    } */

    .header-nav .layui-nav .layui-nav-item>.icon {
        display: none;
    }

    /* 下级菜单 */
    .header-nav .layui-nav-child {
        top: 100%;
        border: 0;
        border-radius: 0;
        /* box-shadow: unset; */
        box-shadow: 0 var(--size-20) var(--size-20) rgba(0,0,0,.2);
        background-color: rgba(255, 255, 255, 1);
        color: var(--color-primary);
        padding: 0;
        white-space: normal;
        line-height: 1.5;
        padding: var(--size-18) var(--size-36);
        text-align: left;
        left: 50%;
        /* margin-top: -.20833vw; */
        /* width: 7.8125vw;
        margin-left: -3.90625vw; */
    }
    .header-nav .layui-nav-child:before{
        /* content: ""!important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: var(--size-4);
        background: var(--color-secondary); */
        content: "" !important;
        position: absolute;
        display: block;
        width: 0;
        height: 0;
        border-color: transparent;
        border-style: solid;
        border-width: 8px;
        filter: drop-shadow(0 2px 12px rgba(0, 0, 0, .03));
        top: -8px;
        left: 50%;
        margin-left: -8px;
        border-top-width: 0;
        border-bottom-color: #fff;
    }

    .header-nav .layui-nav-child .submenu{
        display: block;
        padding: var(--size-12) 0;
        color: inherit;
        position: relative;
        transition: all .3s ease-in-out;
        white-space: pre-wrap;
        background-color: unset!important;
        white-space: nowrap;
        min-width: 10em;
        color: var(--color-text-primary);
    }
    .header-nav .layui-nav-child .submenu:hover{
        color: var(--color-secondary);
    }
    
    /* .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a{
        color: #fff;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item.layui-this>a {
        color: #fff;
        font-weight: bold;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a:after {
        background: #fff;
    } */
}
@media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-nav .layui-nav{
        margin: 0 -.8vw;
    }
    .header-nav .layui-nav .layui-nav-more{
        right: -2px;
    }
    .header-nav .layui-nav .layui-nav-item>a:after{
        left: .8vw;
        right: 1.40625vw;
    }
}
/* 移动端菜单 */
@media screen and (max-width: 991px) {
    header .menu-toggle {
        /* height: 45px; */
        width: 45px;
    }

    header .menu-toggle .toggle-iconfont {
        width: 22px;
        height: 17px;
    }

    header .menu-toggle .toggle-iconfont span {
        margin-top: 7px;
        height: 2px;
        background-color: #333;
    }

    .show-menu header .menu-toggle .toggle-iconfont span,
    .show-search header .menu-toggle .toggle-iconfont span {
        background-color: #fff;
    }

    header .menu-toggle span:after,
    header .menu-toggle span:before {
        width: 22px;
        height: 2px;
        background-color: #333;
    }

    .show-menu .menu-toggle span:after, 
    .show-menu .menu-toggle span:before,
    .show-search .menu-toggle span:after,
    .show-search .menu-toggle span:before{
        background-color: #fff;
    }

    header .menu-toggle span:before {
        top: -7px;
        transform-origin: 2px 0;
    }

    header .menu-toggle span:after {
        bottom: -7px;
        transform-origin: 2px 100%;
    }

    header .menu-toggle.open span:before {
        top: -7px;
        width: 26px;
    }

    header .menu-toggle.open span:after {
        bottom: -7px;
        width: 26px;
    }

    header .language-btn {
        display: flex;
        /* margin-bottom: 20px; */
    }

    header .language-btn a {
        display: inline-block;
        line-height: 1;
        /* padding: 10px 18px; */
        border-radius: 30px;
        transition: all .3s ease-in-out;
        /* color: #fff; */
    }

    header .language-btn a:hover {
        color: inherit;
    }

    header .language-btn a+a {
        margin-left: 10px;
    }

    header .language-btn a.active {
        color: #fff;
        background-color: var(--color-secondary);
    }

    header .identity-btn {
        margin-top: 20px;
    }

    header .identity-btn .item {
        display: flex;
        align-items: center;
        padding: 20px 18px;
        background-color: var(--bg-primary);
        font-size: 13px;
        white-space: nowrap;
        color: var(--color-text-regular);
    }

    header .identity-btn .item img {
        width: 25px;
        height: 25px;
        margin-right: 6px;
    }

    header .header-main {
        position: fixed;
        top: 82px;
        left: unset !important;
        right: -360px;
        bottom: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        z-index: 999;
        width: 320px;
        background: #fff;
        padding: 30px;
        left: auto;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
    }

    header .header-main .layui-container {
        padding: 0;
        position: static;
    }


    .show-mobile-nav .site-mobile-shade {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .75);
        z-index: 98;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .show-mobile-nav .header-fixed {
        top: 0 !important;
        opacity: 1 !important;
    }

    .show-mobile-nav header .header-main {
        right: 0;
    }

    .show-menu .inner-container .index-logo {
        /* display: block; */
    } 
    .show-menu .inner-container .inner-logo {
        /* display: none; */
    } 

}

@media screen and (max-width: 567px) {
    header .logo img {
        height: .72rem !important;
    }
}

/* @media screen and (max-width:767px){
    .inner-container .menu-toggle .toggle-iconfont span,
    .inner-container header .menu-toggle span:after, 
    .inner-container header .menu-toggle span:before{
        background-color: var(--color-secondary);
    }
    .inner-container header .header .search-btn{
        color: var(--color-secondary);
    }
} */

/* 移动端菜单 END */


/*弹窗动画*/
.layer-anim-01 {
    -webkit-animation-name: slideInDown !important;
    animation-name: slideInDown !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(-100%, 0,  0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(-100%, 0,  0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.layui-layer.tc-fullpage.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

/*弹窗动画 END*/


/*swiper-button*/
.ala-swiper .swiper-button-prev,
.ala-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -.9375vw;
    width: 1.875vw;
    height: 1.875vw;
    z-index: 98;
    background: none;
    background: unset;
    color: var(--color-secondary);
    border-radius: 50%;
}

.ala-swiper.is-white .swiper-button-prev,
.ala-swiper.is-white .swiper-button-next {
    color: #fff;
}

.ala-swiper .swiper-button-next.swiper-button-disabled,
.ala-swiper .swiper-button-prev.swiper-button-disabled {
    color: var(--border-color-base);
    opacity: 1;
}

.ala-swiper .swiper-button-prev:not(.ala-swiper .swiper-button-disabled):hover,
.ala-swiper .swiper-button-next:not(.ala-swiper .swiper-button-disabled):hover {
    color: var(--color-primary);
}

.ala-swiper .swiper-button-next:after,
.ala-swiper .swiper-button-prev:after {
    font-size: 1.2vw;
    font-weight: lighter;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.ala-swiper .swiper-button-next:after,
.ala-swiper .swiper-button-prev:after {
    content: "\e607";
    font-family: "iconfont";
}

.ala-swiper .swiper-button-prev:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.swiper-btn-wrapper .swiper-button-prev:after {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
}

.ala-swiper .swiper-button-prev,
.ala-swiper .swiper-container-rtl .swiper-button-next {
    left: 0;
}

.ala-swiper .swiper-button-next,
.ala-swiper .swiper-container-rtl .swiper-button-prev {
    right: 0;
}

.ala-swiper .swiper-button-next:after,
.ala-swiper .swiper-button-prev:after {
    position: relative;
    right: 0;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

/*swiper-button END*/


/*.swiper-pagination*/
.ala-swiper .swiper-pagination {
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

.ala-swiper .swiper-pagination-bullet {
    position: relative;
    background-color: unset;
    position: relative;
    width: 1.25vw;
    height: 1.25vw;
    border-radius: 1.25vw;
    opacity: 1;
    transition: all .3s ease-in-out;
    background-color: unset !important;
    border: 1.5px solid transparent !important;
    margin: 0 .3125vw !important;
}

.ala-swiper .swiper-pagination-bullet-active {
    border-color: var(--color-primary) !important;
}

.ala-swiper .swiper-pagination-bullet::after {
    content: "";
    top: 50%;
    left: 50%;
    position: absolute;
    content: "";
    display: block;
    width: .3125vw;
    height: .3125vw;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--color-text-secondary-grey);
}

.ala-swiper .swiper-pagination-bullet-active::after {
    background-color: var(--color-primary) !important;
}

.ala-swiper.is-white .swiper-pagination-bullet-active {
    border-color: #fff !important;
}

.ala-swiper.is-white .swiper-pagination-bullet-active::after,
.ala-swiper.is-white .swiper-pagination-bullet::after {
    background-color: #fff !important;
}

@media screen and (max-width: 1439px) {
    .ala-swiper .swiper-pagination-bullet {
        width: 18px;
        height: 18px;
        border-radius: 18px;
        margin: 0 5px;
    }

    .ala-swiper .swiper-pagination-bullet::after {
        width: 5px;
        height: 5px;
    }

    .ala-swiper .swiper-button-prev,
    .ala-swiper .swiper-button-next {
        width: 27px;
        height: 27px;
        margin-top: -13.5px;
    }

    .ala-swiper .swiper-button-next:after,
    .ala-swiper .swiper-button-prev:after {
        font-size: 18px;
    }
}

/*.swiper-pagination EMD*/
.shadow-lg {
    box-shadow: 0px 10px 43px -4px rgba(78, 3, 3, 0.07);
    /* --tw-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); */
}
.transition-shadow {
    transition-property: box-shadow;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
.shadow-lg:hover {
    /* --tw-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --tw-shadow-colored: 0 20px 25px -5px var(--tw-shadow-color), 0 8px 10px -6px var(--tw-shadow-color);
    box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow); */
    box-shadow: 20px 20px 70px 0px rgba(0, 0, 0, 0.1);
}

    
/* swiper-scrollbar */
.ala-swiper .swiper-scrollbar {
    height: 2.34375vw;
    background-color: unset;
    border-radius: 0;
    left: 50%;
    right: unset;
    width: 2.34375vw;
    transform: translateX(-50%);
}

.ala-swiper .swiper-scrollbar-drag {
    background-color: unset;
    position: relative;
}

.ala-swiper .swiper-scrollbar-drag:after {
    content: "";
    position: absolute;
    right: unset;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2.34375vw;
    transform: translateX(-50%);
    background: url(../images/icon_drag.png) right center no-repeat;
    background-size: contain;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {

    .ala-swiper .swiper-scrollbar,
    .ala-swiper .swiper-scrollbar-drag:after {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 567px) {
    .ala-swiper .swiper-scrollbar {
        display: none;
    }
}

/* swiper-scrollbar END */


/* swiper-btn */
.swiper-btn {
    display: flex;
    align-items: center;
}

.case-swiper-btn {
    margin-left: var(--size-18);
}

.case-swiper .text-box .title {
    font-weight: 600;
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
    width: 2.75vw;
    height: 2.75vw;
    border-radius: 50%;
    position: static;
    border: var(--size-1) solid var(--color-primary);
    font-size: 1.25vw;
    color: var(--color-primary);
    margin-top: unset;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
    content: "\e608";
    font-family: "iconfont";
    font-size: var(--size-20);
}

.swiper-btn .swiper-button-next:after {
    content: "\e607";
}

.swiper-btn .swiper-button-next {
    margin-left: .625vw;
}

.swiper-btn .swiper-btn-prev.swiper-button-disabled,
.swiper-btn .swiper-btn-next.swiper-button-disabled {
    background-color: #AEC5CE;
    cursor: no-drop;
}

@media screen and (max-width: 1440px) {

    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 42px;
        height: 42px;
        font-size: 18px;
    }

    .swiper-btn .swiper-button-next {
        margin-left: 9px;
    }
}

/* swiper-btn END */

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/*banner*/
.banner {
    position: relative;
    z-index: 98;
}

.banner .banner-box {
    position: relative;
    z-index: 10;
}

.banner .swiper-container {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 10;
}

.banner .swiper-slide {
    background-size: cover;
    color: #fff;
    background-position: center center;
    height: 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 40.635vw;
    min-height: 360px;
}

.banner .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}
@media screen and (min-width:1200px){
    .inner-banner {
        padding-top: 100px;
    }
}
.banner .swiper-slide .swiper-bg {
    /* -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 8s linear;
    -o-transition: all 8s linear;
    transition: all 8s linear; */
}

.banner .swiper-slide-active .swiper-bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}


.banner img {
    width: 100%;
}

.banner .banner-swiper-button {
    position: absolute;
    z-index: 99;
    left: 5.208333vw;
    width: unset;
    bottom: 25%;
    display: flex;
    align-items: center;
    cursor: default !important;
}

.banner .banner-swiper-button .swiper-button-prev,
.banner .banner-swiper-button .swiper-button-next {
    background-color: transparent;
    width: 3.25vw;
    height: 3.25vw;
    cursor: pointer !important;
    border: var(--size-1) solid #fff;
    position: static;
    color: #fff;
}

.banner .banner-swiper-button .swiper-button-next {
    margin-left: .9375vw;
}

.banner .banner-swiper-button .swiper-button-prev:hover:before,
.banner .banner-swiper-button .swiper-button-next:hover:before {
    opacity: 1;
}

.banner .swiper-pagination {
    text-align: center;
    top: 50%;
    bottom: unset;
    right: 3.125vw;
    width: unset;
    left: unset;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 99;
}

.banner .swiper-pagination {
    cursor: default !important;
}

.banner .swiper-pagination-bullet {
    width: .78125vw;
    height: .26042vw;
    background-color: #fff !important;
    color: #fff;
    background: transparent;
    transition: all .5s ease-in-out;
    position: relative;
    border-radius: 0;
    cursor: pointer !important;
    margin-right: 0;
    opacity: 1;
}

.banner .swiper-pagination-bullet+.swiper-pagination-bullet {
    margin-top: .52083vw;
}

.banner .swiper-pagination-bullet-active {
    width: 2.1875vw;
}

.banner .speit {
    position: absolute;
    right: -.2vw;
    bottom: 0;
    top: 0;
    width: 50%;
    color: #fff;
    text-transform: uppercase;
    z-index: 99;
    background: url(../images/SPEIT-white.svg) right bottom -1% no-repeat;
    background-size: 100%;
}

@media screen and (max-width: 1439px) {
    
    .banner .banner-swiper-button .swiper-button-next {
        margin-left: 13.5px;
    }

    .banner .banner-swiper-button .swiper-button-prev, 
    .banner .banner-swiper-button .swiper-button-next {
        width: 36px;
        height: 36px;
    }

    .banner .swiper-pagination-bullet {
        width: 12px;
        height: 3px;
    }

    .banner .swiper-pagination-bullet+.swiper-pagination-bullet {
        margin-top: 7.5px;
    }

    .banner .swiper-pagination-bullet-active {
        width: 32px;
    }
}
@media screen and (max-width:1200px){
    .banner .banner-swiper-button {
        bottom: 15%
    }
}
/* @media screen and (max-width: 991px) {
    .banner .swiper-slide {
        max-height: calc(100vh - 75px);
    }
} */

/* @media screen and (max-width: 767px) {
    .banner .swiper-slide {
        height: 120vw;
    }
} */

@media screen and (max-width: 567px) {
    .banner .banner-swiper-button{
        bottom: .44rem;
        left: .32rem;
    }

    .banner .swiper-pagination {
        flex-direction: row;
        left: .3rem;
        bottom: .44rem;
        right: unset;
        top: unset;
        transform: unset;
    }

    .banner .swiper-pagination-bullet {
        width: .06rem;
        height: .2rem;
        margin: 0 !important;
    }

    .banner .swiper-pagination-bullet+.swiper-pagination-bullet {
        margin-left: .11rem !important;
        margin-top: 0;
    }

    .banner .swiper-pagination-bullet-active {
        height: .44rem;
    }
}

/*banner END*/


/*home-banner-wrap*/
.home-banner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    color: #fff;
    z-index: 10;
}

.home-banner-wrap .banner-title {
    line-height: 1.4;
    color: var(--color-text-primary);
    font-weight: bold;
}
.banner-text {
    text-shadow: 0px 2px 26px rgba(0,0,0,0.18);
}
.home-banner-wrap .banner-desc {
    margin-top: var(--size-12);
    line-height: 1.5;
    color: var(--color-text-primary);
}

@media screen and (max-width: 567px) {
    .home-banner-wrap {
        /* top: unset;
        bottom: 2rem; */
    }
}

/*home-banner-wrap END*/

/* banner-video */
.banner-video {
    background-image: url("../images/banner.jpg");
    height: 100vh;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-video:before {
    position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background-color: rgba(0, 64, 153, .5);
}

.banner-video .bg-video {
    display: none;
    position: absolute;
    z-index: 1;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    max-width: initial;
    will-change: transform;
}

@media screen and (min-width: 768px) {
    .banner-video .bg-video {
        display: block;
    }
}

@media all and (-ms-high-contrast:active),
(-ms-high-contrast: none) {
    .banner-video {
        background-image: url(../images/banner-bg.jpg) !important;
    }

    .banner-video .bg-video {
        display: none !important;
    }
}

/* banner-video END */

@keyframes bounceInLeft {
    0% {
        -webkit-left: -100%;
        left: -100%;
        opacity: 0
    }

    50% {
        -webkit-left: 50px;
        left: 50px;
        opacity: 1
    }

    80% {
        -webkit-left: -10px;
        left: -10px;
        opacity: 1;
    }

    to {
        -webkit-left: 0;
        left:0
    }
}

.bounceInLeft {
    -webkit-animation: bounceInLeft .5s ease 0s 1 normal none running;
    animation: bounceInLeft .5s ease 0s 1 normal none running
}

@-webkit-keyframes bounceInLeft-1 {
    0% {
        -webkit-left: -50px;
        left:-50px;opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -webkit-left: 0;
        left:0}
}

@keyframes bounceInLeft-1 {
    0% {
        -webkit-left: -50px;
        left:-50px;opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        -webkit-left: 0;
        left:0}
}

.bounceInLeft-1 {
    -webkit-animation: bounceInLeft-1 .5s ease 0s 1 normal none running;
    animation: bounceInLeft-1 .5s ease 0s 1 normal none running
}

@-webkit-keyframes bounceInRight {
    0% {
        inset-inline-end: -231px;
        opacity: 0
    }

    50% {
        inset-inline-end: 7px;
        opacity: 1
    }

    80% {
        inset-inline-end: -10px
    }

    to {
        inset-inline-end: 0
    }
}

@keyframes bounceInRight {
    0% {
        inset-inline-end: -231px;
        opacity: 0
    }

    50% {
        inset-inline-end: 7px;
        opacity: 1
    }

    80% {
        inset-inline-end: -10px
    }

    to {
        inset-inline-end: 0
    }
}

.bounceInRight {
    -webkit-animation: bounceInRight .5s ease 0s 1 normal none running;
    animation: bounceInRight .5s ease 0s 1 normal none running
}

@-webkit-keyframes bounceInRight-1 {
    0% {
        inset-inline-end: -50px;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        inset-inline-end: 0
    }
}

@keyframes bounceInRight-1 {
    0% {
        inset-inline-end: -50px;
        opacity: 0
    }

    50% {
        opacity: 1
    }

    to {
        inset-inline-end: 0
    }
}

.bounceInRight-1 {
    -webkit-animation: bounceInRight-1 .5s ease 0s 1 normal none running;
    animation: bounceInRight-1 .5s ease 0s 1 normal none running
}

@media(min-width: 576px)and (max-width:1019px) {
    @-webkit-keyframes bounceInRight {
        0% {
            inset-inline-end:-180px;
            opacity: 0
        }

        50% {
            inset-inline-end: 5px;
            opacity: 1
        }

        80% {
            inset-inline-end: -10px
        }

        to {
            inset-inline-end: 0
        }
    }

    @keyframes bounceInRight {
        0% {
            inset-inline-end: -180px;
            opacity: 0
        }

        50% {
            inset-inline-end: 5px;
            opacity: 1
        }

        80% {
            inset-inline-end: -10px
        }

        to {
            inset-inline-end: 0
        }
    }
}

@media(max-width: 575px) {
    @-webkit-keyframes bounceInRight {
        0% {
            inset-inline-end:-190px;
            opacity: 0
        }

        50% {
            inset-inline-end: 0;
            opacity: 1
        }

        80% {
            inset-inline-end: -10px
        }

        to {
            inset-inline-end: 0
        }
    }

    @keyframes bounceInRight {
        0% {
            inset-inline-end: -190px;
            opacity: 0
        }

        50% {
            inset-inline-end: 0;
            opacity: 1
        }

        80% {
            inset-inline-end: -10px
        }

        to {
            inset-inline-end: 0
        }
    }

    @-webkit-keyframes bounceInRight-1 {
        0% {
            inset-inline-end: -40px;
            opacity: 0
        }

        50% {
            opacity: 1
        }

        to {
            inset-inline-end: 0
        }
    }

    @keyframes bounceInRight-1 {
        0% {
            inset-inline-end: -40px;
            opacity: 0
        }

        50% {
            opacity: 1
        }

        to {
            inset-inline-end: 0
        }
    }
}

/* 主菜单 */
.menu-container,
.search-container{
    position: fixed;
    /* left: -100%; */
    width: 0;
    height: 100%;
    top: 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 101;
    overflow: hidden;
    background-color: var(--bg-grey);
    /* opacity: 0; */
    left: 70px;
}
.show-menu .menu-container,
.show-search .search-container {
    width: 28vw;
    opacity: 1;
} 
.show-menu .menu-container .menu-body,
.show-search .search-container .menu-body {
    -webkit-animation: var(--navi-scrollbar-animation-bounceInLeft-long);
    animation: var(--navi-scrollbar-animation-bounceInLeft-long);

}
@media screen and (max-width:1220px){
    .menu-container,
    .search-container {
        left: 60px;
    }   
}

.menu-container .menu-logo,
.search-logo {
    padding: var(--size-36) var(--size-36);
}
.menu-container .menu-logo img,
.search-logo img {
    width: auto;
    height: 3.375vw;
}
/* 
.menu-container .menu-body{
    padding: var(--size-24);
    padding-right: 0;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.menu-container .menu-body .mCSB_inside > .mCSB_container{
    margin-right: var(--size-24)!important;
    position: unset !important;
}
.menu-container .mCustomScrollBox {
    position: unset !important;
}
.menu-container .menu-list .menu-item{
}
.menu-container .menu-list .menu-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-container .menu-list .menu-title a{
    padding: var(--size-15) 0;
    flex: 1;
    color: #fff;
}
.menu-container .menu-list .menu-title a:hover{
    color: var(--color-secondary);
}
.menu-container .menu-list .menu-title .icon{
    cursor: pointer;
    padding: var(--size-15) 0 var(--size-15) var(--size-36);
    font-size: .75em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold;
    width: 50px;
     color: var(--color-primary);
}
.menu-container .menu-list .menu-title .icon:hover{
    color: var(--color-secondary);
}
.menu-container .submenu{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    transform: translateX(100%);
    background-color: var(--bg-grey);
    visibility: hidden;
    pointer-events: none;
    color: #fff;
    transition: transform 0.3s, visibility 0.3s;
}
.menu-container .menu-list .menu-item.show-submenu > .submenu {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
}
.submenu-top ,
.third-menu-top {
    padding: var(--size-24)  var(--size-24) var(--size-20) 0;
    color: #fff;
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: var(--size-15);
}
.submenu-top  .title-nav a,
.third-menu-top .title-nav a{
    color: #fff;
     transition: all .3s;
     padding: 0;
}
.submenu-top  .title-nav a i,
.third-menu-top .title-nav a i{
    position: relative;
    transition: all .3s;
    color: inherit;
    left: 0;
}
.submenu-top  .title-nav a:hover i,
.third-menu-top .title-nav a:hover i{
   left: 5px;
}
.submenu-top  .title-nav a:hover,
.third-menu-top .title-nav a:hover{
    color: var(--color-secondary);
}
.third-menu-top .back-btn,
.submenu-top .back-btn{
    cursor: pointer;
    margin-bottom: var(--size-24);
}
.third-menu-top .back-btn i,
.submenu-top .back-btn i{
    font-size: .75em;
    font-weight: bold;
}
.third-menu-top .back-btn:hover,
.submenu-top .back-btn:hover{
    color: var(--color-secondary);
}
.menu-container .menu-list .menu-item.show-submenu .submenu{
    transform: none;
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right{
    color: var(--color-primary);
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right:before{
    content: '\e625';
}


.menu-container .third-menu{
    position: fixed;
    height: 100%;
    width: 45vw;
    padding-left: var(--size-24);
    left: 0;
    bottom: 0;
    transform: translateX(100%);
    background: #fff url(../images/donor-bg.png) center bottom no-repeat;
    background-size: 100% auto;
    overflow: hidden;
    transition: 0.3s;
    z-index: 100;
    
}
.menu-container .submenu-item.m-active .third-menu{
    transform: none;
}

.menu-container .submenu .m-active .icon-right:before{
    content: '\e625';
}
.menu-container .third-menu .third-menu-list a{
    display: block;
    padding: var(--size-15) 0;
    color: var(--color-primary);
    transition: color .3s ease-in-out;
}

.menu-container .third-menu a:hover{
    color: var(--color-secondary);
}

.show-menu .site-menu-shade{
    position: fixed;
    left: 3.125vw;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 98;
}
@media screen and (max-width: 1440px){
    .show-menu .site-menu-shade{
        left: 60px;
    }
}
.show-menu .menu-container{
    right: 0;
    top: 0;
}

.show-menu.header-fixed header{
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    opacity: 1;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}
*/
.menu-container .menu-body{
    padding: var(--size-36);
    padding-left: calc(5.208333vw - var(--size-9));
    padding-right: 0;
    position: absolute;
    left: 0;
    right: 0;
    /* top: 50%;
    transform: translateY(-50%); */
    top: 8vw;
    bottom: 0;
}
.menu-container .menu-body .mCSB_inside > .mCSB_container{
    margin-right: var(--size-24)!important;
}

.menu-container .menu-list .first-title{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.menu-container .menu-list .menu-title,
.index-left-menu .menu-list .menu-title{
    display: flex;
    align-items: center;
}
.menu-container .menu-list .menu-title a,
.index-left-menu .menu-list .menu-title a{
    padding: var(--size-12) var(--size-9);
    color: #fff;
    width: 100%;
    opacity: 0;
    transition: all .1s;
}
.index-left-menu .menu-list .menu-title a {
    opacity: 1;
    color: var(--color-text-primary);
}
.show-menu .menu-container .menu-list .menu-title a{
    opacity: 1;
}
.menu-container .menu-list .first-title a{
    /* flex: 1; */
}

.menu-container .menu-list .menu-title a:hover,
.index-left-menu .menu-list .menu-title a:hover{
    color: var(--color-secondary);
}
.menu-container .first-title .icon,
.index-left-menu .menu-list .icon{
    cursor: pointer;
    padding: var(--size-20) var(--size-9) var(--size-20) var(--size-36);
    font-size: var(--size-16);
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: bold;
    width: 50%;
    color: #fff;
}
.index-left-menu .menu-list .icon {
    padding: var(--size-12);
}
.index-left-menu .menu-list .icon {
    color: initial !important;
}
.menu-container .menu-list .menu-title .icon,
.index-left-menu .menu-list .menu-title .icon{
    cursor: pointer;
    font-size: var(--size-16);
    font-weight: bold;
    color: #fff;
}
.menu-container .first-title .icon i,
.index-left-menu .menu-list .icon i{
    width: var(--size-45);
    height: var(--size-45);
    line-height: var(--size-45);
    border-radius: 50%;
    text-align: center;
    border: var(--size-1) solid #fff;
}
.index-left-menu .menu-list .icon i {
    border-color: var(--color-text-primary);
}
.menu-container .menu-list .menu-title .icon:hover i,
.index-left-menu .menu-list .menu-title:hover i{
    color: var(--color-secondary);
}
.menu-container .first-title .icon .icon-right:before {
    content: "\e607";
    margin-right: -2px;
    top: -1px;
    position: relative;
}
.menu-container .first-title .icon:hover i{
    background-color: var(--color-secondary);
    color: #fff !important;
    border-color: var(--color-secondary);
}
.menu-container .submenu{
    /* padding-left: var(--size-24); */
    display: none;
}
.menu-container .menu-list .menu-item.show-submenu .submenu{
    display: block;
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right{
    color: #fff;
    background-color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right:before{
    content: '\e625';
    margin-right: -1px;
    top: 0px;
    position: relative;
}
.menu-container .third-menu{
    padding-left: var(--size-20);
    display: none;
}
.menu-container .submenu .m-active .icon-right:before{
    content: '\e625';
}
.menu-container .third-menu a{
    display: block;
    padding: var(--size-9) 0;
    color: var(--color-text-secondary);
    transition: color .3s ease-in-out;
}
.menu-container .third-menu a .iconfont{
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.menu-container .third-menu a:hover{
    color: var(--color-primary);
}
.menu-container .third-menu a:hover .iconfont{
    opacity: 1;
}

.show-menu .site-menu-shade,
.show-search .site-search-shade{
    position: fixed;
    left: 80px;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 98;
}
@media screen and (min-width:772px) and (max-width:1440px){
    .show-menu .menu-container,
    .show-search .search-container{
        width: 320px;
    }
}
@media screen and (max-width:1200px){
    .show-menu .site-menu-shade,
    .show-search .site-search-shade{
        left: 70px;
    }
}
@media screen and (max-width:991px){
    .show-menu .menu-container,
    .show-search .search-container  {
        left:60px;
    } 
    .show-menu .site-menu-shade,
    .show-search .site-search-shade{
        left: 60px;
    }
}
/* 主菜单 END */
.sitemap{
    height: 100%;
}
.sitemap-container .sitemap-head,
.sitemap-container .sitemap-body{
    width: 100%;
}
.sitemap-container .sitemap-head{
    font-weight: bold;
    color: #fff;
    background-color: var(--color-primary);
    line-height: 1;
    padding: 0 9.375vw;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
}
.sitemap-container .sitemap-head:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/sitemap.png) left center repeat;
    background-size: auto 80%;
    opacity: .05;

}
.sitemap-container .sitemap-body{
    flex: 1;
    background-color: var(--bg-grey);
    overflow: hidden;
    padding: 3.25vw;
    color: #fff;
    padding-top: 8.625vw !important;
}
.sitemap-container .sitemap-body .scrollbar-box{
    height: 100%;
    overflow: hidden;
}
.sitemap .sitemap-section{
    margin-bottom: 1.5625vw;
    padding-bottom: 1.5625vw;
    border-bottom: 1px solid var(--border-color);
}
.sitemap a{
    transition: all .3s ease-in-out;
    display: block;
    color: #fff;
}
.sitemap .first-title{
    font-weight: bold;
}
.sitemap .second-title .iconfont{
    opacity: 0;
    transform: scale(.8);
    font-weight: bold;
    display: inline-block;
    transition: opacity .3s ease-in-out;
}
.sitemap .second-title:hover .iconfont{
    opacity: 1;
}
.sitemap .third-list{
    margin: .9375vw 0;
    padding-left: .625vw;
    border-left: 1px solid var(--border-color);
}
.sitemap .third-list .third-title{
    color: var(--color-text-secondary-grey);
    margin-bottom: .3125vw;
}
.sitemap .third-list .third-title:hover{
    color: var(--color-primary);
}
.main-nav ul{
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    position: relative;
    width: 100%;
}
.layui-layer.tc-sitemap{
    left: 3.125vw;
    width: 35vw !important;
    background-color: var(--bg-grey);
}
@media screen and (max-width: 1440px) {
    .layui-layer.tc-sitemap{
        left: 60px!important;
    }
    .sitemap-container .sitemap-head{
        height: 75px;
    }
    .sitemap .sitemap-section{
        margin-bottom: 22.5px;
        padding-bottom: 22.5px;
    }
    .sitemap .third-list{
        margin-bottom: 13.5px;
        padding-left: 9px;
    }
    .sitemap .third-list .third-title{
        margin-bottom: 4.5px;
    }
    .sitemap-container .sitemap-head{
        padding: 30px;
    }
    .sitemap-container .sitemap-body{
        padding: 30px;
    }
}
@media screen and(min-width: 992px) {
    .sitemap-body,
    .sitemap-list {
        background: var(--bg-grey);
        height: 100%;
        overflow-y: auto;
    }
    .main-nav{
        margin-top: 150px;
    }
    
}

/* sitemap END */




.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color: var(--color-secondary);
}
.mCSB_scrollTools .mCSB_draggerRail{
    background-color: unset;
}

@media screen and (min-width: 1920px) {
    .mCSB_inside > .mCSB_container{
        margin-right: 1.5625vw;
    }
}



/* search-layer */
/*弹窗动画*/
.layui-layer.tc-search.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-search{
    left: 3.125vw!important;
    right: 0!important;
    width: unset!important;
    z-index: 98!important;
}
.layui-layer.tc-sitemap.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-search .layui-layer-content{
    height: 100%!important;
}
.layui-layer.tc-search .search-container{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    background-color: var(--color-primary);
    color: #fff;
    right: 3.125vw;
    top: 1.25417vw;
}
.search-layer{
    height: 100%;
}
.show-search .search-btn .icon-search-o:before {
    content: "\e60b";
    font-weight: bold;
}
.search-container .search-head,
.search-container .search-body{
    width: 100%;
}
.search-container .search-body{
    flex: 1;
    padding: var(--size-36);
    padding-left: calc(5.208333vw - var(--size-9));
    position: relative;
    margin-top: 10vw;
}
.radio-btn {
    color: #fff;
}
.search-container .search-body>*{
    position: relative;
    z-index: 1;
}

.search-container .search-body .layui-form .layui-input,
.search-container .search-body .layui-form .layui-btn{
    background-color: transparent;
}
.search-container .search-body .layui-input:focus,
.search-container .search-body .layui-input:hover {
    border-color: transparent !important;
}
.search-container .search-body .layui-input:focus-within {
    color: #fff;
}
.search-container .search-body input::placeholder {
    color: rgba(255, 255, 255, .5);
}
.search-container .layui-input {
    color: #fff;
}

.search-container .search-body .quick-link {
    margin-top: var(--size-100);
}
.search-container .search-body .quick-head {
    color: rgba(255, 255, 255, .5);
    margin-bottom: var(--size-36);
}
.search-container .search-body .quick-item .menu-title {
    color: #fff;
    display: flex;
    padding: var(--size-12) 0;
    align-items: center;
}
.search-container .search-body .quick-item .menu-title a{
    color: #fff;
    margin-right: var(--size-9);
}
.search-container .search-body .quick-item .menu-title:hover,
.search-container .search-body .quick-item .menu-title:hover a {
    color: var(--color-secondary);
}
.search-container .search-body .layui-form .layui-form-select{
    margin-right: .3125vw;
}
@media screen and (max-width: 1439px) {
    .layui-layer.tc-search{
        left: 45px!important;
    }
    .search-container .search-head{
        height: 75px;
    }
    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
        width: 36px;
        height: 36px;
        line-height: 36px;
        top: 19.5px;
    }

}
.search-container .search-body .layui-form{
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .7);
}
@media screen and (max-width: 1199px) {
    .layui-layer.tc-search{
        left: 0px!important;
    }
    
    
    .search-container .search-body .layui-form .layui-form-radio{
        min-width: 80px;
    }
}
@media screen and (max-width: 991px) {
    .layui-layer.tc-search{
        left: 0px!important;
    }
    .search-container .search-body:after{
        border-bottom-width: 1px;
        background-size: 200px;
    }
    .search-container .search-head{
        height: 82px;
    }
}
@media screen and (max-width: 767px) {
    .search-container .search-body:before{
        width: 85%;
        height: 75%;
    }
    .search-container .search-body .layui-form .item{
        flex: 1;
    }
    .search-container .search-body .layui-form .type-radio-group{
        margin-bottom: 1px;
    }
    .search-container .search-body .layui-form .item+.item{
        margin-left: 1px;
    }
    .search-container .search-body .layui-form .layui-form-radio{
        min-width: 0;
    }
}
@media screen and (max-width: 567px) {
    .search-container .search-head .logo img{
        height: .64rem;
    }
    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
        right: .32rem;
    }
    .search-container .search-body .layui-form .layui-form-select{
        margin-right: 0;
        margin-bottom: 5px;
    }
}


@media screen and (min-width: 992px) {
    .show-search .header-main{
        /* display: none; */
        opacity: 0;
        transition: all .3s ease-in-out;
    }
    .show-search .header-main a{
        cursor: default;
        pointer-events: none;
    }
    .show-search header{
        background-color: transparent;
    }
    .show-search header:after{
        content: unset;
    }
    .show-search header .header-top{
        background-color: #fff;
    }
}

.show-search .layui-layer-shade{
    z-index: 0!important;
    opacity: 0!important;
}
.show-search header .search-btn{
    color: #fff;
}
.show-search header .search-btn .icon-search:before{
    content: "\e60b";
    font-weight: bold;
}
.show-search header .secondary-nav .layui-nav{
    display: none;
}
/* search-layer END */

/*block*/
.block {
    padding: 6.25vw 0;
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.block.small-block {
    padding: 3.75vw 0;
}

.block>* {
    position: relative;
    z-index: 9;
}

.block.grey {
    background-color: var(--bg-primary);
}

.block.grey1 {
    background-color: #f7f7f7;
}
.block.darkGrey {
    background-color: #F0F0F0;
}

.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:991px) {
    .block.small-block {
        padding: 50px 0;
    }

    .block {
        padding: 50px 0;
    }
}

/* @media screen and (max-width:767px) {
    .block{
        padding: 40px 0;
    }
} */
/*block END*/

/* ala-section */
.ala-section+.ala-section {
    margin-top: 6.25vw;
}
.ala-section.section-small+.ala-section.section-small,
.block.small-block .ala-section+.ala-section {
    margin-top: 3.75vw;
}

@media screen and (max-width:991px) {
    .ala-section+.ala-section {
        margin-top: 50px;
    }
    .ala-section.section-small+.ala-section.section-small,
    .block.small-block .ala-section+.ala-section{
        margin-top: 40px;
    }
}

/* ala-section END */


/*index_title*/
.index_title {
    position: relative;
    margin-bottom: 2.1354vw;
    line-height: 1.4;
    color: var(--color-text-regular);
}

.index_title h2 {
    position: relative;
    letter-spacing: 2px;
    display: inline-block;
    z-index: 2;
    font-weight: 600;
}

.index_title h2>* {
    position: relative;
}

.bg .index_title,
.color_white .index_title {
    color: #fff;
}

.bg .index_title .en:before,
.color_white .index_title .en:before {
    background-color: #fff;
}

.index_title .small_title {
    position: absolute;
    opacity: .08;
    font-size: 1.8em;
    top: -10px;
    z-index: 1;
}

.index_title .more-btn {
    margin-top: 0;
}
.index_title .img-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--size-24);
}
.index_title .img-wrap .item img {
    width: var(--size-60);
    height: var(--size-60);
    object-fit: contain;
    margin-right: var(--size-12);
}

@media screen and (max-width: 1199px) {
    .index_title {
        margin-bottom: 30px;
    }

}

@media screen and (max-width: 767px) {
    .index_title {
    margin-bottom: 20px;
}

}
@media screen and (max-width: 567px) {
    
    .index_title .img-wrap .item {
        display: block;
    }
    .index_title .img-wrap .item img {
        margin-right: 0;
        margin-bottom: var(--size-9);
    }

}
/*index_title END*/


.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: var(--color-secondary);
    position: fixed;
    z-index: 997;
    display: block;
    width: 3.125vw;
    height: 3.125vw;
    line-height: 3.125vw;
    bottom: .9375vw;
    right: .9375vw;
    border-radius: 50%;
    text-align: center;
    color: #eee; */
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

@media screen and (max-width: 1199px) {
    #button-to-top {
        /* width: 37.5px;
        height: 37.5px;
        line-height: 37.5px;
        right: 11.25px;
        bottom: 11.25px; */
    }
}


.anchor {
    position: relative;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
    z-index: -1;
}

/*footer*/
footer {
    position: relative;
    background-color: var(--bg-grey);
    overflow: hidden;
    background-image: url(../images/footer-bg.png);
    background-repeat: no-repeat;
    background-position: right top;
    background-size: 40% auto;
}

footer,
footer a,
footer a:visited {
    color: #fff;
}

footer a:hover,
footer a:focus {
    color: var(--color-secondary);
}

.footer-top {
    padding: 4.21875vw 0;
}

.footer-top .footer-logo img {
    max-width: 100%;
    max-height: 3.4375vw;
}

.footer-top .footer-logo {
    margin-bottom: 1.25vw;
}

footer .footer-title {
    margin-bottom: 1.25vw;
    color: #fff;
    font-weight: bold;
}

.footer-top p {
    margin-bottom: .46875vw;
}

.footer-top ul,
.footer-top ul li {
    list-style: none;
    padding-left: 0;
    margin: 0;
}

.footer-top .footer-link.columns {
    columns: 2;
    column-count: 2;
    column-gap: 1.25vw;
}

.footer-top .footer-link li {
    line-height: 1.8;
    position: relative;
}
.footer-top .footer-right p{
    line-height: 1.8;
}

.footer-top .footer-link li a {
    display: block;
    margin-bottom: .46875vw;
}

.footer-top .media-list .media-item a {
    border-color: rgba(255, 255, 255, .2);
}


.footer-copyright .footer-right {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding: 20px 0;

}

@media screen and (max-width: 1439px) {
    .footer-top .footer-logo img {
        max-height: 48px;
    }
}

@media screen and (max-width: 767px) {
    .footer-top {
        width: 100%;
    }
    
    footer .footer-title {
        margin-bottom: 12px;
        padding-bottom: 4px;
    }

    .footer-top {
        padding: 30px 0;
    }

    .footer-copyright .footer-right {
        padding: 15px 0;
    }
}
/* media-list */
    
.media-list {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    z-index: 9;
}

.media-list .media-item {
    display: inline-block;
    padding: .10417vw;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: var(--size-20);
    margin-right: var(--size-12);
}

.media-list .media-item:hover {
    z-index: 2;
}

.media-list .media-item a {
    display: block;
    text-align: center;
    width: 2.625vw;
    height: 2.625vw;
    line-height: 2.625vw;
    text-align: center;
   color: #fff;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    /* border: var(--size-1) solid rgba(255, 255, 255, .2); */
    background-color: rgba(255, 255, 255, .1);
}

.media-list .media-item a:hover {
    background: var(--color-secondary);
    color: #fff!important;
    text-decoration: unset;
}

.media-list .media-item .tc-box {
    width: 6.25vw;
    height: 6.25vw;
    padding: .3125vw;
    border-radius: .20833vw;
    margin-top: .625vw;
    transform: translate(-50%, 1.25vw);
    text-align: center;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 4px;
    position: absolute;
    top: 100%;
    left: 50%;
    transition: all .5s;
    opacity: 0;
}

.media-list .media-item .tc-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.media-list .media-item .tc-box:after {
    content: "";
    position: absolute;
    left: 50%;
    top: -.625vw;
    width: 0;
    height: 0;
    border: .3125vw solid transparent;
    border-bottom: .3125vw solid rgba(255, 255, 255, 1);
    margin-left: -.3125vw;
}

.media-list .media-item a:hover+.tc-box {
    opacity: 1;
    transform: translate(-50%, 0);
}

@media screen and (max-width: 1439px) {
    .media-list .media-item a {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }

    .media-list .media-item .tc-box {
        width: 90px;
        height: 90px;
        padding: 5px;
        border-radius: 4px;
    }

    .media-list .media-item .tc-box:after {
        top: -9px;
        border-width: 4.5px;
        margin-left: -4.5px;
    }
}

@media screen and (max-width: 767px) {
    .media-list .media-item a:hover {
        z-index: 9;
    }

    .media-list {
        min-height: unset;
    }

    .media-list .media-item .tc-box {
        left: 0;
        transform: translate(0, -20px);
        margin-bottom: 10px;
        top: unset;
        bottom: 100%;
    }

    .media-list .media-item a:hover+.tc-box {
        transform: translate(0, 0);
    }

    .media-list .media-item .tc-box:after {
        top: unset;
        bottom: -12px;
        border-bottom: 6px solid transparent;
        border-top: 6px solid #fff;
        left: 20px;
    }
}

@media screen and (max-width: 567px) {
    .media-list .media-item a {
        width: .7rem;
        height: .7rem;
        line-height: .7rem;
    }

    .media-list .media-item .tc-box {
        width: 1.8rem;
        height: 1.8rem;
        padding: .1rem;
        border-radius: .08rem;
        margin-bottom: .2rem;
    }

    .media-list .media-item .tc-box:after {
        bottom: -.24rem;
        border-bottom: .12rem solid transparent;
        border-top: .12rem solid #fff;
        left: .4rem;
    }
}

/* media-list END */

/* footer END */

.icon-play {
    position: absolute;
    width: 4.6879vw;
    height: 4.6879vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all .3s ease-in-out;
    background-color: var(--color-primary);
    border-radius: 50%;
    z-index: 99;
}

.icon-play:before {
    content: "";
    background-color: var(--color-primary);
    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;
}

.icon-play span {
    border: .78125vw solid transparent;
    border-left: 1.09375vw solid #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -.78125vw;
    margin-left: -.3125vw;
}

@media screen and (max-width: 991px) {
    .icon-play {
        width: 56px;
        height: 56px;
    }

    .icon-play span {
        border: 9px solid transparent;
        border-left: 13px solid #fff;
        margin-top: -9.375px;
        margin-left: -3.75px;
    }
}

@media screen and (max-width: 767px) {
    .speit-block .video-wrapper .icon-play {
        display: none;
    }
}

@media screen and (max-width: 567px) {
    .icon-play {
        width: .8rem;
        height: .8rem;
    }

    .icon-play span {
        border: .12rem solid transparent;
        border-left: .2rem solid #fff;
        margin-top: -.12rem;
        margin-left: -.08rem;
    }
}

@-webkit-keyframes warn-3 {
    0% {
        opacity: .5;
        -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: .5;
        -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)
    }
}


/*layui-layer tc-video*/
.layui-layer .layui-layer-setwin {
    top: 0px;
    right: 0px;
    margin-right: 0px;
    z-index: 99999;
}

.layui-layer .layui-layer-setwin .layui-layer-close2 {
    top: .9375vw;
    right: .9375vw;
    background: none;
    position: relative;
    text-align: center;
    line-height: 3.125vw;
    transition: all .3s;
    width: 3.125vw;
    height: 3.125vw;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    font-size: 1.25vw;
    border: 0;
    background: rgba(255, 255, 255, .25);
    padding: 0;
}

.layui-layer .layui-layer-setwin .layui-layer-close2:after {
    content: "\e60b";
    font-family: 'iconfont';
    font-weight: bold;
    color: #fff
}

.layui-layer .layui-layer-setwin .layui-layer-close2:before {
    content: unset;
}

.layui-layer .layui-layer-setwin .layui-layer-close2:hover {
    background: var(--color-primary);
    color: #fff;
}

.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%;
}

@media screen and (max-width: 1399px) {
    .layui-layer .layui-layer-setwin .layui-layer-close2 {
        width: 45px;
        height: 45px;
        line-height: 45px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

@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*/

.show-sitemap .logo {
    position: relative;
    z-index: 9999;
}

.show-sitemap .logo img {
    position: relative;
    z-index: 9999;
}

.layui-layer.tc-sitemap {
    z-index: 999;
}

.sitemap-container .sitemap-head {
    position: relative;
    z-index: 998;
}

/* right-fiexd */
.right-fiexd{
    position: fixed;
    right: var(--size-24);
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(255, 255, 255, .9);
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    border-radius: var(--size-48);
    padding: var(--size-9);
    z-index: 100;
}
.right-fiexd .item{
    position: relative;
    width: var(--size-60);
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: var(--size-18) 0;
    text-align: center;
    color: var(--color-text-primary);
    overflow: hidden;
}
.right-fiexd .item .tc-detail::after{
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: unset;
    margin-left: unset;
    right: -19px;
    border: 10px solid transparent;
    border-left: 10px solid #fff;
}
.right-fiexd .item .tc-detail{
    position: relative;
    width: 0;
    min-width: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 100%;
    margin-right: var(--size-100);
    padding: var(--size-18);
    background-color: #fff;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
    z-index: -99;
    opacity: 0;
    -webkit-transition: margin-right .3s ease-out;
    -o-transition: margin-right .3s ease-out;
    transition: margin-right .3s ease-out;
}
.right-fiexd .item:hover{
    overflow: unset;
}
.right-fiexd .item:hover .tc-detail{
    width: 12vw;
    min-width: 180px;
    margin-right: var(--size-20);
    opacity: 1;
    z-index: 9;
    border-radius: var(--size-4);
}
.right-fiexd .item .tc-detail a{
    width: 100%;
    padding: var(--size-15);
    background-color: #F7F8FA;
    display: block;
    transition: all .3s ease-in-out;
    text-align: left;
}
.right-fiexd .item .tc-detail li + li{
    margin-top: var(--size-15);
}
.right-fiexd .item .tc-detail .qurde-box img {
    width: 100%;
    margin-bottom: var(--size-9);
}
.right-fiexd .item .tc-detail a .iconfont{
    color: var(--color-secondary);
    transition: all .3s ease-in-out;
}
.right-fiexd .item .tc-detail a:hover{
    background-color: var(--color-secondary);
    color: #fff;
}
.right-fiexd .item .tc-detail a:hover .iconfont{
    color: #fff;
}
.right-fiexd .item .icon{
    margin-bottom: var(--size-4);
}
.right-fiexd .item .name {
    color: rgba(27, 21, 52, .6);
}

@media screen and (max-width:567px){
    .right-fiexd {
        display: none;
    }
    .right-fiexd .item .tc-detail {
        padding: var(--size-12);
        font-size: 14px;
    }
    .right-fiexd .item:hover .tc-detail {
        min-width: 120px;
    }
}
/* right-fiexd END */

/* inner-banner */
.inner-banner {
    background-color: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 40.635vw;
    min-height: 360px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.small-banner.inner-small-banner {
    min-height: 31.25vw;
}
.small-banner{
    height: 31.25vw;
}


@media screen and (max-width: 767px) {
    .subject-main .inner-banner.small-banner,
    .small-banner.inner-small-banner {
        min-height: 300px;
        
    }
    
}

@media screen and (max-width: 991px) {
    .about-small-banner.small-banner .inner-banner-text {
        padding-bottom: var(--size-24);
    }
    .wrok-inner-banner.small-banner.inner-banner {
        padding-bottom: 0;
    }
    .wrok-inner-banner .inner-banner-text .title {
        margin-bottom: var(--size-24);
    }
}
.contact-inner-banner {
    height: 43.4375vw;
}
.inner-banner-text .img-wrap {
    width: 100%;
    position: relative;
}
.inner-banner-text .img-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-small-banner{
    min-height: 40.625vw;
    padding-top: 7.29166667vw;
    position: relative;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}
.inner-small-banner .inner-banner-text {
    padding-bottom: var(--size-60);
    color: var(--color-text-primary);
}
@media screen and (max-width: 992px) {
    .small-banner .inner-banner-text .title {
        margin-bottom: var(--size-40);
    }
}
.inner-small-banner .breadcrumb .layui-breadcrumb a{
    color: #fff !important;
}
.inner-small-banner .layui-breadcrumb span[lay-separator] {
    color: #fff;
}
/* .inner-small-banner .inner-banner-text .title{
    margin-bottom: var(--size-20);
} */
@media screen and (max-width: 1440px) {
    .inner-small-banner {
        padding-top: 105px;
    }
}
@media screen and (max-width: 991px) {
    .inner-small-banner {
        padding-top: 75px;
    }
}
.no-banner-body header {
    background: var(--color-text-primary);
}
.no-banner{
    min-height: unset;
}
.no-banner .inner-banner-text{
    width: 100%;
    color: var(--color-secondary);
    padding: var(--size-48) 0;
}
.inner-banner>*{
    position: relative;
    z-index: 2;
}
.index-logo {
    display: none;
}
.inner-logo {
    display: block;
}
/* .inner-container .index-logo {
    display: none;
}
.inner-container .inner-logo {
    display: block;
} */
.inner-banner-text .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 83.38%;
    position: relative;
}
@media screen and (max-width: 991px) {
    .article-banner{
        min-height: 240px;
    }
    .inner-banner {
        max-height: calc(100vh - 75px);
    }
}
@media screen and (max-width: 767px) {
    .inner-banner {
        height: 120vw;
    }
}
.inner-container header .language-btn a{
    color: inherit;
}
/* inner-banner-text */
.inner-banner-text{
    display: flex;
    align-items: center;
    color: var(--color-text-primary);
    padding-bottom: 7.1875vw;
}
.detail-inner-banner .inner-banner-text{
    padding-bottom: var(--size-60);
}
.detail-inner-banner .detail-inner-title{
    position: relative;
}
.inner-banner-text.search-inner-banner{
    padding-bottom: 0;
}
.about-link.apply-button {
    background-color: var(--color-third);
}
@keyframes slideToRight {
    0% {
        width: 0;
    }

    100% {
        width: 7.24vw;
    }
}
.detail-inner-banner .inner-banner-text .title{
    margin-bottom: 0;
}


.inner-banner-text .title{
    font-weight: 600;
    /* margin-bottom: calc(var(--size-40) + 80px); */
    margin-bottom: var(--size-40);
}
.detail-banner  .inner-banner-text .title{
    font-weight: 600;
    margin-bottom: calc(var(--size-40) + 80px);
}
@media screen and (max-width:992px){
    .detail-banner .inner-banner-text .title{
        margin-bottom: calc(var(--size-40) + 60px) !important;
    }
}
.partner-detail-container .header .right {
    color: #fff;
}
.inner-banner-text .desc{
    /* opacity: .8; */
}
.inner-banner-text hr{
    margin: var(--size-40) 0;
    width: 0;
    transition: all .9s;
}
.inner-banner-text hr.show{
        width: 100%;
}
.inner-banner-text .text-box {
    padding: var(--size-60) 0 var(--size-36);
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inner-banner-text  .breadcrumb+.text-box{
    padding-top: var(--size-12);
}
.inner-banner-text .text-box>* {
    position: relative;
}
.inner-banner-text .text-box.has-border{
    border-bottom: var(--size-1) solid var(--border-color);
}
.inner-banner-text .text-box.has-primary-border{
    border-bottom: var(--size-6) solid var(--color-primary);
    margin-bottom: var(--size-60);
}
.inner-banner-text .text-box .bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}
.inner-banner-text .text-box .title_en {
    font-style: italic;
}

.inner-banner-text .text-box .mce-content-body {
    margin-top: var(--size-36);
    line-height: 1.5;
}

.inner-banner-text .slide-down {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    transition: all .3s ease-in-out;
    position: relative;
    margin-bottom: var(--size-24);
}
.inner-banner-text .slide-down:hover{
    background-color: var(--color-primary);
}

.inner-banner-text .slide-down:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/circle-mark.png) center center no-repeat;
    background-size: 100% 100%;
    -webkit-animation: rotate 4s linear infinite;
    -o-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}

.inner-banner-text .slide-down:hover:before {
    animation-play-state: paused;
}

.inner-banner-text .slide-down i {
    display: block;
    position: relative;
    /* animation: MoveUpDown .6s ease-in-out infinite; */
}

.inner-banner .inner-banner-text .text-box{
    padding: var(--size-60) 0;
}
.justify-content {
    justify-content: center;
}
.inner-banner.text-center{
    align-items: center;
    justify-content: center;
}
.inner-banner.text-center .inner-banner-text .title{
    position: relative;
    padding-bottom: var(--size-20);
}
.inner-banner.text-center .inner-banner-text .title:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: var(--size-9);
    width: 1.2em;
    background-color: var(--color-primary);
    transform: translateX(-50%);
}
.article-inner-banner {
    background-image: url(../images/bg2.jpg) !important;
    color: #fff;
}
.detail-banner {
    min-height: 24.625vw;
}
.article-inner-banner  .inner-banner-text{
    position: relative;
}

.article-inner-banner  .inner-banner-text .title {
    color: #fff;
}
.article-inner-banner .inner-banner-text:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 0;
    border: 1.041667vw solid transparent;
    border-left-width: 1.041667vw;
    border-right-width: 1.041667vw;
    border-top-width: .729167vw;
    border-bottom-width: .729167vw;
    border-top-color: #f5f9ff;
    border-left-color: #f5f9ff;
    transform: translateY(100%);
}
.subject-main .inner-banner .inner-banner-text{
    width: 100%;
    padding-bottom: 0;
}
.subject-main .inner-banner .inner-banner-text .layui-col-md7,
.subject-main .inner-banner .inner-banner-text .layui-col-md6,
.subject-main .contact-inner-banner .inner-banner-text .layui-col-md5 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
@media screen and (min-width: 992px) and (max-width:1199px){
    .subject-main .inner-banner {
        padding-top: 100px;
        padding-bottom: 50px;
    }
}
@media screen and (max-width: 992px) {
    .detail-banner{
        min-height: 200px;
    }
    .subject-main .inner-banner {
        max-height: unset;
        padding-top: 100px;
        padding-bottom: 50px;
        height: unset;
    }
    .subject-main .inner-banner .inner-banner-text .layui-col-md6:first-child,
    .subject-main .contact-inner-banner .inner-banner-text .layui-col-md5 {
        padding-bottom: 10px;
    }
    .subject-main .about-link {
        margin-top: var(--size-36);
    }
}
@media screen and (max-width: 767px) {
    .subject-main .inner-banner {
        height: unset
    }
    .subject-main .inner-banner {
        max-height: unset;
        padding-top: 70px;
    }
}
@media screen and (min-width: 992px) {
    .inner-banner-text{
        width: 50%;
    }
    .article-inner-banner  .inner-banner-text{
        width: 80%;
    }
    .subject-main .l-overflow {
        width: 90%;
    }
    .subject-main .contact-inner-banner .l-overflow {
        width: 100%;
    }
    

}

.subject-bg {
    position: absolute;
    height: 75vw;
    width: 100%;
    top: 13.54vw;
    left: 0;
    right: 0;
    background-image: url(../images/bg.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

@media screen and (max-width: 1199px) {
    .inner-banner-text .slide-down{
        width: 75px;
        height: 75px;
    }
}
@media screen and (max-width: 767px) {
    .inner-banner-text .title{
        margin-top: var(--size-54);
    }
    .detail-inner-banner .detail-inner-title{
        margin-top: var(--size-54);
    }
    .inner-banner .inner-banner-text .text-box{
        padding: var(--size-60) 0 var(--size-36);
    }
    .inner-banner-text .slide-down{
        width: 64px;
        height: 64px;
    }
    .detail-inner-banner .detail-inner-title::before{
        display: none;
    }
    .inner-banner-text hr.show{
        display: none;
    }
    .study-inner-banner{
        min-height: unset;
    }
    .inner-banner-text .desc{
        /* line-height: 1.3em; */
        margin-top: var(--size-15);
    }   
}
@media screen and (max-width: 567px) {
    .inner-banner-text .slide-down{
        width: 1.28rem;
        height: 1.28rem;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* inner-banner-text END */



/* digital */
.digital {
    position: relative;
    margin-top: var(--size-36);
}
.digital .keywords-list {
    position: relative;
    display: flex;
    justify-content: space-between;
}
.digital .keyword-item{
    position: relative;
}
@media screen and (min-width:1200px){
    .digital .keyword-item:not(:last-child)::before{
        content: "";
        position: absolute;
        right: -45px;
        top: 0;
        bottom: 0;
        width: var(--size-1);
        height: 100%;
        background-color: #e5eff5;
    }
}

.digital .keyword-item .count-title {
    color: var(--color-secondary);
    font-weight: 600;
}
.digital .keyword-item .keyword-title{
    color: #333;
}
@media screen and (max-width:567px){
    .digital .keywords-list{
        display: block;
    }
    .digital .keywords-list .keyword-item {
        margin-bottom: var(--size-9);
    }
}
/* digital END */

/* aftercem-block */
.aftercrm-block .index_title {
    color: var(--color-primary);
}
.aftercrm-block .center {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* aftercem-block END */
.center.layui-col-xs12 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/*.category-nav*/
.category-nav-block{
    position: relative;
}
.category-nav-block:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-1);
    border-top: var(--size-1) solid rgba(0,0,0,.1);
}
.category-nav-block .layui-container{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-nav-block .ala-filter{
    margin-left: var(--size-48);
}

.inner-banner .category-nav-block:after{
    bottom: unset;
    top: 0;
    border-top: var(--size-1) solid rgba(255, 255, 255, .2);
}

@media screen and (max-width: 767px) {
    .category-nav-block .layui-container{
        display: block;
    }
    .category-nav-block .ala-filter{
        margin-left: 0;
    }
    .category-nav{
        position: relative;
    }
    /* .category-nav:after{
        content: "";
        position: absolute;
        left: -4.166667vw;
        right: -4.166667vw;
        bottom: 0;
        height: var(--size-1);
        border-bottom: var(--size-1) solid var(--border-color);
    } */
}
/* @media screen and (max-width: 567px) {
    .category-nav:after{
        left: -.32rem;
        right: -.32rem;
    }
} */

.category-nav{
    position: relative;
}

.category-nav .swiper-slide{
    width: auto;
    position: relative;
    cursor: pointer;
    color: var(--color-primary);
    transition: color .3s ease-in-out;
}
.category-nav .swiper-slide a{
    display: block;
    padding: var(--size-20) 0;
    color: var(--color-secondary);
}
.category-nav .swiper-slide+.swiper-slide{
    margin-left: 4.16667vw;
}
.category-nav .swiper-slide:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    height: var(--size-2);
    background-color:var(--color-secondary);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.inner-small-banner .category-nav .swiper-slide.active a{
    color: var(--color-text-primary);
}
.inner-small-banner .category-nav .swiper-slide a{
    color: rgba(0, 0, 0, .7);
}
.inner-small-banner .category-nav-block:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--size-1);
    top: 0;
    border-top: var(--size-1) solid rgba(0, 0, 0, .2);
}
.inner-small-banner .category-nav .swiper-slide.active:after{
    content: none;
}
.inner-small-banner .category-nav .swiper-slide a {
    padding: var(--size-30) 0;
}
.inner-small-banner .inner-banner-text{
    width: 100%;
    padding-bottom: 0;
}
.about-small-banner .inner-banner-text{
    width: 100%;
    padding-bottom: var(--size-60);
}
.category-nav .swiper-slide.active:after{
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.category-nav .swiper-slide.active{
    color: var(--color-primary);
    font-weight: bold;
}
@media screen and (max-width: 567px) {
    .category-nav .swiper-slide+.swiper-slide{
        margin-left: .5rem;
    }
}
/* category-nav END */

/* case-swiper */
.case-swiper .swiper-container{
    overflow: visible;
}
.case-swiper .swiper-slide {
        height: auto;
}
.case-item {
    transition: all .3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.case-item:hover {
    color: var(--color-text-primary);
}
.case-item .text-box{
    flex: 1;
    border: 1px solid #F0F0F0;
    padding: var(--size-36) var(--size-18);
    transition: all .3s ease-in-out;
}
.case-item .text-box .desc {
    margin-top: var(--size-15);
    line-height: 1.8;
}
.case-item:hover {
    /* box-shadow: 20px 20px 70px 0px rgba(0,0,0,0.07); */
}
.case-item:hover .text-box {
    /* border-color: #fff; */
}
.case-item .img-box img {
    /* width: auto;
    height: auto;
    object-fit: cover; */
}
/* case-swiper END */

/* about-img */
.about-img {
    width: 100%;
    /* height: 100%; */
}
.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}
.about-img:hover img {
    transform: scale(1.05);
}
/* about-img END */
.about-desc {
    line-height: 1.8;
}
.about-desc li{
    list-style: inside;
}
.about-desc li::marker {
    color: var(--color-secondary);
}
.about-link {
    padding: var(--size-15) var(--size-36);
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: var(--size-36);
    display: inline-block;
}
.about-link a {
    color: #fff;
}
.about-link .iconfont{
    color: #fff;
    margin-right: 0;
    transition: transform .3s ease-in-out;
}
.about-link.more-link:hover .iconfont {
    color: #fff !important;
}
.more-link:hover::after {
    content: none;
}
.subject-main .about-link {
    background-color: var(--color-third);
}
.alumni-container1 .index-logo {
    display: none;
}
.alumni-container1 .inner-logo {
    display: block;
}
.alumni-container1 .subject-main .about-link,
.alumni-container1 .post-tab-bar .swiper-slide:after,
.alumni-container1 .function-item.slide-door .accordion-title span,
.alumni-container1 .subject-main .sec-menu .menu-item.active  {
    background-color: var(--color-five);
}
.alumni-container1 .post-tab-bar .swiper-slide.active .tab-item{
    color: var(--color-five);
}
.detail-container .index-logo{
    display: block;
}
.detail-container .inner-logo{
    display: none;
}
.detail-container.show-menu .inner-logo,
.detail-container.show-search .inner-logo{
    display: block;
    opacity: 0;
}
@media screen and (min-width: 992px) {
    .detail-container .header-nav .layui-nav .layui-nav-item>a {
        color: #fff;
    }
    .detail-container .header-nav .layui-nav .layui-nav-item.layui-this>a {
        /* color: var(--color-secondary); */
    }
}

.detail-container header .language-btn a.lang::before {
    background-color: #fff;
}
@media screen and (max-width: 991px) {
    .detail-container header .menu-toggle span:after, 
    .detail-container header .menu-toggle span:before,
    .detail-container header .menu-toggle .toggle-iconfont span {
        background-color: #fff;
    }
}
@media screen and (min-width:991px){
    header .header .search-btn {
        margin-left: 0;
    }
}
/* product-item */
.product-item {
    position: relative;
    height: 100%;
    padding: var(--size-72) var(--size-48);
    /* border: var(--size-1) solid var(--bg-primary); */
    text-align: center;
    transition: all .3s ease-in-out;
}


.product-item .img {
    width: var(--size-80);
    height: var(--size-80);
    margin: auto;
    position: relative;
    z-index: 3;
}
.product-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.product-item .title {
    margin-top: var(--size-18);
    color: var(--color-primary);
    font-weight: 600;
}
.product-item .desc {
    text-align: center;
    line-height: 1.8;
    color: var(--color-primary);
    margin-top: var(--size-15);
}
.product-item:hover {
    border-color: #fff;
}
.product-item::before{
    content: "";
    position: absolute;
    bottom: -2px;
    left: -1px;
    right: -1px;
    height: 0;
    background-image: url(../images/bg5.jpg);
    background-repeat: no-repeat;
    background-size: 100% 74%;
    background-position: bottom center;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.product-item:hover::before {
    height: 100%;
}

/* product-item END */

/* shool-type */
.sec-menu {
    background-color: var(--bg-secondary);
    border-radius: var(--size-48);
    padding: var(--size-12) var(--size-24);
    display: flex;
}
.sec-menu .menu-item {
    display: block;
    padding: var(--size-12) var(--size-36);
}
.sec-menu .menu-item.active {
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: var(--size-36);
}
.school-img-wrap {
    display: none;
    border-top: 1px solid var(--border-color);
    /* border-right: 1px solid var(--border-color); */
}
.school-img-wrap.show {
    display: block;
}
.school-img-wrap .img-wrap {
    position: relative;
    padding: var(--size-36);
    border-left: var(--size-1) solid var(--border-color);
    border-bottom: var(--size-1) solid var(--border-color);
    /* height: 120px; */
}
.school-img-wrap .img-wrap:hover {
    background-color: #fff;
    
}
.school-img-wrap .img-wrap::before{
    content: "";
    position: absolute;
    top: -1px;
    bottom: -1px;
    left: -1px;
    right: -1px;
    height: 0;
    background-color: #fff;
    box-shadow: 0px 2px 31px #0000001c;
    z-index: 2;
}
.school-img-wrap .img-wrap:hover::before {
    height: 101%;
}
.school-img-wrap .img {
    width: 100%;
    height: var(--size-80);
    position: relative;
    z-index: 3;
    margin: auto;
}
.school-img-wrap .img img {
    width: 100%;
    height: 100%;
    /* filter: grayscale(100%); */
    object-fit: cover;
}

.school-img-wrap .img-wrap:hover .img img{
    filter: grayscale(0);
    transition: filter 0.5s;
}
.school-img-wrap .layui-col-md3:last-child .img-wrap {
    border-right: 1px solid var(--border-color);
}
@media screen and (max-width:991px){
    .school-img-wrap .img {
        height: 65px;
    }
}

@media screen and (min-width: 1200px) {
    .school-img-wrap .layui-col-md3 {
        width: 20%;
    }
    .school-img-wrap .layui-col-md3:nth-child(5n) .img-wrap {
        border-right: 1px solid var(--border-color);
    }
}
@media screen and (min-width:992px) and (max-width:1200px){
    .school-img-wrap .layui-col-md3:nth-child(4n) .img-wrap,
    .school-img-wrap .layui-col-md3:last-child .img-wrap {
        border-right: 1px solid var(--border-color);
    }
}
@media screen and (min-width: 772px) and (max-width:992px){
    .school-img-wrap .layui-col-md3:nth-child(3n) .img-wrap,
    .school-img-wrap .layui-col-md3:last-child .img-wrap {
        border-right: 1px solid var(--border-color);
    }
}
@media screen and (max-width: 772px){
    .school-img-wrap .layui-col-md3:nth-child(2n) .img-wrap,
    .school-img-wrap .layui-col-md3:last-child .img-wrap{
        border-right: 1px solid var(--border-color);
    }
    

}
@media screen and (max-width:567px){
    .school-container .index_title {
        display: block;
    }
    .school-container .index_title .sec-menu {
        margin-top: var(--size-20);
    }
    .sec-menu .menu-item{
        padding: var(--size-12) var(--size-36);
    }
    /* .school-img-wrap .img {
        width: 120px;
        height: 45px;
    } */
}
/* shool-type END */

/* contact-list */
.contact-list {
    display: flex;
    align-items: center;
    color: var(--color-primary);
}
.contact-list .item {
    line-height: 1.6;
    position: relative;
    opacity: .6;
    margin-bottom: var(--size-12);
}

.contact-link {
    padding: var(--size-15) var(--size-36);
    background-color: var(--color-secondary);
    color: #fff;
    border-radius: var(--size-48);
}
.contact-link a {
    color: #fff;
}
.contact-link .iconfont {
    color: #fff;
    margin-right: 0;
    margin-left: var(--size-12);
}
.contact-container .layui-col-md3  {
    margin: auto;
}
@media screen and (min-width:772px){
    .contact-list .item + .item {
        margin-left: var(--size-36);
        padding-left: var(--size-36);
    }
    .contact-list .item {
        margin-bottom: 0;
    }
}
@media screen and (max-width:772px){
    .contact-list {
        display: block;
    }
    .contact-link {
        padding: var(--size-15) var(--size-36);
    }
}
/* contact-list END */

/* map-container */

/* map-wrapper */
.map-container .row-flex{
    align-items: center;
}
.map-wrapper .map-img{
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.map-wrapper .map-img img{
    width: 100%;
}
.map-wrapper .map-img .item{
    position: absolute;
    margin-left: -4px;
    margin-top: -4px;
    width: 8px;
    height: 8px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    line-height: 1.2;
    z-index: 1;
}
.map-wrapper .map-img .item:hover{
    z-index: 2;
}
.map-wrapper .map-img .item .text{
    position: absolute;
    left: 50%;
    width: 80px;
    top: 50%;
    transform: translate(-50%,6px);
    text-align: center;
    display: block;
    transition: all .3s ease-in-out;
}
.map-wrapper .map-img .item:hover .text{
    transform: translate(-50%,6px) scale(1.1);
    transform-origin: 50% 0;
}
.map-wrapper .map-img .item.is-top .text{
    transform: translate(-50%, -18px);
    text-align: center;
}
.map-wrapper .map-img .item.is-top:hover .text{
    transform: translate(-50%, -18px) scale(1.1);
    transform-origin: 50% 100%;
}
.map-wrapper .map-img .item.is-right .text{
    transform: translate(8px, -50%);
    text-align: left;
}
.map-wrapper .map-img .item.is-right:hover .text{
    transform: translate(8px, -50%) scale(1.1);
    transform-origin: 0% 50%;
}
.map-wrapper .map-img .item.is-left .text{
    right: 50%;
    left: unset;
    transform: translate(-8px, -50%);
    text-align: right;
}
.map-wrapper .map-img .item.is-left:hover .text{
    transform: translate(-8px, -50%) scale(1.1);
    transform-origin: 100% 50%;
}

.map-wrapper .map-img .item .dot{
    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%);
    width: var(--size-12);
    height: var(--size-12);
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--color-secondary);
}
.map-wrapper .map-img .item .dot:before {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background-color: rgba(184, 108, 254, .3);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}
.map-wrapper .map-img .item .dot:before{
    -webkit-animation: warn-1 1.23s ease-in-out 0s infinite;
    animation: warn-1 1.23s ease-in-out 0s infinite;
}
@media screen and (max-width: 767px) {
    .map-wrapper .map-img .item{
        width: 48px;
        height: 40px;
        font-size: 10px;
        margin-top: -20px;
        margin-left: -24px;
    }
    .map-wrapper .page-content ul li{
        font-size: inherit;
    }
}
@-webkit-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
    }
}
@-moz-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
    }
}
@-ms-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
    }
}
@-o-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
    }
}
@keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -20px;
        right: -20px;
        top: -20px;
        bottom: -20px;
    }
}
/* map-wrapper END */
.block.color_white {
    color: #fff;
}
/* map-keywords */
.map-keywords .keyword-item {
    display: flex;
    align-items: baseline;
    padding-top: var(--size-30);
    padding-bottom: var(--size-20);
    border-bottom: var(--size-1) solid var(--border-color);
}
.map-keywords .keyword-item .value {
    margin-right: var(--size-20);
    color: var(--color-secondary);
    display: flex;
    font-weight: bold;
}
.map-keywords .keyword-item .value em {
    font-size: var(--size-24);
}
.map-keywords .keyword-item .value .num{
 font-family: 'PlayDisplay';
}
/* map-keywords END */

/* top-item */
.top-item {
    display: none;
}
.top-item.on {
    display: block;
}
/* top-item END */
.scir{
    position: absolute;
    top: 10.5vw;
    left: 50%;
    transform: translateX(-50%);
    width: 50vw;
    height: 50vw;
    
    /* background: url(../images/line-circle.png) no-repeat; */
    background-size: cover;
    transition: all .6s;
}
.scir::before{
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: var(--size-1) dashed rgba(255, 255, 255, .8);
    border-radius: 50%;
    transform: rotate(0deg);
    -webkit-animation: circle 4s linear infinite;
    -o-animation: circle 4s linear infinite;
    animation: circle 4s linear infinite;
}
@keyframes circle {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
    
}
.scir li {
    position: absolute;
}
.scir li span{
    position: absolute;
    width: var(--size-12);
    height: var(--size-12);
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.scir li span:hover {
    transform: scale(1.1);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}
.scir li.on span{
    width: var(--size-15);
    height: var(--size-15);
}
.scir li:nth-child(2n) span::before{
    content: "";
    position: absolute;
    top: -8px;
    left: -8px;
    right: -8px;
    bottom: -8px;
    border-radius: 50%;
    border: var(--size-1) solid #fff;
}
.scir li:nth-child(n){
    top: 12vw;
    left: 3.1vw;
    
}
.scir li:nth-child(2n){
    top: -4px;
    left: 24.8vw;
}
.scir li:nth-child(3n){
    top: 12vw;
    left: 46.1vw;
}
.scir li.on .contant .big-num{
font-size: 250px;
line-height: 1;
color: var(--color-secondary);
}
.scir li:nth-child(1) .contant {
    position: absolute;
    right: 5vw;
    top: -8vw;
    text-align: center;
}
.scir li:nth-child(2) .contant {
    position: absolute;
    right: -6vw;
    top: 3vw;
    text-align: center;
}

.scir li:nth-child(3) .contant {
    position: absolute;
    left: 5vw;
    top: -8vw;
    text-align: center;
}
.spotlight-swiper .contant .name-en {
    text-transform: uppercase;
    margin-bottom: var(--size-6);
}
.spotlight-swiper .swiper-slide-active .contant .big-num{
    color: var(--color-secondary);
}
.big-num {
    font-weight: 800;
    font-size: 200px;
    line-height: 1;
    overflow: hidden;
}

.desc {
    line-height: 1.8;
}


/* development-list */
.development-list{
    margin-top: 50px;
}
.development-list .layui-timeline-item{
    padding-bottom: 40px;
}
.development-list .layui-timeline-item:last-child{
    padding-bottom: 0;
}
.development-list .layui-timeline-item .layui-timeline-axis{
    /* background-color: var(--color-secondary); */
    color: var(--color-secondary);
    
}
.development-list .layui-timeline-item .layui-timeline-axis::before{
    content: "";
    position: absolute;
    top: 6px;
    left: 6px;
    right: 6px;
    bottom: 6px;
    background-color: var(--color-secondary);
    border: var(--size-1) solid var(--color-secondary);
    border-radius: 50%;
}
.development-list .layui-text ul{
    padding-left: 0;
}
.development-list .layui-text ul li{
    list-style: none;
}
.development-list .layui-timeline-title{
    font-size: var(--size-36);
    font-weight: 500;
    
}
.development-list .layui-timeline-item:nth-of-type(odd) .item-body::before{
    background-position: left top;
    transform: rotate(0deg);
}
.development-list .item-body::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/about-bg-4.jpg);
    /* background-position: right top; */
    background-size: 26.28% auto;
    background-repeat: no-repeat;
    transform: rotateY(180deg);
    transform-origin: center center;
}
.development-list .item-body{
    display: block;
    background-color: #f8f8ff;
    padding: var(--size-24);
    margin-top: var(--size-15);
    position: relative;
    max-width: 500px;
}
@media screen and (min-width:1900px){
    .development-list .item-body{
        max-width: 80%;
    }
    .spotlight-swiper {
        margin-bottom: -1vw;
        padding-top: 2vw;
    }
}
.development-list .layui-timeline .layui-timeline-item:after {
    content: none !important;
}
.development-list .item-body:after{
    content: "";
    position: absolute;
    left: 15px;
    border: 10px solid transparent;
    border-bottom: 10px solid #f8f8ff;
    top: -20px;
}
.development-list .layui-timeline-item:nth-of-type(odd) .page-content ul li::before {
    right: 0;
}
.development-list .layui-timeline .layui-timeline-item:before {
    width: var(--size-2);
    background-color: #f0f0f0;
}
.development-list .item-body .page-content li::before{
    content: "";
    position: absolute;
    left: 0;
    /* top: 50%;
    transform:translateY(-50%); */
    margin-top: 8px;
    background-color: #BBBBBB;
    width: 6px;
    height: 6px;
    border-radius: 50%;

}
.development-list .layui-timeline-item .layui-timeline-content{
    display: flex;
    flex-direction: column;
}
.development-list .item-body .month{
    display: inline-block;
    padding: var(--size-6) var(--size-20);
    color: #fff;
    background: var(--color-text-bg);
    border-radius: 2px;
    margin-bottom: 18px;
}
.development-list .page-content ul li{
    padding-left: 18px;
    margin-top: 0;
    margin-bottom: 8px;
    line-height: 1.8;
    position: relative;
    color: #7B7B7B;
}
.development-list .page-content ul li:last-child,
.development-list .page-content>*:last-child{
    margin-bottom: 0;
}

.development-list .today-item{
    width: 50%;
    position: relative;
    left: 50%;
    display: flex;
    align-items: center;
    padding-bottom: 90px;
}
.development-list .today-item:before{
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    z-index: 0;
    width: var(--size-2);
    height: 100%;
    background-color: #f0f0f0;
}
.development-list .today-item .icon-box{
    width: 60px;
    height: 60px;
    position: relative;
    border-radius: 60px;
    line-height: 60px;
    text-align: center;
    color: #fff;
    background: linear-gradient(85.95deg, rgba(27, 21, 52, 1) 2.75%, rgba(138, 1, 228, 1) 113.44%);
    margin-right: 30px;
    margin-left: -30px;
}
.development-list .today-item .icon-box>*{
    position: relative;
}
.development-list .today-item .icon-box:before{
    content: "";
    position: absolute;
    left: -8px;
    right: -8px;
    top: -8px;
    bottom: -8px;
    background: linear-gradient(162.54deg, rgba(27, 21, 52, 1) 8.29%, rgba(138, 1, 228, 1) 80.13%);
    opacity: 0.18;
    border-radius: 50%;
}
.development-list .today-item .icon-box:after {
    content: "";
    position: absolute;
    left: -16px;
    right: -16px;
    top: -16px;
    bottom: -16px;
    background: linear-gradient(85.95deg, rgba(27, 21, 52, 1) 2.75%, rgba(138, 1, 228, 1) 113.44%);
    opacity: 0.04;
    border-radius: 50%;
}
.development-list .today-item .title{
    color: var(--color-primary);
    background: var(--color-text-bg);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    line-height: 1.3;
    font-weight: 600;
}
@media screen and (min-width: 992px) {
    .development-list .layui-timeline-item:nth-of-type(even):before{
        left: 0ch;
    }
    .development-list .layui-timeline-item:nth-of-type(odd):before{
        right: -0.2ch;
        left: unset;
    }
    .development-list .layui-timeline-item{
        width: 50%;
        position: relative;
    }
    .development-list .layui-timeline-item:nth-of-type(even){
        left: 50%;
    }
    .development-list .layui-timeline-item:nth-of-type(even) .layui-timeline-axis{
        left: -10px;
    }
    
    .development-list .layui-timeline-item:nth-of-type(odd){
        text-align: right;
    }

    .development-list .layui-timeline-item:nth-of-type(odd) .layui-timeline-content{
        padding-left: 0;
        padding-right: 25px;
    }
    .development-list .layui-timeline-item .layui-timeline-content {
        padding-left: 25px;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .layui-timeline-axis{
        left: unset;
        right: -10px;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .item-body:after{
        left: unset;
        right: 15px;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .layui-timeline-content{
        align-items: flex-end;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .page-content ul li{
        padding-left: 0;
        padding-right: 18px;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .page-content ul li::before{
        left: unset;
        right: .16em;
    }
}
@media screen and (max-width: 991px) {
    .development-list .today-item{
        display: none;
    }
    .development-list .item-body{
        max-width: 100%;
    }
    .development-list .layui-timeline .layui-timeline-title, 
    .development-list  .layui-timeline .timeline-content {
        margin-top: -4px;
    }
    .layui-timeline .layui-timeline-item .layui-timeline-content {
        padding-left: 25px;
    }
    .layui-timeline .layui-timeline-item:before {
        left: 5px;
    }
    .development-list .layui-timeline-item:nth-of-type(odd) .item-body::before {
        background-position: unset;
        transform: rotateY(180deg);
        transform-origin: center center;
    }

}
/* development-list END */

.history-block {
    background-image: url(../images/about-bg-5.jpg);
    background-position: right top;
    background-size: 40.625% auto;
}

/* sec-menu-wrap */
.sec-menu-wrap {
    position: relative;
    margin-top: -24px;
    text-align: center;
}
.sec-menu-wrap .sec-menu {
    display: inline-flex;
}
/* sec-menu-wrap END */
.layui-table-page .layui-laypage .layui-laypage-prev, 
.layui-laypage .layui-laypage-prev, 
.layui-table-page .layui-laypage .layui-laypage-next, 
.layui-laypage .layui-laypage-next {
    background-color: unset;
}
.layui-laypage .layui-laypage-curr .layui-laypage-em {
    border-radius: 50%;
}
.layui-laypage a,
.layui-laypage span{
    border: none;
}
.case-list .case-item .text-box{
    color: var(--color-primary);
}
.case-list .case-item .title {
    font-weight: 600;
}
.color_inherit ,
.color_inherit .breadcrumb .layui-breadcrumb a,
.color_inherit .layui-breadcrumb span[lay-separator]{
    color: initial !important;
}
.lab-container .subject-main .about-link,
.lab-container .function-item.slide-door .accordion-title span {
    background-color: var(--color-four);
}
/* event-container */
.event-container {
   position: relative;
   margin-left: -5.208333vw;
}
.search-wrap {
    margin-bottom: var(--size-40);
}
.search-wrap .layui-input {
    background-color: #fff;
    border-color: var(--color-text-primary);
    padding-right: 30px;
}
.search-wrap .search-box {
    position: relative;
    display: block;
    flex: 1;
}
.search-wrap .clear-btn {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    color: var(--color-text-primary);
    display: none;
    font-weight: 600;
}
.search-wrap .text span {
    cursor: pointer;
}
.search-wrap .text span:hover {
    color: var(--color-secondary);
}
.search-block {
    padding: 3.25vw 0;
}
.search-block .total {
    color: #5E5E5E;
    padding-bottom: var(--size-30);
}
.search-block .event-content {
    margin-top: 0;
}

.event-container {
    flex: 1;
    background-color: #fff;
    padding: var(--size-48);
    margin-top: calc(-3.75vw - 80px);
}
.event-container .title {
    font-weight: 600;
    padding-bottom: var(--size-36);
}
.event-content-right {
    margin-left: var(--size-20);
    /* width: 24.53125vw; */
    position: sticky;
    position: -webkit-sticky;
    /* margin-top: -3.75vw; */
    top: 0px;
    transition: all .3s ease-in-out;
}
.event-content-right .side-item {
    background-color: #F8F8FF;
    padding: var(--size-30);
}
.event-content-right .side-item .info {
    margin-bottom: var(--size-100);
}
.event-content-right .side-item .info p{
    margin-bottom: var(--size-9);
    color: #6E747E;
}
.event-content-right .side-item .info p a{
    color: #6E747E;
}
.event-content-right .side-item .info p a:hover {
    color: var(--color-secondary);
}
.event-content-right .side-head {
    padding-bottom: var(--size-20);
    margin-bottom: var(--size-24);
    font-weight: 600;
    border-bottom: var(--size-1) solid var(--border-color);
}
.event-detail-block {
    overflow: visible;
}
.event-content .img {
text-align: center;
}
.event-content .img img {
    max-width: 40.625vw;
    width: 100%;
    margin: auto;
    
}
@media screen and (max-width: 1440px) {
    .event-content-right {
        /* width: 270px; */
    }
}

@media screen and (max-width: 991px) {
    .event-container {
        display: block;
    }
    .event-content .img img {
        max-width: 100%;
    }
    .event-content-right {
        margin-left: 0;
        display: block;
        width: 100%;
        margin-top: var(--size-48);
    }
}


/* event-container END */

.post-tab-content {
    display: none;
    margin-top: var(--size-24);
}
.post-tab-content.show {
    display: block;
}
.post-tab-bar .swiper-slide,
.index-tab-bar .swiper-slide {
    width: unset;
    margin-right: var(--size-64);
    display: flex;
    align-items: flex-end;
}
.post-tab-bar .swiper-slide .tab-item,
.index-tab-bar .swiper-slide .tab-item {
    line-height: 1em;
    cursor: pointer;
    position: relative;
    transition: all .3s;
    display: block;
    padding-bottom: 16px;
}
.post-tab-bar .swiper-slide:after,
.index-tab-bar .swiper-slide:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-4);
    background-color: var(--color-four);
    -webkit-transform: scaleX(0);
    -ms-transform: scaleX(0);
    -o-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.post-tab-bar .swiper-slide.active:after,
.index-tab-bar .swiper-slide.active:after {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    -o-transform: scaleX(1);
    transform: scaleX(1);
}
.post-tab-bar .swiper-slide.active .tab-item,
.index-tab-bar .swiper-slide.active .tab-item {
    color: var(--color-four);
}

.post-tab-bar .swiper-container,
.index-tab-bar .swiper-container {
    border-bottom: 1px solid #CCC;
    position: relative;
}
.post-tab-bar .swiper-container::before,
.index-tab-bar .swiper-container::before{
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    height: 100%;
    width: 20%;
    z-index: 1;
    background: linear-gradient( 270deg, #F2FDFF 0%, rgba(242,253,255,0) 100%);
}
.text-center {
    text-align: center;
}
.subject-main .sec-menu .menu-item.active {
    background-color: var(--color-four);
}
@media screen and (max-width:992px){
    .school-container .index_title {
        display: block;
        
    }
    .school-container .sec-menu {
        margin-top: var(--size-18);
    }
}
@media screen  and (max-width:567px){
    .school-container .sec-menu{
        padding: var(--size-12);
        justify-content: space-between;
    }
    .school-container .sec-menu .menu-item  {
        padding: var(--size-6) var(--size-18);
    }
}
/* function-wrap */
.function-wrap {
    display: none;
}
.function-wrap.show{
    display: block;
}
.function-list {
    max-height: 35.8vw;
    overflow: hidden;
}
.function-list .mCSB_scrollTools .mCSB_draggerRail{
    background-color: rgba(0,0,0,0.1);
    width: 4px;
}
@media screen and (max-width: 991px) {
    .function-list {
        max-height: unset;
    }
}
.function-item {
    position: relative;
    transition: all .3s ease-in-out;
}
.function-item  .accordion-content .desc {
    margin-left: 3em;
}
.function-list{
    border-bottom: var(--size-1) solid var(--border-color);
}

.function-item+.function-item {
    margin-top: 0;
}
.function-item.slide-door .accordion-title:before {
    content: none;
}
.function-item.slide-door .accordion-title {
    display: flex;
    align-items: center;
}
.function-item.slide-door .accordion-title span {
    width: var(--size-36);
    height: var(--size-36);
    border-radius: 50%;
    background-color: var(--color-third);
    line-height: var(--size-36);
    text-align: center;
    color: #fff;
    margin-right: var(--size-20);
}
.function-item .text .title {
    color: var(--color-text-primary);
    font-weight: 600;
    position: relative;
}
.function-item .text{
    color: #5E5E5E;
}
/* function-wrap END */
.alumni-container .subject-main .about-link,
.donation-container .subject-main .about-link{
    background-color: var(--color-five);
}
.alumni-container .post-tab-bar .swiper-slide.active .tab-item,
.alumni-container .index-tab-bar .swiper-slide.active .tab-item{
    color: var(--color-five);
}
.alumni-container .post-tab-bar .swiper-slide:after,
.alumni-container .index-tab-bar .swiper-slide:after{
    background-color: var(--color-five);
}
.alumni-container .post-tab-bar .swiper-container::before,
.alumni-container .index-tab-bar .swiper-container::before{
    content: none;
}

.alumni-tags {
    position: relative;
    display: flex;
    align-items: center;
    margin-top: var(--size-36);
}
.alumni-tags .tag{
    display: block;
    padding: var(--size-12) var(--size-20);
    border-radius: var(--size-40);
    background-color: rgba(65, 65, 65, 0.1);
    margin-right: var(--size-12);
    font-weight: 600;
}
@media screen and (max-width:567px){
    .alumni-tags {
        display: block;
    }
    .alumni-tags .tag {
        margin-bottom: var(--size-12);
    }
}

.index-tab-content{
    display: none;
    margin-top: var(--size-24);
}
.index-tab-content.show{
    display: block;
}

/* alumni-net-wrap */
.alumni-net-wrap {
    position: relative;
    margin: 0 auto;
}
.alumni-net-wrap img {
    width: 100%;
}
.alumni-net-wrap .item {
    position: absolute;
    padding: var(--size-36) var(--size-24);
    background-color: #fff;
    box-shadow: 0px 17px 31px -7px rgba(42,28,29,0.19);
    border-radius: 8px;
    z-index: 1;
    display: flex;
    opacity: 0.8;
    transform: scale(1);
    transition: all .3s ease-in-out;
}
.alumni-net-wrap .item:hover,
.alumni-net-wrap .item.active {
    opacity: 1;
    background-color: var(--color-five);
    color: #fff;
    transform: scale(1.1);
    transition: all .3s ease-in-out;
    z-index: 6;
    
}
.alumni-net-wrap .item:hover{
    z-index: 8;
    transition: all .3s ease-in-out;
}
.alumni-net-wrap .item:hover i,
.alumni-net-wrap .item.active i {
    color: #fff !important;
}
/* 
.alumni-net-wrap .item::after{
    content: "";
    position: absolute;
    opacity: 0;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background-color: rgba(200, 22, 30, 0.1);
    border-radius: 50%;
    -webkit-animation: warn-1 1.23s ease-in-out 0s infinite;
    animation: warn-1 1.23s ease-in-out 0s infinite;
} */
.alumni-net-wrap .item .dot-img {
    width: var(--size-80);
    height: var(--size-80);
}
.alumni-net-wrap .item .dot-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.alumni-net-wrap .item .right {
    margin-left: var(--size-24);
}
.alumni-net-wrap .item .right .bottom {
    padding-top: var(--size-15);
} 
.alumni-net-wrap .item .right .bottom .sub-item {
    display: flex;
    align-items: center;
    padding-top: var(--size-9);
}
.alumni-net-wrap .item .right .bottom .sub-item span+span {
    margin-left: var(--size-20);
}
.alumni-net-wrap .item .right .bottom .sub-item i {
    color: var(--color-five);
}
.sub-item i.grey{
    opacity: 0.3;
}
@media screen and (max-width:1200px){
    .alumni-net-wrap .item .dot-img {
        width: var(--size-60);
        height: var(--size-60);
    }
}
@media screen and (max-width: 992px){
    .alumni-net-wrap .item .dot-img {
        width: var(--size-60);
        height: var(--size-60);
    }
    .alumni-net-wrap .item .right .bottom .sub-item span {
        display: block;
    }
    .alumni-net-wrap .item .right .bottom .sub-item:first-child {
        display: block;
    }
    .alumni-net-wrap .item .right .bottom .sub-item span+span {
        margin-left: 0;
        margin-top: 6px;
    }
    .alumni-net-wrap .item:nth-child(3) {
        left: 34.95% !important;
    } 
    .alumni-net-wrap .item:nth-child(4) {
        left: 61.95% !important;  
    }
    .alumni-net-wrap .item {
        padding: var(--size-18);
    }
}
@media screen and (max-width:772px){
    .alumni-net-wrap .item .dot-img {
        width: var(--size-48);
        height: var(--size-48);
    }
    .alumni-net-wrap .item .right .fnt24 {
        font-size: 16px;
    } 
    .alumni-net-wrap .item .right .fnt20 {
        font-size: 14px;
    }
    .alumni-net-wrap .item .right {
        margin-left: 6px;
    }
    .donation-block {
        overflow: visible;
        padding-bottom: 100px;
    }
    .alumni-net-wrap .item .right .bottom .sub-item {
        /* display: block; */
    }
    .alumni-net-wrap .item {
        padding: var(--size-9);
    }
}
@media screen and (max-width:567px){
    .alumni-net-wrap .item:nth-child(4) {
        left: 46.95% !important;  
    }
    .donation-block .alumni-net-wrap {
        margin: 0 -.32rem;
    }
    .alumni-net-wrap .item:nth-child(2) {
        left: 15px !important;  
    }
}
/* alumni-net-wrap END */
.inner-banner-text .img-wrap .icon-item {
    position: absolute;
    width: var(--size-100);
    height: auto;
}
.inner-banner-text .img-wrap .icon-item.icon1 {
    bottom: 8%;
    right: 13%;
    animation: icon1 2s linear infinite;
}
.inner-banner-text .img-wrap .icon-item.icon2 {
    top: 58%;
    left: 15%;
    animation: icon2 2s linear infinite;
}
.inner-banner-text .img-wrap .icon-item.icon3 {
    top: 41%;
    left: 3%;
    animation: icon2 2s linear infinite;
}
.inner-banner-text .img-wrap .icon-item.icon4 {
    top: 20%;
    left: 6%;
    animation: icon2 2s linear infinite;
}
.inner-banner-text .img-wrap .icon-item.icon5 {
    top: 3%;
    left: 16%;
    animation: icon2 2s linear infinite;
}
@media screen and (max-width:567px){
    .inner-banner-text .img-wrap .icon-item {
        width: var(--size-64);
    }
}
@keyframes icon1 {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(8px);
    }
    100% {
        transform: translateY(0);
    }
}
@keyframes icon2 {
    0% {
        transform: translateY(8px);
    }
    50% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(8px);
    }
}
.donation-container .inner-banner-text .img-box {
    padding-bottom: 62.39%;
}
.contact-inner-banner .inner-banner-text .img-box{
    padding-bottom: 68.38%;
}
 .subject-main .contact-inner-banner .about-link{
    background-color: var(--color-secondary);
}
.contact-info {
    position: relative;
}
.contact-info p{
    margin-bottom: var(--size-18);
    color: #657EA0;
}
.contact-info p i{
    margin-right: var(--size-4);
}

/* donation-item */
.donation-item {
    position: relative;
    display: flex;
    padding: var(--size-24);
    border: var(--size-1) solid rgba(217,171,109,0.65);
    background-color: #FFFAED;
    height: 100%;
}
.donation-list .layui-col-md4:nth-child(2) .donation-item {
    border: var(--size-1) solid #F1CAE5;
    background-color: #FEF1FC;
}
.donation-list .layui-col-md4:nth-child(3) .donation-item {
    border: var(--size-1) solid #FBDFE2;
    background-color: #FCF3F4;
}
.donation-item .img {
    width: var(--size-24);
    height: fit-content;
    display: inline-block;
}
.donation-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.donation-item .text {
    flex: 1;
    margin-left: var(--size-12);
}
.donation-item .text .title {
    line-height: 1;
    margin-bottom: var(--size-20);
}
.donation-bg {
    width: 42.97875vw;
    height: auto;
    margin: auto;
    margin-top: var(--size-20);
}
.donation-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.donation-text {
    margin-top: var(--size-20);
}
.donation-text .index_title {
    margin-bottom: var(--size-12);
}
.donation-text .desc {
    width: 50%;
    text-align: center;
    margin: auto;
    color: rgba(27, 21, 52, .6);
}

@media screen and (max-width:992px){
    .donation-text .desc {
        width: 100%;
    }
     .donation-bg {
        width: 400px;
    }
}
@media screen and (max-width:772px){
    .donation-bg {
        width: 100%;
    }
}
/* donation-item END */

/* donation-inner-list */
.donation-inner-list .item {
    display: flex;
}
.donation-inner-list .item+.item {
    margin-top: var(--size-30);
}
.donation-inner-list .item img {
    width: var(--size-20);
    height: var(--size-20);
    object-fit: cover;
}
.donation-inner-list .item .text {
    flex: 1;
    margin-left: var(--size-9);
}
.donation-inner-list .item .text .name {
    font-weight: 600;
    margin-bottom: var(--size-4);
    line-height: 1;
}
/* donation-inner-list END */
/* donation-process-wrap */
.donation-process-wrap {
    width: 90%;
    text-align: center;
    margin: auto;
}
.donation-progress-list {
    position: relative;
}
.donation-progress-list .item {
    text-align: center;
}
.donation-progress-list .item .name{
    color: var(--color-five);
    font-weight: 600;
    margin-bottom: var(--size-4);
}
.donation-progress-list .item .desc{
    margin: auto;
    color: rgba(27, 21, 52, .6);
}
.progress-img {
    width: 100%;
    margin: auto;
}
.progress-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.mt20{
    margin-top: var(--size-20);
}
.mb20 {
    margin-bottom: var(--size-20);
}
@media screen and (max-width:772px){
    .donation-process-wrap {
        width: 100%;
    }
}
.aftercrm-container .subject-main .sec-menu .menu-item.active {
    background-color: var(--color-third);
}
/* donation-process-wrap END */
.website-container .subject-main .about-link,
.website-container .subject-main .sec-menu .menu-item.active,
.website-container .function-item.slide-door .accordion-title span{
    background-color: var(--color-six);
}
.website-container .block .layui-col-md6 {
    display: flex;
    flex-direction: column;
    justify-content: center;
}
/* special-item */
.special-item {
    position: relative;
    height: 100%;
    background-color: #fff;
    /* background: linear-gradient( 180deg, #FFFAFA 0%, #FFFFFF 100%), #FFFFFF; */
    padding: var(--size-24);
    /* border-radius: 18px; */
    /* box-shadow: 0px 10px 43px -4px rgba(78,3,3,0.07); */
    /* border: 1px solid rgba(51,206,139,0.09); */
    transition: all .3s ease-in-out;
}
/* .special-item:hover {
    box-shadow: 20px 20px 70px 0px rgba(0,0,0,0.1);
} */
.special-item .top-img {
    width: var(--size-60);
    height: var(--size-60);
    border-radius: 12px;
    background-color: rgba(102, 221, 190, .2);
    padding-bottom: var(--size-15);
    line-height: var(--size-60);
    text-align: center;
    margin-right: var(--size-24);
}
.special-item .top-img img {
    width: var(--size-32);
    height: auto;
    object-fit: cover;
}
.special-item .title {
    font-weight: 600;
}
.special-item .desc {
    padding: var(--size-24) 0;
}
.special-item .bottom-img {
    width: 100%;
}
/* special-item END */
/* spotlight-swiper */
.spotlight-swiper {
    margin-bottom: -11vw;
    padding-top: 11vw;
}
.spotlight-swiper .contant {
    width: fit-content;
    text-align: center;
} 
.spotlight-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;
    cursor: pointer;
    transition: all 0.3s ease;
}

.spotlight-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;
    display: flex;
    justify-content: center;
    opacity: 1;
}

.spotlight-swiper .swiper-slide-visible {
    opacity: 1;
    z-index: 2;
}

.spotlight-swiper .swiper-slide-prev{
    -webkit-transform: scale(.75) translateX(0%);
    -ms-transform: scale(.75) translateX(0%);
    -o-transform: scale(.75) translateX(0%);
    transform: scale(.75) translateX(0%);
    display: flex;
    justify-content: left;
    /* opacity: .75; */
}
.spotlight-swiper .swiper-slide-next{
    -webkit-transform: scale(.75) translateX(0%);
    -ms-transform: scale(.75) translateX(0%);
    -o-transform: scale(.75) translateX(0%);
    transform: scale(.75) translateX(0%);
    display: flex;
    justify-content: end;
    /* opacity: .75; */
}
@media screen and (max-width:1200px){
    .spotlight-swiper {
        margin-bottom: -140px;
        padding-top: 100px;
    }
    .scir{
        top: 200px;
        width: 440px;
        height: 440px;
    }
}
@media screen and (max-width: 992px){ 
    .scir{
        top: 240px;
        width: 360px;
        height: 360px;
    }
}
@media screen and (max-width: 772px){ 
    .scir{
        top: 210px;
        width: 260px;
        height: 260px;
    }
    .spotlight-swiper {
        margin-bottom: -100px;
    }
    .big-num {
        font-size: 150px;
    }
}
@media screen and (max-width: 567px){ 
    .scir{
        top: 330px;
        width: 200px;
        height: 200px;
    }
    .big-num {
        margin-top: -10px;
    }
    .spotlight-swiper {
        margin-bottom: -115px;
        padding-top: 50px;
    }
    .spotlight-swiper .swiper-slide-prev,
    .spotlight-swiper .swiper-slide-next {
        -webkit-transform: scale(.65) translateX(0%);
        -ms-transform: scale(.65) translateX(0%);
        -o-transform: scale(.65) translateX(0%);
        transform: scale(.65) translateX(0%);
    }
    .spotlight-swiper .swiper-slide-active {
        -webkit-transform: scale(.95) translateX(0);
        -ms-transform: scale(.95) translateX(0);
        -o-transform: scale(.95) translateX(0);
        transform: scale(.95) translateX(0);
    }
}
@media screen and (max-width: 489px){ 
.scir {
        top: 310px;
    }
}
/* spotlight-swiper END */
/* position-icon */
.position-icon {
    position: absolute;
    top: 52%;
    right: 30.75%;
}
.position-icon img {
    width: var(--size-72);
    height: auto;
    object-fit: cover;
}
.position-icon .text {
    text-align: center;
}
@media screen and (max-width:1200px){
    .position-icon {
        top: 50%;
        right: 29.75%;
    }
}
@media screen and (max-width: 992px){
    .position-icon {
        top: 54%;
        right: 30.25%;
    }
}

@media screen and (max-width: 567px){
    .position-icon {
        top: 48%;
        right: 27.75%;
    }
    .position-icon img {
        width: var(--size-54);
    }
    .contact-inner-banner .inner-banner-text .img-box {
        padding-bottom: 74%;
    }
    .contact-inner-banner .contact-link  {
        margin-top: var(--size-18);
    }
}
/* position-icon END */

/* position-list */
.position-list .position-item {
    background-color: #F8F8FF;
    padding: var(--size-36);
    height: 100%;
}
.position-list .position-item .top{
    margin-bottom: var(--size-24);
    padding-bottom: var(--size-24);
    border-bottom: var(--size-1) solid #DAE9F1;
}
.position-list .position-item .top .title{
    margin-top: var(--size-20);
    text-align: center;
    font-weight: 600;
    color: var(--color-primary);
}
.position-list .position-item .top .img {
    margin: auto;
    width: var(--size-80);
    height: var(--size-80);
}
.position-list .position-item .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* position-list END */

/* study-container */
.study-container .subject-main .about-link,
.study-container .subject-main .sec-menu .menu-item.active,
.study-container .function-item.slide-door .accordion-title span {
    background-color: var(--color-secondary);
}
/* study-container END */


/* form-list */
.form-list {
    margin-top: var(--size-30);
}
.form-list .item{
    display: flex;
    padding-bottom: var(--size-12);
}
.form-list .item img {
    width: var(--size-54);
    height: var(--size-54);
    object-fit: contain;
}
.form-list .item .right {
    margin-left: var(--size-20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.form-list .item .right .title {
    font-weight: 600;
}
.form-list .desc{
    line-height: 1.5;
    color: var(--color-text-secondary);
}

/* form-list END */
.aftercrm-container .post-tab-bar .swiper-slide.active .tab-item{
    color: var(--color-third);
}
.aftercrm-container .post-tab-bar .swiper-slide:after {
    background-color: var(--color-third);
}


.donation-container .subject-main .sec-menu .menu-item.active,
.donation-container .function-item.slide-door .accordion-title span{
    background-color: var(--color-five);
}

/* special-desc */
.special-desc .item {
    display: flex;
    position: relative;
    align-items: baseline;
    margin-bottom: var(--size-20);

}
.special-desc .item img {
    width: var(--size-24);
    height: auto;
    object-fit: contain;
    margin-right: var(--size-12);
}
.special-desc .item .right .title{
    margin-bottom: var(--size-6);
    color: #1B1534;
    font-weight: 600;
}

/* special-desc END */

/* highlight-item */

@media screen and (min-width: 992px) {
    .highlight-list .layui-col-md2 {
        width: 20%;
    }
}

.highlight-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}

.highlight-list .layui-col-md2:nth-child(2) .highlight-item,
.highlight-list .layui-col-md2:nth-child(4) .highlight-item {
    flex-direction: column-reverse;
}

.highlight-item img {
    width: 6.25vw;
    min-width: 100px;
    height: auto;
    object-fit: contain;
}

.highlight-item .text-box {
    margin-top: var(--size-20);
    text-align: center;
}
.highlight-list .layui-col-md2:nth-child(2) .highlight-item .text-box,
.highlight-list .layui-col-md2:nth-child(4) .highlight-item .text-box{
    margin-bottom: var(--size-20);
}
.highlight-item .text-box .title {
    color: var(--color-six);
    font-weight: 600;
    margin-bottom: var(--size-9);
}
.highlight-item .img-nohover {
    display: block;
    transition: all .3s ease-in-out;
}
.highlight-item .img-hover {
    display: none;
    transition: all .3s ease-in-out;
}

.highlight-item:hover .img-hover {
    display: block;
}
.highlight-item:hover .img-nohover {
    display: none;
}
@media screen and (max-width:772px){
    .highlight-item img {
        min-width: 80px;
    }
    .highlight-list .layui-col-md2:nth-child(2) .highlight-item .text-box,
    .highlight-list .layui-col-md2:nth-child(4) .highlight-item .text-box{
        margin-top: var(--size-20);
    }
    .highlight-list .layui-col-md2:nth-child(2) .highlight-item,
    .highlight-list .layui-col-md2:nth-child(4) .highlight-item {
        flex-direction: column;
    }
}
/* highlight-item END */
.about-block {
    background-image: url(../images/bg2.png);
    background-position: right top;
    background-size: 38.59375% auto;
}

/* slide-card */
.slide-card {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.slide-card .img-box.img-box-post {
   padding-bottom: 135%;
}

.slide-card::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 100%;
    opacity: 0;
    background: linear-gradient( 180deg, #8A01E4 0%, #1B1534 100%);
    transition: all .3s ease-in-out;
    z-index: 2;
}
.slide-card:hover::after {
    opacity: 1;
}
.slide-card .text-box {
    position: fixed;
    display: block;
    transition: all .3s ease-in-out;
    padding: var(--size-32);
    left: 0;
    right: 0;
    bottom: -6.5em;
    z-index: 9;
    width: 100%;
    box-sizing: border-box;

}
.index_title.center {
    text-align: center;
}
@media screen and (min-width:991px){
    .w800{
        width: 80%;
        margin: auto;
    }
     .w600{
        width: 60%;
        margin: auto;
    }
}
.desc.mt20 {
    padding-top: var(--size-20);
    color: rgba(27, 21, 52, .6);
}
/* .slide-card .text-box img, */
.slide-card .text-box .desc {
    opacity: 0;
    /* height: 0; */
    /* display: none; */
    transition: all .3s ease-in-out;
} 
.slide-card .text-box img {
    width: var(--size-64);
    height: auto;
    object-fit: contain;
}

.slide-card:hover .text-box {
    bottom: 0;
    color: #fff;
    z-index: 3;
}
.slide-card:hover .text-box img,
.slide-card:hover .text-box .desc {
    opacity: 1;
   /* height: 100%; */

}
.slide-card .text-box img {
    padding-bottom: var(--size-36);
}
.slide-card .text-box  .title,
.slide-card .text-box {
    color: #fff;
}
@media screen and (max-width:567px){
    .slide-card .text-box {
         bottom: 0;
        z-index: 10;

    }
   
    .slide-card .text-box .desc {
        opacity: 1;
        z-index: 10;
        position: relative;
    }
    .slide-card:hover::after {
        opacity: 0;
    }
}
/* slide-card END */
.swiper-btn {
    display: flex;
    align-items: center;
    margin-top: 3.125vw;
}
.swiper-btn .swiper-pagination {
    position: static;
    width: unset;
    /* display: inline-flex
; */
    align-items: center;
    padding: 0 var(--size-18);
}
.swiper-btn-wrapper .swiper-pagination {
    position: unset;
    flex: 1;
    margin-right: var(--size-45);
}
.swiper-btn-wrapper .swiper-pagination-progressbar {
    height: var(--size-6);
    border-radius: var(--size-6);
    overflow: hidden;
}
.swiper-btn-wrapper .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
    background-color: var(--color-secondary);
    height: var(--size-6);
    border-radius: var(--size-6) !important;
}

/* us-item */

.us-item {
    position: relative;
    padding: var(--size-36);
    background-color: rgba(242, 242, 242, .6);
    border-radius: var(--size-6);
}
.us-item i {
    color: var(--color-secondary);
    margin-right: var(--size-9);
}
.us-item .item+.item {
    margin-top: var(--size-12);
}
.us-item .desc {
    line-height: 1.6;
}
.us-item .title {
    padding-bottom: var(--size-15);
    color: #1B1534;
    font-weight: 600;
}
.us-item+.us-item {
    margin-top: var(--size-24);
}
/* us-item END */
.wrok-inner-banner  {
    color: #fff;
    justify-content: flex-end;
    padding-bottom: 3em;
}

@media screen and (min-width:991px){
    .wrok-inner-banner .l-overflow {
        width: 50%;
    }
}
.wrok-inner-banner .inner-banner-text .title {
    margin-bottom: var(--size-48);
}
.work-list .item{
    padding: var(--size-30);
    background-color: #fff;
    height: 100%;
    /* box-shadow: 0px 10px 43px -4px rgba(78,3,3,0.07); */
    transition: all .3s ease-in-out;
}
.work-list .item:hover {
    /* box-shadow: 20px 20px 70px 0px rgba(0,0,0,0.1); */
}
.work-list .item .title img{
    width: var(--size-64);
    height: var(--size-64);
    object-fit: contain;
    margin-right: var(--size-20);
}

.work-list .item .title span {
    color: #1B1534;
    font-weight: 600;
}
.color-p {
    background-color: var(--color-secondary) !important;
}


/* section-list */
.section-list .item {
    height: 100%;
    position: relative;
    padding: var(--size-30);
    background-color: #fff;
    /* background: linear-gradient( 180deg, #FFFAFA 0%, #FFFFFF 100%), #FFFFFF; */
    transition: all .3s ease-in-out;
}

.section-list .item .top{
    margin-bottom: var(--size-20);
}
.section-list .item .title {
    margin-left: var(--size-24);
    color: #1B1534;
    font-weight: 600;
}
.section-list .item img {
    width: var(--size-64);
    height: var(--size-64);
    object-fit: contain;
}
/* section-list END */

/* method-item */
.method-item {
    padding: 24px;
    height: 100%;
    background-color: #fff;
    padding-bottom: 40px !important;
    z-index: 1;
    /* box-shadow: 0px 10px 43px -4px rgba(78, 3, 3, 0.07); */
    transition: all .3s ease-in-out;
}
.method-item:hover {
    /* box-shadow: 20px 20px 70px 0px rgba(0, 0, 0, 0.1); */
}
.method-item  .method-item>*{
    position: relative;
    z-index: 8;
}
.method-item  .index_title .color_white h2::before {
    background: #fff;
}

.mt60 {
    margin-top: var(--size-60);
}
.method-item  .top .img{
    width: 4.0625vw;
    height: 4.0625vw;
    margin: -50px auto 0;
    text-align: center;
}
.method-item  .top .img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.method-item .top .title{
    font-weight: bold;
    text-align: center;
    margin-top: var(--size-20);
}

.method-item .content .item:first-child{
    margin-top: var(--size-18);
    margin-bottom: var(--size-18);
}
.method-item .content .item{
    display: flex;
    padding-top: var(--size-24);
    margin-top: var(--size-24);
    border-top: 1px solid rgba(0,0,0,0.1);
    align-items: baseline;
}
.method-item .content .item img{
    width: 1.75vw;
    height: 1.75vw;
    top: 8px;
    position: relative;
}
.method-item .content .item .text-box {
    padding-left: var(--size-15);
}
.method-item .content .item .text-box .title{
    font-weight: 500;
    margin-bottom: var(--size-15);
}
.method-item .content .item .text-box span {
    color: #5E5E5E;
    display: block;
    margin-bottom: var(--size-9);
    line-height: 1.8;
}
@media screen and (max-width:1399px){
    .method-item .content .item img{
        width: 24px;
        height: 24px;
    }
    .method-item .top .img {
        width: 64px;
        height: 64px;
    }
    
}
@media screen and (max-width:991px){
    .method-list.mt60 .layui-col-md4{
        margin-bottom: var(--size-30);
    }
    .method-item .top .img{
        margin: -40px auto 0;
    }
}

/* method-item END */
