.main-hidden{
    overflow: hidden;
}

/* menu-toggle */
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: all .4s 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: #fff;
    position: relative;
    cursor: pointer;
}

.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;
        transform: scale(1.1);
    }

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

/* header */
header {
    background-color: transparent;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all .4s ease-in-out;
    background-color: var(--color-primary);
}
.header{
    position: relative;
    z-index: 99;
}
.header_white:not(.header-fixed) header{
    position: absolute;
    -webkit-backdrop-filter: saturate(150%) blur(5px);
    backdrop-filter: saturate(150%) blur(5px);
    background-color: rgba(0, 0, 0, .1);
}
header a {
    color: #fff;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

header .logo img {
    height: 3.25vw;
    min-height: 40px;
}

header .layui-container {
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 4.16667vw;
}
/* header .layui-container >*{
    position: relative;
    z-index: 9;
} */
header .menu-toggle{
    position: relative;
    z-index: 100001;
    display: none;
}
.header {
    transition: height .5s ease-in-out;
}

.header .layui-container {
    height: 7.291667vw;
}

.header .header-top{
    /* flex: 1; */
    height: 100%;
    padding: var(--size-15) 0 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.header .logo-stm img{
    height: var(--size-40);
    margin-left: var(--size-24);
}
.header .search-toggle{
    position: relative;
    display: inline-block;
    margin-left: var(--size-15);
}
.header .search-toggle .layui-input{
    background-color: rgba(255, 255, 255, .1);
    min-width: 100px;
    width: 6.7vw;
    border-radius: var(--size-4);
    height: var(--size-48);
    line-height: var(--size-48);
    color: #fff;
    padding-right: var(--size-48);
    border-radius: var(--size-4);
    /* border: var(--size-1) solid rgba(255, 255, 255, .3); */
    border-radius: var(--size-100);
    transition: all .5s ease-in-out;
}
.header .search-toggle .layui-input:focus{
    width: 12vw;
    min-width: 150px;
}
.header .search-toggle .layui-input::placeholder {
    color: rgba(255, 255, 255, .25);
}
.header .search-toggle .layui-input:hover,
.header .search-toggle .layui-input:focus{
    border-color: rgba(255, 255, 255, .3)!important;
    background-color: rgba(255, 255, 255, .2);
}
.header .search-toggle button{
    position: absolute;
    right: 0;
    top: 0;
    background-color: unset;
    outline: unset;
    border: unset;
}
.header .search-toggle .iconfont{
    display: block;
    width: var(--size-48);
    height: var(--size-48);
    line-height: var(--size-48);
    text-align: center;
    color: #fff;
    z-index: 9;
    cursor: pointer;
}
.header .search-toggle .iconfont:hover{
    color: #fff;
}
header .secondary-nav {
    position: relative;
    text-align: right;
    justify-content: flex-end;
}

header .secondary-nav .layui-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}
header .secondary-nav .layui-nav .layui-nav-item>a {
    cursor: pointer;
    font-size: inherit;
    padding: 0 var(--size-20);
    color: #fff;
    display: flex;
    align-items: center;
    transition: all .4s ease-in-out;
}
header .secondary-nav .layui-nav .layui-nav-item>a:before{
    content: "";
    position: absolute;
    right: 0;
    top: .25em;
    bottom: .25em;
    width: var(--size-1);
    background-color: rgba(255, 255, 255, .3);
}

header .secondary-nav .layui-nav .layui-nav-item>a img {
    width: var(--size-20);
    height: var(--size-20);
    object-fit: contain;
    margin-right: var(--size-9);
}

header .secondary-nav .layui-nav .layui-nav-more{
    display: none;
}

.headerTemp {
    height: 7.291667vw;
    display: none;
}
.header_white .headerTemp{
    height: 0!important;
    min-height: 0!important;
}
.show-menu header,
.header-fixed header{
    position: fixed;
    background: var(--color-primary)!important;
    left: 0;
    right: 0;
    top: 0;
    box-shadow: 0 0 var(--size-9) rgb(0 0 0 / 15%);
    -webkit-transition: all .4s ease-in-out;
    -o-transition: all .4s ease-in-out;
    transition: all .4s ease-in-out;
    z-index: 999;
}
.header-fixed header{
    top: 0;
    transform: translateY(-100%);
    opacity: 0;
}
.show-menu header:after,
.header-fixed header:after{
    content: unset!important;
}
.header-fixed.header-show header{
    position: fixed;
    transform: translateY(0);
    opacity: 1;
}

/* .header-fixed header .secondary-nav{
    display: none;
} */

@media screen and (max-width: 1440px) {
    .headerTemp,
    .header .layui-container{
        height: 105px;
    }
}
@media screen and (max-width: 991px) {
    .header .header-top{
        align-items: center;
        height: 100%;
        padding-top: 0;
        padding-right: calc(75px - 6.25vw);
        flex-direction: row;
    }
    header .secondary-nav{
        margin-top: 0;
    }
    header .menu-toggle{
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
    }
    .headerTemp,
    .header .layui-container{
        height: 75px;
    }
    .header-top{
        padding-right: calc(75px - 4.166667vw);
    }
    header .secondary-nav{
        padding-bottom: 0;
    }
    header .secondary-nav .layui-nav .layui-nav-item>a{
        padding: 0 var(--size-15);
    }
    .header .search-toggle .layui-input {
        min-width: 7vw;
        width: 130px;
    }
    header .logo-stm{
        display: none;
    }
}

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

    header .secondary-nav .search-toggle {
        display: none;
    }
    header .secondary-nav .hide-mobile{
        display: none;
    }
    .header_white:not(.header-fixed) header:after{
        content: unset;
    }
    header .secondary-nav .layui-nav .layui-nav-item>a{
        padding: 0 var(--size-12);
        background-color: unset;
        border: unset;
    }
}
@media screen and (max-width: 567px) {
    .header .header-top{
        padding-right: calc(75px - .32rem);
    }
    header .secondary-nav .layui-nav .layui-nav-item>a img{
        width: .4rem;
        height: .4rem;
    }
}

/* header-nav */
.header-nav {
    width: 100%;
}

.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;
        justify-content: space-between;
    }

    .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 1.40625vw;
        color: #fff;
        position: relative;
        z-index: 2;
        transition: all .4s ease-in-out;
        background-color: transparent;
        white-space: nowrap;
    }
    .header-nav .layui-nav .layui-nav-item>a>div{
        height: 1.5em;
        overflow: hidden;
        display: inline-block;
        vertical-align: middle;
    }
    .header-nav .layui-nav .layui-nav-item>a>div>span{
        display: block;
        transition: transform 0.4s;
        height: 1.5em;
        line-height: 1.5em;
    }
    .header-nav .layui-nav .layui-nav-item:hover>a>div>span {
        transform: translateY(-100%);
    }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        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: 600; */
        /* 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 .4s ease-in-out;
        transform: scaleX(0);
    }

    .header-nav .layui-nav .layui-nav-item.layui-this>a:after {
        transform: scaleX(1);
    }

    .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, .95);
        color: var(--color-primary);
        padding: 0;
        white-space: normal;
        line-height: 1.5;
        padding: var(--size-18) var(--size-15);
        text-align: center;
        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);
    }

    .header-nav .layui-nav-child .submenu{
        display: block;
        padding: var(--size-12) 0;
        color: inherit;
        position: relative;
        transition: all .4s 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: 600;
    }
    .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-item>a{
        padding: 0 1.40625vw 0 .8vw;
    }
    .header-nav .layui-nav .layui-nav-item>a:after{
        left: .8vw;
        right: 1.40625vw;
    }
}

@media screen and (max-width: 991px) {
    header .layui-container{
        height: 75px;
    }
    header .header-main{
        display: none;
    }
    header .logo img {
        min-height: 40px;
    }
}

@media screen and (min-width: 992px) {
    header .menu-toggle{
        width: 5.208333vw;
        height: 5.20833vw;
        background: var(--color-primary);
    }
}
@media screen and (max-width: 1439px) {
    header .menu-toggle{
        width: 75px;
        height: 75px;
        /* background: var(--color-primary); */
    }
}
@media screen and (max-width: 567px) {
    header .logo img {
        min-height: .6rem;
    }
}
@media screen and (min-width: 992px) {
    .site-menu-shade,
    .menu-container{
        display: none!important;
    }
}
/* 主菜单 */
.menu-container{
    position: fixed;
    right: 0;
    top: -100%;
    height: calc(100vh - 7.291667vw);
    width: 100%;
    z-index: 99;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 98;
    overflow: hidden;
    background: #fff url(../images/bg.png) left bottom no-repeat;
    background-size: 100% auto;
}
.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;
}
.menu-container .menu-list .menu-item{
    border-bottom: 1px solid var(--border-color);
}
.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-24) 0;
    flex: 1;
    color: var(--color-text-primary);
}
.menu-container .menu-list .menu-title a:hover{
    color: var(--color-primary);
}
.menu-container .menu-list .menu-title .icon{
    cursor: pointer;
    padding: var(--size-20) var(--size-9) var(--size-20) var(--size-36);
    font-size: .75em;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    font-weight: 600;
    width: 50%;
}
.menu-container .menu-list .menu-title .icon:hover{
    color: var(--color-primary);
}
.menu-container .submenu{
    padding-bottom: var(--size-12);
    padding-left: var(--size-24);
    display: none;
}
.menu-container .menu-list .menu-item.show-submenu .submenu{
    display: block;
}

.menu-container .submenu-list .submenu-item .menu-title a{
    color: var(--color-text-regular);
    padding: var(--size-12) 0;
}
/* .menu-container .menu-list .menu-item.show-submenu>.menu-title{
    background-color: var(--bg-grey);
} */
.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{
    padding-left: var(--size-20);
    display: none;
}
.menu-container .submenu .m-active .icon-right:before{
    content: '\e625';
}
.menu-container .submenu-list .submenu-item .third-menu .menu-title a{
    display: block;
    padding: var(--size-9) 0;
    color: var(--color-text-secondary-grey);
    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{
    position: fixed;
    left: 0;
    right: 0;
    top: 75px;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 98;
}
.show-menu .menu-container{
    /* right: 0; */
    top: 7.291667vw;
}
@media screen and (max-width: 991px) {
    .menu-container{
        height: calc(100vh - 75px);
    }
    .show-menu .menu-container{
        top: 75px;
    }
}

.show-menu.header-fixed header{
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    opacity: 1;
    box-shadow: 0 0 var(--size-9) rgb(0 0 0 / 15%);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}
/* 主菜单 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(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

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

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 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(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

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

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

/*弹窗动画 END*/


.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background: var(--color-primary);
}
.mCSB_scrollTools .mCSB_draggerRail{
    background-color: unset;
    background-color: rgba(0, 0, 0, .1);
}

@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: 0!important;
    right: 0!important;
    width: unset!important;
    background-color: unset!important;
}
.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: var(--color-primary);
    color: #fff;
    right: 3.125vw;
    top: 1.25417vw;
}
.search-layer{
    height: 100%;
}
.search-container .search-head,
.search-container .search-body{
    width: 100%;
}
.search-container .search-head{
    font-weight: 600;
    color: #fff;
    background-color: #fff;
    line-height: 1;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.search-container .search-head .logo img{
    height: 3.375vw;
}
.search-container .search-body{
    flex: 1;
    background-color: rgb(232 239 241 / 90%);
    padding: 2.5vw 0;
    position: relative;
}
.search-container .search-body>*{
    position: relative;
    z-index: 1;
}
/* .search-container .search-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 75%;
    background: url(../images/bg-search.png) left top no-repeat;
    background-size: contain;
    z-index: 0;
} */
.search-container .search-body:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 3.125vw;
    width: 100%;
    background: url(../images/bg-search-1.png)  bottom no-repeat;
    background-size: 100%;
    z-index: 0;
}

.search-container .search-body .layui-form .type-radio-group{
    margin-bottom: var(--size-4);
    display: flex;
    align-items: center;
}
.search-container .search-body .layui-form .item+.item{
    margin-left: var(--size-4);
}
.search-container .search-body .layui-form .layui-form-radio{
    margin: 0;
    padding: 0 var(--size-24);
    display: block;
    color: inherit;
    line-height: 1.2;
    text-align: center;
    background-color: #fff;
    font-size: inherit;
    height: 3.4658333vw;
    line-height: 3.4658333vw;
    min-width: 6vw;
}
.search-container .search-body .layui-form .layui-form-radio i{
    display: none;
}
.search-container .search-body .layui-form .layui-form-radio>*{
    font-size: inherit;
    color: inherit!important;
}
.search-container .search-body .layui-form .layui-form-radio:hover{
    color: inherit;
}

.search-container .search-body .layui-form .layui-form-radioed{
    background: var(--color-primary);
    color: #fff!important;
}


.search-container .search-body .layui-form{
    max-width: 60%;
    margin: 0 auto;
    padding-bottom: 3.25vw;
}
.search-container .search-body .layui-form .layui-input{
    background-color: #fff;
}
.search-container .search-body .layui-form .layui-form-select{
    margin-right: .3125vw;
}
@media screen and (max-width: 1439px) {
    .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-head .logo img{
        height: 40px;
    }
    .search-container .search-body{
        padding: 36px 0;
    }
    .search-container .search-body .layui-form .layui-form-select{
        margin-right: 4.5px;
    }
    .search-container .search-body .layui-form .layui-form-radio{
        height: 50px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1199px) {
    .search-container .search-body:after{
        border-bottom-width: 1px;
        background-size: 200px;
    }
    .search-container .search-body .layui-form{
        max-width: 720px;
    }
}
@media screen and (max-width: 991px) {
    .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;
    }
}
@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>.ala-flex{
        display: block;
    }
    .search-container .search-body .layui-form .layui-form-select{
        margin-right: 0;
        margin-bottom: 5px;
    }
    .search-container .search-body .layui-form .layui-btn{
        margin-top: 5px;
        justify-content: center;
    }
}
/* search-layer 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-primary);
    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);
    opacity: .2;
}

.ala-swiper .swiper-button-prev:not(.ala-swiper .swiper-button-disabled):hover:after,
.ala-swiper .swiper-button-next:not(.ala-swiper .swiper-button-disabled):hover:after {
    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);
}

.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;
}
@media screen and (max-width: 1439px) {
    .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-button END*/

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

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

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

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

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

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

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

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

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

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

/*.swiper-pagination EMD*/


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

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
    width: var(--size-48);
    height: var(--size-48);
    border-radius: 50%;
    background: transparent;
    border: var(--size-1) solid var(--color-secondary);
    position: static;
    font-size: var(--size-16);
    color: var(--color-secondary);
    margin-top: unset;
}

.swiper-btn.is-white .swiper-button-next,
.swiper-btn.is-white .swiper-button-prev{
    /* border: var(--size-1) solid #fff; */
    background-color: rgba(255, 255, 255, .2);
    border: unset;
}
.swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover{
    background-color: var(--color-secondary);
}

.swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover:after,
.swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover:after{
    color: #fff!important;
}

.swiper-btn.is-white .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-btn.is-white .swiper-button-prev:not(.swiper-button-disabled):hover{
    background-color: #fff;
}
.swiper-btn.is-white .swiper-button-next:not(.swiper-button-disabled):hover:after,
.swiper-btn.is-white .swiper-button-prev:not(.swiper-button-disabled):hover:after{
    color: var(--color-secondary)!important;
}

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
    content: "\e6f0";
    font-family: "iconfont";
    font-size: inherit;
}
.swiper-btn .swiper-button-prev:after {
    /* content: "\e608"; */
    transform: rotate(180deg);
}
.swiper-btn .swiper-button-prev+.swiper-button-next {
    margin-left: var(--size-12);
}

.swiper-btn .swiper-button-prev.swiper-button-disabled,
.swiper-btn .swiper-button-next.swiper-button-disabled {
    background: transparent;
    border: var(--size-1) solid var(--color-text-placeholder);
    color: var(--color-text-secondary);
    cursor: no-drop;
    opacity: .5;
}

.swiper-btn.is-solid .swiper-button-next,
.swiper-btn.is-solid .swiper-button-prev{
    background-color: var(--color-secondary);
    color: #fff;
    border-color: var(--color-secondary);
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
}
/* .swiper-btn.is-solid .swiper-button-next:before,
.swiper-btn.is-solid .swiper-button-prev:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    border: var(--size-1) dotted var(--color-primary);
    transform: scale(1.3);
    opacity: .4;
} */
.swiper-btn.is-solid .swiper-button-prev.swiper-button-disabled,
.swiper-btn.is-solid .swiper-button-next.swiper-button-disabled{
    background-color: var(--border-color-lighter);
    color: var(--color-text-placeholder);
    border-color: var(--border-color-lighter);
}

.swiper-btn.is-solid.is-white .swiper-button-next,
.swiper-btn.is-solid.is-white .swiper-button-prev{
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}
.swiper-btn.is-solid.is-white .swiper-button-next:before,
.swiper-btn.is-solid.is-white .swiper-button-prev:before{
    border: var(--size-1) dotted #fff;
}
.swiper-btn.is-solid.is-white .swiper-button-prev.swiper-button-disabled,
.swiper-btn.is-solid.is-white .swiper-button-next.swiper-button-disabled{
    background-color: transparent;
    color: #fff;
}
.swiper-btn .swiper-pagination+.swiper-button-prev{
    margin-left: var(--size-15);
}
.swiper-btn .swiper-pagination{
    position: static;
    width: unset;
    display: inline-flex;
    align-items: center;
    padding: 0 var(--size-18);
}

.swiper-btn .swiper-pagination-progressbar{
    background-color: #E8E8E8;
    height: var(--size-4);
    border-radius: var(--size-4);
    overflow: hidden;
    flex: 1;
}
.swiper-btn .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: var(--color-primary);
    height: var(--size-4);
    border-radius: var(--size-4)!important;
}

/* swiper-btn END */

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

/*banner*/
.banner {
    position: relative;
    height: 100vh;
    width: 100%;
    /* z-index: 8; */

    /* perspective: 1920px;
    transform-style: preserve-3d;
    position: fixed;
    top: 0; */
}
.home-main{
    /* margin-top: 100vh; */
    background-color: #fff;
    position: relative;
    z-index: 9;
}
.banner .ripples-cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 12;
}
.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%;
}
.banner .swiper-bg{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* .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 10s linear;
    -o-transition: all 10s linear;
    transition: all 10s 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;
    background-attachment: fixed;
}


.banner .bg{
    position: absolute;
    left: 0;
    bottom: 0;
    width: calc(var(--size-100)*7.5);
    max-width: 100%;
    z-index: 2;
}
.banner .text-center .bg{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
/* .banner .slide-inner:after, */
.banner .slide-inner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 2;
    height: 31.5%;
    background: linear-gradient( to top, rgba(0,0,0,0) 0%, #000000 100%);
    opacity: .8;
}
/* .banner .slide-inner:after {
    top: unset;
    bottom: 0;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    background-size: 100%;
    height: 45.8%;
    min-height: var(--size-80);
} */

.banner img {
    width: 100%;
}

.banner .swiper-bottom{
    position: absolute;
    right: 9.375vw;
    left: 9.375vw;
    bottom: var(--size-45);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .swiper-bottom .swiper-pagination{
    position: static;
    width: unset;
    display: flex;
    align-items: center;
}
/* .banner .swiper-bottom.ala-swiper.is-white .swiper-pagination-bullet-active {
    border-color: var(--color-secondary) !important;
}
.banner .ala-swiper.is-white .swiper-pagination-bullet-active::after{
    background-color: var(--color-secondary) !important;
} */
.banner .ala-swiper .swiper-button-prev:not(.ala-swiper .swiper-button-disabled):hover:after,
.banner .ala-swiper .swiper-button-next:not(.ala-swiper .swiper-button-disabled):hover:after{
    color: var(--color-secondary) !important;
}
.banner-swiper-btn{
    width: 6.25vw;
    height: 6.25vw;
    position: relative;
    z-index: 90;
    margin-left: var(--size-24);
}
.banner-swiper-btn .swiper-button-prev{
    left: 12%;
}
.banner-swiper-btn .swiper-button-next{
    right: 12%;
}

.ui-loop{
    position:absolute;
    left: 0;
    top: 0;
    width: 6.25vw;
    height: 6.25vw;
    cursor: pointer;
}
.ui-loop .iconfont {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    color: #fff;
}
.ui-loop.pause .icon-pause:before{
    content: "\e65a";
}
    
.path-loop {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
}   
    
.path-loop-bg {
    fill: none;
    stroke: #fff;
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
    opacity: 0.2;
}

.banner .banner-swiper-button {
    position: absolute;
    z-index: 12;
    left: 4.166666vw;
    width: unset;
    bottom: 26%;
    display: flex;
    align-items: center;
    cursor: default !important;
}
.banner .banner-swiper-button .swiper-button-prev{
    background: rgba(255, 255, 255, .2);
    transition: background .3s ease-in-out;
}
.banner .banner-swiper-button .swiper-button-prev:after{
    color: #fff;
}
.banner .banner-swiper-button .swiper-button-prev:hover{
    background-color: #fff;
}
.banner .banner-swiper-button .swiper-button-prev:hover:after{
    color: var(--color-secondary);
}
.banner .banner-swiper-button .swiper-button-next{
    background: #fff!important;
}
.banner .banner-swiper-button .swiper-button-next:after{
    color: var(--color-secondary);
}

.banner .slide-down{
    text-transform: uppercase;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 var(--size-60) var(--size-24) 0;
    font-weight: 100;
    color: #fff;
    z-index: 90;
    letter-spacing: var(--size-2);
    opacity: .75;
    overflow: hidden;
    transform-origin: 100% 100%;
    transform: translateX(-50%) rotate(90deg);
    cursor: pointer;
}
.banner .slide-down:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-2);
    background-color: rgba(255, 255, 255, .5);
    z-index: 0;
}
.banner .slide-down span{
    position: absolute;
    left: 0;
    height: var(--size-2);
    background-color: var(--color-primary);
    width: var(--size-40);
    bottom: 0;
    animation: slideToDown 2s linear 0s infinite;
    z-index: 2;
    transform: translateX(-100%);
}

@keyframes slideToDown {
    0% {
        left: 0%;
        transform: translateX(-100%);
    }

    100% {
        left: 100%;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1600px) {
    .banner .swiper-bottom{
        right: 6.25vw;
        left: 6.25vw;
    }
}
@media screen and (max-width: 1199px) {
    .banner-swiper-btn .swiper-button-prev{
        left: 5%;
    }
    .banner-swiper-btn .swiper-button-next{
        right: 5%;
    }
    .banner-swiper-btn,
    .ui-loop{
        width: 75px;
        height: 75px;
    }
}
@media screen and (max-width: 767px) {
    .banner .slide-down{
        display: none;
    }
    .banner .swiper-bottom{
        bottom: var(--size-20);
    }
}
@media screen and (max-width: 567px) {
    .banner {
        /* height: 120vw; */
        min-height: 70vh;
    }
    .swiper-bottom{
        right: .32rem;
    }
}


/*banner END*/



/*home-banner-wrap*/
.home-banner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    top: var(--size-100);
    bottom: var(--size-100);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    color: #fff;
    z-index: 10;
    /* text-align: center; */
    display: flex;
    align-items: center;
    justify-content: center;
}
.home-banner-wrap .banner-title {
    line-height: 1.5;
    /* font-weight: 500; */
    font-family: 'ScourceHanSerif';
}
.home-banner-wrap .banner-title-en{
    text-transform: uppercase;
}
.home-banner-wrap .banner-title img{
    max-height: var(--size-100);
    width: unset;
    max-width: 100%;
}

.home-banner-wrap .banner-desc {
    margin-top: var(--size-15);
    line-height: 1.5;
    padding-top: var(--size-30);
    margin-top: var(--size-30);
    position: relative;
}
.text-center .home-banner-wrap .banner-desc{
    width: 45vw;
    margin: 0 auto;
    margin-top: var(--size-30);
}
.home-banner-wrap .banner-desc:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: var(--size-1);
    background: linear-gradient( 225deg, rgba(255,255,255,0) 0%, #FFFFFF 49%, rgba(255,255,255,0) 100%);
}
.home-banner-wrap .more-link{
    margin-top: var(--size-36);
}
@media screen and (max-width: 1199px) {
    .text-center .home-banner-wrap .banner-desc{
        width: 100%;
        max-width: 600px;
    }
}
@media screen and (max-width:767px) {
    .home-banner-wrap{
        text-align: center;
    }
}

/*home-banner-wrap END*/

/* banner-right */
.banner-right{
    width: 100%;
    position: relative;
    right: 0;
    bottom: 0;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: flex-end;
}
.banner-right .layui-row{
    width: 100%;
}
.banner-right .banner-item{
    position: relative;
    display: flex;
    height: 0;
    padding-bottom: 100%;
    flex-direction: column;
    justify-content: space-between;
    background-color: transparent;
    z-index: 0;
    background-repeat: no-repeat;
    background-size: contain;
    text-align: left;
    z-index: 1;
}
.banner-right .banner-item .item-box{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    padding: var(--size-20);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform .5s ease-in-out;
    transform: scale(1);
    background-repeat: no-repeat;
    background-size: contain;
}
.banner-right .banner-item:hover{
    z-index: 9;
}
.banner-right .banner-item:hover .item-box{
    transform: scale(1.15);
}
.banner-right .banner-item .icon img{
    width: var(--size-45);
    height: var(--size-45);
    object-fit: contain;
}
.banner-right .banner-item .item-bg{
    position: absolute;
}
.banner-right .banner-item .item-bg img{
    width: 100%;
}
.banner-right .banner-item .item-box em{
    font-style: normal;
    margin-left: var(--size-6);
}
.banner-right .banner-item .bg1{
    width: var(--size-72);
    transform: translateX(50%);
    right: 0;
    top: 0;
}
.banner-right .banner-item .bg2{
    width: var(--size-60);
    left: 0;
    top: 100%;
    transform: translateY(-100%);
}
.banner-right .banner-item .bg3{
    width: 40%;
    top: var(--size-12);
    bottom: var(--size-12);
    right: var(--size-12);
}
.banner-right .banner-item .bg3 img{
    object-fit: contain;
    width: 100%;
    height: 100%;
}
.banner-right .banner-item .bg4{
    width: 40%;
    left: 10%;
    top: 40%;
}
@media screen and (max-width: 1199px) {
    .banner-right .banner-item .text-box .fnt24{
        font-size: var(--size-24);
    }
}
@media screen and (max-width: 991px) {
    .banner-right .banner-item .text-box .fnt24{
        font-size: var(--size-18);
    }
    .banner-right .banner-item .text-box .fnt40{
        font-size: 24px;
        line-height: 1.2;
    }
    .banner-right .banner-item .item-box{
        padding: var(--size-15);
    }
}
@media screen and (max-width: 767px) {
    .banner-right .banner-item .text-box .fnt40{
        font-size: .4rem;
    }
    .banner-right .banner-item .text-box .fnt24{
        font-size: .24rem;
    }
}
@-webkit-keyframes scale {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
    50% {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
        z-index: 9;
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
}

@keyframes scale {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
    50% {
        -webkit-transform: scale(1.15);
        -ms-transform: scale(1.15);
        transform: scale(1.15);
        z-index: 9;
    }
    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
        z-index: 1;
    }
}
@media screen and (min-width:991px){
    .banner-right .layui-container{
        padding: 0;
    }
}
@media screen and (max-width:991px){
    .banner-right{
        width: 100%;
        display: block;
        padding-top: var(--size-45);
        padding-bottom: var(--size-30);
    }
}
@media screen and (max-width: 567px) {
    .banner-right .banner-item .icon img{
        width: var(--size-30);
        height: var(--size-30);
    }
    .banner-right .banner-item .item-box{
        padding: var(--size-9);
    }
    .banner-right .banner-item .item-box .text-box .desc{
        margin-top: 0!important;
        font-size: .2rem;
    }
    .banner-right .banner-item .item-box .text-box .fnt28{
        font-size: .28rem!important;
    }
    .banner-right .banner-item .bg1{
        width: var(--size-60);
    }
    .banner-right .banner-item .bg2{
        width: var(--size-45);
    }
}


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

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

.block>* {
    position: relative;
    z-index: 9;
}
.theme-grey,
.block.grey {
    background-color: var(--bg-grey);
}

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

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

@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.34275vw;
    line-height: 1.2;
    color: var(--color-primary);
}
.index_title .title-wrap{
    display: flex;
    flex-direction: column;
}
.index_title .title-wrap>*{
    position: relative;
}
.index_title .title-wrap .title-bg{
    position: absolute;
    left: -.5em;
    bottom: .2em;
    width: 5.25em;
    z-index: 0;
}
.index_title .title-wrap .title-bg img{
    width: 100%;
}
.index_title.text-center .title-wrap .title-bg{
    left: 50%;
    transform: translateX(-50%);
}
.index_title h2 {
    position: relative;
    z-index: 2;
    font-size: inherit;
    display: inline-block;
    font-weight: 600;
}

.index_title h2>* {
    position: relative;
}

.color_white .index_title,
.color_white .index_title .sub-title {
    color: #fff;
}
.index_title .title_en{
    display: inline-block;
    padding-left: var(--size-48);
    position: relative;
    margin-top: var(--size-4);
    font-weight: 400;
}
.index_title .title_en:before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: var(--size-1);
    background-color: var(--color-primary);
    width: var(--size-48);
    transform: translateY(-50%);
}
.index_title .title_en span{
    display: inline-block;
    padding-left: var(--size-12);
}

.index_title.text-center .title-wrap{
    align-items: center;
}
.index_title.text-center .title_en{
    padding-right: var(--size-48);
}
.index_title.text-center .title_en span{
    padding-right: var(--size-12);
}
.index_title.text-center .title_en:after{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    height: var(--size-1);
    background-color: var(--color-primary);
    width: var(--size-48);
    transform: translateY(-50%);
}

.color_white .index_title .title_en{
    color: #fff;
}
.color_white .index_title .title_en:before {
    background-color: #fff;
}

.index_title .title-wrap{
    flex: 1;
}

.index_title .more-btn {
    margin-top: 0;
}


.index_title.color_text_primary{
    color: var(--color-text-primary);
}
.index_title.color_text_primary .title_en{
    color: var(--color-text-secondary);
}
.index_title.color_text_primary .title_en:before,
.index_title.color_text_primary .title_en:after{
    background-color: var(--color-text-secondary);
}

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

@media screen and (max-width: 767px) {
    .index_title {
        margin-bottom: 20px;
    }
    .index_title .title_en{
        padding-left: var(--size-45);
    }
    .index_title .title_en:before{
        width: var(--size-45);
    }

    .index_title.text-center .title_en{
        padding-right: var(--size-45);
    }
    .index_title.text-center .title_en:after{
        width: var(--size-45);
    }
}

/*index_title END*/

/* page-title */
.page-title{
    margin-bottom: var(--size-40);
    font-weight: 600;
}
.page-title .more-link{
    font-weight: normal;
}
@media screen and (max-width: 991px) {
    /* .page-title:not(.not-hide){
        display:  none;
    } */
    .page-title+*{
        margin-top: 0!important;
    }
}
/* page-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-primary);
    position: fixed;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--size-60);
    height: var(--size-60);
    bottom: var(--size-100);
    right: var(--size-24);
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    border: var(--size-1) solid #fff;
    /* margin-top: var(--size-9-reverse); */
}
#button-to-top:hover{
    background-color: var(--color-secondary);
}
#button-to-top .iconfont{
    transform: rotate(90deg);
    line-height: 1;
}
#button-to-top span{
    display: block;
    margin-top: var(--size-9-reverse);
    padding-top: var(--size-6);
}

.anchor {
    position: relative;
    display: block;
    padding-top: var(--size-90);
    margin-top: var(--size-90-reverse);
    z-index: -1;
}

.qrcode-list .qrcode-item{
    text-align: center;
}
.qrcode-list .qrcode-item+.qrcode-item{
    margin-left: var(--size-20);
}

.qrcode-list .qrcode-img img{
    width: 6.25vw;
    height: 6.25vw;
    object-fit: contain;
    margin-bottom: var(--size-12);
    min-height: 90px;
    min-width: 90px;
}

/* media-list */

.media-list {
    margin: 0 -.10417vw;
    position: relative;
    z-index: 9;
    margin-top: var(--size-36);
}

.media-list .media-item {
    display: inline-block;
    padding: 0 .10417vw;
    text-align: center;
    position: relative;
    z-index: 1;
    margin-bottom: 0;
}

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

.media-list .media-item a {
    display: block;
    text-align: center;
    width: 2.8vw;
    height: 2.8vw;
    line-height: 2.8vw;
    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(0, 0, 0, .2); */
    background-color: rgba(255, 255, 255, .2);
}

.media-list .media-item a:hover {
    background: #fff;
    color: var(--color-primary);
    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: 40px;
        height: 40px;
        line-height: 40px;
    }

    .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: .8rem;
        height: .8rem;
        line-height: .8rem;
    }

    .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*/
footer {
    position: relative;
    overflow: hidden;
    background: var(--color-primary) url(../images/footer-bg.jpg) right center no-repeat;
    background-size: cover;
}
footer,
footer a,
footer a:visited {
    color: rgba(255, 255, 255, .75);
}

footer a:hover,
footer a:focus {
    color: #fff;
}

footer a:hover {
    text-decoration: underline;
}

.footer-flex{
    padding: var(--size-40) 0;
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .1);
    margin-bottom: var(--size-80);
    justify-content: flex-end!important;
}

.quick-links .layui-col-xs12:after{
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 40px;
    width: var(--size-1);
    background-color: rgba(216, 216, 216, .2);
}

@media screen and (min-width: 1920px) {
    .quick-links .layui-col-xs12:after{
        top: 2.083333vw;
        bottom: 2.083333vw;
    }
}

.footer-top {
    position: relative;
    padding: var(--size-60) 0 0;
}
.footer-top .footer-logo{
    margin-bottom: var(--size-60);
    padding-bottom: var(--size-40);
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .2);
}
.footer-top .footer-logo img {
    max-width: 100%;
    max-height: 3.25vw;
    min-height: 45px;
}
.footer-top .col-item{
    padding-bottom: var(--size-60);
}
footer .footer-title {
    margin-bottom: 1.25vw;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
}

.footer-top p,
.footer-top ul li {
    line-height: 1.2;
    margin-bottom: var(--size-15);
}

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

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

.footer-top .footer-link li {
    line-height: 150%;
    position: relative;
}

.footer-top .footer-link li a {
    display: block;
    margin-bottom: .46875vw;
}
.footer-qrcode img{
    width: calc(var(--size-100)*1.4);
}
.footer-top .media-list .media-item a {
    border-color: rgba(216, 216, 216, .2);
}
.footer-top .media-list .media-item a:hover .iconfont{
    color: var(--color-primary);
}

.footer-copyright {
    padding: var(--size-18) 0;
    border-top: var(--size-1) solid rgba(255, 255, 255, .2);
}
@media screen and (max-width: 1600px) {
    .footer-top:before{
        left: -6.25vw;
    }
}

@media screen and (min-width: 768px) {
    .footer-top {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .footer-top {
        width: 100%;
        text-align: center;
    }

    footer .footer-title {
        margin-bottom: 12px;
        padding-bottom: 4px;
    }

    .footer-flex{
        display: block;
        text-align: center;
        margin-bottom: var(--size-45);
    }
    .media-column{
        margin-top: var(--size-30);
        display: block;
    }
    .media-text{
        margin-bottom: var(--size-12);
    }
    .quick-links ul:not(.media-list) li{
        display: inline-block;
    }
    .quick-links ul:not(.media-list) li+li{
        margin-left: var(--size-12);
        padding-left: var(--size-15);
        border-left: var(--size-1) solid rgba(255, 255, 255, .2);
    }
    .quick-links .layui-col-xs12:after{
        content: unset;
    }
    .footer-top .footer-link.columns{
        columns: unset;
    }
}
@media screen and (max-width: 567px) {
    .footer-top:before{
        left: -.32rem;
    }
}


/* footer END */

.search-filter .sub-category-nav .swiper-slide a{
    display: flex;
    align-items: center;
}
.search-filter .sub-category-nav .swiper-slide a span+span{
    margin-left: var(--size-6);
}


/* slide */
.slide{
    position: relative;
    display: block;
    color: #fff;
    overflow: hidden;
    border-radius: var(--size-12);
    cursor: pointer;
}
.slide .img-box-post{
    padding-bottom: 60%;
    overflow: hidden;
}
.slide .img-box-post:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-100);
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    transition: all .4s ease-in-out;
    z-index: 2;
    /* opacity: 1; */
    transition: all .4s ease-in-out;
}
.slide:hover .img-box-post:before{
    /* opacity: 0; */
    height: 100%;
}
.slide .text-box{
    position: absolute;
    display: inline-block;
    transition: all .4s ease-in-out;
    padding: var(--size-30) var(--size-24) var(--size-24);
    left: 0;
    right: 0;
    height: 100%;
    top: 100%;
    z-index: 9;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: calc(-1.5em - var(--size-30) - var(--size-24));
    background-color: transparent;
    transition: all .4s ease-in-out;
}
.slide .text-box .title{
    font-weight: 600;
}
.slide:hover .text-box{
    top: 0;
    margin-top: 0;
    -webkit-backdrop-filter: saturate(150%) blur(3px);
    backdrop-filter: saturate(150%) blur(3px);
    /* background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%); */
    /* background-color: rgba(0, 0, 0, .45); */
}
.slide .text-box .qrcode{
    margin: var(--size-18) 0;
    flex: 1;
    width: 100%;
    position: relative;
}
.slide .text-box .qrcode .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.slide .text-box .qrcode img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.slide .text-box .icon{
    width: var(--size-48);
    height: var(--size-48);
    line-height: var(--size-48);
    border: var(--size-1) solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    text-align: center;
    transition: all .4s ease-in-out;
}

.slide .text-box .more{
    opacity: 0;
    overflow: hidden;
    transition: all .4s ease-in-out;
    margin-top: var(--size-15);
}
.slide:hover .text-box .more{
    opacity: 1;
}

.slide:hover .text-box .more-link:hover{
    color: #fff;
}
.slide:hover .text-box .icon{
    background-color: rgba(255, 255, 255, .2);
}
/* slide END */

/* slide-card */
.slide-card{
    position: relative;
    box-shadow: unset;
    transition: all .4s ease-in-out;
    display: flex;
    flex-direction: column;
    background-color: var(--bg-grey);
    border-radius: var(--size-6);
}
.block.grey .slide-card{
    background-color: #fff;
}
.slide-card:hover{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.row-flex .slide-card{
    height: 100%;
}
.slide-card .img-box .ala-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.slide-card .img-box{
    border-radius: var(--size-6) var(--size-6) 0 0;
}
.slide-card .img-box .img img{
    transform: scale(1);
    transition: all .4s ease-in-out;
}
.slide-card:hover .img-box .img img{
    transform: scale(1.1);
}
.slide-card .cover{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
}
.slide-card .cover img{
    height: 100%;
    width: unset;
}

.slide-card .length-tag{
    position: absolute;
    right: var(--size-20);
    bottom: var(--size-20);
    background-color: rgba(0, 0, 0, .5);
    color: #fff;
    padding: var(--size-4) var(--size-9);
}
.slide-card .length-tag .iconfont{
    margin-right: var(--size-6);
}

.slide-card .text-box{
    padding: var(--size-30) var(--size-24);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.slide-card .text-box .desc{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-20);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.slide-card .text-box .desc.ellipsis--1{
    -webkit-line-clamp: 1;
}
.slide-card .text-box .desc.ellipsis--2{
    -webkit-line-clamp: 2;
}
.slide-card .text-box .desc.ellipsis--3{
    -webkit-line-clamp: 3;
}
.slide-card .text-box .desc.ellipsis--4{
    -webkit-line-clamp: 4;
}
.slide-card .text-box .title{
    color: var(--color-text-primary);
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    transition: all .4s ease-in-out;
    font-weight: 600;
}
.slide-card .text-box .tag{
    line-height: 1;
}
.slide-card .text-box .tag+.time{
    padding-left: var(--size-15);
    margin-left: var(--size-15);
    border-left: var(--size-1) solid rgba(0, 0, 0, .2);
}
.slide-card .text-box .time{
    color: var(--color-text-secondary);
    line-height: 1;
}
a.slide-card:hover .text-box .title{
    color: var(--color-primary);
    /* text-decoration: underline; */
}
.slide-card .text-box .more-link{
    margin-top: var(--size-30);
}
.slide-card:hover .more-link .iconfont{
    transform: rotate(45deg);
}


.slide-card.no-bg{
    background-color: unset;
    border-radius: 0;
}
.slide-card.no-bg:hover{
    box-shadow: unset;
}
.slide-card.no-bg .img-box{
    border-radius: var(--size-6);
}
.slide-card.no-bg .text-box{
    padding: 0;
    padding-top: var(--size-30);
}
a.slide-card.no-bg:hover .text-box .title{
    color: var(--color-primary);
}


.slide-card .info-wrap{
    margin-top: var(--size-24);
    padding-left: var(--size-18);
    border-left: var(--size-1) solid var(--color-secondary);
    color: var(--color-secondary);
}
.slide-card .info-wrap .item{
    display: flex;
    align-items: center;
}
.slide-card .text-box .info-wrap .iconfont{
    margin-right: var(--size-9);
}
.slide-card .info-wrap .item .ala-icon{
    margin-right: var(--size-9);
}
.slide-card .info-wrap .item .ala-icon .iconfont{
    margin-right: 0;
}
.slide-card .info-wrap .item+.item{
    margin-top: var(--size-6);
}


.slide-card.no-img:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--size-4);
    background: var(--color-primary);
    opacity: 1;
    transition: all .4s ease-in-out;
}
.slide-card.no-img:hover:before{
    opacity: 1;
}

.slide-card .more-btn{
    position: absolute;
    right: 0;
    bottom: 0;
    color: #fff;
    background-color: var(--color-primary);
    overflow: hidden;
    width: var(--size-48);
    height: var(--size-48);
    display: flex;
    align-items: center;
    z-index: 9;
}

.slide-card .more-btn i{
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}
.slide-card:hover .more-btn i{
    animation: arrowRight .8s ease;
    -webkit-animation: arrowRight .8s ease;
}

.color_white .slide-card .text-box .desc{
    color: #fff;
    opacity: .85;
}
.color_white .slide-card .text-box .info-wrap,
.color_white .slide-card .text-box .tag,
.color_white .slide-card .text-box .time,
.color_white .slide-card .text-box .title{
    color: #fff;
}

@-webkit-keyframes arrowRight{
    0%{
        opacity: 1;
        left: 50%;
    }
    47%{
        opacity: 0;
        left: 80%;
    }
    53%{
        opacity: 0;
        left: 20%;
    }
    100%{
        opacity: 1;
        left: 50%;
    }
}
@keyframes arrowRight{
    0%{
        opacity: 1;
        left: 50%;
    }
    47%{
        opacity: 0;
        left: 80%;
    }
    53%{
        opacity: 0;
        left: 20%;
    }
    100%{
        opacity: 1;
        left: 50%;
    }
}
/* slide-card END */


.video-play {
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all .4s ease-in-out;
    background-color: transparent;
    border-radius: 50%;
    z-index: 99;
    border: .104167vw solid #fff;
}

.video-play:hover {
    background: var(--color-primary);
    border-color: transparent;
}

.video-play span {
    border: .46875vw solid transparent;
    border-left: .625vw solid #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -.46875vw;
    margin-left: -.208333vw;
}

@media screen and (max-width: 1600px) {
    .video-play {
        width: 37px;
        height: 37px;
        border-width: 1.5px;
    }

    .video-play span {
        border-width: 7.5px;
        border-left-width: 10px;
        margin-top: -7.5px;
        margin-left: -3.3333px;
    }
}

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

.icon-play:before {
    content: "";
    background: 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) {
    /* .shxy-block .video-wrapper .icon-play {
        display: none;
    } */
    .shxy-block .video-container img{
        height: 40vw;
    }
}

@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: 600;
    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*/

/* inner-banner */
.inner-banner {
    background-color: var(--bg-primary);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    min-height: 31.25vw;
    position: relative;
    padding-top: 7.291667vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.inner-banner>*{
    position: relative;
    z-index: 2;
}
.inner-banner:after,
.inner-banner:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 40%;
    /* background: linear-gradient( to bottom, rgba(0,0,0,0) 0%, #000000 100%); */
    background: linear-gradient( to top, rgba(0,0,0,0) 0%, #000000 100%);
    opacity: .5;
    z-index: 0;
}
.inner-banner:after{
    top: unset;
    bottom: 0;
    background: linear-gradient( to bottom, rgba(0,0,0,0) 0%, #000000 100%);
    opacity: .6;
}
.inner-banner.not-cover:after{
    content: unset;
}

@media screen and (max-width: 1440px) {
    .inner-banner{
        padding-top: 105px;
    }
}
@media screen and (max-width: 991px) {
    .inner-banner{
        padding-top: 75px;
    }
}


/* breadcrumb */
.breadcrumb {
    padding: var(--size-24) 0;
}
.right-breadcrumb{
    position: absolute;
    right: 0;
    bottom: 0;
}
.breadcrumb+.block,
.breadcrumb+.inner-banner-text{
    padding-top: 0!important;
}

.right-breadcrumb+.inner-banner-text{
    display: none;
}
.layui-breadcrumb {
    color: var(--color-text-secondary-grey);
    font-size: inherit;
}

.layui-breadcrumb>* {
    font-size: inherit;
}

.layui-breadcrumb a {
    color: inherit !important;
}

.layui-breadcrumb span[lay-separator] {
    color: inherit;
    font-family: "iconfont";
    margin: 0 var(--size-6);

}
.layui-breadcrumb span[lay-separator]:before{
    content: "\e607";
    font-family: "iconfont";
    font-size: .5em;
    top: -.3em;
    position: relative;
}

.layui-breadcrumb a:hover {
    color: var(--color-primary) !important;
}

.layui-breadcrumb a cite {
    color: inherit;
}

.header_white .inner-banner .layui-breadcrumb{
    color: #fff;
}
.header_white .inner-banner .layui-breadcrumb a:hover{
    color: #fff!important;
}
@media screen and (max-width: 767px) {
    .right-breadcrumb{
        display: none;
    }
    .right-breadcrumb+.inner-banner-text{
        display: flex;
        padding-top: var(--size-60)!important;
    }
}
/* breadcrumb END */

/* inner-banner-text */
.inner-banner-text{
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    color: #fff;
    width: 100%;
    padding: var(--size-60) 0 0;
}
.inner-banner-text .layui-container{
    width: 100%;
}
.inner-banner-text .text-box{
    width: 100%;
}
.inner-banner-text .page-title{
    margin-bottom: var(--size-20);
    display: block;
    font-weight: 600;
}
.inner-banner-text .title{
    position: relative;
}
.inner-banner-text .title:after{
    content: "";
    position: absolute;
    left: -9.375vw;
    top: 50%;
    transform: translateY(-50%);
    height: var(--size-6);
    background-color: #fff;
    width: 0;
    animation: slideToRight .6s linear .2s forwards;
}
/* .inner-banner-text .breadcrumb{
    padding-bottom: 0;
} */

@keyframes slideToRight {
    0% {
        width: 0;
    }

    100% {
        width: calc(9.375vw * .8);
    }
}

@media screen and (max-width: 1600px) {
    .inner-banner-text .title:after{
        left: -6.25vw;
    }
    @keyframes slideToRight {
        0% {
            width: 0;
        }

        100% {
            width: calc(6.25vw * .8);
        }
    }
}


@media screen and (max-width: 767px) {
    .inner-banner{
        justify-content: center;
    }
    .inner-banner .inner-banner-text{
        height: 100%;
        padding: var(--size-60) 0;
        text-align: center;
    }
    .inner-banner-text .title:after{
        content: unset;
    }
}
/* inner-banner-text END */


/* search-banner */
.search-banner{
    padding-bottom: 4.16667vw;
    justify-content: center;
}
.search-banner.inner-banner.text-center .inner-banner-text .title{
    padding-bottom: 0;
}
.search-banner.inner-banner.text-center .inner-banner-text .title:after{
    content: unset;
}
.search-banner .search-wrap{
    position: relative;
    width: 45vw;
    margin: 0 auto;
    margin-top: var(--size-20);
}
.search-banner .search-wrap .iconfont{
    width: 3.4658333vw;
    height: 3.4658333vw;
    line-height: 3.4658333vw;
    text-align: center;
    position: absolute;
    right: 0;
    top: 0;
    color: var(--color-primary);
    cursor: pointer;
}
.search-banner .search-wrap .iconfont:hover{
    color: var(--color-primary);
}
@media screen and (max-width: 1439px) {
    .search-banner .search-wrap .iconfont{
        width: 50px;
        height: 50px;
        line-height: 50px;
    }
}
@media screen and (max-width: 991px) {
    .search-banner .search-wrap{
        width: 80vw;
    }
}
@media screen and (max-width: 767px) {
    .search-banner .search-wrap{
        width: 100%;
    }
}
@media screen and (max-width: 567px) {
    .search-banner{
        padding-bottom: .48rem;
    }
}
/* search-banner END */

/* ala-filter */
.ala-filter {
    background-color: #fff;
    border-radius: var(--size-6);
    padding: var(--size-30);
    margin-top: -4.16667vw;
    box-shadow: 0px 0px 20px 0px rgba(0,0,0,0.1);
}
.ala-filter .filter-item +.filter-item{
    margin-top: var(--size-9);
}
.ala-filter .filter-item{
    display: flex;
    color: var(--color-text-primary);
}
.ala-filter .filter-item .label{
    min-width: 5em;
    padding: var(--size-9) 0;
    margin: var(--size-4) 0;
}
.ala-filter .filter-item .label .iconfont{
    transform: scale(1.15);
    margin-right: var(--size-12);
    display: inline-block;
    /* color: var(--color-primary); */
}
.ala-filter .filter-item .value{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
}
.ala-filter .layui-form-checkbox,
.ala-filter .filter-item .value .option{
    padding: var(--size-9) var(--size-12);
    border-radius: var(--size-4);
    color: var(--color-text-secondary-grey);
    background-color: transparent;
    transition: all .4s ease-in-out;
    margin: var(--size-4) var(--size-15);
    cursor: pointer;
}
.ala-filter .layui-form-checkbox:hover,
.ala-filter .filter-item .value .option:hover{
    color: var(--color-secondary);
}
.ala-filter .layui-form-checkbox.layui-form-checked,
.ala-filter .filter-item .value .option.active{
    background-color: var(--color-primary);
    color: #fff!important;
}

.ala-filter .layui-form-checkbox[lay-skin=primary]{
    height: unset!important;
    line-height: unset!important;
    font-size: inherit!important;
}
.ala-filter .layui-form-checkbox[lay-skin=primary]>i{
    display: none!Important;
}
.ala-filter .layui-form-checkbox[lay-skin=primary]>div{
    color: inherit;
    font-size: inherit;
    margin: 0;
    padding: 0;
    line-height: unset;
}
@media screen and (max-width: 767px) {
    .ala-filter .filter-item{
        display: block;
    }
    .ala-filter .filter-item .label{
        width: 100%;
        margin: 0;
    }
    .ala-filter .filter-item .value{
        margin: -4px -5px;
    }
    .ala-filter .layui-form-checkbox,
    .ala-filter .filter-item .value .option{
        margin: 4px 5px;
    }
}
@media screen and (max-width: 567px) {
    .ala-filter{
        margin-top: -.48rem;
    }
}
/* ala-filter */

.ala-text{
    color: var(--color-text-secondary-grey);
}
.ala-text em{
    font-style: normal;
    color: var(--color-primary);
}

/* secondary-menu */
.secondary-menu{
    position: -webkit-sticky;
    position: sticky;
    top: var(--size-30);
    transition: all .4s ease-in-out;
    max-height: calc(100vh - var(--size-30));
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(0,0,0,0.05);
    background-color: #fff;
    border-radius: var(--size-6);
    padding: 0 var(--size-24);
}
.header-fixed.header-show .secondary-menu{
    top: calc(7.291667vw + var(--size-30));
}
.secondary-menu>*{
    z-index: 9;
    position: relative;
}
.header-fixed.header-show .secondary-menu{
    max-height: calc(100vh - 7.291667vw - var(--size-30));
}
.secondary-menu .secondary-menu-body{
    padding: var(--size-24) 0;
    background: url(../images/secondary-menu-bg.png) right bottom no-repeat;
    background-size: 80% auto;
    padding-bottom: var(--size-100);
}
.secondary-menu .secondary-menu-head .iconfont{
    display: none;
}
.secondary-menu-list{
    position: relative;
}
.secondary-menu-list .item{
    position: relative;
    border-bottom: var(--size-1) solid var(--border-color-lighter);
}
.secondary-menu-list .item a{
    /* padding-left: var(--size-20); */
    color: inherit;
    font-weight: 600;
    transition: all .4s ease-in-out;
    display: block;
    position: relative;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-right: var(--size-20);
}
.secondary-menu-list .item>a{
    padding: var(--size-18) 0;
}
.secondary-menu-list .item>a .iconfont{
    color: var(--color-primary);
    margin-left: var(--size-6);
    font-size: .6em;
    display: inline-block;
    transition: all .4s ease-in-out;
}
.secondary-menu-list .item.open>a .iconfont{
    transform: rotate(90deg);
}
.secondary-menu-list .item a:before{
    content: "";
    position: absolute;
    left: 0;
    top: .1em;
    bottom: .1em;
    width: var(--size-2);
    background-color: var(--color-primary);
    opacity: 0;
    transition: all .4s ease-in-out;
}
.secondary-menu-list .item>a:hover,
.secondary-menu-list .item.active{
    color: var(--color-primary);
}

.secondary-menu.is-menu .item a{
    align-items: flex-start;
}
.secondary-menu.is-menu .item .dot{
    width: var(--size-16);
    height: var(--size-16);
    border: var(--size-1) dotted var(--border-color);
    position: relative;
    border-radius: 50%;
    top: .25em;
    transition: all .4s ease-in-out;
}
.secondary-menu.is-menu .item .dot:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    width: 50%;
    height: 50%;
    border-radius: 50%;
    background-color: var(--border-color);
    transform: translate(-50%,-50%);
    transition: all .4s ease-in-out;
}
.secondary-menu.is-menu .item .dot+span{
    flex: 1;
    padding-left: var(--size-12);
}
.secondary-menu.is-menu .item>a:hover .dot,
.secondary-menu.is-menu .item.active .dot{
    border-color: var(--color-primary);
}
.secondary-menu.is-menu .item>a:hover .dot:after,
.secondary-menu.is-menu .item.active .dot:after{
    background-color: var(--color-primary);
}

/* 二级 */
.secondary-menu-list .item .child-menu{
    /* margin-top: var(--size-20); */
    display: none;
    margin: var(--size-12) 0 var(--size-24);
}
.secondary-menu-list .item.open .child-menu{
    display: block;
}
.secondary-menu-list .item .child-menu>li a{
    color: var(--color-text-secondary-grey);
    font-weight: normal;
    /* padding-left: var(--size-20); */
}
.secondary-menu-list .item .child-menu>li.active a,
.secondary-menu-list .item .child-menu>li a:hover{
    color: var(--color-primary);
}
/* .secondary-menu-list .item .child-menu>li.active a:before{
    opacity: 1;
} */
.secondary-menu-list .item .child-menu>li+li{
    margin-top: var(--size-15);
}

.secondary-menu-list .item .child-menu .layui-form-checkbox{
    width: 100%;
    display: block;
    margin-bottom: var(--size-24);
}
.secondary-menu-list .item .child-menu .layui-form-checkbox .layui-icon-ok:before{
    content: "\e75d";
    font-family: "iconfont";
}
.secondary-menu-list .item .child-menu .layui-form-checkbox:last-child{
    margin-bottom: 0;
}
@media screen and (min-width: 991px) {
    
    .secondary-menu .secondary-menu-body{
        display: block!important;
    }
    .secondary-menu .secondary-menu-head{
        pointer-events: none!important;
        display: none!important;
    }
}
@media screen and (max-width: 1920px) {
    .secondary-menu-list .item:before{
        width: 2px;
    }
}
@media screen and (max-width: 1439px) {
    .header-fixed.header-show .secondary-menu{
        top: calc(105px + var(--size-30));
    }
}
@media screen and (min-width: 1200px) {
    .block.has-secondary-menu>.layui-container>.layui-row>.layui-col-lg2{
        min-width: 17.1875vw;
    }
    .block.has-secondary-menu>.layui-container>.layui-row>.layui-col-lg10{
        flex: 1;
        overflow: hidden;
    }
}
@media screen and (max-width: 991px) {
    /* .block.has-secondary-menu{
        padding-top: 0!important;
    } */
    .secondary-menu-col{
        display: none;
    }
    .block.has-secondary-menu>.layui-container>.layui-row>.layui-col-lg2{
        padding-bottom: 0;
    }
    .header-fixed.header-show .secondary-menu{
        top: 75px;
    }
    .secondary-menu{
        background-color: #fff;
        transition: all .4s ease-in-out;
        transition: top .3s ease-in-out;
        position: static;
        top: unset;
        min-height: unset!important;
    }
    .secondary-menu:after,
    .secondary-menu::before{
        content: unset;
    }
    .secondary-menu .secondary-menu-head{
        cursor: pointer;
        height: var(--size-72);
        line-height: var(--size-72);
        transition: all .4s ease-in-out;
        /* margin-left: -6.25vw;
        margin-right: -6.25vw;
        padding: 0 6.25vw;
        background-color: var(--bg-grey); */
    }
    .secondary-menu .secondary-menu-head .iconfont{
        display: block;
    }
    .secondary-menu .secondary-menu-body{
        display: none;
    }


    .secondaryMenuTemp {
        height: var(--size-72);
        display: none;
    }

    .secondary-menu-fixed .secondary-menu-shade {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .75);
        z-index: 998;
        display: none;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
    .secondary-menu-fixed header {
        box-shadow: unset;
    }
    .secondary-menu-fixed .secondary-menu {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
        padding: 0 6.25vw;
        border-bottom: var(--size-1) solid var(--border-color);
    }
    .header-fixed.header-show.secondary-menu-fixed .secondary-menu  {
        top: 75px!important;
    }
    .secondary-menu-fixed .secondary-menu .secondary-menu-body{
        padding-bottom: var(--size-36);
    }
}

@media screen and (max-width: 567px) {
    /* .secondary-menu .secondary-menu-head{
        margin-left: -.32rem;
        margin-right: -.32rem;
        padding: 0 .32rem;
    } */
    .secondary-menu-fixed .secondary-menu{
        padding: 0 .32rem;
    }
}
/* secondary-menu END */

/* sub-category-nav */

.sub-category-nav{
    position: relative;
    margin-bottom: var(--size-40);
}
.sub-category-nav .swiper-container{
    padding-bottom: var(--size-9);
}
.sub-category-nav .swiper-slide{
    width: auto;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    color: var(--color-text-primary);
    transition: color .3s ease-in-out;
}
.sub-category-nav .swiper-slide a{
    display: block;
    padding: var(--size-12) var(--size-36);
    color: inherit;
    background-color: var(--bg-grey);
    /* border: var(--size-1) solid var(--border-color); */
    border-radius: var(--size-6);
    transition: all .4s ease-in-out;
}
.grey .sub-category-nav .swiper-slide a{
    background-color: #fff;
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(0,0,0,0.05);
}
.sub-category-nav .swiper-slide+.swiper-slide{
    margin-left: var(--size-18);
}
.sub-category-nav .swiper-slide:hover a{
    color: var(--color-primary);
    border-color: var(--color-primary);
}
.sub-category-nav .swiper-slide.active a{
    color: #fff;
    background-color: var(--color-primary)!important;
    border-color: var(--color-primary);
    box-shadow: unset!important;
}
.sub-category-nav.is-round .swiper-slide a {
    background-color: transparent;
    border-radius: var(--size-100);
}
.sub-category-nav.is-round .swiper-slide+.swiper-slide{
    margin-left: 0;
}
.sub-category-nav.is-center{
    display: flex;
    justify-content: center;
}
.sub-category-nav.is-center .swiper-container{
    width: unset;
}
@media screen and (max-width: 767px) {
    /* .sub-category-nav .swiper-slide+.swiper-slide{
        margin-left: var(--size-45);
    } */
}

/* sub_category-nav END */

/* filter */
.filter {
    margin-bottom: 1.71875vw;
    padding: 2.34275vw;
    background-color: var(--bg-primary);
    /* border: 1px solid var(--border-color); */
}
.filter.bg-primary{
    background: var(--color-secondary);
    border-color: var(--color-secondary);
}

.filter .layui-form-item {
    margin-bottom: 0;
    position: relative;
    flex: 1;
    overflow: hidden;
    width: 100%;
    max-width: 280px;
}

.filter .layui-form-item>*+* {
    margin-left: 15px;
}

.filter .layui-input {
    background-color: #fff;
}

.filter .layui-form>.ala-flex {
    max-width: 50%;
}

.filter .layui-form .ala-flex .layui-form-select,
.filter .layui-form .ala-flex .layui-input {
    width: 100%;
    flex: 1;
}

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

    .filter .layui-form>.ala-flex {
        max-width: 60%;
    }
}

@media screen and (max-width: 991px) {
    .filter .layui-form>.ala-flex {
        max-width: 100%;
    }
}

@media screen and (max-width:567px) {
    .filter {
        padding: .4rem .3rem;
        margin-bottom: .4rem;
    }
}

/* filter END */


/* ala-tab */
.layui-tab {
    margin: 0;
    overflow: hidden;
}

.layui-tab .layui-tab-bar {
    display: none;
}

.ala-tab .layui-tab-title {
    height: unset;
    border-bottom: 0;
    font-size: inherit;
}

.ala-tab .layui-tab-title li {
    height: unset;
    line-height: inherit;
    font-size: inherit;
    background-color: transparent;
}

.ala-tab .layui-tab-title li a {
    padding: 1.25vw;
    display: block;
    color: inherit;
    line-height: 1.2;
    min-width: 10.4166667vw;
    text-align: center;
}

.ala-tab .layui-tab-title .layui-this:after {
    content: unset;
}

.ala-tab .layui-tab-title li:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--size-4);
    background: var(--color-primary);
    opacity: 0;
}
.ala-tab .layui-tab-title .layui-this{
    background-color: var(--bg-primary);
}
.ala-tab .layui-tab-title .layui-this:before{
    opacity: 1;
}

.ala-tab .layui-tab-content {
    padding: 0;
}

@media screen and (max-width: 1439px) {
    .ala-tab .layui-tab-title li a {
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

@media screen and (max-width: 1199px) {
    .ala-tab .layui-tab-title li a {
        min-width: 125px;
        padding: 18px 15px;
    }
}

@media screen and (max-width: 767px) {
    .ala-tab .layui-tab-title {
        display: table;
        width: 100%;
    }

    .ala-tab .layui-tab-title li {
        text-align: center;
        min-width: 0;
        display: table-cell;
    }

    .ala-tab .layui-tab-title li a {
        padding: 18px 12px;
        min-width: 0;
    }
}

@media screen and (max-width: 567px) {
    .ala-tab .layui-tab-title li a {
        padding: .36rem .24rem;
    }
}

/* ala-tab END */

/* faculty-filter */
.faculty-filter{
    padding-bottom: var(--size-80);
    margin-bottom: var(--size-80);
    border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.faculty-filter form{
    position: relative;
}
.faculty-filter form button{
    position: absolute;
    right: 0;
    top: 0;
    background-color: unset;
    outline: unset;
    border: unset;
}
.faculty-filter form .layui-input {
    background: #F8F8F8;
    width: calc(var(--size-100)*3.3);
    height: var(--size-60);
    line-height: var(--size-60);
    padding-right: var(--size-60);
    border-radius: var(--size-60);
    padding-left: var(--size-24);
}
.faculty-filter form .iconfont {
    display: block;
    width: var(--size-60);
    height: var(--size-60);
    line-height: var(--size-60);
    text-align: center;
    color: var(--color-primary);
    z-index: 9;
    cursor: pointer;
}

.faculty-filter .filter-item{
    display: flex;
}
.faculty-filter .filter-item+.filter-item{
    margin-top: var(--size-40);
}
.faculty-filter .filter-item .label{
    width: 5em;
    text-align: justify;
    margin: var(--size-6) 0;
    height: var(--size-54);
    line-height: var(--size-54);
}
.faculty-filter .filter-item .label i{
    display: inline-block;
    width: 100%;
}
.faculty-filter .filter-item .value{
    flex: 1;
}
.faculty-filter .filter-item .label+.value{
    padding-left: var(--size-30);
}
.faculty-filter .options{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    margin: var(--size-9-reverse);
}
.faculty-filter .options .item{
    height: var(--size-54);
    display: flex;
    align-items: center;
    justify-content: center;
    background: #EFEFEF;
    border: var(--size-1) solid #D5D5D5;
    border-radius: var(--size-9);
    margin: var(--size-9);
    cursor: pointer;
    transition: all .4s;
    padding: 0 var(--size-24);
    min-width: 8em;
}
.faculty-filter .options .item.active{
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.faculty-filter .options .item:not(.active):hover{
    color: var(--color-primary);
    border-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
    .faculty-filter form .layui-input {
        background: #F8F8F8;
        width: calc(var(--size-100)*2.7);
        height: var(--size-60);
        line-height: var(--size-60);
        padding-right: var(--size-60);
        border-radius: var(--size-60);
        padding-left: var(--size-24);
    }
    .faculty-filter .filter-item{
        display: block;
    }
    .faculty-filter .filter-item .value{
        padding-left: 0;
    }
    .faculty-filter .options .item{
        padding: 0 1em;
        min-width: 7.5em;
    }
}
/* faculty-filter END */
/* letter-filter */
.letter-filter {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.letter-filter .item {
    height: var(--size-48);
    width: var(--size-48);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    /* border: 1px solid transparent; */
    cursor: pointer;
    transition: all .4s;
    background-color: transparent;
    position: relative;
    margin: var(--size-6) 0;
}
.letter-filter .item.all{
    width: 2em;
    padding: 0 var(--size-24);
    box-sizing: content-box;
}

.letter-filter .item:hover {
    color: var(--color-secondary);
}

.letter-filter .item.active {
    /* border-color: var(--color-secondary); */
    background-color: var(--color-primary);
    color: #fff;
}

.letter-filter .item.disabled {
    cursor: not-allowed;
    color: #bcbec2;
}

@media screen and (max-width: 1439px) {
    .letter-filter {
        flex-wrap: wrap;
        justify-content: flex-start;
    }
}

/* letter-filter END */
.faculty-container .slide-door{
    border: var(--size-1) solid var(--border-color);
}
.faculty-container .slide-door+.slide-door{
    margin-top: var(--size-20);
}
.faculty-container .slide-door .accordion-title{
    padding: var(--size-24) var(--size-30);
    background-color: var(--bg-grey);
}
.faculty-container .slide-door .accordion-title:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: var(--size-4);
    background-color: var(--color-primary);
}
.faculty-container .slide-door .accordion-title:after{
    right: var(--size-30);
}
.faculty-container .slide-door .accordion-content{
    background-color: transparent;
    padding: var(--size-30);
    border-top: var(--size-1) solid var(--border-color);
    background-color: #fff;
}

/* .faculty-container .name-list .name-item{
    background-color: transparent;
    text-align: left;
    padding: 0;
} */

/* faculty-list */
.faculty-list .faculty-item{
    display: flex;
    background-color: var(--bg-grey);
    height: 100%;
    transition: all .4s ease-in-out;
    position: relative;
}
.faculty-list .faculty-item>*{
    position: relative;
}
.faculty-list a.faculty-item:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/faculty-bg.png) right center no-repeat;
    background-size: auto 100%;
    opacity: 0;
    transition: all .4s ease-in-out;
}
.faculty-list a.faculty-item:hover:before{
    opacity: 1;
}
.faculty-list a.faculty-item:hover{
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.1);
}
.faculty-list .faculty-item .img-box{
    width: 10.9375vw;
    height: 14.2185vw;
    position: relative;
    overflow: hidden;
    /* align-self: center; */
}
.faculty-list .faculty-item .img-box .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.faculty-list .faculty-item .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.faculty-list .faculty-item .text-box{
    flex: 1;
    padding: var(--size-24);
    transition: all .4s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.faculty-list .faculty-item .text-box>*{
    width: 100%;
}
.faculty-list .faculty-item .text-box .title{
    margin-top: var(--size-12);
    color: var(--color-text-secondary-grey);

    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.faculty-list .faculty-item .text-box .head-wrap{
    display: flex;
    line-height: 1;
    align-items: flex-end;
}
.faculty-list .faculty-item .text-box .head-wrap .title{
    -webkit-line-clamp: 1;
    margin-top: 0;
    flex: 1;
    margin-left: var(--size-9);
    color: var(--color-text-secondary-grey);
}
.faculty-list .faculty-item .text-box .info{
    margin-top: var(--size-12);
    color: var(--color-text-secondary-grey);
}
.faculty-list .faculty-item .text-box .info span{
    display: block;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.faculty-list .faculty-item .text-box .info .ala-icon{
    margin-right: var(--size-12);
    display: inline-flex;
}
.faculty-list .faculty-item .text-box .info span+span{
    margin-top: var(--size-6);
}
@media screen and (max-width: 1439px) {
    .faculty-list .faculty-item .img-box{
        width: 158px;
        height: 205px;
    }
}
@media screen and (max-width: 991px) {
    .faculty-list .faculty-item .img-box{
        width: 140px;
        height: 182px;
    }
}
@media screen and (max-width: 567px) {
    .faculty-list .faculty-item .img-box{
        width: 2.8rem;
        height: 3.64rem;
    }
    .faculty-list .faculty-item .text-box{
        padding: .2rem .3rem;
    }
    .faculty-list .faculty-item .text-box .title{
        /* margin-top: .06rem; */
        line-height: 1.3;
    }
    .faculty-list .faculty-item .text-box .info{
        margin-top: .2rem;
        line-height: 1.3;
    }
    .faculty-list .faculty-item .text-box .info .iconfont{
        margin-right: 0.16rem;
        width: 0.5rem;
        height: 0.5rem;
        line-height: .5rem;
        font-size: .3rem;
    }
}
/* faculty-list END */

/* name-list */
.name-section>.row-flex{
    flex-wrap: nowrap;
}
.name-section .label{
    width: 8em;
    font-weight: 600;
}
.name-section+.name-section{
    margin-top: var(--size-30);
    border-top: var(--size-1) solid var(--border-color);
    padding-top: var(--size-30);
}
.name-list{
    flex: 1;
}
.name-list .layui-row>*{
    overflow: hidden;
    text-overflow: ellipsis;
}
.name-list .name-item{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .4s ease-in-out;
    background-color: var(--bg-grey);
    text-align: center;
    padding: var(--size-18) var(--size-6);
    display: block;
}
.name-list a.name-item:hover{
    color: var(--color-secondary);
    /* text-decoration: underline; */
}
@media screen and (max-width: 767px) {
    .name-section>.row-flex{
        display: block;
    }
    .name-section .label{
        width: 100%;
    }
}
/* name-list END */

/* ala-empty */
.ala-empty{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--color-text-secondary-grey);
    padding: 3.125vw 0;
}
.ala-empty img{
    width: 12.5vw;
    margin-bottom: var(--size-12);
}
@media screen and (max-width: 1920px) {
    .ala-empty img{
        width: 240px;
    }
}
/* ala-empty END */

/* faculty-banner */
.faculty-banner{
    height: 25vw;
    min-height: 180px;
}
/* faculty-banner END */

/* people-detail */
.people-detail .people-left{
    padding: var(--size-12);
    padding-bottom: 0;
    /* background-color: #fff; */
    margin-top: -8vw;
    position: sticky;
    position: -webkit-sticky;
    top: var(--size-45);
    transition: all .4s ease-in-out;
}
.people-detail .people-left .people-img{
    /* max-width: 80%; */
    position: relative;
}
.people-detail .people-img .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 130%;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.people-detail .people-img .img-box .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.people-detail .people-img .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.people-detail .people-menu,
.people-detail .people-info{
    position: relative;
    padding-top: var(--size-48);
}

.people-detail .people-info .people-text{
    line-height: 1;
    display: flex;
    align-items: flex-end;
}
.people-detail .people-info .name{
    position: relative;
}
.people-detail .people-info .title{
    margin-left: var(--size-9);
    color: var(--color-text-secondary-grey);
}
.people-detail .people-info .people-title{
    margin-top: var(--size-15);
}
.people-detail .people-info .info{
    margin-top: var(--size-30);
    color: var(--color-text-secondary-grey);
    line-height: 1;
}
.people-detail .people-info .info span{
    display: block;
    align-items: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.people-detail .people-info .info .ala-icon{
    margin-right: var(--size-12);
    display: inline-flex;
}
.people-detail .people-info .info span+span{
    margin-top: var(--size-6);
}


.people-detail .people-menu{
    padding-top: var(--size-36);
    padding-left: 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    transition: all .4s ease-in-out;
    margin-left: var(--size-12);
}
.header-fixed.header-show .people-detail .people-left{
    top: calc(7.291667vw + var(--size-40));
}
.people-detail .people-menu li{
    cursor: pointer;
    display: block;
    position: relative;
}
.people-detail .people-menu li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: var(--size-4);
    background: var(--bgColor-primary);
    opacity: 0;
}
.people-detail .people-menu li:hover,
.people-detail .people-menu li.active{
    font-weight: 600;
}
.people-detail .people-menu li.active:before{
    opacity: 1;
}
.people-detail .people-menu li+li{
    margin-top: var(--size-15);
}

.people-detail .section-head{
    position: relative;
    padding-left: var(--size-15);
    border-left: var(--size-4) solid var(--color-primary);
    line-height: 1;
    margin-bottom: var(--size-24);
    color: var(--color-text-primary);
}
@media screen and (max-width: 1439px) {
    .header-fixed.header-show .people-detail .people-left{
        top: calc(105px + var(--size-40));
    }
}
@media screen and (max-width: 1199px) {
    .people-detail .people-left .people-img:before{
        left: -8px;
        top: -8px;
    }
}
@media screen and (max-width: 991px) {
    .header-fixed.header-show .people-detail .people-left{
        top: calc(75px + var(--size-40));
    }
    .people-detail .people-left{
        margin-top: -120px;
    }
    .people-detail .people-left .people-img{
        max-width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .people-detail .people-menu{
        display: none;
    }
    .people-detail .people-left{
        display: flex;
        align-items: flex-start;
    }
    .people-detail .people-left .people-img{
        width: 160px;
    }
    .people-detail .people-info{
        margin-top: 72px;
        margin-left: 15px;
        flex: 1;
    }
    .people-detail .people-info:before{
        content: unset;
    }
}
@media screen and (max-width: 567px) {
    .people-detail .people-left{
        margin-top: -100px;
    }
    .people-detail .people-left .people-img:before{
        left: -.16rem;
        top: -.16rem;
    }
    .people-detail .people-info{
        margin-top: calc(60px - .16rem);
        margin-left: .3rem;
    }
    .people-detail .people-left .people-img{
        width: 2.4rem;
    }
}

/* .faculty-detail-block{
    background: url(../images/faculty-detail-bg.jpg) center bottom no-repeat;
    background-size: 100% auto;
}
.faculty-detail-block:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/faculty-detail-bg-top.jpg) center top no-repeat;
    background-size: 100% auto;
} */

/* people-detail END */

/* .error-block */
.error-block {
    min-height: 100vh;
    display: flex;
    align-items: center;
}
.error-block .row-flex{
    align-items: center;
}
.error-block .img-box{
    display: flex;
    align-items: center;
    justify-content: center;
}
.error-block img{
    max-height: 75vh;
}
.error-block hr{
    margin: var(--size-45) 0;
}
@media screen and (max-width: 767px) {
    .error-block img{
        max-width: 60vw;
        width: 320px;
    }
    .error-block .error-text{
        text-align: center;
    }
}
/* .error-block END */


/* Home */

/* journal-block */
.journal-block{
    position: relative;
}
.journal-block-bg{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.journal-block-bg .circle{
    width: 47vw;
    height: 47vw;
    position: relative;
}
.journal-block-bg .circle:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    border: var(--size-1) dashed var(--color-primary);
    opacity: .2;
    -webkit-animation: rotate 42s linear infinite;
    -o-animation: rotate 42s linear infinite;
    animation: rotate 42s linear infinite;
}
.journal-block-bg .circle:before{
    content: "";
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 30vw;
    height: 30vw;
    border-radius: 50%;
    background-color: #F2F4F6;
    opacity: 1;
}
@-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);
    }
}
/* journal-block END */

/* journal-swiper */
.journal-swiper {
    margin: 0 -4.375vw;
    margin-top: var(--size-48);
}
.journal-swiper .swiper-container{
    overflow: unset;
}
.journal-swiper .swiper-slide{
    padding: 0 4.375vw;
}
.journal-swiper .slide-card{
    text-align: center;
    transition: all .4s ease-in-out;
}
.journal-swiper .slide-card:hover{
    transform: scale(1.1);
}
.journal-swiper .slide-card .img-box-post{
    padding-bottom: 133%;
    border-radius: 0;
    box-shadow: var(--size-9) var(--size-15) var(--size-20) 0px rgba(0,0,0,0.2);
}
.journal-swiper .slide-card .img-box-post .img img{
    transform: scale(1);
}
/* .journal-swiper .slide-card .text-box{
    padding-top: 0;
} */
.journal-swiper .iconfont{
    width: var(--size-48);
    height: var(--size-48);
    line-height: var(--size-48);
    text-align: center;
    border-radius: 50%;
    background: transparent;
    border: var(--size-1) solid var(--color-text-secondary);
    margin: 0 var(--size-15);
    color: var(--color-text-secondary);
    cursor: pointer;
}
.journal-swiper .iconfont.pause,
.journal-swiper .iconfont:hover{
    border-color: transparent;
    background-color: var(--color-primary);
    color: #fff;
}
.journal-swiper .iconfont.pause:before{
    content: "\e65a";
}
.journal-swiper .swiper-btn .swiper-button-next, 
.journal-swiper .swiper-btn .swiper-button-prev{
    border: var(--size-1) solid var(--color-text-secondary);
    color: var(--color-text-secondary);
}
.journal-swiper .swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover, 
.journal-swiper .swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover {
    border-color: transparent;
}
/* journal-swiper END */


/* news-list */
.news-list{
    padding-top: var(--size-30);
    border-top: var(--size-1) solid rgba(0, 0, 0, .1);
}
.news-list .news-item{
    display: block;
    padding-bottom: var(--size-30);
    margin-bottom: var(--size-30);
    position: relative;
}
.news-list .news-item:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-1);
    background-color: rgba(0, 0, 0, .1);
}
.news-list .news-item:after{
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    height: var(--size-1);
    background-color: var(--color-primary);
    transition: all .4s ease-in-out;
}
.news-list .news-item:hover:after{
    width: 100%;
}
.news-list .news-item .text-box{
    flex: 1;
}
.news-list .news-item .tag{
    line-height: 1;
}
.news-list .news-item .tag,
.news-list .news-item .time{
    color: var(--color-text-secondary);
    line-height: 1;
}
.news-list .news-item .tag.color_secondary{
    color: var(--color-secondary);
}
.news-list .news-item .img-box{
    width: 6.25vw;
    padding-bottom: 4.6875vw;
    margin-left: var(--size-45);
    border-radius: var(--size-6);
    overflow: hidden;
}
.news-list .news-item .title{
    color: var(--color-text-primary);
    transition: all .4s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}
.news-list .news-item .desc{
    opacity: .85;
    line-height: 1.7;
}
.news-list .news-item:hover .title{
    color: var(--color-primary);
}

.news-list .news-item .info .sep{
    height: 1em;
    width: var(--size-1);
    background-color: rgba(0, 0, 0, .1);
    margin: 0 var(--size-12);
    display: inline-block;
}

.news-list .info-wrap{
    margin-top: var(--size-20);
}
.news-list .info-wrap .item{
    display: flex;
    align-items: center;
}
.news-list .text-box .info-wrap .iconfont{
    margin-right: var(--size-9);
}
.news-list .info-wrap .item .ala-icon{
    margin-right: var(--size-9);
}
.news-list .info-wrap .item .ala-icon .iconfont{
    margin-right: 0;
}
.news-list .info-wrap .item+.item{
    margin-top: var(--size-9);
}
.news-list .news-item .text-box+.calendar,
.news-list .news-item .calendar+.text-box{
    margin-left: var(--size-45);
}
.news-list .news-item .calendar{
    width: var(--size-80);
    height: var(--size-80);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    background-color: var(--color-primary);
    border-radius: var(--size-6);
    line-height: 1;
}

/* .color_white .news-list .news-item{
    border-bottom: var(--size-1) dashed rgba(255, 255, 255, .15);
} */
.color_white .news-list .news-item:after,
.color_white .news-list .news-item:before{
    background-color: transparent;
    border-bottom: var(--size-1) solid #fff;
}
.color_white .news-list .news-item:before{
    border-bottom: var(--size-1) dashed rgba(255, 255, 255, .3);
}
.color_white .news-list .news-item .info .sep{
    background-color: rgba(255, 255, 255, .2);
}
.color_white .news-list .info-wrap,
.color_white .news-list .news-item .info,
.color_white .news-list .news-item .title,
.color_white .news-list .news-item .tag,
.color_white .news-list .news-item .time,
.color_white .news-list .news-item .desc{
    color: #fff;
}
@media screen and (max-width: 1200px) {
    .news-list .news-item .img-box{
        width: 75px;
        padding-bottom: 56.25px;
    }
}
/* news-list END */

.news-block .bg{
    position: absolute;
}
.news-block .bg img{
    width: 100%;
}
.news-block .bg2{
    right: 0;
    width: 42.876vw;
    bottom: 0;
    transform: translateY(20%);
    opacity: .5;
}

.activity-block{
    position: relative;
}
.activity-block .bg{
    position: absolute;
}
.activity-block .bg img{
    width: 100%;
}
.activity-block .bg1{
    left: 0;
    top: 0;
    width: 50vw;
}
@media screen and (max-width: 991px) {
    .activity-block .bg1 {
        width: 70vw;
    }
    .home-announcement {
        padding-top: var(--size-54);
    }
}


/* event-swiper */
.event-swiper{
    display: block;
    position: relative;
}
.event-swiper.swiper-btn .swiper-button-next, 
.event-swiper.swiper-btn .swiper-button-prev{
    background-color: var(--color-third);
    color: #fff;
    border-color: transparent!important;
    position: absolute;
    top: 27%;
    opacity: 0;
    transition: all .4s ease-in-out;
}
.event-swiper.swiper-btn .swiper-button-prev{
    transform: translateX(-100%);
    left: 0;
}
.event-swiper.swiper-btn .swiper-button-next{
    transform: translateX(100%);
    right: 0;
}
.event-swiper.swiper-btn:hover .swiper-button-prev{
    transform: translateX(-50%);
    opacity: 1;
}
.event-swiper.swiper-btn:hover .swiper-button-next{
    transform: translateX(50%);
    opacity: 1;
}
.event-swiper .swiper-slide{
    height: unset;
}
.event-swiper .swiper-slide .slide-card{
    height: 100%;
}

@media screen and (max-width: 991px) {
    .event-swiper.swiper-btn .swiper-button-prev{
        transform: translateX(-50%);
        opacity: 1;
    }
    .event-swiper.swiper-btn .swiper-button-next{
        transform: translateX(50%);
        opacity: 1;
    }
}
@media screen and (max-width: 567px) {
    .event-swiper.swiper-btn .swiper-button-prev{
        transform: translateX(-30%)!important;
        opacity: 1;
    }
    .event-swiper.swiper-btn .swiper-button-next{
        transform: translateX(30%)!important;
        opacity: 1;
    }
}
/* event-swiper END */


/* media-column */
.media-column .slide .img-box-post:before{
    opacity: 1;
    height: 80%;
    background: linear-gradient( to bottom, rgba(0,0,0,0) 0%, #000000 100%);
    opacity: .8;
}
.media-column .more-link::before{
    content: unset;
}
.media-column .left-column .slide+.slide{
    margin-top: 20px;
}
.media-column .slide .text-box{
    height: unset;
    bottom: -2.2em;
    margin-top: 0;
    display: block;
    top: unset;
}
.media-column .slide:hover .text-box{
    bottom: 0;
    -webkit-backdrop-filter: unset;
    backdrop-filter: unset;
}
.media-column .slide .text-box .title {
    margin-top: var(--size-9);
}
@media screen and (min-width: 768px) {
    .media-column .left-column{
        height: 100%;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .media-column .left-column .slide{
        flex: 1;
    }
    .media-column .left-column .slide .img-box{
        position: absolute;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        padding: 0;
        height: unset;
    }
}

.media-column .right-column{
    height: 100%;
    border-radius: var(--size-12);
    padding: var(--size-24) var(--size-30);
    background: #7C1219 url(../images/bg_6.png) center center no-repeat;
    background-size: cover;
}
.media-column .right-column .news-list{
    border-top: 0;
    padding-top: 0;
}
.media-column .right-column .news-list .news-item{
    padding-bottom: var(--size-20);
    margin-bottom: var(--size-20);
}
.media-column .right-column .news-list .news-item:last-child{
    margin-bottom: 0;
}
@media screen and (max-width: 1199px) {
    .media-column .right-column{
        /* padding: var(--size-45); */
        display: none;
    }
}
/* media-column END */

/* Home END */

/* about */
.about-fixed{
    position: sticky;
    position: -webkit-sticky;
    top: var(--size-20);
    transition: all .4s ease-in-out;
}
.header-fixed.header-show .about-fixed {
    top: calc(7.291667vw + var(--size-20));
}
@media screen and (max-width: 1439px) {
    .header-fixed.header-show .about-fixed{
        top: calc(105px + var(--size-20));
    }
}
@media screen and (max-width: 991px) {
    .header-fixed.header-show .about-fixed{
        top: calc(75px + var(--size-20));
    }
}
.about-container .about-img-box img{
    width: 100%;
}
.about-container .about-video{
    margin-top: var(--size-60);
}
.about-container .about-video .text{
    color: var(--color-primary);
    display: inline-block;
    border-bottom: var(--size-1) solid var(--color-primary);
    margin-top: var(--size-15);
}

.about-organization{
    max-width: 70vw;
    margin: 0 auto;
}
.about-organization img{
    width: 100%;
}
@media screen and (max-width: 1199px) {
    .about-organization{
        max-width: 100%;
    }
}
/* about END */




/* ala-table */
.ala-table{
    margin: var(--size-30) 0;
}
.ala-table-filter{
    margin-bottom: var(--size-20);
}
.ala-table-filter .layui-input{
    height: var(--size-60)!important;
    line-height: var(--size-60)!important;
    background-color: unset;
    border: var(--size-1) solid var(--border-color);
    border-radius: var(--size-100);
    padding: 0 var(--size-24)!important;
    padding-right: var(--size-45)!important;
}
.ala-table-filter .layui-form-select .layui-edge{
    right: var(--size-24);
    line-height: var(--size-60)!important;
}
.ala-table .layui-table{
    color: inherit;
}
.ala-table .layui-table-body,
.ala-table .layui-table-header .layui-table{
    margin: 0;
}
.ala-table .layui-table-view:after{
    content: unset;
}
.ala-table .layui-table-header,
.ala-table .layui-table-view,
.ala-table .layui-table td,
.ala-table .layui-table th{
    border: 0;
    font-size: inherit;
}
.ala-table .layui-table td,
.ala-table .layui-table th{
    border-bottom: var(--size-1) solid var(--border-color);
}
.ala-table .layui-table-cell{
    padding: var(--size-20) var(--size-15);
    height: unset;
    line-height: 1.5;
}
.ala-table .layui-table-header{
    border-top: var(--size-2) solid var(--color-primary);
    z-index: 8;
}
.ala-table .layui-table-header th{
    background-color: var(--bg-grey);
    font-weight: normal;
}

.ala-table .layui-table-body{
    z-index: 9;
}
.ala-table .layui-table-box,
.ala-table .layui-table-fixed .layui-table-body{
    overflow: unset;
}
.ala-table .layui-table-body tbody tr:nth-of-type(even) td{
    background: #fff;
}

.ala-table .layui-table-body tbody td{
    color: var(--color-text-secondary-grey);
}
.ala-table .layui-table-body tbody td .title,
.ala-table .layui-table-body tbody td strong,
.ala-table .layui-table-body tbody td a{
    color: var(--color-text-primary);
    transition: all .4s ease-in-out;
}
.ala-table .layui-table-body tbody td a:hover{
    color: var(--color-secondary);
    text-decoration: underline;
}
.ala-table .layui-table-body .icon{
    display: block;
    width: var(--size-30);
    height: var(--size-30);
    background: url(../images/icon_download_1.svg) center center no-repeat;
    background-size: contain;
    object-fit: contain;
}
/* .ala-table .layui-table-body .icon:hover{
    background: url(../images/icon_download_selected.svg) center center no-repeat;
    background-size: contain;
} */

.ala-table .layui-table-page{
    text-align: center;
    padding: 0;
    margin-top: var(--size-48);
    border: 0;
}
.ala-table .layui-table-page>div{
    height: unset;
}

/* 自定义分页样式 */
#custom-pagination {
    text-align: center;
    margin-top: var(--size-30);
    padding: var(--size-20) 0;
}

#custom-pagination .layui-laypage-btn {
    margin: 0 2px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

#custom-pagination .layui-laypage-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

#custom-pagination .layui-laypage-curr {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}

#custom-pagination .layui-laypage-prev,
#custom-pagination .layui-laypage-next {
    padding: 0 12px;
}

#custom-pagination .layui-laypage-spr {
    padding: 0 8px;
    color: #999;
}

.ala-table .layui-table-sort .layui-table-sort-asc{
    border-bottom-color: #fff;
}
.ala-table .layui-table-sort .layui-table-sort-desc{
    border-top-color: #fff;
}
.ala-table .layui-table-sort[lay-sort=asc] .layui-table-sort-asc{
    border-bottom-color: var(--color-secondary);
}
.ala-table .layui-table-sort[lay-sort=desc] .layui-table-sort-desc{
    border-top-color: var(--color-secondary);
}
.ala-table .layui-table .table-cell .layui-table-cell{
    overflow: unset;
}
.ala-table .layui-table .more-btn-wrap{
    position: relative;
}
.ala-table .layui-table .more-btn-wrap .tc-box{
    position: absolute;
    bottom: 50%;
    margin-bottom: var(--size-20);
    right: 0;
    padding: var(--size-20);
    background-color: #fff;
    border-radius: var(--size-12);
    text-align: left;
    box-shadow: 0px 5px 20px 0px rgba(0,0,0,0.1);
    opacity: 0;
    z-index: -9;
    transition: all .4s ease-in-out;
    min-width: calc(var(--size-100)*4);
    white-space: wrap;
}
.ala-table .layui-table .more-btn-wrap .tc-box:before{
    content: "";
    position: absolute;
    right: var(--size-48);
    top: 100%;
    border: var(--size-12) solid transparent;
    border-top: var(--size-12) solid #fff;
}
.ala-table .layui-table .more-btn-wrap:hover .tc-box{
    z-index: 9;
    opacity: 1;
    bottom: 100%;
}
.ala-table .layui-table tr:nth-of-type(1) .more-btn-wrap .tc-box,
.ala-table .layui-table tr:nth-of-type(2) .more-btn-wrap .tc-box{
    bottom: unset;
    margin-bottom: unset;
    top: 50%;
    margin-top: var(--size-20);
}
.ala-table .layui-table tr:nth-of-type(1) .more-btn-wrap .tc-box:before,
.ala-table .layui-table tr:nth-of-type(2) .more-btn-wrap .tc-box:before{
    border-top: var(--size-12) solid transparent;
    border-bottom: var(--size-12) solid #fff;
    top: 0;
    bottom: 100%;
    transform: translateY(-100%);
}
.ala-table .layui-table tr:nth-of-type(1) .more-btn-wrap:hover .tc-box,
.ala-table .layui-table tr:nth-of-type(2) .more-btn-wrap:hover .tc-box{
    top: 100%;
}
.ala-table .layui-table .more-btn-wrap .tc-box .title{
    color: var(--color-text-primary);
    margin-bottom: var(--size-12);
}
.ala-table .layui-table .more-btn{
    padding: var(--size-9) var(--size-15);
    background-color: #F1F6FF;
    border-color: #97B4FC;
    color: var(--color-primary);
    border-radius: var(--size-6);
}
.ala-table .layui-table .more-btn:hover{
    color: #fff;
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}
.ala-table .layui-table .more-btn .iconfont{
    margin-right: var(--size-9);
}
/* ala-table END */


/* article-container */
.article-wrapper{
    margin: 0 auto;
    max-width: 70vw;
    margin-top: -19.7vw;
}
.article-wrapper .layui-breadcrumb a:hover,
.article-wrapper .layui-breadcrumb{
    color: #fff!important;
}
.article-container {
    padding: var(--size-48) 4.16667vw;
    background-color: #fff;
}
.article-container .mce-content-body img{
    max-width: 80%;
}
@media screen and (max-width: 1199px) {
    .article-wrapper{
        max-width: 100%;
    }
    .article-container .mce-content-body img{
        max-width: 100%;
    }
}

@media screen and (max-width: 991px) {
    .article-wrapper {
        margin-top: -160px;
    }
    .article-container {
        padding: 4.16667vw;
        background-color: #fff;
    }
}
/* article-container END */

/* article-title */
.article-title {
    line-height: 1.3;
    position: relative;
    flex: 1;
    padding-bottom: var(--size-40);
    margin-bottom: var(--size-45);
    border-bottom: var(--size-1) solid var(--border-color);
}
.article-title h3{
    font-weight: 600;
}

.article-title .tags {
    margin-bottom: var(--size-24);
}

.article-title .article-other {
    margin-top: var(--size-24);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--color-text-secondary-grey);
}
.article-title .article-otherBase .iconfont {
    margin-right: var(--size-9);
    width: var(--size-20);
    text-align: center;
    display: inline-block;
}

.article-title .article-otherBase span+span {
    margin-left: var(--size-40);
}
.article-title .share-btn{
    display: flex;
    align-items: center;
}
.article-title .share-btn span+span{
    margin-left: var(--size-9);
}
.article-title .share-btn .iconfont {
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    width: var(--size-48);
    height: var(--size-48);
    border: var(--size-1) solid var(--border-color);
    border-radius: 50%;
}
.article-title .share-btn .iconfont:hover{
    color: var(--color-secondary);
}

.article-calendar {
    color: #fff;
    line-height: 1;
    padding-right: var(--size-45);
    margin-right: var(--size-45);
    border-right: var(--size-1) solid rgba(255, 255, 255, .75);
    text-align: right;
}

.article-calendar>* {
    line-height: 1 !important;
}
.article-calendar .date{
    font-weight: 600;
}
.article-calendar .year {
    margin-top: var(--size-12);
}

@media screen and (max-width: 767px) {
    .article-title .share-btn{
        display: none;
    }
    .article-title .article-otherBase span{
        display: block;
    }
    .article-title .article-otherBase span+span{
        margin-left: 0;
        margin-top: var(--size-15);
    }
}

/* article-title END */

/* article-banner */
.article-banner{
    min-height: 27vw;
    justify-content: flex-start;
}
.article-banner .inner-banner-text{
    align-items: flex-end;
    padding: 0;
    flex: 1;
}
.article-banner .inner-banner-text>*{
    width: 100%;
}
.article-banner .layui-breadcrumb{
    max-width: 70vw;
}
.article-banner .breadcrumb .layui-container{
    padding: 0 6.25vw;
}
.article-banner .event-container{
    padding: var(--size-72) 0 var(--size-60);
    width: 100%;
}
.article-banner .event-container .article-title-wrapper{
    flex: 1;
    width: 100%;
}
.article-banner .event-container .article-title{
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
    flex: 1;
    font-weight: 400;
}
.article-banner .event-container .article-title .article-other{
    margin-top: var(--size-30);
}
.article-banner .event-container .article-title .article-otherBase span{
    display: block;
}
.article-banner .event-container .article-title .article-otherBase span+span{
    margin-left: 0;
    margin-top: var(--size-12);
}
.article-banner .event-container .article-title .article-other{
    color: #fff;
}
@media screen and (max-width: 991px) {
    .article-banner{
        min-height: 240px;
    }
}
@media screen and (max-width: 567px) {
    .article-banner .breadcrumb .layui-container{
        padding: 0 .32rem;
    }
    .article-banner .event-container{
        padding: .6rem 0;
    }
    /* .article-banner .inner-banner-text{
        display: none;
    } */
}
/* article-banner END */

/* article-btn */
.article-btn .btn {
    display: block;
    padding: var(--size-24);
    background-color: var(--bg-primary);
}

.article-btn .btn:hover {
    text-decoration: underline;
}

.article-btn .btn+.btn {
    margin-top: var(--size-4);
}

/* article-btn END */


/*share*/
#qrcode-img {
    padding: 1.09375vw;
    border-radius: .46875vw;
    overflow: hidden;
    text-align: center;
    /* font-family: "Nexa Regular"; */
    width: 14.6875vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#qrcode canvas {
    width: 100%;
    display: block;
    line-height: 1;
    margin-bottom: .625vw;
}

@media screen and (max-width: 1600px) {
    #qrcode-img {
        width: 235px;
        padding: 18px;
        border-radius: 8px;
    }

    #qrcode canvas {
        margin-bottom: 10px;
    }
}

/*share END*/

/* post-list */
.post-list .post-item:first-child{
    border-top: var(--size-1) solid rgba(0, 0, 0, .1);
}
/* .sub-category-nav+.post-list .post-item:first-child{
    border-top: 0;
} */
.post-list .post-item{
    display: flex;
    padding: var(--size-40) 0;
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .1);
    position: relative;
}
.post-list .post-item .post-item_head{
    margin-right: var(--size-40);
}
.post-list .post-item .post-item_body{
    flex: 1;
}
.post-list .post-item .post-item_body .title{
    font-weight: 600;
    transition: all .4s ease-in-out;
}
.post-list .post-item .post-item_right{
    min-width: var(--size-60);
    margin-left: var(--size-40);
}

.post-list .post-item:hover .title{
    color: var(--color-primary);
    /* text-decoration: underline; */
}
.post-list .post-item .time{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .desc{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .ala-info{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .ala-info .item+.item{
    margin-top: var(--size-4);
}
.post-list .post-item .ala-icon{
    position: absolute;
    right: var(--size-15-reverse);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}
.post-list .post-item:hover .ala-icon{
    opacity: 1;
    right: 0;
}
.post-list .post-item .post-item_img{
    width: calc(var(--size-100)*2.5);
    margin-left: 7.96875vw;
}
.post-list .post-item .post-item_img .img-box{
    border-radius: var(--size-6);
    overflow: hidden;
    box-shadow: 0px var(--size-2) var(--size-9) rgba(0, 0, 0, .2);
}

.post-list .post-item .calendar{
    width: var(--size-80);
    min-height: var(--size-80);
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--size-6);
    line-height: 1;
    box-shadow: 0px var(--size-9) var(--size-9) 0px rgba(0,0,0,0.1);
    overflow: hidden;
    /* padding: var(--size-12) 0; */
}
.post-list .post-item .calendar .month{
    background-color: var(--color-primary);
    color: #fff;
    display: block;
    padding: var(--size-6) 0;
    width: 100%;
    text-align: center;
}
.post-list .post-item .calendar .day{
    color: var(--color-primary);
    padding: var(--size-12) 0;
    line-height: 1;
    flex: 1;
    font-weight: 600;
}
@media screen and (max-width: 1199px) {
    .post-list .post-item .post-item_img{
        margin-left: var(--size-100);
    }
}
@media screen and (max-width: 991px) {
    .post-list .post-item .post-item_img{
        margin-left: var(--size-40);
    }
}
@media screen and (max-width: 767px) {
    .post-list .post-item .post-item_img{
        width: calc(var(--size-100)*2);
    }
}
@media screen and (max-width: 567px) {
    .post-list .post-item{
        flex-wrap: wrap;
    }
    .post-list .post-item .post-item_img{
        width: 100%;
        margin-left: 0;
    }
    .post-list .post-item .post-item_img .img-box{
        margin-top: var(--size-24);
    }
    .post-list .post-item .calendar{
        width: 1.2rem;
        min-height: 1.2rem;
    }
}
/* post-list END */



/* event-container */
.event-container{
    display: flex;
    align-items: flex-start;
    max-width: 80vw;
    margin: 0 auto;
}
.event-content{
    background-color: #fff;
    padding: 2.5vw;
    flex: 1;
    border-radius: var(--size-9);
}
.event-content-right{
    margin-left: var(--size-20);
    width: 18.75vw;
    position: sticky;
    position: -webkit-sticky;
    top: var(--size-20);
    transition: all .4s ease-in-out;
}
.header-fixed.header-show .event-content-right {
    top: calc(7.291667vw + var(--size-20));
}
.event-content-right .side-item{
    background-color: #fff;
    padding: var(--size-30);
    border-radius: var(--size-9);
    overflow: hidden;
}
.event-content-right .side-item:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--size-4);
    background: var(--color-secondary);
}
.event-content-right .side-head{
    display: flex;
    align-items: center;
}
.event-content-right .side-head{
    padding-bottom: var(--size-20);
    margin-bottom: var(--size-24);
    border-bottom: var(--size-1) solid var(--border-color);
}
.event-content-right .side-head .iconfont{
    margin-right: var(--size-12);
}
.event-content-right .side-body .info span{
    display: flex;
}
.event-content-right .side-body .info .iconfont{
    margin-right: var(--size-12);
    color: var(--color-secondary);
}
.event-content-right .side-body .info span+span{
    margin-top: var(--size-18);
}
.event-content-right .side-body .more-btn{
    width: 100%;
    margin-top: var(--size-30);
    letter-spacing: var(--size-1);
}
.event-content-right .side-body .share-btn{
    display: flex;
    align-items: center;
    margin-top: var(--size-30);
    color: var(--color-text-secondary);
}
.event-content-right .side-body .share-btn .icon i{
    cursor: pointer;
}
.event-content-right .side-body .share-btn .icon i:hover{
    /* color: var(--color-secondary); */
    color: var(--color-secondary);
}
.event-content-right .side-body .share-btn .icon i+i{
    margin-left: var(--size-6);
}
@media screen and (max-width: 1439px) {
    .event-content-right{
        width: 270px;
    }
    .header-fixed.header-show .event-content-right{
        top: calc(105px + var(--size-20));
    }
}
@media screen and (max-width: 1199px){
    .event-container{
        max-width: 100%;
    }
}
@media screen and (max-width: 991px) {
    .header-fixed.header-show .event-content-right{
        top: calc(75px + var(--size-20));
    }
    .event-container{
        display: block;
    }
    .event-content-right{
        margin-left: 0;
        margin-top: var(--size-30);
        width: 100%;
    }
}
@media screen and (max-width: 767px) {
    .inner-banner.article-banner .inner-banner-text{
        text-align: unset;
    }
}
@media screen and (max-width: 567px) {
    .event-detail-block{
        background-color: #fff!important;
    }
    .event-content{
        padding: 0;
        background-color: unset;
    }
    .event-content-right{
        margin-top: .6rem;
    }
    .event-content-right .side-item{
        background-color: var(--bg-grey);
    }
}
/* event-container END */

/* .event-content */
.event-content .event-banner img{
    max-width: 100%;
}
.event-content .ala-section .section-head{
    padding-bottom: var(--size-24);
    margin-bottom: var(--size-36);
    border-bottom: var(--size-1) solid var(--border-color);
    line-height: 1.5;
}
.event-content .ala-section .section-head .ala-icon{
    margin-right: var(--size-12);
}
@media screen and (max-width: 991px) {
    .event-content .ala-section+.ala-section{
        margin-top: 30px;
    }
}
@media screen and (max-width: 567px) {
    .event-content .ala-section+.ala-section{
        margin-top: .6rem;
    }
}
/* .event-content END */

/* faculty-card */
.faculty-card{
    height: 100%;
    display: block;
}
.faculty-card .faculty-item .text-box .info{
    margin-top: var(--size-24);
}
.faculty-card .faculty-item .text-box .info span{
    white-space: normal;
    display: flex;
    align-items: flex-start;
}
.faculty-card .faculty-item .text-box .info span .text{
    flex: 1;
    margin-top: var(--size-2);
}
.faculty-card .faculty-item{
    height: unset;
    background-color: unset!important;
}
.faculty-card .faculty-item:hover{
    background-color: unset;
    box-shadow: unset;
}
.faculty-card.has-bg{
    border-top: 2px solid var(--color-primary);
    padding: var(--size-30);
    background-color: var(--bg-grey);
    transition: all .4s ease-in-out;
}
a.faculty-card.has-bg:hover{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.faculty-card.has-bg .faculty-item .img-box{
    width: 7.8125vw;
    height: 10.15625vw;
}
.faculty-card .faculty-card-bottom{
    margin-top: var(--size-36);
}
.faculty-card:not(.has-bg) .faculty-card-bottom{
    padding-left: var(--size-24);
    border-left: var(--size-1) solid rgba(0, 0, 0, .2);
}
.faculty-card .faculty-card-bottom li,
.faculty-card .faculty-card-bottom p{
    margin-bottom: var(--size-9);
    font-size: .95em;
    line-height: 1.5;
}
@media screen and (max-width: 1439px) {
    .faculty-card.has-bg .faculty-item .img-box{
        width: 120px;
        height: 146px;
    }
}
@media screen and (max-width: 567px) {
    .faculty-card.has-bg .faculty-item .img-box{
        width: 2.4rem;
        height: 2.92rem;
    }
}
.faculty-card .faculty-item .text-box{
    padding: 0;
    padding-left: var(--size-24);
}
/* faculty-card END */


/* staff-item */
.staff-section+.staff-section{
    margin-top: var(--size-60);
}
.staff-section .staff-section-title{
    margin-bottom: var(--size-24);
}
.staff-item {
    display: flex;
    background-color: #fff;
    padding: var(--size-36);
    box-shadow: unset;
    transition: all .4s ease-in-out;
    position: relative;
    border-top: var(--size-4) solid var(--color-primary);
    box-shadow: 0px var(--size-4) var(--size-9) 0px rgba(0,0,0,0.05);
    border-radius: 0 0 var(--size-6) var(--size-6);
    overflow: hidden;
}
.staff-item+.staff-item{
    margin-top: var(--size-20);
}

.staff-item:hover {
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-30) 0px rgba(0,0,0,0.1);
    color: inherit;
}

.staff-item .staff-img {
    width: 13.5vw;
}
.staff-item.is-small .staff-img{
    width: 11.4vw;
}
.staff-item.is-mini .staff-img{
    width: 9.53125vw;
}

.staff-item .staff-container {
    margin-left: var(--size-40);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.staff-item .staff-container .staff-content {
    flex: 1;
    width: 100%;
}
.staff-item .staff-container .title-wrap{
    display: flex;
    line-height: 1;
    align-items: flex-end;
    margin-top: var(--size-9);
}

.staff-item .staff-container .title {
    color: var(--color-text-secondary-grey);
    margin-left: var(--size-12);
    line-height: 1.2;
}

.staff-item .staff-container .content {
    margin-top: var(--size-36);
}

.staff-item .staff-container .content p,
.staff-item .staff-container .content li{
    margin-bottom: 0;
}

.staff-item .staff-container:not(.info-right) .staff-info {
    padding-top: var(--size-36);
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: var(--size-9-reverse) var(--size-48-reverse);
}
.staff-item .staff-container:not(.info-right) .staff-info .item {
    padding: var(--size-9) var(--size-48);
}

.staff-item .staff-container:not(.info-right) .staff-info.is-block{
    display: block;
    width: 100%;
    margin: 0;
}
.staff-item .staff-container:not(.info-right) .staff-info.is-block .item{
    padding: 0;
}
.staff-item .staff-container:not(.info-right) .staff-info.is-block .item+.item{
    margin-top: var(--size-15);
}

.staff-item .staff-container.info-right{
    flex-direction: row;
}
.staff-item .staff-container.info-right .staff-info {
    padding-left: var(--size-36);
    margin-left: var(--size-36);
    border-left: 1px solid var(--border-color-light);
    width: 15.625vw;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    box-sizing: content-box;
}
.staff-item .staff-container.info-right .staff-info .item {
    margin: var(--size-9) 0;
    width: 100%;
}
.staff-item .staff-container .staff-info .label {
    flex: 1;
    word-break: break-all;
    line-height: 1.2;
}

@media screen and (max-width: 1199px) {
    .staff-item .staff-img{
        width: 160px;
    }
    .staff-item.is-small .staff-img{
        width: 130px;
    }
    .staff-item.is-mini .staff-img{
        width: 115px;
    }
    .staff-item .staff-container.info-right {
        display: block;
    }
    .staff-item .staff-container.info-right .staff-info {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        border-left: 0;
        padding-top: var(--size-36);
    }
}

@media screen and (max-width: 567px) {
    .staff-item {
        display: block;
    }

    .staff-item .staff-img {
        width: 100%;
        max-width: 2.8rem;
    }

    .staff-item .staff-container {
        margin-left: 0;
        margin-top: .4rem;
    }
}

/* staff-item END */

/* journal-banner */
.journal-banner{
    min-height: 27vw;
}
/* journal-banner END */

.filter-block+.block{
    padding-top: var(--size-40);
}

/* journal-result-container */
.journal-result-container{
    margin-bottom: var(--size-40);
}
.journal-result-container .left{
    flex: 1;
}
.journal-result-container .ala-text{
    color: var(--color-text-secondary-grey);
    height: var(--size-36);
    line-height: var(--size-36);
    margin-right: var(--size-24);
}
.journal-result-container .ala-text em{
    display: inline-block;
    margin: 0 var(--size-6);
    color: var(--color-primary);
}
.journal-result-container .filter-list{
    display: flex;
    flex-wrap: wrap;
}
.journal-result-container .filter-list .item{
    display: block;
    height: var(--size-36);
    line-height: var(--size-36);
    border: var(--size-1) solid var(--border-color);
    border-radius: var(--size-6);
    background-color: #fff;
    display: inline-flex;
    align-items: center;
    margin-left: var(--size-15);
    color: var(--color-text-secondary-grey);
}
.journal-result-container .filter-list .item span{
    padding: 0 var(--size-12);
}
.journal-result-container .filter-list .item .close-btn{
    width: var(--size-36);
    height: var(--size-36);
    text-align: center;
    border-left: var(--size-1) solid var(--border-color);
    cursor: pointer;
    transition: all .4s ease-in-out;
    font-weight: 600;
}
.journal-result-container .filter-list .item .close-btn:hover{
    color: var(--color-primary);
}
.journal-result-container .filter-list .clear-item{
    margin-left: var(--size-20);
    color: var(--color-primary);
    padding-bottom: var(--size-4);
    border-bottom: var(--size-1) solid var(--color-primary);
    line-height: 1;
    height: unset;
    align-self: center;
    cursor: pointer;
}

.journal-result-container .right .type-change{
    border: var(--size-1) solid var(--border-color);
    border-radius: var(--size-6);
    display: inline-flex;
}
.journal-result-container .right .type-change .btn{
    background-color: #fff;
    width: var(--size-40);
    height: var(--size-40);
    line-height: var(--size-40);
    cursor: pointer;
    text-align: center;
    color: var(--color-text-secondary-grey);
}
.journal-result-container .right .type-change .btn.active{
    color: var(--color-primary);
}
.journal-result-container .right .type-change .btn+.btn{
    border-left: var(--size-1) solid var(--border-color);
}
@media screen and (max-width: 1440px) {
    .journal-result-container .filter-list .item .close-btn,
    .journal-result-container .filter-list .item,
    .journal-result-container .ala-text{
        height: 28px;
        line-height: 28px;
    }
    .journal-result-container .right .type-change .btn{
        width: 30px;
        height: 30px;
        line-height: 30px;
    }
}
@media screen and (max-width: 767px) {
    .journal-result-container{
        display: block;
        position: relative;
    }
    .journal-result-container .left{
        border-left: unset;
        flex-direction: column-reverse;
    }
    .journal-result-container .ala-text{
        margin-right: 0;
        margin-top: var(--size-30);
    }
    .journal-result-container .filter-list{
        margin: var(--size-15-reverse) var(--size-9-reverse);
    }
    .journal-result-container .filter-list .item{
        margin: var(--size-15) var(--size-9);
    }
    .journal-result-container .right{
        text-align: right;
        position: absolute;
        right: 0;
        bottom: 0;
    }
}
/* journal-result-container END */

/* journal-list */
.journal-list .ala-panel{
    border-top: 0;
    background-color: #fff;
    border-radius: var(--size-6);
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(0,0,0,0.05);
    transition: all .4s ease-in-out;
    height: 100%;
}
.journal-list .ala-panel:hover{
    box-shadow: 0px var(--size-9) var(--size-30) 0px rgba(0,0,0,0.1);
}
.journal-list .ala-panel_hd{
    width: calc(var(--size-100)*1.76);
}
.journal-list .ala-panel_hd .img-box-post{
    padding-bottom: 132%;
    border: var(--size-1) solid var(--border-color-lighter);
}
.journal-list .ala-panel_bd{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    position: relative;
}
.journal-list .ala-panel_bd>*{
    width: 100%;
}
.journal-list .ala-panel_bd .title{
    line-height: 1.3;
    font-weight: 600;
    display: inline-block;
    padding-bottom: 0;
    position: relative;
    padding-bottom: var(--size-2);
}
.journal-list .ala-panel_bd .title:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: var(--size-2);
    background-color: var(--color-primary);
    transition: all .4s ease-in-out;
}
.journal-list .ala-panel:hover .ala-panel_bd .title:after{
    width: 100%;
}
.journal-list .ala-panel_bd .info{
    margin-top: var(--size-9);
}
.journal-list .ala-panel_bd .desc{
    margin-top: var(--size-15);
}
.journal-list .ala-panel_bd .bottom-info{
    display: flex;
    flex-wrap: wrap;
    margin: var(--size-9-reverse);
    margin-top: var(--size-24);
     text-align: left;
}
.journal-list .ala-panel_bd .bottom-info .item{
    margin: var(--size-9);
    padding-left: var(--size-12);
    border-left: var(--size-1) solid var(--border-color-lighter);
    min-width: calc(var(--size-100)*1.7);
}
.journal-list .ala-panel_bd .bottom-info .item .label{
    color: var(--color-text-secondary);
    margin-bottom: var(--size-4);
}
@media screen and (max-width: 767px) {
    .journal-list .ala-panel{
        text-align: center;
    }
    .journal-list .ala-panel_hd{
        margin: 0 auto;
    }
    .ala-panel .ala-panel_bd .desc{
        text-align: left;
    }
}

.ranking-info{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-top: var(--size-30);
}
.ranking-info .logo-info,
.ranking-info .text-info{
    display: inline-flex;
    align-items: center;
}
.ranking-info .text-info{
    border: var(--size-1) solid #E6E6E6;
    border-radius: var(--size-6);
    color: var(--color-text-primary);
    line-height: 1;
}
.ranking-info .text-info .info-item{
    background-color: var(--bg-grey);
    text-align: center;
    height: 100%;
    padding: var(--size-6);
    min-width: var(--size-54);
}
.ranking-info .text-info .info-item .label{
    font-size: var(--size-9);
    margin-bottom: var(--size-4);
}
.ranking-info .text-info .info-item .value{
    font-weight: 500;
}
.ranking-info .text-info .info-item+.info-item{
    border-left: var(--size-1) solid #E6E6E6;
}
.ranking-info .logo-info img{
    width: var(--size-40);
    height: var(--size-40);
    object-fit: contain;
}
.ranking-info .logo-info img+img{
    margin-left: var(--size-6);
}
.ranking-info .logo-info+.text-info{
    margin-left: var(--size-16);
}
@media screen and (max-width: 1600px) {
    .ranking-info .text-info .info-item .label{
        font-size: 8px;
    }
}
@media screen and (min-width: 1200px) {
    .journal-list:not(.is-card) .ranking-info{
        position: absolute;
        right: 0;
        top: var(--size-6-reverse);
        width: unset;
        margin-top: 0;
    }
    .journal-list:not(.is-card) .ala-panel_bd .title{
        max-width: 50%;
    }
}
@media screen and (max-width: 767px) {
    .journal-list .ranking-info{
        justify-content: center;
    }
}

/* journal-list END */

/* journal-list is-card */
@media screen and (min-width: 768px) {
    .journal-list .layui-col-sm6 {
        width: 100%;
        transition: all .4s ease-in-out;
    }
    .journal-list.is-card .layui-col-sm6 {
        width: 50%;
    }
}
.journal-list.is-card .ala-panel{
    padding: var(--size-20);
    display: flex;
    text-align: left;
}
.journal-list.is-card .ala-panel .ala-panel_bd{
    padding-left: var(--size-20);
    padding-top: 0;
}
.journal-list.is-card .ala-panel_bd .desc{
    display: none;
}
.journal-list.is-card .ala-panel_bd .bottom-info{
    margin: 0;
    margin-top: var(--size-30);
    display: block;
}
.journal-list.is-card .ala-panel_bd .bottom-info .item{
    display: flex;
    margin: 0;
    padding: 0;
    width: 100%;
    padding-left: 0;
    border-left: 0;
}

.journal-list.is-card .ranking-info{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.journal-list.is-card .ranking-info .logo-info+.text-info{
    margin-left: 0;
    margin-top: var(--size-12);
}
/* journal-list is-card END */

/* journal-detail-banner */
.journal-detail-banner{
    background-color: #F9F5F0;
    padding: var(--size-60) 0;
}
.journal-detail-banner .breadcrumb{
    padding-top: 0;
}
.journal-detail-banner .ala-panel .ala-panel_hd{
    min-width: calc(var(--size-100)*2.16);
}
.journal-detail-banner .ala-panel .ala-panel_hd .img-box-post{
    padding-bottom: 132%;
}
.journal-detail-banner .ala-panel .ala-panel_bd .info{
    margin-top: var(--size-6);
}
.journal-detail-banner .ala-panel .ala-panel_bd .bottom-info{
    margin-top: var(--size-30);
    padding-top: var(--size-30);
    border-top: var(--size-1) solid var(--border-color);
}
.journal-detail-banner .ala-panel .ala-panel_bd .bottom-info .item+.item{
    margin-top: var(--size-6);
}

.journal-detail-banner .ala-panel_bd .bottom-info .info-left{
    flex: 1;
}
.journal-detail-banner .ala-panel_bd .bottom-info .wx-qrcode{
    text-align: center;
    width: 7em;
    padding-left: var(--size-15);
    color: var(--color-text-secondary-grey);
}
.journal-detail-banner .ala-panel_bd .bottom-info .wx-qrcode img{
    max-width: 100%;
    margin: 0 auto var(--size-6);
}
@media screen and (max-width: 767px) {
    .journal-detail-banner .ala-panel .ala-panel_bd .bottom-info{
        display: block;
    }
    .journal-detail-banner .ala-panel_bd .bottom-info .wx-qrcode{
        padding-left: 0;
        margin-top: var(--size-9);
    }
}
/* journal-detail-banner END */

/* journal-detail-wrapper */
.journal-detail-wrapper{
    max-width: 70vw;
    margin: 0 auto;
}
.journal-detail-wrapper .ala-panel .ala-panel_bd{
    position: relative;
}
.journal-detail-wrapper .ranking-info{
    justify-content: flex-start;
}
@media screen and (min-width: 992px) {
    .journal-detail-wrapper .ranking-info{
        position: absolute;
        right: 0;
        top: 0;
        margin-top: var(--size-12);
    }
    .journal-detail-wrapper .ala-panel .ala-panel_bd .title{
        max-width: 60%;
    }
}
@media screen and (max-width: 1199px) {
    .journal-detail-wrapper{
        max-width: 100%;
    }
}
/* journal-detail-wrapper END */

/* .journal-info */
.journal-info{
    border-top: var(--size-1) solid var(--color-primary);
    display: flex;
    flex-wrap: wrap;
}
.journal-info .item{
    width: 33.333333%;
    padding: var(--size-20) var(--size-12);
    display: flex;
}
.journal-info .item:nth-of-type(2n+2){
    width: 66.66666%;
}
.journal-info .item:last-child{
    width: 100%!important;
}
.journal-info .item .label{
    min-width: 5.5em;
    display: inline-block;
}
.journal-info .item .value{
    color: var(--color-text-secondary-grey);
    white-space: normal;
    word-break: break-word;
}
.journal-info .item.flex-0{
    width: 0;
    display: none;
}
.journal-info .item.flex-2{
    width: 66.66666%;
}
.journal-info .item.flex-3{
    width: 100%;
}
@media screen and (max-width: 991px) {
    .journal-info .item{
        width: 50%!important;
    }
}
@media screen and (min-width: 767px) {
    .journal-info .item:nth-of-type(4n+3),
    .journal-info .item:nth-of-type(4n+4){
        background-color: var(--bg-grey);
    }
}
@media screen and (max-width: 767px) {
    .journal-info .item:nth-of-type(2n+1){
        background-color: var(--bg-grey);
    }
    .journal-info .item:nth-of-type(2n+2){
        background-color: #fff;
    }
    .journal-info .item{
        width: 100%!important;
    }
    .journal-info .item.flex-2{
        width: 100%;
    }
     .journal-info .item.flex-3{
        background-color: #fff;
     }
}
/* .journal-info END */

/* leader-list */
.leader-list{
    border-top: var(--size-1) solid var(--border-color-lighter);
}
.leader-list .layui-row{
    margin-top: 0;
    margin-bottom: 0;
}
.leader-list .layui-row>*{
    padding-top: 0;
    padding-bottom: 0;
}
.leader-list .leader-item{
    display: flex;
    align-items: flex-start;
    padding: var(--size-30) 0;
    border-bottom: var(--size-1) solid var(--border-color-lighter);
}
.leader-list .leader-item .label{
    width: 7em;
    position: relative;
    padding-left: var(--size-20);
}
.leader-list .leader-item .label:before{
    content: "";
    position: absolute;
    left: 0;
    top: .35em;
    bottom: .35em;
    width: var(--size-4);
    background-color: var(--color-primary);
}
.leader-list .leader-item .value{
    flex: 1;
    margin-top: var(--size-6);
}
.leader-list .leader-item .value .item{
    display: flex;
    margin-top: .3em;
}
.leader-list .leader-item .value .item+.item{
    margin-top: var(--size-12);
}
.leader-list .leader-item .value .name{
    width: 8em;
}
.leader-list .leader-item .value .title{
    color: var(--color-text-secondary-grey);
    flex: 1;
}

.leader-list .leader-item .list{
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    color: var(--color-text-secondary-grey);
    margin: var(--size-9-reverse) var(--size-20-reverse);
}
.leader-list .leader-item .list>p{
    padding: var(--size-9) var(--size-20);
    min-width: calc(4em + var(--size-20)*2);
}
@media screen and (max-width: 767px) {
    .leader-list .leader-item{
        display: block;
    }
    .leader-list .leader-item .label{
        width: 100%;
        margin-bottom: var(--size-20);
    }
    .leader-list .leader-item .value{
        margin-top: var(--size-20);
        padding-left: var(--size-20);
    }
    .leader-list .leader-item .value .name{
        width: 6em;
    }
    .leader-list .leader-item .list{
        margin: var(--size-9-reverse) var(--size-15-reverse);
    }
    .leader-list .leader-item .list>p{
        padding: var(--size-9) var(--size-15);
        min-width: calc(4em + var(--size-15)*2);
    }
}
/* leader-list END */


/* resource-page */
.resource-page h4{
    display: inline-block;
    background: linear-gradient( to right, rgba(185, 15, 6, .1) 0%, rgba(185,15,6,0) 100%);
    padding: var(--size-12) var(--size-20);
    border-left: var(--size-2) solid var(--color-primary);
    min-width: 50%;
    color: var(--color-primary);
    font-weight: 600;
}
.resource-page h6{
    margin-bottom: var(--size-6);
}
.resource-page table{
    border-left-color: var(--bg-grey);
}
.resource-page table tr>td:last-child{
    border-right-color: var(--bg-grey);
}
/* resource-page END */

/* faq-list */
.faq-list .slide-door .accordion-title{
    font-weight: 600;
}
.faq-list .slide-door .accordion-title .icon{
    width: var(--size-36);
    margin-right: var(--size-15);
}
.faq-list .slide-door .accordion-content{
    padding-left: calc(var(--size-36) + var(--size-15));
}
/* faq-list END */

/* download-list */
.download-list .icon img{
    width: var(--size-36);
}
.download-list .ala-cell{
    overflow: hidden;
}
.download-list .ala-cell .ala-cell_ft .ala-icon{
    position: absolute;
    right: var(--size-15-reverse);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}
.download-list .ala-cell_ft{
    width: var(--size-48);
}
.download-list .ala-cell:hover .ala-cell_ft .ala-icon{
    opacity: 1;
    right: var(--size-24);
}
/* download-list END */

/* training-list */
.training-list .ala-panel_hd{
    width: 25vw;
}
/* training-list END */


/* training-banner */
.training-banner{
    justify-content: space-between;
}
.training-banner .training-detail-wrapper{
    height: 100%;
    display: flex;
    align-items: center;
}
.training-detail-wrapper{
    max-width: 70vw;
    margin: 0 auto;
}
.training-banner .training-title{
    padding-bottom: var(--size-60);
    padding-top: var(--size-80);
}
.training-banner .training-title .info{
    margin-top: var(--size-30);
    padding-left: var(--size-18);
    border-left: var(--size-1) solid rgba(216, 216, 216, .2);
}
.training-banner .training-title .info .item+.item{
    margin-top: var(--size-9);
}
@media screen and (max-width: 1199px){
    .training-detail-wrapper{
        max-width: 100%;
    }
}
/* training-banner END */

.ala-section-title{
    font-weight: 600;
}

/* training-file */
.training-file{
    text-align: center;
    display: block;
    margin: 0 auto;
}
.training-file .img img{
    width: 100%;
}
.training-file .text{
    display: flex;
    justify-content: center;
}
.training-file .more-link{
    color: var(--color-primary);
    margin-top: var(--size-24);
}
@media screen and (max-width: 991px) {
    .training-file{
        max-width: 300px;
    }
}
/* training-file END */

/* course-nav */
.course-nav{
    display: flex;
    margin-bottom: var(--size-40);
}
.course-nav .item+.item{
    margin-left: var(--size-30);
}
.course-nav .item{
    position: relative;
    background-color: #fff;
    color: var(--color-text-primary);
    padding: var(--size-12) var(--size-40);
    border-radius: var(--size-6);
    cursor: pointer;
}
.course-nav .item:after{
    content: "";
    position: absolute;
    left: 50%;
    top: 100%;
    width: var(--size-18);
    height: var(--size-9);
    background-color: var(--color-primary);
    clip-path: polygon(0% 0% , 100% 0 , 50% 100%);
    transform: translateX(-50%);
    opacity: 0;
}
.course-nav .item.active{
    background-color: var(--color-primary);
    color: #fff;
}
.course-nav .item.active:after{
    opacity: 1;
}
/* course-nav END */

/* .course-list */
.course-list{
    overflow: hidden;
}
.course-list .item{
    display: none;
    overflow: hidden;
    margin: var(--size-1-reverse);
}
.course-list .item.active{
    display: block;
}
.course-list table{
    border-left: var(--size-1) solid rgba(0,0,0,.1);
    background-color: #fff;
}
.course-list table thead th,
.course-list table thead td{
    background-color: var(--color-primary);
    color: #fff;
}
.course-list table th, 
.course-list table td{
    border-right: var(--size-1) solid rgba(0,0,0,.1);
    vertical-align: middle;
}
/* .course-list END */

/* mobile-table */
.mobile-table{
    border-top: var(--size-2) solid var(--color-primary);
}
.mobile-table .row{
    display: flex;
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .1);
}
.mobile-table .cell{
    padding: var(--size-20) var(--size-15);
    line-height: 1.5;
}
.mobile-table .mobile-table-head .cell{
    background-color: #F0F0F0;
}
.mobile-table .cell.title-cell{
    width: 40%;
}
.mobile-table .cell.info-cell{
    width: 30%;
}
.mobile-table .cell.info-cell em{
    display: none;
}
.mobile-table .mobile-table-body .info-cell{
    color: var(--color-text-secondary-grey);
}
@media screen and (max-width: 767px) {
    .mobile-table .mobile-table-head{
        display: none;
    }
    .mobile-table .cell.info-cell em{
        display: inline-block;
        font-style: normal;
    }
    .mobile-table .row{
        flex-wrap: wrap;
        padding: var(--size-20) 0;
    }
    .mobile-table .cell.title-cell{
        width: 100%;
    }
    .mobile-table .cell{
        padding: 0;
    }
    .mobile-table .cell.info-cell{
        width: 100%;
        margin-top: var(--size-9);
    }
}
/* mobile-table END */

/* entry-list */
.entry-list .ala-cell .ala-icon{
    border-radius: var(--size-12);
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(185,15,6,0.3);
}
.entry-list .ala-cell .ala-icon img{
    width: 50%;
    height: 50%;
    object-fit: contain;
}
.entry-list .ala-cell .title{
    font-weight: 600;
}
.entry-list .ala-cell .desc{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-4);
}
/* entry-list END */

/* category-nav */
.category-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--size-40);
}
.category-nav .item{
    display: block;
    padding: var(--size-12) var(--size-24);
    color: inherit;
    border-radius: var(--size-100);
    transition: all .4s ease-in-out;
    color: var(--color-text-primary);
}
.category-nav .item:hover{
    color: var(--color-primary);
}
.category-nav .item.active{
    color: #fff;
    background-color: var(--color-primary);
}
@media screen and (max-width: 767px) {
    .category-nav .item{
        padding: var(--size-12) var(--size-9);
        background-color: unset;
        border-radius: var(--size-9);
    }
    .category-nav .item+.item{
        margin-left: var(--size-6);
    }
}

/* category-nav END */

/* activity-block-title */
.activity-block-title{
    position: relative;
}
.activity-block-title .category-nav{
    margin-bottom: 0;
    flex: 1;
    margin-left: var(--size-60);
    justify-content: flex-start;
    position: absolute;
    left: 4em;
    bottom: 0;
}
@media screen and (max-width: 767px) {
    .activity-block-title .category-nav{
        position: static;
        margin-left: 0;
        margin-bottom: var(--size-40);
        justify-content: center;
    }
    .activity-block-title .category-nav .item{
        padding: var(--size-12) var(--size-24);
    }
}
/* activity-block-title END */

.vi-container{
    max-width: 70vw;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .vi-container{
        max-width: 100%;
    }
}
/* vi-list */
.vi-list{
    display: flex;
    justify-content: center;
}
.vi-list .item{
    width: 20%;
    text-align: center;
    position: relative;
    top: 0;
    transition: all .4s ease-in-out;
    display: block;
    padding: var(--size-30) 0;
}
.vi-list .item:hover{
    top: var(--size-9-reverse)
}
.vi-list .item .icon img{
    width: var(--size-100);
    height: var(--size-100);
    object-fit: contain;
}
.vi-list .item .text{
    margin-top: var(--size-18);
}
@media screen and (max-width: 767px) {
    .vi-list{
        flex-wrap: wrap;
    }
    .vi-list .item{
        width: 33.33333%;
    }
}
@media screen and (max-width: 567px) {
    .vi-list{
        justify-content: flex-start;
    }
    .vi-list .item{
        width: 50%;
    }
}
/* vi-list END */

/* vi-download */
.vi-download{
    display: flex;
}
.vi-download .text-box{
    background: url(../images/bg_download.jpg) center center no-repeat;
    background-size: coevr;
    color: #fff;
    padding: var(--size-45);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.vi-download .text-box img{
    width: var(--size-54);
    height: var(--size-54);
    object-fit: contain;
}
.vi-download .text-box .title{
    margin: var(--size-15) 0 var(--size-9);
}
.vi-download .right-box{
    background-color: #CE9E63;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--size-54) calc(var(--size-100)*1.2);
}
@media screen and (max-width: 991px) {
    .vi-download .right-box{
        padding: var(--size-54) var(--size-90);
    }
}
@media screen and (max-width: 767px) {
    .vi-download .right-box{
        padding: var(--size-54) var(--size-15);
    }
}
/* vi-download END */

/* alliance-swiper */
.alliance-swiper{
    position: relative;
}
.alliance-swiper .item{
    display: block;
    position: relative;
}
.alliance-swiper .item:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: 40%;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, #000000 100%);
    opacity: .6;
    z-index: 2;
}
.alliance-swiper .item .text-box{
    position: absolute;
    left: 0;
    bottom: 0;
    padding: var(--size-24);
    padding-right: 150px;
    color: #fff;
    z-index: 9;
}
.alliance-swiper .ala-swiper{
    position: absolute;
    right: var(--size-24);
    bottom: var(--size-24);
    display: flex;
    align-items: center;
}
.alliance-swiper .ala-swiper .swiper-pagination,
.alliance-swiper .ala-swiper .swiper-button-prev,
.alliance-swiper .ala-swiper .swiper-button-next{
    position: static;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
/* alliance-swiper END */

/* post-swiper */
.post-swiper .swiper-container{
    margin: var(--size-30-reverse) var(--size-15-reverse);
    padding: var(--size-30) var(--size-15);
    width: unset;
}
/* post-swiper END */

/* post-swiper */
.post-swiper .swiper-slide{
    height: auto;
}
.post-swiper .swiper-slide .slide-card{
    height: 100%;
}
/* post-swiper END */

/* alliance-logo-list */
.alliance-logo-list{
    display: flex;
    flex-wrap: wrap;
    border-left: var(--size-1) solid var(--border-color);
    border-top: var(--size-1) solid var(--border-color);
}
.alliance-logo-list .item{
    width: 12.5%;
    text-align: center;
    border-right: var(--size-1) solid var(--border-color);
    border-bottom: var(--size-1) solid var(--border-color);
    padding: var(--size-20) var(--size-12);
    box-shadow: unset;
    transform: scale(1);
    transition: all .4s ease-in-out;
    position: relative;
    background-color: #fff;
    z-index: 8;
}
.alliance-logo-list .item:hover{
    box-shadow: 0px var(--size-12) var(--size-12) 0px rgba(0,0,0,0.05);
    transform: scale(1.02);
    border-color: transparent;
    z-index: 9;
}
.alliance-logo-list .item img{
    width: 100%;
    max-width: calc(var(--size-100)*1.14);
    max-height: calc(var(--size-100)*1.14);
}
.alliance-logo-list .item .text{
    margin-top: var(--size-12);
}
@media screen and (max-width: 1199px) {
    .alliance-logo-list .item{
        width: 16.66666%;
    }
}
@media screen and (max-width: 991px) {
    .alliance-logo-list .item{
        width: 25%;
    }
}
@media screen and (max-width: 767px) {
    .alliance-logo-list .item{
        width: 33.3333%;
    }
}
@media screen and (max-width: 567px) {
    .alliance-logo-list .item{
        width: 50%;
    }
}
/* alliance-logo-list END */

/* alliance-journal-swiper */
.alliance-journal-swiper{
    margin: 0;
}
.alliance-journal-swiper .swiper-container{
    margin: var(--size-30-reverse) var(--size-15-reverse);
    padding: var(--size-30) var(--size-15);
    overflow: hidden;
    width: unset;
}
.alliance-journal-swiper .swiper-slide{
    padding: 0;
}
.alliance-journal-swiper .slide-card .img-box-post {
    box-shadow: 0 var(--size-6) var(--size-12) 0px rgba(0, 0, 0, 0.2);
}
.alliance-journal-swiper .slide-card:hover{
    transform: scale(1);
}

/* alliance-journal-swiper END */

/* vi-nav */
.vi-nav {
    position: sticky;
    position: -webkit-sticky;
    top: var(--size-20);
    transition: all .4s ease-in-out;
}
.header-fixed.header-show .vi-nav {
    top: calc(7.291667vw + var(--size-20));
}
@media screen and (max-width: 1439px) {
    .header-fixed.header-show .vi-nav{
        top: calc(105px + var(--size-30));
    }
}
@media screen and (max-width: 991px) {
    .header-fixed.header-show .vi-nav{
        top: 75px;
    }
}
.vi-nav .vi-nav-head{
    font-weight: 600;
    position: relative;
    display: flex;
    align-items: center;
    padding-left: var(--size-30);
}
.vi-nav .vi-nav-head .ala-icon{
    width: var(--size-36);
    height: var(--size-36);
    position: absolute;
    left: 0;
    transform: translateX(-50%);
}
.vi-nav .vi-nav-head .ala-icon img{
    display: block;
    max-width: 70%;
    max-height: 70%;
}
.vi-nav .vi-nav-body{
    position: relative;
    padding-top: calc(.75em + var(--size-12));
}
.vi-nav .vi-nav-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--size-1);
    background: var(--border-color);
}
.vi-nav .vi-nav-body .line{
    position: absolute;
    left: 0;
    top: 0;
    width: var(--size-1);
    height: 0;
    background-color: var(--color-primary);
    transition: all .3s ease-in-out;
}
.vi-nav-list a{
    display: block;
    padding: var(--size-12) 0;
    padding-left: var(--size-30);
    position: relative;
    transition: all .3s ease-in-out;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.vi-nav-list li{
    position: relative;
}
.vi-nav-list li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translate(-50%,-50%);
    width: var(--size-9);
    height: var(--size-9);
    background-color: var(--color-primary);
    border-radius: 50%;
    opacity: 0;
    transition: all .3s ease-in-out .2s;
}
.vi-nav-list li.current:before{
    opacity: 1;
}
.vi-nav-list li.current a{
    font-weight: bold;
    color: var(--color-primary);
}
/* vi-nav END */

.block-vi,
.block-vi>*{
    position: static;
}
/* vi */
.vi-title{
    font-weight: 600;
    padding-left: var(--size-12);
    position: relative;
    color: var(--color-primary);
    margin-bottom: var(--size-24);
}
.vi-title::before{
    content: "";
    position: absolute;
    left: 0;
    top: .25em;
    bottom: .25em;
    width: var(--size-2);
    background-color: var(--color-primary);
}

.vi-body .vi-section+.ala-section,
.vi-body .ala-section+.ala-section{
    margin-top: var(--size-48);
}
.vi-body .vi-img{
    position: relative;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
    cursor: pointer;
}
.vi-body .vi-img img{
    width: 100%;
    display: block;
}
.vi-body .vi-img:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .2);
    opacity: 0;
    transition: all .4s ease-in-out;
}
.vi-body .vi-img .ala-icon{
    background-color: #fff;
    color: var(--color-primary);
    box-shadow: 0px var(--size-4) var(--size-6) 0px rgba(0,0,0,0.2);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: 99;
    opacity: 0;
    transition: all .4s ease-in-out;
}
.vi-body .vi-img:hover:after,
.vi-body .vi-img:hover .ala-icon{
    opacity: 1;
}

.vi-body .vi-section .ala-section:nth-of-type(1) .vi-img-tc .tc-prev{
    display: none;
}
.vi-body .vi-section .ala-section:nth-last-of-type(1) .vi-img-tc .tc-next{
    display: none;
}
/* vi END */

/* file-list */
.file-list .item{
    display: flex;
    background-color: var(--bg-grey);
    box-shadow: unset;
    transition: all .3s ease-in-out;
}
.file-list .item:hover{
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.file-list .item .ala-icon{
    border-radius: 0;
}
.file-list .item .text-box{
    flex: 1;
    padding: 0 var(--size-24);
    display: flex;
    align-items: center;
}
/* file-list END */

/* vi-img-tc */
.layui-layer.tc-vi .layui-layer-setwin .layui-layer-close2{
    right: 0;
    top: 0;
    transform: translate(30%, -30%);
    background: rgba(255, 255, 255, 1);
}
.layui-layer.tc-vi .layui-layer-setwin .layui-layer-close2:after{
    color: var(--color-text-primary);
}
.layui-layer.tc-vi .layui-layer-setwin .layui-layer-close2:hover{
    background-color: var(--color-primary);
}
.layui-layer.tc-vi .layui-layer-setwin .layui-layer-close2:hover:after{
    color: #fff;
}
.vi-img-tc{
    display: none;
}
.vi-img-tc .vi-img-wrap{
    display: flex;
    flex-direction: column;
    /* height: 95vh; */
    background-color: #fff;
    padding: var(--size-30);
}
.vi-img-tc .img-box{
    flex: 1;
    position: relative;
}
.vi-img-tc .img-box .img{
    height: 100%;
}
.vi-img-tc img{
    max-height: calc(95vh - var(--size-60) - var(--size-20) - var(--size-30)*2);
    width: auto;
    max-width: 80vw;
    /* max-height: 80vh; */
}
.vi-img-tc .file-list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    margin: var(--size-9-reverse);
    margin-top: var(--size-20);
}
.vi-img-tc .file-list .item{
    margin: var(--size-9);
}
.vi-img-tc .tc-prev,
.vi-img-tc .tc-next{
    position: absolute;
    top: 50%;
    background-color: #fff;
    box-shadow: 0px var(--size-4) var(--size-6) 0px rgba(0,0,0,0.2);
    color: var(--color-text-secondary-grey);
    cursor: pointer;
}
.vi-img-tc .tc-prev:hover,
.vi-img-tc .tc-next:hover{
    color: var(--color-primary);
}
.vi-img-tc .tc-prev{
    left: var(--size-30);
    transform: translate(-50%,-50%);
}
.vi-img-tc .tc-next{
    right: var(--size-30);
    transform: translate(50%,-50%);
}
@media screen and (max-width: 767px) {
    .vi-img-tc .vi-img-wrap{
        height: unset;
    }
}
/* vi-img-tc END */

/* party-block */
.party-block>*{
    position: relative;
}
.party-block:before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/party-mark.png) left bottom no-repeat;
    background-size: 25vw auto;
}
@media screen and (max-width: 991px) {
    .party-block:before{
        background-size: 50vw auto;
    }
}
@media screen and (max-width: 567px) {
    .party-block:before{
        background-size: 80vw auto;
    }
}
/* party-block END */


/* develop-swiper */
.develop-swiper .custom-cursor{
    position: fixed;
    pointer-events: none;
    top: 0;
    /* mix-blend-mode: difference;  */
    opacity: 0;
    z-index: 9999;
    /* transition: all .3s ease-in-out; */
}
.develop-swiper .custom-cursor img{
    width: 4.6875vw;
}
@media screen and (max-width: 1440px) {
    .develop-swiper .custom-cursor img{
        width: 67.5px;
    }
}
.develop-swiper,
.develop-swiper * {
    cursor: none !important;
}
.develop-swiper:hover .custom-cursor {
    opacity: 1;
}
.develop-swiper .swiper-container{
    overflow: unset;
}
.develop-swiper .swiper-slide{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 9.8611111vw;
}
.develop-swiper .develop-item .year{
    opacity: .75;
    transition: all .3s ease-in-out;
    display: inline-block;
    transform: translateX(-50%);
}
.develop-swiper .develop-item .line{
    height: var(--size-30);
    position: relative;
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .2);
    border-left: var(--size-1) solid rgba(0, 0, 0, .2);
    display: flex;
    align-items: flex-end;
    margin: var(--size-18) 0;
}
.develop-swiper .develop-item .line:after{
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: var(--size-9);
    height: var(--size-9);
    border-radius: 50%;
    background-color:#C7C2BD;
    transform: translate(-55%,55%);
}
.develop-swiper .develop-item .line em{
    flex: 1;
    height: var(--size-12);
}
.develop-swiper .develop-item .line em+em{
    border-left: var(--size-1) solid rgba(0, 0, 0, .2);
}
.develop-swiper .develop-item .event-box{
    position: relative;
    background-color: #fff;
    padding: var(--size-24);
    margin-right: var(--size-48);
    margin-top: var(--size-30);
    transition: all .3s ease-in-out;
    clip-path: polygon(0% 0%,var(--size-24) var(--size-24), 100% var(--size-24), 100% 100%, 0% 100%);
    padding-top: calc(var(--size-24) + var(--size-24));
    line-height: 1.5;
}
/* .develop-swiper .develop-item .event-box .item+.item{
    margin-top: var(--size-20);
    padding-top: var(--size-20);
    border-top: var(--size-1) solid rgba(0, 0, 0, .1);
} */
.develop-swiper .develop-item .event-box .item{
    padding-left: 1em;
    position: relative;
}
.develop-swiper .develop-item .event-box .item:before{
    content: "";
    position: absolute;
    left: 0;
    top: .75em;
    width: var(--size-6);
    height: var(--size-6);
    border-radius: 50%;
    background-color: var(--color-text-primary);
    transform: translateY(-50%);
}
.develop-swiper .develop-item .event-box .item .text{
    margin-top: var(--size-9);
}
.develop-swiper .develop-item .event-box .item .img{
    margin-top: var(--size-9);
}
.develop-swiper .swiper-slide-active .develop-item .year{
    opacity: 1;
    color: var(--color-primary);
}
.develop-swiper .swiper-slide-active .develop-item .event-box{
    background: url(../images/develop-active.jpg) center center no-repeat;
    background-size: cover;
    color: #fff;
}
.develop-swiper .swiper-slide-active .develop-item .event-box .item:before{
    background-color: #fff;
}
.develop-swiper .swiper-slide-active .develop-item .line{
    border-left-color: var(--color-primary);
    opacity: 1;
}
.develop-swiper .swiper-slide-active .develop-item .line:after{
    background-color: var(--color-primary);
}
.develop-swiper .swiper-slide-active .develop-item .event-box .item+.item{
    border-top-color: rgba(255, 255, 255, .3);
}
/* develop-swiper END */

.waves{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 90%;
    z-index: 1;
}
.waves canvas{
    width: 100%!important;
    height: 100%!important;
}

/* contact-container */
.contact-block{
    position: relative;
    z-index: 9;
    overflow: unset;
}
/* contact-container END */


/* contact-wrap */
.contact-wrap {
    position: relative;
}
.contact-wrap .item{
    border-top: var(--size-1) solid var(--border-color-lighter);
    padding-top: var(--size-30);
    position: relative;
}
.contact-wrap .item .label {
    color: var(--color-text-secondary-grey);
    font-weight: 400;
}
.contact-wrap .item .label i{
    margin-right: var(--size-9);
}
.contact-wrap .more{
    position: absolute;
    right: 0;
    top: calc(var(--size-30) / 2);
    width: var(--size-90);
    height: var(--size-90);
    line-height: var(--size-90);
    background-color: var(--color-primary);
    color: #fff;
    border-radius: 50%;
    text-align: center;
    transform: rotate(-30deg);
    transition: all .3s ease-in-out;
}
.contact-wrap .more:hover{
    transform: rotate(0);
}
.contact-wrap .location-item{
    padding-right: var(--size-100);
}
@media screen and (max-width: 567px) {
    .contact-wrap .more{
        font-size: 14px;
    }
}
/* contact-wrap END */
