.main-hidden{
    overflow: hidden;
}

/* menu-toggle */
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    transition: all .3s ease-in-out;
}

.menu-toggle .toggle-iconfont {
    transition: 0.4s;
    position: relative;
    z-index: 20;
    float: right;
    cursor: pointer;
    width: 1.25vw;
    height: 0.9375vw;
    margin: 0 auto;
}

.menu-toggle .toggle-iconfont span {
    display: block;
    width: 100%;
    margin-top: 0.416667vw;
    height: var(--size-2);
    background: var(--color-primary);
    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: var(--color-primary);
    -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
}
.header_white:not(.header-fixed) .menu-toggle .toggle-iconfont span,
.header_white:not(.header-fixed) .menu-toggle span:after,
.header_white:not(.header-fixed) .menu-toggle span:before{
    background-color: #fff;
}

.menu-toggle span:before {
    top: -0.416667vw;
    -webkit-transition-property: top, transform;
    -moz-transition-property: top, transform;
    -ms-transition-property: top, transform;
    -o-transition-property: top, transform;
    transition-property: top, transform;
    transform-origin: 0 50%;
}

.menu-toggle span:after {
    bottom: -0.416667vw;
    width: .78125vw;
    -webkit-transition-property: bottom, transform;
    -moz-transition-property: bottom, transform;
    -ms-transition-property: bottom, transform;
    -o-transition-property: bottom, transform;
    transition-property: bottom, transform;
    transform-origin: 0 50%;
}
.menu-toggle.open span:after,
.menu-toggle.open span:before{
    width: 1.25vw;
}
.menu-toggle.open span:before {
    top: -0.416667vw;
    -webkit-transform: rotate(42deg);
    -ms-transform: rotate(42deg);
    -o-transform: rotate(42deg);
    transform: rotate(42deg);
}

.menu-toggle.open span:after {
    bottom: -0.416667vw;
    -webkit-transform: rotate(-42deg);
    -ms-transform: rotate(-42deg);
    -o-transform: rotate(-42deg);
    transform: rotate(-42deg);
}

.menu-toggle.open .toggle-iconfont span {
    background-color: transparent !important;
}

@media screen and (max-width: 1920px) {
    .menu-toggle .toggle-iconfont {
        width: 24px;
        height: 18px;
    }

    .menu-toggle .toggle-iconfont span {
        margin-top: 8px;
        height: 2px;
    }

    .menu-toggle span:after,
    .menu-toggle span:before {
        width: 24px;
        height: 2px;
    }

    .menu-toggle span:before {
        top: -8px;
    }

    .menu-toggle span:after {
        bottom: -8px;
        width: 15px;
    }

    .menu-toggle.open span:after, 
    .menu-toggle.open span:before{
        width: 24px;
    }

    .menu-toggle.open span:before {
        top: -8px;
    }

    .menu-toggle.open span:after {
        bottom: -8px;
    }
}


/* menu-toggle END */

/* header */
header {
    background-color: transparent;
    position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;
    transition: all .3s ease-in-out;
    background-color: #fff;
    box-shadow: 0 0 var(--size-12) rgb(0 0 0 / 15%);
}
.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: transparent;
    box-shadow: unset;
}
.header_white:not(.header-fixed) header:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-1);
    background-color: rgba(255, 255, 255, .15);
}
.header .layui-container{
    padding: 0 3.125vw;
}
@media screen and (max-width: 567px) {
    .header .layui-container{
        padding: 0 .32rem;
    }
}
header a {
    color: #fff;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}
header .logo a{
    display: block;
    background: url(../images/logo.png) no-repeat;
    background-position: 0 0;
    background-size: 100%;
    transition: all .3s ease-in-out;
}

.header_white:not(.header-fixed)  .logo a{
    background-position: 0 100%;
}
header .logo img {
    height: 3.4vw;
    min-height: 40px;
    opacity: 0;
    display: block;
}

header .layui-container {
    position: relative;
}
/* 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 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 7.29166667vw;
    /* padding-right: 0!important; */
}

.header .header-right{
    /* flex: 1; */
    padding-left: var(--size-15);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.header .search-toggle{
    position: relative;
    display: inline-block;
    margin-left: var(--size-20);
}
.header .search-toggle .layui-input{
    min-width: 18vw;
    border-radius: var(--size-4);
    height: var(--size-48);
    line-height: var(--size-48);
    padding-right: var(--size-48);
    border-radius: var(--size-48);
    background-color: rgba(0, 0, 0, .1);
    color: var(--color-primary);
}
.header .search-toggle .layui-input::placeholder {
    color: var(--color-text-secondary);
}
.header .search-toggle .iconfont{
    display: block;
    position: absolute;
    right: 0;
    top: 0;
    width: var(--size-48);
    height: var(--size-48);
    line-height: var(--size-48);
    text-align: center;
    color: var(--color-primary);
    z-index: 9;
    cursor: pointer;
}

.header_white:not(.header-fixed) .header .search-toggle .layui-input{
    color: #fff;
    background-color: rgba(255, 255, 255, .1);
}
.header_white:not(.header-fixed) .header .search-toggle .iconfont{
    color: #fff;
}
.header_white:not(.header-fixed) .header .search-toggle .layui-input::placeholder{
    color: rgba(255, 255, 255, .25);
}
/* .header .search-toggle .iconfont:after{
    content: "";
    position: absolute;
    left: 0;
    top: var(--size-9);
    bottom: var(--size-9);
    width: var(--size-2);
    background-color: #fff;
    opacity: .3;
} */
header .secondary-nav {
    position: relative;
    text-align: right;
    justify-content: flex-end;
    margin-top: var(--size-18);
}

header .secondary-nav .layui-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* margin: 0 var(--size-30-reverse); */
}

header .secondary-nav .layui-nav .layui-nav-item>a {
    cursor: pointer;
    font-size: inherit;
    padding: 0 var(--size-30);
    color: #fff;
    display: flex;
    align-items: center;
    height: var(--size-45);
    line-height: var(--size-45);
    background-color: var(--color-primary);
    border-radius: var(--size-60);
    /* opacity: .7; */
}

.header_white:not(.header-fixed) .secondary-nav .layui-nav .layui-nav-item>a{
    color: #fff;
}
header .secondary-nav .layui-nav .layui-nav-item+.layui-nav-item{
    margin-left: var(--size-12);
}

/* header .secondary-nav .layui-nav .layui-nav-item>a:hover {
    opacity: 1;
} */

/* header .secondary-nav .layui-nav .layui-nav-item+.layui-nav-item:after {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    height: .875vw;
    margin-top: -.4375vw;
    width: 1px;
    background-color: rgba(0, 0, 0, .2);
} */

.header_white:not(.header-fixed) .secondary-nav .layui-nav .layui-nav-item+.layui-nav-item:after{
    background-color: rgba(255, 255, 255, .2);
}

header .secondary-nav .layui-nav .layui-nav-item>a img {
    width: var(--size-24);
    height: var(--size-24);
    object-fit: contain;
    margin-right: var(--size-9);
}

.headerTemp {
    height: 7.29166667vw;
    display: none;
}
.header_white .headerTemp{
    height: 0!important;
    min-height: 0!important;
}
.show-menu header,
.header-fixed header{
    position: fixed;
    background: #fff!important;
    left: 0;
    right: 0;
    /* top: -100%;
    opacity: 0; */
    top: 0;
    box-shadow: 0 0 var(--size-12) rgb(0 0 0 / 15%);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 999;
}
.header-fixed header{
    top: -100%;
    opacity: 0;
}
.show-menu header:after,
.header-fixed header:after{
    content: unset!important;
}
.header-fixed.header-show header{
    position: fixed;
    top: 0;
    opacity: 1;
}

/* .header-fixed header .secondary-nav{
    display: none;
} */

@media screen and (max-width: 1440px) {
    /* header .secondary-nav .layui-nav{
        margin: 0 -15px;
    }
    header .secondary-nav .layui-nav .layui-nav-item>a {
        padding: 0 15px;
    } */

    header .secondary-nav .layui-nav .layui-nav-item+.layui-nav-item:after {
        height: 14px;
        margin-top: -7px;
    }
}
@media screen and (max-width: 1440px) {
    .headerTemp,
    .header .layui-container{
        height: 105px;
    }
}
@media screen and (max-width: 991px) {
    .header .header-right{
        justify-content: center;
    }
    header .secondary-nav{
        margin-top: 0;
    }
    /* header .secondary-nav .layui-nav{
        margin: 0 -10px;
    } */
    header .secondary-nav .layui-nav .layui-nav-item>a {
        padding: 0 10px;
    }
    header .menu-toggle{
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
    }
    .headerTemp,
    .header .layui-container{
        height: 75px;
    }
    .header-right{
        padding-right: calc(75px - 4.166667vw);
    }
    header .secondary-nav{
        padding-bottom: 0;
        /* padding-right: var(--size-15); */
    }
}

@media screen and (max-width: 767px) {
    header .secondary-nav .search-toggle {
        display: none;
    }
    header .secondary-nav .layui-nav .layui-nav-item+.layui-nav-item{
        margin-left: var(--size-6);
    }
}

/* header-nav */
.header-nav {
    display: flex;
    align-items: center;
}

.header-nav .layui-nav .layui-this:after {
    content: unset;
}

.header-nav .layui-nav-bar {
    display: none !important;
}

.header-nav .layui-nav .layui-nav-child:before,
.header-nav .layui-nav .layui-nav-child:after {
    content: unset;
}
@media screen and (min-width: 992px) {
    .header-nav .layui-nav {
        padding: 0;
        background: none;
        display: flex;
        margin: 0 -1.40625vw;
    }

    .header-nav .layui-nav>.layui-this:after {
        content: unset;
    }

    .header-nav .layui-nav-bar {
        display: none;
    }

    .header-nav .layui-nav ul {
        font-size: 0;
        display: table;
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }

    .header-nav .layui-nav .layui-nav-item {
        display: table-cell;
        margin: 0;
        height: var(--size-72);
        line-height: var(--size-72);
    }

    .header-nav .layui-nav .layui-nav-item>a {
        display: block;
        display: inline-block;
        padding: 0 1.40625vw;
        color: var(--color-primary);
        position: relative;
        z-index: 2;
        transition: all .3s ease-in-out;
        background-color: transparent;
        white-space: nowrap;
        line-height: var(--size-72);
        height: var(--size-72);
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a{
        color: #fff;
    }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        display: none;
    }

    .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header-nav .layui-nav .layui-nav-item.layui-this>a {
        /* font-weight: bold; */
        /* background-color: rgba(255, 255, 255, .1); */
        border-radius: var(--size-4);
    }

    .header-nav .layui-nav .layui-nav-item>a:after {
        content: "";
        position: absolute;
        left: 1.40625vw;
        right: 1.40625vw;
        bottom: 0;
        height: var(--size-4);
        background: var(--color-secondary);
        transition: all .3s ease-in-out;
        transform: scaleX(0);
    }

    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a:after{
        background: #fff;
    }


    .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%;
        left: 0;
        border: 0;
        border-radius: 0;
        /* box-shadow: unset; */
        box-shadow: 0 20px 20px rgba(0,0,0,.2);
        background-color: rgba(255, 255, 255, .95);
        color: var(--color-text-primary);
        padding: 0;
        white-space: normal;
        line-height: 1.5;
        padding: var(--size-18) var(--size-15);
        text-align: center;
        /* margin-top: -.20833vw; */
        /* width: 7.8125vw;
        margin-left: -3.90625vw; */
        width: unset;
        left: 50%;
        transform: translateX(-50%);
        min-width: 13vw;
    }
    .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 .3s ease-in-out;
        white-space: pre-wrap;
        background-color: unset!important;
        white-space: nowrap;
    }
    .header-nav .layui-nav-child .submenu:hover{
        color: var(--color-secondary);
    }
    
    /* .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a{
        color: #fff;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item.layui-this>a {
        color: #fff;
        font-weight: bold;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a:after {
        background: #fff;
    } */
}

@keyframes layui-upbit {
    from {
        transform: translate3d(-50%,var(--size-15),0);
        opacity: .3
    }

    to {
        transform: translate3d(-50%,0,0);
        opacity: 1
    }
}
@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 .8vw;
    }
    .header-nav .layui-nav .layui-nav-item>a:after{
        left: .8vw;
        right: .8vw;
    }
}

@media screen and (max-width: 991px) {
    header .layui-container{
        height: 75px;
    }
    header .header-main{
        display: none;
    }
}

@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: .4rem;
    }
}
@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.29166667vw);
    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/donor-bg.png) center 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-20) var(--size-9);
    flex: 1;
    color: var(--color-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: bold;
    width: 50%;
}
.menu-container .menu-list .menu-title .icon:hover{
    color: var(--color-primary);
}
.menu-container .submenu{
    padding-left: var(--size-24);
    display: none;
}
.menu-container .menu-list .menu-item.show-submenu .submenu{
    display: block;
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title{
    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 .third-menu a{
    display: block;
    padding: var(--size-9) 0;
    color: var(--color-text-secondary);
    transition: color .3s ease-in-out;
}
.menu-container .third-menu a .iconfont{
    opacity: 0;
    transition: opacity .3s ease-in-out;
}
.menu-container .third-menu a:hover{
    color: var(--color-primary);
}
.menu-container .third-menu a:hover .iconfont{
    opacity: 1;
}

.show-menu .site-menu-shade{
    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.29166667vw;
}
@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 10px 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: bold;
    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: 1;
}

.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;
}

/*swiper-button END*/


/*.swiper-pagination*/
.ala-swiper .swiper-pagination {
    left: 0;
    right: 0;
    text-align: center;
    bottom: 0;
}

.ala-swiper .swiper-pagination-bullet {
    position: relative;
    background-color: unset;
    position: relative;
    width: var(--size-9);
    height: var(--size-9);
    border-radius: var(--size-9);
    opacity: 1;
    transition: all .3s ease-in-out;
    background-color: var(--color-text-secondary);
    margin: 0 var(--size-9) !important;
}

.ala-swiper .swiper-pagination-bullet-active {
    width: var(--size-36);
    background-color: var(--color-primary);
}

.ala-swiper .swiper-pagination-bullet-active::after {
    background-color: var(--color-primary) !important;
}
.ala-swiper.is-white .swiper-pagination-bullet,
.ala-swiper.is-white .swiper-pagination-bullet-active {
    background-color: #fff;
}

@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-pagination EMD*/

/* swiper-scrollbar */
.ala-swiper .swiper-scrollbar {
    height: 2.34375vw;
    background-color: unset;
    border-radius: 0;
    left: 50%;
    right: unset;
    width: 0;
    top: 0;
}
.ala-swiper .swiper-scrollbar-drag {
    background-color: unset;
    position: relative;
    width: 0!important;
}

.ala-swiper .swiper-scrollbar-drag:after {
    content: "";
    position: absolute;
    right: unset;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2.34375vw;
    transform: translateX(-50%);
    background: url(../images/icon_drag.png) right center no-repeat;
    background-size: contain;
    cursor: pointer;
}

@media screen and (max-width: 1199px) {
    .ala-swiper .swiper-scrollbar,
    .ala-swiper .swiper-scrollbar-drag:after {
        width: 28px;
        height: 28px;
    }
    .ala-swiper .swiper-scrollbar{
        width: 0;
    }
}

@media screen and (max-width: 567px) {
    .ala-swiper .swiper-scrollbar {
        display: none;
    }
}

/* swiper-scrollbar END */


/* swiper-btn */
.swiper-btn-wrapper{
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-btn {
    display: flex;
    align-items: center;
}

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background: transparent;
    border: var(--size-1) solid var(--color-primary);
    position: static;
    font-size: 1.25vw;
    color: var(--color-primary);
    margin-top: unset;
}

.swiper-btn.is-white .swiper-button-next,
.swiper-btn.is-white .swiper-button-prev{
    border: var(--size-1) solid #fff;
}
.swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover,
.swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover{
    background-color: var(--color-primary);
}

.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-primary)!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 {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}
.swiper-btn .swiper-button-prev+.swiper-button-next {
    margin-left: .625vw;
}

.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-primary);
    color: #fff;
}
.swiper-btn.is-solid .swiper-button-prev.swiper-button-disabled,
.swiper-btn.is-solid .swiper-button-next.swiper-button-disabled{
    background-color: transparent;
    color: var(--color-text-secondary);
}

.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-6);
    border-radius: var(--size-6);
    overflow: hidden;
}
.swiper-btn .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{
    background-color: var(--color-secondary);
    height: var(--size-6);
    border-radius: var(--size-6)!important;
}

@media screen and (max-width: 1440px) {

    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .swiper-btn .swiper-button-prev+.swiper-button-next {
        margin-left: 9px;
    }
}

/* swiper-btn END */

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/*banner*/
.banner {
    position: relative;
    width: 100%;
    height: 40vw;
    min-height: 280px;
}
.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 .slide-inner:not(.no-text):after,
.banner .slide-inner:not(.no-text):before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9;
    height: 18vw;
    background: linear-gradient( 180deg, #1F1D1F 0%, rgba(31,29,31,0) 100%);
}
.banner .slide-inner:not(.no-text):after {
    top: unset;
    bottom: 0;
    background: linear-gradient( to top, #1F1D1F 0%, rgba(31,29,31,0) 100%);
}

.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-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    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 8.8s linear;
    -o-transition: all 8.8s linear;
    transition: all 8.8s linear;
}

.banner .swiper-slide-active .swiper-bg {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
} */

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.swiper-bottom{
    position: absolute;
    right: 9.375vw;
    bottom: var(--size-60);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.swiper-bottom .swiper-pagination{
    position: static;
    width: unset;
    display: flex;
    align-items: center;
}
.swiper-bottom.ala-swiper.is-white .swiper-pagination-bullet-active {
    border-color: var(--color-primary) !important;
}
.ala-swiper.is-white .swiper-pagination-bullet-active::after{
    background-color: var(--color-primary) !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: var(--color-primary);
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
}   
    
.path-loop-bg {
    fill: none;
    stroke: var(--color-primary);
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
    opacity: 0.1;
}

.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-primary);
}
.banner .banner-swiper-button .swiper-button-next{
    background: #fff!important;
}
.banner .banner-swiper-button .swiper-button-next:after{
    color: var(--color-primary);
}

.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: 567px) {
    .banner {
        height: 120vw;
    }
    .banner .slide-down{
        display: none;
    }
    .banner .slide-inner:not(.no-text):after{
        height: 50vw;
    }
}

/*banner END*/


/*home-banner-wrap*/
.home-banner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--size-60);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    color: #fff;
    z-index: 10;
    text-align: left;
}
.home-banner-wrap .bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 25%;
    height: 40%;
    background: url(../images/banner-bg.png) center center no-repeat;
    background-size: 75%;
}
.home-banner-wrap .banner-title {
    line-height: 1.2;
    /* font-weight: 600; */
    /* text-shadow: 0px 2px 4px rgba(0,0,0,0.5); */
}
.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;
    text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
    font-weight: 300;
}
.home-banner-wrap .more-link{
    margin-top: var(--size-20);
    color: #fff;
}
@media screen and (max-width: 1600px) {
    .swiper-bottom{
        right: 6.25vw;
    }
}
@media screen and (max-width: 567px) {
    .home-banner-wrap {
        bottom: var(--size-100);
        margin-bottom: var(--size-20);
        text-align: center;
    }
    .swiper-bottom{
        bottom: var(--size-45);
        left: .32rem;
        right: .32rem;
    }
}

/*home-banner-wrap END*/

/* banner-video */
.banner-video .video-container {
    height: 100%;
    overflow: hidden;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.banner-video .video-container:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    /* background-color: rgba(0, 0, 0, .2); */
    z-index: 9;
    height: 9.375vw;
    background: linear-gradient(180deg, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%);
    /* position: absolute;
    content: '';
    display: block;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    background: var(--color-primary);
    opacity: .3; */
}

.banner-video .video-js{
    width: 100%!important;
    height: 100%!important;
}
.banner-video .video-js .vjs-poster{
    background-size: cover!important;
}
.banner-video .video-js .vjs-tech{
    object-fit: cover;
}
.banner-video .video-container .icon-play{
    display: none;
    margin-top: 30px;
}
@media screen and (max-width: 767px) {
    .banner-video{
        height: 66.6666vw;
    }
    /* .banner-video .video-container .icon-play{
        display: block;
    } */
}

/* banner-video END */


/*block*/
.block {
    padding: 5vw 0;
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* overflow: hidden; */
}

.block.small-block {
    padding: 3.125vw 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: 5.78125vw;
}
.ala-section.section-small+.ala-section.section-small,
.block.small-block .ala-section+.ala-section {
    margin-top: 3.75vw;
}

@media screen and (max-width:991px) {
    .ala-section+.ala-section {
        margin-top: 50px;
    }
    .ala-section.section-small+.ala-section.section-small,
    .block.small-block .ala-section+.ala-section{
        margin-top: 40px;
    }
}

/* ala-section END */


/*index_title*/
.index_title {
    position: relative;
    margin-bottom: 2.34275vw;
    line-height: 1.2;
    color: var(--color-text-primary);
}
.index_title .sub-title{
    margin-bottom: var(--size-12);
}
.index_title h2 {
    position: relative;
    letter-spacing: var(--size-1);
    display: inline-block;
    z-index: 2;
}

.index_title h2>* {
    position: relative;
}

.color_white .index_title,
.color_white .index_title .sub-title {
    color: #fff;
}

.bg .index_title .en:before,
.color_white .index_title .en:before {
    background-color: #fff;
}

.index_title .title-wrap{
    flex: 1;
}
.index_title .title-wrap h2{
    display: flex;
    align-items: center;
}
.index_title img{
    height: 1em;
    display: inline-block;
    margin-right: var(--size-12);
    line-height: 1.3;
}

.index_title .more-btn {
    margin-top: 0;
}
.index_title .more-link:hover .iconfont{
    margin-left: var(--size-9);
}
.index_title.title_small{
    margin-bottom: var(--size-30);
}
.mce-content-body + .index_title.title_small {
    margin-top: var(--size-40);
}
@media screen and (max-width: 1199px) {
    .index_title {
        margin-bottom: 30px;
    }
}

@media screen and (max-width: 767px) {
    .index_title {
        margin-bottom: 20px;
    }
}

/*index_title END*/


.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
}

.layui-row.row-flex:after,
.layui-row.row-flex:before {
    content: none;
}

#button-to-top {
    background: var(--color-primary);
    position: fixed;
    z-index: 997;
    display: block;
    width: 3.125vw;
    height: 3.125vw;
    line-height: 3.125vw;
    bottom: .9375vw;
    right: .9375vw;
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

@media screen and (max-width: 1199px) {
    #button-to-top {
        width: 37.5px;
        height: 37.5px;
        line-height: 37.5px;
        right: 11.25px;
        bottom: 11.25px;
    }
}

.anchor {
    position: relative;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
    z-index: -1;
}

.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;
}

.media-list .media-item {
    display: inline-block;
    padding: 0 .10417vw;
    text-align: center;
    position: relative;
    z-index: 1;
}

.media-list .media-item:hover {
    z-index: 2;
}

.media-list .media-item a {
    display: block;
    text-align: center;
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    text-align: center;
    color: #fff;
    border-radius: 50%;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    /* border: 1px 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: 36px;
        height: 36px;
        line-height: 36px;
    }

    .media-list .media-item .tc-box {
        width: 90px;
        height: 90px;
        padding: 5px;
        border-radius: 4px;
    }

    .media-list .media-item .tc-box:after {
        top: -9px;
        border-width: 4.5px;
        margin-left: -4.5px;
    }
}

@media screen and (max-width: 767px) {
    .media-list .media-item a:hover {
        z-index: 9;
    }

    .media-list {
        min-height: unset;
    }

    .media-list .media-item .tc-box {
        left: 0;
        transform: translate(0, -20px);
        margin-bottom: 10px;
        top: unset;
        bottom: 100%;
    }

    .media-list .media-item a:hover+.tc-box {
        transform: translate(0, 0);
    }

    .media-list .media-item .tc-box:after {
        top: unset;
        bottom: -12px;
        border-bottom: 6px solid transparent;
        border-top: 6px solid #fff;
        left: 20px;
    }
}

@media screen and (max-width: 567px) {
    .media-list .media-item a {
        width: .72rem;
        height: .72rem;
        line-height: .72rem;
    }

    .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: #e5e5e5;
    background-size: cover;
}
footer>*{
    position: relative;
}
footer:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 5%;
    bottom: 5%;
    background: url(../images/logo_line.png) center center no-repeat;
    background-size: contain;
    opacity: .06;
}

footer,
footer a,
footer a:visited {
    color: var(--color-primary);
}

footer a:hover,
footer a:focus {
    color: var(--color-secondary);
}

footer a:hover {
    text-decoration: underline;
}

.footer-top {
    padding: 3.125vw 0;
}
/* .footer-top>.layui-row>.layui-col-xs12:nth-of-type(1){
    position: relative;
}
.footer-top>.layui-row>.layui-col-xs12:nth-of-type(1):after{
    content: "";
    position: absolute;
    left: -30vw;
    right: -30vw;
    bottom: 0;
    height: var(--size-1);
    background-color: rgba(255, 255, 255, .1);
} */
/* @media screen and (min-width: 768px) {
    .footer-top>.layui-row>.layui-col-xs12:nth-of-type(4),
    .footer-top>.layui-row>.layui-col-xs12:nth-of-type(3){
        border-left: var(--size-1) solid rgba(255, 255, 255, .1);
    }
} */
.footer-top .footer-logo img {
    max-width: 100%;
    max-height: 3.8vw;
    min-height: 40px;
}

footer .footer-title {
    margin-bottom: 1.25vw;
    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-top .media-list .media-item a {
    border-color: rgba(255, 255, 255, .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(0, 0, 0, .1);
}


@media screen and (min-width: 768px) {
    .footer-top {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .footer-top {
        width: 100%;
    }

    footer .footer-title {
        margin-bottom: 12px;
        padding-bottom: 4px;
    }
    .footer-top {
        padding: 30px 0;
    }
}


/* footer END */


/* slide */
.slide{
    position: relative;
    display: block;
    color: #fff;
    overflow: hidden;
}
.slide .img-box-post{
    padding-bottom: 135%;
}
.slide .img-box-post:before,
.slide .img-box-post:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 50%, #000000 100%);
    opacity: 1;
    transition: all .3s ease-in-out;
    z-index: 2;
}
.slide .img-box-post:after{
    background: linear-gradient( 180deg, rgba(116,27,31,0) 0%, #741B1F 50%, #741B1F 100%);
    opacity: 0;
}
.slide-list .layui-row>div:first-child .slide .img-box-post:after,
.slide:hover .img-box-post:after{
    opacity: 1;
}
.slide .text-box{
    position: absolute;
    display: inline-block;
    transition: all .3s ease-in-out;
    padding: var(--size-32);
    left: 0;
    right: 0;
    bottom: -2.5em;
    z-index: 9;
}
.slide .text-box .title{
    font-weight: 600;
}
.slide .text-box .desc{
    margin-top: var(--size-6);
}
.slide .text-box .more{
    opacity: 0;
    overflow: hidden;
    transition: all .3s ease-in-out;
    margin-top: var(--size-30);
}
.slide:hover .text-box{
    color: #fff;
    bottom: 0;
}
.slide:hover .text-box .more{
    opacity: 1;
}

.slide:hover .text-box .more-link:hover{
    color: #fff;
}
/* .slide:hover .more-link .iconfont{
    transform: rotate(45deg);
} */
/* slide END */

/* slide-card */
.slide-card{
    position: relative;
    /* cursor: pointer; */
    box-shadow: unset;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    /* overflow: hidden; */
    background-color: #fff;
    border-radius: var(--size-6);
    overflow: hidden;
}
.slide-card:hover{
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.row-flex .slide-card{
    height: 100%;
}
.slide-card.no-bg .img-box{
    border-radius: var(--size-6);
}
.slide-card .img-box img{
    transform: scale(1);
    transition: all .3s ease-in-out;
}
.slide-card:hover .img-box img{
    transform: scale(1.08);
}
.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--2{
    -webkit-line-clamp: 2;
}
.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 .3s ease-in-out;
}
.slide-card .text-box .time{
    color: var(--color-secondary);
}
a.slide-card:hover .text-box .title{
    color: var(--color-primary);
}
.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;
    height: 100%;
}
.slide-card.no-bg:hover{
    box-shadow: unset;
}
.slide-card.no-bg .text-box{
    padding: 0;
    padding-top: var(--size-30);
    flex: 1;
}
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(--border-color); */
    line-height: 1.2;
    color: var(--color-text-secondary-grey);
}
.slide-card .info-wrap .item{
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-card .info-wrap .item span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.slide-card .text-box .info-wrap .iconfont{
    margin-right: var(--size-9);
    color: var(--color-secondary);
}
.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-9);
}


.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 .3s 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 .3s 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 .3s 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: bold;
    color: #fff
}

.layui-layer .layui-layer-setwin .layui-layer-close2:before {
    content: unset;
}

.layui-layer .layui-layer-setwin .layui-layer-close2:hover {
    background: var(--color-primary);
    color: #fff;
}

.layui-layer.tc-video {
    background: none;
    max-height: 95vh;
    max-width: 95vw;
}

.layui-layer.tc-video .video-player {
    height: 100%;
}

.layui-layer.tc-video .video-js {
    width: 100%;
    height: 100%;
}

@media screen and (max-width: 1399px) {
    .layui-layer .layui-layer-setwin .layui-layer-close2 {
        width: 45px;
        height: 45px;
        line-height: 45px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .layui-layer.tc-video {
        background: none;
        height: 100vh !important;
        width: 100vw !important;
        max-height: 100vh;
        max-width: 100vw;
    }
}

/*layui-layer tc-video END*/

@media screen and (max-width: 991px) {
    .news-list-wrap{
        padding-top: var(--size-30);
        border-top: var(--size-1) solid rgba(0, 0, 0, .1);
    }
    .color_white .news-list-wrap{
        border-top: var(--size-1) solid rgba(255, 255, 255, .15);
    }
}

/* news-list */
.news-list .news-item{
    display: block;
    padding-bottom: var(--size-30);
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .1);
    margin-bottom: var(--size-30);
}
.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);
}
.news-list .news-item .title{
    color: var(--color-text-primary);
    transition: all .3s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-list .news-item .desc{
    line-height: 1.7;
    color: var(--color-text-secondary-grey);
}
.news-list .news-item:hover .title{
    color: var(--color-secondary)!important;
}

.news-list .info-wrap{
    margin-top: var(--size-20);
}
.news-list .info-wrap .info{
    display: flex;
    align-items: center;
}
.news-list .text-box .info-wrap .iconfont{
    margin-right: var(--size-9);
}
.news-list .info-wrap .info .ala-icon{
    margin-right: var(--size-9);
}
.news-list .info-wrap .info .ala-icon .iconfont{
    margin-right: 0;
}
.news-list .info-wrap .info+.info{
    margin-top: var(--size-9);
}

.color_white .news-list .news-item{
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .15);
}
.color_white .news-list .info-wrap,
.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 */

/* inner-banner */
.inner-banner {
    background-color: var(--bg-grey);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    height: 28vw;
    min-height: 240px;
    position: relative;
    padding-top: 7.29166667vw;
    padding-bottom: var(--size-48);
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* justify-content: flex-end; */
}
.inner-banner>*{
    position: relative;
    z-index: 2;
}
.inner-banner:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    z-index: 0;
    height: 18vw;
    background: linear-gradient(180deg, #1F1D1F 0%, rgba(31, 29, 31, 0) 100%);
}
.inner-banner:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 18vw;
    background: linear-gradient( 180deg, rgba(0,0,0,0) 0%, #000000 100%);
    z-index: 0;
}
.article-banner{
    min-height: 25vw;
}

@media screen and (max-width: 1440px) {
    .inner-banner{
        padding-top: 105px;
    }
}
@media screen and (max-width: 991px) {
    .inner-banner{
        padding-top: 75px;
    }
    .article-banner{
        min-height: 240px;
    }
}
/* 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-primary);
    font-size: inherit;
}

.layui-breadcrumb>* {
    font-size: inherit;
}

.layui-breadcrumb a {
    color: inherit !important;
}

.layui-breadcrumb span[lay-separator] {
    color: inherit;
    font-family: Arial;
    margin: 0 var(--size-6);
}

.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: var(--color-primary);
}
.inner-banner-text .text-box {
    padding: var(--size-60) 0 var(--size-36);
    flex: 1;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}
.inner-banner-text  .breadcrumb+.text-box{
    padding-top: var(--size-12);
}
.inner-banner-text .text-box>* {
    position: relative;
}
.inner-banner-text .text-box.has-border{
    border-bottom: var(--size-1) solid var(--border-color);
}
.inner-banner-text .text-box.has-primary-border{
    border-bottom: var(--size-6) solid var(--color-primary);
    margin-bottom: var(--size-60);
}
.inner-banner-text .text-box .bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}
.inner-banner-text .text-box .title_en {
    font-style: italic;
}

.inner-banner-text .text-box .mce-content-body {
    margin-top: var(--size-36);
    line-height: 1.5;
}

.inner-banner-text .slide-down {
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 50%;
    background-color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    cursor: pointer;
    z-index: 9;
    transition: all .3s ease-in-out;
    position: relative;
    margin-bottom: var(--size-54);
}
.inner-banner-text .slide-down:hover{
    background-color: var(--color-primary);
}

.inner-banner-text .slide-down:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/circle-mark.png) center center no-repeat;
    background-size: 100% 100%;
    -webkit-animation: rotate 4s linear infinite;
    -o-animation: rotate 4s linear infinite;
    animation: rotate 4s linear infinite;
}

.inner-banner-text .slide-down:hover:before {
    animation-play-state: paused;
}

.inner-banner-text .slide-down i {
    display: block;
    position: relative;
    /* animation: MoveUpDown .6s ease-in-out infinite; */
}

.inner-banner .inner-banner-text .text-box{
    padding: var(--size-54) 0;
}
.inner-banner .inner-banner-text{
    color: #fff;
}
/* .inner-banner .inner-banner-text .title{
    text-transform: uppercase;
} */
.inner-banner .inner-banner-text .desc{
    font-weight: 100;
    margin-top: var(--size-12);
}
.inner-banner.text-center{
    align-items: center;
    justify-content: center;
}
.inner-banner.text-center .inner-banner-text .title{
    position: relative;
    padding-bottom: var(--size-15);
}
.inner-banner.text-center .inner-banner-text .title:after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    height: var(--size-6);
    width: 1.2em;
    background-color: #fff;
    transform: translateX(-50%);

}


@media screen and (max-width: 1199px) {
    .inner-banner-text .slide-down{
        width: 75px;
        height: 75px;
    }
}
@media screen and (max-width: 767px) {
    /* .inner-banner .inner-banner-text .text-box{
        padding: var(--size-60) 0 var(--size-36);
    } */
    .inner-banner-text .slide-down{
        width: 64px;
        height: 64px;
        margin-bottom: var(--size-36);
    }
}
@media screen and (max-width: 567px) {
    .inner-banner-text .slide-down{
        width: 1.28rem;
        height: 1.28rem;
    }
}

@-webkit-keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    0% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }

    50% {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes MoveUpDown {
    0% {
        bottom: 3px;
    }

    50% {
        bottom: -3px;
    }

    100% {
        bottom: 3px;
    }
}

@keyframes MoveUpDown {
    0% {
        bottom: 3px;
    }

    50% {
        bottom: -3px;
    }

    100% {
        bottom: 3px;
    }
}

/* inner-banner-text END */

/* ala-filter */
.ala-filter .form-select{
    flex: 1;
    min-width: 18vw;
}
.ala-filter .form-select+.form-select{
    margin-left: .625vw;
}
.ala-filter .layui-input{
    flex: 1;
}
.ala-filter .layui-input-date{
    position: relative;
}
.ala-filter .layui-input-date .layui-input{
    padding: 0 1.875vw;
}
.ala-filter .layui-input-date:before,
.ala-filter .layui-input-date:after{
    font-family: 'iconfont';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.ala-filter .layui-input-date:before{
    content: "\e667";
    left: .625vw;
    color: var(--color-text-secondary);
}
.ala-filter .layui-input-date:after{
    content: "\e625";
    font-size: .7em;
    right: .625vw;
}
@media screen and (max-width: 1439px) {
    .ala-filter .layui-input-date .layui-input{
        padding: 0 30px;
    }
    .ala-filter .layui-input-date:before{
        left: 10px;
    }
    .ala-filter .layui-input-date:after{
        right: 10px;
    }
}
/* @media screen and (max-width: 991px) {
    .ala-filter{
        width: 50vw;
    }
} */
@media screen and (max-width: 767px) {
    .ala-filter{
        padding-top: 20px;
        width: 100%;
    }
}
/* ala-filter END */


/*.category-nav*/
.category-nav-block{
    position: relative;
    margin-top: -40px;
}
.category-nav-block .layui-container{
    display: flex;
    align-items: center;
    justify-content: center;
}
.category-nav-block .swiper-container{
    overflow: unset;
}

.category-nav-block .ala-filter{
    margin-left: var(--size-48);
}

.inner-banner .category-nav-block:after{
    bottom: unset;
    top: 0;
    border-top: var(--size-1) solid rgba(255, 255, 255, .2);
}
@media screen and (min-width: 1536px) {
    .category-nav-block{
        margin-top: -2.604166667vw;
    }
}
@media screen and (max-width: 767px) {
    .category-nav-block .ala-filter{
        margin-left: 0;
    }
    .category-nav{
        position: relative;
    }
}

.category-nav{
    position: relative;
    box-shadow: 0px var(--size-4) var(--size-30) 0px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.category-nav .swiper-button-next,
.category-nav .swiper-button-prev{
	top: 0;
	bottom: 0;
	margin-top: 0;
	background-color: rgba(255,255,255,.5);
	height: 100%;
	width: var(--size-30);
    border-radius: 0;
    min-width: 30px;
}
.category-nav .swiper-button-next{
	right: 0;
}
.category-nav .swiper-button-prev{
	left: 0;
}
.category-nav .swiper-button-next:after,
.category-nav .swiper-button-prev:after{
	color: var(--color-primary);
	font-size: var(--size-20);
	position: absolute;
	left: 50%;
	top: 50%;
	transform: translate(-50%,-50%);
}
/* .category-nav .swiper-button-prev:after{
    content: "\e608";
}
.category-nav .swiper-button-next:after{
    content: "\e607";
} */
.category-nav .swiper-button-next.swiper-button-disabled,
.category-nav .swiper-button-prev.swiper-button-disabled{
	opacity: 0;
}
.category-nav .swiper-slide{
    width: auto;
    position: relative;
    cursor: pointer;
    color: var(--color-text-primary);
    transition: color .3s ease-in-out;
}
.category-nav .swiper-slide a{
    display: block;
    padding: 0 var(--size-60);
    color: inherit;
    height: var(--size-100);
    background: #fff;
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
}
.category-nav .swiper-slide a>*{
    position: relative;
}
.category-nav .swiper-slide a:before{
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 5%;
    bottom: 5%;
    background: url(../images/logo_line_white.png) center center no-repeat;
    background-size: contain;
    opacity: .75;
}
.category-nav .swiper-slide .num{
    font-size: 4.5em;
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    line-height: 1;
    opacity: .04;
    text-align: center;
    line-height: 1;
}
.category-nav .swiper-slide.active a{
    background: var(--color-primary);
    color: #fff;
}
.category-nav .swiper-slide.active a{
    font-weight: normal;
}

/* .category-nav .swiper-slide.active .num{
    color: var(--color-secondary);
} */

@media screen and (max-width: 991px) {
    .category-nav .swiper-slide a{
        min-width: unset;
    }
}
@media screen and (max-width: 767px) {
    .inner-banner{
        padding-bottom: 50px;
    }
    .category-nav-block{
        margin-top: -54px;
    }
    .category-nav-block .layui-container{
        padding: 0;
    }
    .category-nav{
        box-shadow: unset;
        /* min-width: 100%; */
    }
    .category-nav .swiper-slide .num{
        display: none;
    }
    .category-nav .swiper-slide a{
        min-width: unset;
        padding: 0 var(--size-15);
        background-color: unset;
        color: #fff;
        height: 54px;
        line-height: 54px;
        min-height: unset;
    }
    .category-nav .swiper-slide a:after{
        content: "";
        position: absolute;
        left: var(--size-15);
        right: var(--size-15);
        height: var(--size-2);
        min-height: 2px;
        background-color: #fff;
        bottom: 8px;
        opacity: 0;
    }
    .category-nav .swiper-slide.active a{
        background-color: unset;
    }
    .category-nav .swiper-slide.active a:after{
        opacity: 1;
    }
}
@media screen and (max-width: 567px) {
    .category-nav .swiper-slide a{
        padding: 0 .32rem;
    }
    .category-nav .swiper-slide a:after{
        left: .32rem;
        right: .32rem;
    }
}
/* category-nav END */

/* inner-banner END */

/* inner-title */
.inner-title {
    margin-bottom: var(--size-45);
}

.inner-title .title {
    display: inline-block;
    position: relative;
    line-height: 1.2;
}

/* .inner-title .title>* {
    position: relative;
}

.inner-title .title:before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: .33333em;
    width: 2em;
    background: var(--color-primary);
    opacity: .5;
} */
.inner-title.text-center .mce-content-body{
    max-width: 60vw;
    margin: var(--size-20) auto 0;
}
@media screen and (max-width: 1439px) {
    .inner-title.text-center .mce-content-body{
        max-width: 720px;
    }
}
@media screen and (max-width: 991px) {
    .inner-title.text-center .mce-content-body{
        max-width: 100%;
    }
}
/* inner-title END */


/* content-column */
@media screen and (min-width: 992px) {
    .content-column .layui-container{
        padding-left: 0;
    }
}
.content-column .scrollbar-box{
    max-height: 23.5vw;
    overflow: hidden;
}
@media screen and (max-width: 1439px) {
    .content-column .scrollbar-box{
        max-height: 338vw;
    }
}
@media screen and (max-width: 991px) {
    .content-column .scrollbar-box{
        max-height: unset;
    }
}
/* content-column END */
.page-entry .entry-item{
    padding: var(--size-30) var(--size-18);
}
.page-entry .entry-item .icon img{
    width: var(--size-45);
    height: var(--size-45);
    object-fit: contain;
}

/* introduce-section */
.introduce-section .bg{
    position: absolute;
    left: var(--size-60);
    top: var(--size-60);
    bottom: 0;
    width: 75%;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: left top;
}
/* introduce-section 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;
    margin-right: var(--size-60);
}
.develop-swiper .develop-item .line{
    height: var(--size-30);
    position: relative;
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .2);
    border-left: var(--size-1) solid rgba(255, 255, 255, .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:RGBA(29, 66, 106, 1);
    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(255, 255, 255, .2);
}
.develop-swiper .develop-item .event-box{
    position: relative;
    background-color: RGBA(29, 66, 106, 1);
    padding: var(--size-24);
    margin-right: var(--size-48);
    margin-top: var(--size-48);
    transition: all .3s ease-in-out;
}
.develop-swiper .develop-item .event-box:after{
    content: "";
    position: absolute;
    left: 0;
    border: var(--size-12) solid transparent;
    border-left: var(--size-12) solid RGBA(29, 66, 106, 1);
    border-bottom: var(--size-12) solid RGBA(29, 66, 106, 1);
    top: 0;
    transform: translateY(-100%);
    transition: all .3s ease-in-out;
}
.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(255, 255, 255, .1);
}
.develop-swiper .develop-item .event-box .item .text{
    margin-top: var(--size-9);
}
.develop-swiper .swiper-slide-active .develop-item .year{
    opacity: 1;
}
.develop-swiper .swiper-slide-active .develop-item .event-box{
    background-color: #fff;
    color: var(--color-primary);
}
.develop-swiper .swiper-slide-active .develop-item .event-box:after{
    border-left-color: #fff;
    border-bottom-color: #fff;
}
.develop-swiper .swiper-slide-active .develop-item .event-box .item+.item{
    border-top-color: rgba(1, 33, 68, .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;
}

/* leader-list */
.leader-list>.layui-row{
    margin-top: 0;
    margin-bottom: 0;
}
.leader-list>.layui-row>.layui-col-xs12{
    padding-top: 0;
    padding-bottom: 0;
}
.leader-list .leader-item{
    padding: var(--size-36) 0;
    border-bottom: var(--size-1) solid var(--border-color);
    display: flex;
}
.leader-list .leader-item .label{
    min-width: 6em;
    margin-right: var(--size-40);
    position: relative;
    padding-left: 1em;
    font-weight: bold;
}
.leader-list .leader-item .label:after{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 1em;
    top: .25em;
    width: var(--size-4);
    background-color: var(--color-primary);
}
.leader-list .leader-item .name{
    margin: 0 -2.234375vw;
    flex: 1;
}
.leader-list .leader-item .name span{
    display: inline-block;
    padding: var(--size-6) var(--size-45);
}
/* leader-list END */

.heightTemp{
    height: 12.5vw;
}


/* people-detail */

.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-container {
    background: var(--bg-grey);
    padding: var(--size-40);
    margin-bottom: var(--size-40);
}

.people-detail .people-top .name {
    line-height: 1.2;
}
.people-detail .people-top .name em{
    font-style: normal;
}

.people-detail .people-top .title {
    margin-top: var(--size-15);
}

.people-detail .people-top .info {
    margin-top: var(--size-36);
    /* display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-between; */
}
.people-detail .people-top .info .item+.item{
    margin-top: var(--size-9);
}
.people-detail .people-top .info .iconfont {
    margin-right: var(--size-12);
}

.people-detail .people-top .info span {
    flex: 1;
    word-break: break-all;
    line-height: 1.2;
}
.people-detail .people-content{
    margin-top: var(--size-30);
    padding-top: var(--size-30);
    border-top: var(--size-1) solid var(--border-color);
}


.people-detail .people-menu,
.people-detail .people-info{
    position: relative;
    padding-top: var(--size-24);
    padding-left: var(--size-18);
}
.people-detail .people-menu:before,
.people-detail .people-info:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: var(--size-1);
    background-color: var(--border-color);
}
.people-detail .people-info .title{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-12);
}
.people-detail .people-menu{
    padding-top: var(--size-36);
    padding-left: 0;
    position: sticky;
    position: -webkit-sticky;
    top: 0;
    transition: all .3s ease-in-out;
    margin-left: var(--size-12);
}
/* .header-fixed.header-show .people-detail .people-menu { */
.people-detail .people-menu {
    top: 5.208333vw;
}
.people-detail .people-menu li{
    cursor: pointer;
    display: block;
    position: relative;
    padding-left: var(--size-18) ;
}
.people-detail .people-menu li:before{
    content: "";
    position: absolute;
    left: 0;
    top: 10%;
    bottom: 10%;
    width: var(--size-4);
    background: var(--color-primary);
    opacity: 0;
}
.people-detail .people-menu li:hover,
.people-detail .people-menu li.active{
    font-weight: bold;
}
.people-detail .people-menu li.active:before{
    opacity: 1;
}
.people-detail .people-menu li+li{
    margin-top: var(--size-15);
}
@media screen and (max-width: 1439px) {
    /* .header-fixed.header-show .people-detail .people-menu { */
    .people-detail .people-menu {
        top: 75px;
    }
}
@media screen and (max-width: 1199px) {
    .people-detail .people-left .people-img:before{
        left: -8px;
        top: -8px;
        right: -8px;
    }
}
@media screen and (max-width: 991px) {
    .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;
    }
    .people-detail .people-left .people-img{
        width: 160px;
    }
    .people-detail .people-info{
        margin-top: 72px;
        margin-left: 8px;
        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;
        right: -.16rem;
    }
    .people-detail .people-info{
        margin-top: calc(60px - .16rem);
        margin-left: .16rem;
    }
    .people-detail .people-left .people-img{
        width: 2.4rem;
    }
}

/* people-detail END */

/* organization-list */
.organization-list .post-list {
    flex: 1;
}
.organization-list .post-list .slide-card .text-box{
    display: block;
}
.organization-list .post-list .slide-card .title{
    line-height: 1;
    display: flex;
    align-items: flex-end;
    border-bottom: var(--size-1) solid var(--border-color);
    padding-bottom: var(--size-24);
}
.organization-list .post-list .slide-card .title em{
    color: var(--color-text-secondary-grey);
    font-style: normal;
    margin-left: var(--size-9);
    flex: 1;
}

.organization-list .post-list .slide-card:hover .text-box:before{
    transform: translate(-12%,-30%);
}
@media screen and (max-width: 767px) {
    .organization-list .leader-item{
        display: block;
    }
    .organization-list .leader-item .label{
        width: unset;
        margin-right: unset;
        margin-bottom: var(--size-30);
    }
}
/* organization-list END */

/* secondary-menu */
.secondary-menu {
    position: -webkit-sticky;
    position: sticky;
    transition: all .3s ease-in-out;
    top: var(--size-20);
}
.header-fixed.header-show .secondary-menu {
    top: calc(7.29166667vw + var(--size-20));
}
.secondary-menu>*{
    position: relative;
    z-index: 1;
}
.secondary-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.09375vw 0;
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
    position: relative;
}
.secondary-menu .menu-item em{
    font-style: normal;
}
.secondary-menu .menu-item .iconfont {
    opacity: 0;
    transition: all .3s ease-in-out;
    font-size: .9em;
    color: var(--color-secondary);
}

.secondary-menu .menu-item.active {
    color: var(--color-secondary);
    font-weight: bold;
    border-bottom-color: var(--color-secondary);
}

.secondary-menu .menu-item.active .iconfont {
    opacity: 1;
}

@media screen and (max-width: 1439px) {
    .header-fixed.header-show .secondary-menu {
        top: calc(105px + var(--size-20));
    }
    .secondary-menu .menu-item {
        padding: 15px 0;
    }
}
@media screen and (max-width: 991px) {
    .header-fixed.header-show .secondary-menu{
        top: calc(75px + var(--size-20));
    }
}

/* secondary-menu END */


/* secondary-menu-right */
.secondary-menu-right {
    margin-bottom: 1.5625vw;
    display: none;
}
.secondary-menu-right.show-pc{
    display: block;
}
.secondary-menu-right.show-pc.ala-flex{
    display: flex;
}

.secondary-menu-title {
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.secondary-menu-title em{
    font-style: normal;
}
/* .secondary-menu-right+.mce-content-body{
    margin-top: -.78125vw;
    margin-bottom: 1.5625vw;
} */

@media screen and (max-width: 1199px) {
    .secondary-menu-right {
        margin-bottom: 20px;
    }
    /* .secondary-menu-right+.mce-content-body{
        margin-top: -10px;
        margin-bottom: 20px;
    } */
}
@media screen and (min-width: 992px) {
    .secondary-menu-title .icon-down,
    .secondary-menu-list {
        display: none !important;
    }
}
@media screen and (max-width: 991px) {
    .secondary-menu-right{
        display: block;
    }
    .secondaryMenuTemp {
        height: 60px;
        display: none;
    }

    .secondary-menu-right {
        /* background-color: #fff; */
        position: relative;
        transition: all .3s ease-in-out;
        transform: unset !important;
        display: block!important;
    }

    .secondary-menu-right .secondary-menu-title {
        padding: 10px 0;
        margin-bottom: 0;
        border-bottom: 1px solid transparent;
        cursor: pointer;
        height: 50px;
    }

    .secondary-menu-right.open .secondary-menu-title {
        border-bottom-color: var(--border-color);
    }

    .secondary-menu-right .secondary-menu-title .icon-down {
        transition: all .3s ease-in-out;
    }

    .secondary-menu-right.open .secondary-menu-title .icon-down {
        transform: rotate(180deg);
    }

    .secondary-menu-list {
        padding: 10px 0;
        display: none;
    }

    .secondary-menu-right.open .secondary-menu-list {
        display: block;
    }

    .secondary-menu-list .menu-item {
        display: block;
        border-bottom: 0;
        padding: 10px 0;
    }
    .secondary-menu-list .menu-item em{
        font-style: normal;
    }

    .secondary-menu-list .menu-item.active {
        color: var(--color-secondary);
    }

    .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: 98;
        display: none;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .secondary-menu-fixed header {
        box-shadow: unset;
    }

    .secondary-menu-right .fixed-wrap{
        /* background-color: #fff; */
        transition: all .3s ease-in-out;
    }
    .secondary-menu-fixed .secondary-menu-right .fixed-wrap {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
        background-color: #fff;
    }

    .header-fixed.header-show.secondary-menu-fixed .secondary-menu-right .fixed-wrap  {
        top: 75px;
    }

    .secondary-menu-fixed .secondary-menu-right .secondary-menu-title {
        /* background-color: #fff; */
        padding: 0 4.166667vw;
        border-bottom: 1px solid var(--border-color);
        height: 50px;
    }

    .secondary-menu-fixed .secondary-menu-list {
        padding: 10px 4.166667vw;
    }
}

@media screen and (max-width: 567px) {
    .secondary-menu-right {
        margin-bottom: .3rem;
    }
    .secondary-menu-right .mce-content-body{
        margin-top: .15rem;
        margin-bottom: .3rem;
    }

    .secondary-menu-fixed .secondary-menu-right .secondary-menu-title {
        padding: 0 .32rem;
        height: 1rem;
    }

    .secondary-menu-fixed .secondary-menu-list {
        padding: 10px .32rem;
    }
}

/* secondary-menu-right END */


/* secondary-menu-filter */
.secondary-menu-filter{
    min-width: 35vw;
}
.secondary-menu-filter .layui-form.flex-1{
    flex: 1;
}
.secondary-menu-filter .layui-form.flex-2{
    flex: 2;
}
.secondary-menu-filter .layui-form-select{
    max-width: 30%;
}
.secondary-menu-filter [class^='layui-col'] .layui-form-select{
    max-width: 100%;
}
.secondary-menu-filter .layui-form-select+.layui-form-select,
.secondary-menu-filter .layui-form-select+.layui-input,
.secondary-menu-filter .layui-input+.layui-input,
.secondary-menu-filter .layui-input+.layui-form-select{
    margin-left: .15625vw;
}
.secondary-menu-filter .layui-input{
    flex: 1;
}
.secondary-menu-filter .layui-input-date{
    position: relative;
}
.secondary-menu-filter .layui-input-date .layui-input{
    padding: 0 1.875vw;
}
.secondary-menu-filter .layui-input-date:before,
.secondary-menu-filter .layui-input-date:after{
    font-family: 'iconfont';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}
.secondary-menu-filter .layui-input-date:before{
    content: "\e667";
    left: .625vw;
    color: var(--color-text-secondary);
}
.secondary-menu-filter .layui-input-date:after{
    content: "\e625";
    font-size: .7em;
    right: .625vw;
}
@media screen and (max-width: 1439px) {
    .secondary-menu-filter .layui-input-date .layui-input{
        padding: 0 30px;
    }
    .secondary-menu-filter .layui-input-date:before{
        left: 10px;
    }
    .secondary-menu-filter .layui-input-date:after{
        right: 10px;
    }
}
@media screen and (max-width: 991px) {
    .secondary-menu-filter{
        justify-content: unset;
    }
    .secondary-menu-filter .layui-form-select+.layui-form-select,
    .secondary-menu-filter .layui-form-select+.layui-input,
    .secondary-menu-filter .layui-input+.layui-input,
    .secondary-menu-filter .layui-input+.layui-form-select{
        margin-left: 2px;
    }
}
@media screen and (max-width: 767px) {
    .secondary-menu-filter{
        padding-top: 15px;
        width: 100%;
    }
}
/* secondary-menu-filter 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 .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);
}

.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);
}

.article-calendar>* {
    line-height: 1 !important;
}
.article-calendar .date{
    font-weight: bold;
}
.article-calendar .year {
    margin-top: var(--size-12);
}

@media screen and (max-width: 767px) {
    .article-title .share-btn{
        display: none;
    }
}

/* 活动 */
.article-banner{
    justify-content: flex-start;
    min-height: 25vw;
}
.article-banner .breadcrumb+.inner-banner-text{
    padding-top: var(--size-90)!important;
}
.article-banner .inner-banner-text{
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
}
.article-banner .inner-banner-text>*{
    width: 100%;
}
.article-banner .article-title-wrapper{
    flex: 1;
    width: 100%;
}
.article-banner .article-title{
    color: #fff;
    margin-bottom: 0;
    padding-bottom: 0;
    border: 0;
    flex: 1;
}
.article-banner .article-title .article-other{
    margin-top: var(--size-30);
}
.article-banner .article-title .article-otherBase span{
    display: block;
}
.article-banner .article-title .article-otherBase span+span{
    margin-left: 0;
    margin-top: var(--size-12);
}
.article-banner .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-title END */


/* article-btn */
.article-btn .btn {
    display: block;
    padding: var(--size-24);
    background-color: var(--bg-grey);
}

.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*/


/* article-container */
.article-container .article-title{
    margin-bottom: 0;
}
.article-container .article-content{
    padding-top: var(--size-48);
    overflow: hidden;
}
.article-container .layui-row .layui-col-md9{
    border-right:  var(--size-1) solid rgba(0, 0, 0, .1);
}
.article-container .side-column .side-title{
    margin-bottom: var(--size-30);
}
.article-container .side-column .slide-card+.slide-card{
    margin-top: var(--size-40);
}
.article-container .side-column .slide-card .time{
    line-height: 1;
    color: var(--color-text-secondary-grey);
}
.article-container .side-column .slide-card .tag+.time{
    margin-left: var(--size-15);
    padding-left: var(--size-15);
    border-left: var(--size-1) solid rgba(0, 0, 0, .1);
}

.article-container .mce-content-body img{
    max-width: 80%;
}
@media screen and (max-width: 767px) {
    .article-container .mce-content-body img{
        max-width: 100%;
    }
}
/* article-container 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 .3s ease-in-out;
}
.header-fixed.header-show .event-content-right {
    top: calc(7.29166667vw + 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-grey);
}
.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 .inner-banner-text{
        text-align: unset;
    }
    .article-banner .breadcrumb+.inner-banner-text{
        padding-top: var(--size-60)!important;
    }
}
@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 */


/* filter */
.filter {
    margin-bottom: 1.71875vw;
    padding: 2.34275vw;
    background-color: var(--bg-grey);
    /* border: 1px solid var(--border-color); */
}
.filter.bg-grey{
    background: var(--color-primary);
    border-color: var(--color-primary);
}

.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;
}

.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-grey);
}
.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 */


/* letter-filter */
.letter-filter {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

.letter-filter .item {
    height: 2.5vw;
    width: 2.5vw;
    line-height: calc(2.5vw - 2px);
    text-align: center;
    border: 1px solid transparent;
    border-radius: .3125vw;
    cursor: pointer;
    display: block;
    transition: all .4s;
    background-color: transparent;
    position: relative;
    margin: .3125vw 0;
    /* margin: 0 .3125vw; */
}

.letter-filter .item:hover {
    color: var(--color-primary);
}

.letter-filter .item.active {
    border-color: var(--color-primary);
    /* background-color: #fff; */
    color: var(--color-primary);
}

.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 .item {
        width: 36px;
        height: 36px;
        line-height: 34px;
        border-radius: 4px;
        margin: 4px 0;
    }
}

@media screen and (max-width: 567px) {
    .letter-filter .item {
        width: .64rem;
        height: .64rem;
        line-height: calc(.64rem - 2px);
        border-radius: .08rem;
        margin: .08rem 0;
    }
}

/* letter-filter END */
.faculty-container .slide-door{
    border: var(--size-1) solid var(--border-color);
}
.faculty-container .slide-door .accordion-title{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.faculty-container .slide-door .accordion-title:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    right: unset;
    bottom: 0;
    height: unset;
    width: var(--size-4);
    background-color: var(--color-primary);
}
.faculty-container .slide-door.open .accordion-title{
    background-image: url(../images/slide-door-bg.jpg);
    background-size: cover;
    color: #fff;
}
.faculty-container .slide-door.open .accordion-title:before{
    background-color: transparent;
}
.faculty-container .slide-door .accordion-content{
    background-color: transparent;
}

/* faculty-list */
.faculty-list .faculty-item{
    display: flex;
    background: #fff url(../images/staff-bg.png) right bottom no-repeat;
    background-size: 30% auto;
    height: 100%;
    transition: all .3s ease-in-out;
    padding: var(--size-36);
    border-top: var(--size-4) solid var(--color-primary);
    /* box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1); */
}
.faculty-list .faculty-item:hover{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 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;
    transition: all .3s ease-in-out;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding-left: var(--size-36);
}
.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);
    
    /* overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical; */

}
.faculty-list .faculty-item .text-box .mce-content-body{
    padding-top: var(--size-24);
    margin-top: var(--size-24);
    border-top: var(--size-1) solid var(--border-color);
}
.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-primary);
}
.faculty-list .faculty-item .text-box .info{
    margin-top: var(--size-20);
    color: var(--color-secondary);
}
.faculty-list .faculty-item .text-box .info a{
    text-decoration: underline;
    color: var(--color-secondary);
}
.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 .iconfont{
    margin-right: var(--size-9);
    color: var(--color-secondary);
}
.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: 767px) {
    .faculty-list .faculty-item{
        display: block;
    }
    .faculty-list .faculty-item .img-box{
        margin: 0 auto;
    }
    .faculty-list .faculty-item .text-box{
        padding-left: 0;
        padding-top: var(--size-24);
    }
    .faculty-list .faculty-item .text-box .head-wrap{
        justify-content: center;
    }
    .faculty-list .faculty-item .text-box .title{
        text-align: center;
    }
}
@media screen and (max-width: 567px) {
    .faculty-list .faculty-item{
        padding: .2rem .3rem;
    }
    .faculty-list .faculty-item .img-box{
        width: 2.4rem;
        height: 3.12rem;
    }
    .faculty-list .faculty-item .text-box .title{
        /* margin-top: .06rem; */
        line-height: 1.3;
        padding-bottom: 0;
        margin-bottom: 0;
        border-bottom: 0;
        text-align: center;
    }
    .faculty-list .faculty-item .text-box .info{
        margin-top: .2rem;
        line-height: 1.3;
    }
    .faculty-list .faculty-item .text-box .info span+span{
        margin-top: 0;
    }
    .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: bold;
}
.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 .3s ease-in-out;
}
.name-list .name-item:hover{
    color: var(--color-primary);
    /* 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 */

/* research-card */
.research-card .slide .img-box-post{
    padding-bottom: 130%;
}
/* research-card END */


/* post-swiper */
.post-swiper .swiper-container{
    margin: -20px -10px;
    padding: 20px 10px;
    width: auto;
}
/* post-swiper END */

/* result-list */
.result-list .item{
    display: flex;
    padding: var(--size-20) 0;
    border-bottom: 1px solid var(--border-color);
}
.result-list .item .iconfont{
    color: var(--color-text-secondary);
    margin-right: var(--size-12);
}
.result-list .item:hover .iconfont{
    color: var(--color-primary);
}
.result-list .item:hover .title{
    text-decoration: underline;
}
/* result-list END */




/* wide-panel */
.wide-panel .item{
    display: flex;
    position: relative;
    padding: var(--size-48);
    background-color: var(--bg-grey);
    transition: all .3s ease-in-out;
    box-shadow: unset;
}
.wide-panel a.item{
    cursor: pointer;
}
.wide-panel .item+.item{
    margin-top: var(--size-40);
}
.wide-panel .item.open,
.wide-panel .item:hover{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.wide-panel .item .ala-line{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
}
.wide-panel .item:hover .overlayer{
    opacity: 1;
    transform: scale(1);
}
.wide-panel .item .img-box{
    width: 23.4375vw;
}
.wide-panel .item .text-box{
    padding-left: var(--size-40);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
}
.wide-panel .item .text-box>*{
    width: 100%;
}
.wide-panel .item .text-box .title{
    line-height: 1.3;
}
.wide-panel .item .text-box .info,
.wide-panel .item .text-box .tags{
    margin: var(--size-20) 0;
}
.wide-panel .item .text-box .tags .ala-tag{
    margin-top: var(--size-4);
    margin-bottom: var(--size-4);
}
.wide-panel .item .text-box .info>*+*{
    margin-top: var(--size-4);
}
.wide-panel .item .text-box .content,
.wide-panel .item .text-box .desc{
    margin-top: var(--size-15);
}
.wide-panel .item .text-box .bottom-wrap{
    margin-top: var(--size-24);
    flex-wrap: wrap;
}
.wide-panel .item .text-box .bottom-wrap .info{
    margin-top: var(--size-9);
}
.wide-panel .item .text-box .content{
    padding-bottom: var(--size-40);
}
.wide-panel .item .text-box .content .text{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    display: -moz-box;
    -webkit-line-clamp: 4;
    line-clamp: 4;
    -webkit-box-orient: vertical;
}
.wide-panel .item:not(.open) .text-box .content .text p{
    display: inline;
}
.wide-panel .item.open .text-box .content .text{
    -webkit-line-clamp: unset;
    line-clamp: unset;
}
.wide-panel .item .toggle-btn{
    background: var(--color-primary);
    color: #fff;
    line-height: 1;
    padding: var(--size-15) var(--size-20);
    display: inline-block;
    cursor: pointer;
    position: absolute;
    bottom: -2.5vw;
    left: var(--size-40);
}
.list-horizon .item .toggle-btn .iconfont{
    transform: scale(.9);
    display: inline-block;
}
.list-horizon .item .toggle-btn.hide-btn{
    display: none;
}
@media screen and (max-width: 1439px) {
    .wide-panel .item .toggle-btn{
        bottom: -36px;
    }
}
@media screen and (max-width: 767px) {
    .wide-panel .item{
        padding: 20px;
        display: block;
    }
    .wide-panel .item .text-box{
        padding-left: 0;
        padding-top: var(--size-40);
    }
    .wide-panel .item .img-box{
        width: 100%;
    }
    .wide-panel .item .toggle-btn{
        bottom: -20px;
        left: 0;
    }
}
@media screen and (max-width: 567px) {
    .wide-panel .item{
        padding: .4rem;
    }
    .wide-panel .item .text-box .bottom-wrap{
        display: block;
    }
    .wide-panel .item .toggle-btn{
        bottom: -.4rem;
    }
}
/* wide-panel END */

/* list */
.list .item{
    padding: var(--size-30);
    background-color: var(--bg-grey);
    display: flex;
    align-items: center;
    position: relative;
    transition: all .3s ease-in-out;
}
.list .item:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: var(--size-4);
    background: var(--color-primary);
    opacity: 0;
    transition: all .3s ease-in-out;
}
.list .item+.item{
    margin-top: var(--size-20);
}
.list .item .text-box{
    flex: 1;
}
.list .item .right-box{
    margin-left: var(--size-20);
}
.list .item .ala-icon{
    opacity: 0;
    transition: all .3s ease-in-out;
    margin-left: var(--size-24);
}
.list .item:hover .title{
    text-decoration: underline;
}
.list .item:hover{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
}
.list .item:hover:after,
.list .item:hover .ala-icon{
    opacity: 1;
}
.list .item .info,
.list .item .desc{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-15);
}
.list .item .info{
    display: flex;
    flex-wrap: wrap;
    margin-left: -1.5625vw;
    margin-right: -1.5625vw;
}
.list .item .info span{
    display: inline-block;
    padding: var(--size-4) 1.5625vw;
}
@media screen and (max-width: 1199px){
    .list .item .info{
        margin-left: -18px;
        margin-right: -18px;
    }
    .list .item .info span{
        padding: var(--size-4) 18px;
    }
}
@media screen and (max-width: 767px){
    .list .item .info{
        margin-left: 0;
        margin-right: 0;
        display: block;
    }
    .list .item .info span{
        display: block;
        padding: var(--size-4) 0;
    }
    .list .item .ala-icon{
        display: none;
    }
}
/* list END */

/* category-filter */
.category-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.category-filter a {
    display: block;
    padding: var(--size-18) var(--size-30);
    position: relative;
    line-height: 1;
    cursor: pointer;
    transition: all .3s ease-in-out;
}
.category-filter a+a{
    margin-left: var(--size-12);
}
.category-filter a.active {
    color: #fff;
    background: var(--color-primary);
}

@media screen and (max-width: 767px) {
    .category-filter{
        justify-content: flex-start;
    }
}
/* category-filter END */

/* jc-container */
.jc-container table{
    width: 100%;
    border-right: 0;
    border-top: 0;
}
.jc-container table th{
    font-weight: bold;
}
.jc-container table th,
.jc-container table td{
    padding: var(--size-18) var(--size-6);
    /* border-bottom: var(--size-1) solid var(--border-color-lighter); */
    border-left: 0;
}
.jc-container table thead{
    background: unset;
    color: var(--color-primary);
}
.jc-container table tbody{
    color: var(--color-text-secondary-grey);
}
/* .jc-container table tr:last-child td{
    border-bottom: 0;
} */
/* jc-container END */

/* introduce-section */
.party-section .layui-col-md5 .layui-container{
    height: 100%;
    position: relative;
}
.party-section .bg{
    position: absolute;
    left: 4.166667vw;
    right: 4.166667vw;
    top: 0;
    bottom: -4.16667vw;
    background-repeat: no-repeat;
}
.party-section{
    padding-bottom: 4.16667vw;
}
.party-section:after{
    content: "";
    position: absolute;
    left: 4.166667vw;
    right: 4.166667vw;
    bottom: 0;
    height: var(--size-1);
    background-color: var(--border-color);
}
@media screen and (max-width: 991px) {
    .party-section .bg{
        display: none;
    }
}
@media screen and (max-width: 567px) {
    .party-section:after{
        left: .32rem;
        right: .32rem;
    }
}
/* introduce-section END */
.insights-swiper .swiper-container{
    padding: var(--size-15) 0 var(--size-45);
}
.insights-swiper .swiper-slide{
    height: auto;
}
.insights-list .img-box-post,
.insights-swiper .img-box-post{
    padding-bottom: 42.339732%;
}
.review-post-list .review-post-item.has-avatar,
.insights-swiper .swiper-slide.has-avatar{
    padding-top: 3.203125vw;
}
.insights-swiper .swiper-btn{
    justify-content: flex-end;
}
.insights-swiper .swiper-pagination{
    flex: 1;
    margin-right: var(--size-45); 
}

/* donor-item */

.donor-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    border-top: 0;
    transition: all .3s ease-in-out;
    position: relative;
    height: 100%;
    /* background: url(../images/logo_line.png) center bottom no-repeat;
    background-size: 100% auto;
    background-color: #fff; */
    padding-bottom: var(--size-60);
    border-radius: var(--size-9);
    /* box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1); */
}
.donor-item>*{
    position: relative;
}
.donor-item:before{
    content: "";
    position: absolute;
    left: 5%;
    right: 5%;
    top: 0;
    bottom: 0;
    background: url(../images/logo_line.png) center bottom no-repeat;
    background-size: 100% auto;
    background-color: #fff;
    opacity: .25;
}

.color_white .donor-item,
.block.grey .donor-item{
    background-color: #fff;
}

.donor-item>* {
    display: block;
    width: 100%;
}
.donor-item .text-box{
    padding: var(--size-30);
}
.donor-item .text-box .title{
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.donor-item .desc {
    color: var(--color-text-secondary-grey);
    padding-top: var(--size-30);
    border-top: var(--size-1) solid var(--border-color);
    line-height: 1.8;
}

.donor-item .donor-info {
    width: 100%;
    transition: all .3s ease-in-out;
    padding: var(--size-30) var(--size-30) 0;
}
.has-avatar .donor-item .donor-info{
    margin-top: -2.734375vw;
    padding-top: 0;
}
.donor-item .donor-info .avatar {
    width: 5.46875vw;
    height: 5.46875vw;
    position: relative;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, .05);
    /* margin-left: .46875vw; */
    margin-bottom: var(--size-18);
    left: 50%;
    transform: translateX(-50%);
}
.donor-item .donor-info .avatar>*{
    position: relative;
}
.donor-item .donor-info .avatar:before{
    content: "";
    position: absolute;
    left: -.46875vw;
    right: -.46875vw;
    top: -.46875vw;
    height: 3.203125vw;
    background-color: var(--color-secondary);
    /* background: url(../images/index_title_mark_vertical.png) center top no-repeat; */
    background-size: 100%;
    border-top-left-radius: var(--size-100);
    border-top-right-radius: var(--size-100);
}

.donor-item .donor-info .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    overflow: hidden;
    border: var(--size-6) solid #fff;
}

.donor-item .donor-info .info {
    flex: 1;
    line-height: 1.3;
    text-align: center;
}

.donor-item .donor-info .info .title {
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-9);
    transition: all .3s ease-in-out;
}

.donor-item:hover{
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
    background-color: #fff;
}
@media screen and (max-width: 1439px) {
    .review-post-list .review-post-item.has-avatar,
    .insights-swiper .swiper-slide.has-avatar{
        padding-top: 44px;
    }
    .has-avatar .donor-item .donor-info{
        margin-top: -39px;
    }
    .donor-item .donor-info .avatar{
        width: 78px;
        height: 78px;
        border-width: 4px;
        margin-left: 5px;
    }
    .donor-item .donor-info .avatar:before{
        left: -5px;
        top: -5px;
        right: -5px;
        height: 44px; 
    }
}
/* donor-item END */

/* research-door */
.research-door{
    border: 0;
    border-bottom: var(--size-1) solid var(--border-color);
    border-top: var(--size-1) solid var(--border-color);
    display: flex;
    padding: var(--size-30) 0;
    position: relative;
    padding-right: var(--size-80);
    cursor: pointer;
}
.research-door+.research-door{
    border-top: none;
}
.research-door .accordion-title,
.research-door .accordion-content{
    background-color: transparent;
    padding-left: 0;
    padding-right: 0;
    border: 0;
    width: 45%;
}
.research-door .accordion-title{
    padding-right: var(--size-20);
}
.research-door .num{
    color: var(--color-primary);
    -webkit-text-stroke: 1px var(--color-primary);
    text-stroke: 1px var(--color-primary);
    color: transparent;
    transition: all .3s ease-in-out;
    font-family: "PoppinsSemiBold";
    margin-right: var(--size-24);
}
.research-door .accordion-title:after{
    font-size: var(--size-15);
}
.research-door .accordion-content{
    line-height: 1.7;
    display: none;
    width: 55%;
}
.research-door .ala-icon{
    background: #ECF1F7;
    color: var(--color-primary);
    position: absolute;
    right: 0;
    top: var(--size-24);
    margin-top: var(--size-2);
}
.research-door.open .accordion-content{
    display: block;
}
.research-door.open .ala-icon{
    background-color: var(--color-primary);
    color: #fff;
}
.research-door.open .ala-icon:before{
    content: "\e87f";
}
@media screen and (max-width: 991px) {
    .research-door{
        display: block;
        padding-right: 0;
    }
    .research-door .accordion-title,
    .research-door .accordion-content{
        width: 100%;
    }
    .research-door .accordion-title{
        padding-right: var(--size-80);
    }
    .research-door .accordion-content{
        padding-top: var(--size-20);
    }
}
/* research-door END */

/* research-member */
.research-member{
    border-top: var(--size-4) solid var(--color-primary);
    background-color: var(--bg-grey);
    padding: var(--size-40) var(--size-48);
}
.research-member .item+.item{
    padding-top: var(--size-40);
    margin-top: var(--size-40);
    border-top: var(--size-1) solid var(--border-color);
}
.research-member .item{
    display: flex;
}
.research-member .item .label{
    width: 10em;
}
.research-member .item .value{
    flex: 1;
}
.research-member .item .title{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-4);
    line-height: 1.3;
}
@media screen and (max-width: 767px) {
    .research-member{
        padding: var(--size-36);
    }
    .research-member .item{
        display: block;
    }
    .research-member .item .label{
        width: 100%;
        margin-bottom: var(--size-24);
    }
}
/* research-member END */

/* search-banner */
.search-banner{
    padding-bottom: 4.16667vw;
}
.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-24);
}
.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-15);
}
.ala-filter .filter-item{
    display: flex;
    color: var(--color-text-primary);
}
.ala-filter .filter-item .label{
    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 .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 .3s ease-in-out;
    margin: var(--size-4) var(--size-15);
}
.ala-filter .filter-item .value .option:hover{
    color: var(--color-primary);
}
.ala-filter .filter-item .value .option.active{
    background-color: var(--color-primary);
    color: #fff;
}
@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 -10px;
    }
    .ala-filter .filter-item .value .option{
        margin: 4px 10px;
    }
}
@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);
}

/* result-table */
.result-table{
    margin: var(--size-30) 0;
}
.result-table .layui-table{
    color: inherit;
}
.result-table .layui-table-header,
.result-table .layui-table-view,
.result-table .layui-table td,
.result-table .layui-table th{
    border: 0;
    font-size: inherit;
}
.result-table .layui-table-cell .n1{
    min-width: var(--size-56);
}
.result-table .layui-table-cell .n2{
    min-width: 40vw;
}
.result-table .layui-table-cell .n3{
    min-width: var(--size-80);
}
.result-table .layui-table-cell{
    padding: var(--size-24);
    height: unset;
    line-height: 1.5;
}
.result-table .layui-table-header th{
    background-color: #013976;
    color: #fff;
    font-weight: normal;
}
.result-table .layui-table-body tbody tr:nth-of-type(even) td{
    background: #F7F8FA;
}

.layui-table-page{
    text-align: center;
    padding: 0;
    margin-top: var(--size-30);
}
.layui-table-page>div{
    height: unset;
}

.result-table .layui-table-sort .layui-table-sort-asc{
    border-bottom-color: #fff;
}
.result-table .layui-table-sort .layui-table-sort-desc{
    border-top-color: #fff;
}
.result-table .layui-table-sort[lay-sort=asc] .layui-table-sort-asc{
    border-bottom-color: var(--color-primary);
}
.result-table .layui-table-sort[lay-sort=desc] .layui-table-sort-desc{
    border-top-color: var(--color-primary);
}
/* result-table END */

/* search-filter */
.search-filter{
    border-bottom: var(--size-1) solid var(--border-color);
}
.search-filter .category-nav{
    box-shadow: unset;
}
.search-filter .category-nav .swiper-slide{
    color: var(--color-text-regular);
}
.search-filter .category-nav .swiper-slide+.swiper-slide{
    margin-left: var(--size-60);
}
.search-filter .category-nav .swiper-slide .category-item{
    display: flex;
    align-items: center;
    padding: 0;
    min-width: unset;
}
.search-filter .category-nav .swiper-slide a{
    color: var(--color-text-primary);
}
.search-filter .category-nav .swiper-slide.active a{
    color: var(--color-primary);
    background-color: unset;
}
.search-filter .category-nav .swiper-slide.active a:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    height: var(--size-2);
    min-height: 2px;
    background-color: var(--color-primary);
    bottom: 0;
    opacity: 1;
}
.search-filter .ala-tag{
    margin-left: var(--size-6);
    border-radius: var(--size-4);
}
/* search-filter END */

/* about-organization */
/* .about-organization{
    padding-top: 0;
}
.about-organization .index_title{
    margin-bottom: 0;
} */
/* .about-organization-head{
    position: relative;
    padding: var(--size-100) 0 var(--size-45);
} */
/* .about-organization-head>*{
    position: relative;
} */
/* .about-organization-head:before{
    content: "";
    position: absolute;
    left: -4.6875vw;
    right: -4.6875vw;
    top: 0;
    height: 150%;
    background: var(--bg-grey);
} */
.about-organization-wrap .img-swiper{
    width: 100%;
    height: 100%;
    /* height: 0;
    padding-bottom: 66.66666%; */
    position: relative;
}
/* .about-organization-wrap .img-swiper .swiper-container{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
} */
.about-organization-wrap .img-swiper .swiper-slide:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9;
    height: 30%;
    background: linear-gradient( to top, #1F1D1F 0%, rgba(31,29,31,0) 100%);
}
.about-organization-wrap .img-swiper .swiper-btn{
    bottom: var(--size-24);
    position: absolute;
    left: 0;
    right: 0;
    justify-content: center;
}
.about-organization-wrap .img-box,
.about-organization-wrap img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.about-organization-wrap .text-box-wrap{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
}
.about-organization-wrap .text-box{
    padding: var(--size-48);
}
.about-organization-wrap .item+.item{
    margin-top: var(--size-30);
}
.about-organization-wrap .item:not(.head-item)+.item{
    padding-top: var(--size-30);
    border-top: var(--size-1) dashed var(--border-color);
}
.about-organization-wrap .head-item{
    margin-bottom: var(--size-36);
}
.about-organization-wrap .item .desc{
    margin-top: var(--size-12);
    color: var(--color-text-secondary-grey);
}
.about-organization-wrap .item .desc p{
    margin-bottom: var(--size-12);
}
.about-organization-item{
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
    border-radius: var(--size-9);
}
.about-organization-item+.about-organization-item{
    margin-top: var(--size-30);
}
.about-organization-item:nth-of-type(2n) .layui-row{
    flex-direction: row-reverse;
}
@media screen and (max-width: 991px) {
    .about-organization-head{
        padding: var(--size-60) 0 var(--size-40);
    }
}
@media screen and (max-width: 767px) {
    .about-sfoundationjtu .text-box{
        padding: var(--size-40);
    }
    .about-organization-wrap .text-box{
        padding: var(--size-24);
    }
    .about-organization-wrap .head-item{
        margin-bottom: var(--size-24);
    }
}
/* about-organization END */

/* about-foot */
.about-foot{
    background: url(../images/about-img-3.jpg) center center no-repeat;
    background-size: cover;
}
.about-foot .text-box{
    text-align: center;
    font-weight: 600;
    max-width: 80%;
    margin: 0 auto;
}
/* about-foot END */


/* // home-overview */
.home-overview{
    overflow: hidden;
}
.home-overview>*{
    position: relative;
}
.home-overview:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: url(../images/bg-idmic-6.png) right bottom no-repeat;
    background-size: auto 100%;
    opacity: .2;
}
.home-overview .img-box{
    position: relative;
}
.home-overview .img-box img{
    width: 100%;
    position: relative;
}
.home-overview .img-box .bg{
    position: absolute;
}
.home-overview .img-box .bg1{
    left: 0;
    bottom: 0;
    transform: translate(-35%,50%);
    width: 50%;
    opacity: .08;
}
.home-overview .img-box .bg2{
    right: -1.5625vw;
    top: -1.5625vw;
    width: 5.3125vw;
    display: none;
}
/* // home-overview END */


/* event-swiper */
.event-swiper .swiper-btn{
    width: 100%;
    margin-top: var(--size-48);
}
.event-swiper .swiper-pagination {
    flex: 1;
    margin-right: var(--size-45);
}
.event-swiper .swiper-slide{
    height: unset;
}
/* event-swiper END */


/* schedule-swiper */
.schedule-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    padding: var(--size-100) 0;
}
.schedule-swiper.schedule-en{
    padding: calc(var(--size-100)*1.8) 0;
}

.schedule-swiper .layui-container {
    overflow: unset;
    position: unset;
}
.schedule-swiper .swiper-container{
    overflow: unset;
}
.schedule-swiper .swiper-wrapper {
    align-items: stretch;
    position: relative;
}

.schedule-swiper .swiper-slide {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 12vw;
    min-width: 150px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.schedule-item .img-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.schedule-item .img-wrap .circle {
    position: absolute;
    left: 0;
    right: 0;
    height: 4.6vw;
    width: 12vw;
    min-width: 150px;
    min-height: 57.5px;
    background-image: url(../images/schedule-line-top.png);
    background-size: 100% 100%;
}

.schedule-item .img-wrap .img-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-item .img-wrap .img-box .img {
    width: var(--size-60);
    height: var(--size-60);
    line-height: var(--size-60);
    text-align: center;
    color: #fff;
    font-size: var(--size-24);
    font-weight: bold;
    border-radius: 100%;
    overflow: hidden;
    transition: all .3s ease-in-out;
    transform: scale(1);
    background: var(--color-primary);
}

.schedule-item:hover .img-wrap .img-box img {
    transform: scale(1.3);
}

.schedule-item .wrap {
    position: absolute;
    top: 10vw;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.schedule-item .dot {
    width: var(--size-24);
    height: var(--size-24);
    border: var(--size-1) solid var(--color-primary);
    border-radius: var(--size-24);
    position: relative;
    background-color: #fff;
    margin: 0 auto;
}
.block.grey .schedule-item .dot {
    background-color: var(--bg-grey);
}

.schedule-item .dot:after {
    content: "";
    position: absolute;
    width: var(--size-9);
    height: var(--size-9);
    border-radius: 50%;
    background-color: var(--color-primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.schedule-item .dot:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    height: 2vw;
    width: var(--size-1);
    border-left: var(--size-1) dashed var(--color-primary);
    z-index: 0;
}

.schedule-item .text-wrap {
    position: relative;
    background-color: transparent;
    margin-top: var(--size-15);
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: unset;
    overflow: hidden;
}

.schedule-item .time {
    margin-top: var(--size-4);
    color: var(--color-text-secondary);
}

.schedule-item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    line-height: 1.5;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item {
    flex-direction: column-reverse;
    bottom: 1.4vw;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .wrap {
    top: unset;
    bottom: 10vw;
    flex-direction: column-reverse;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .dot:before {
    bottom: unset;
    top: 100%;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .text-wrap {
    margin-top: unset;
    margin-bottom:  var(--size-15);
    flex-direction: column-reverse;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .time {
    margin-bottom: 0;
    margin-bottom: var(--size-4);
}

.schedule-swiper .swiper-slide:nth-of-type(2n+1) .schedule-item{
    top: 1.4vw;
}
.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .img-wrap .circle {
    bottom: 0;
    background-image: url(../images/schedule-line-bottom.png);
    background-size: 100% 100%;
}

.schedule-swiper .swiper-slide:nth-of-type(5n+1) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(5n+1) .schedule-item .img-wrap .img-box .img{
    background-color: #15B259;
}
.schedule-swiper .swiper-slide:nth-of-type(5n+1) .schedule-item .dot:before,
.schedule-swiper .swiper-slide:nth-of-type(5n+1) .schedule-item .dot{
    border-color: #15B259;
}

.schedule-swiper .swiper-slide:nth-of-type(5n+2) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(5n+2) .schedule-item .img-wrap .img-box .img{
    background-color: #7125B6;
}
.schedule-swiper .swiper-slide:nth-of-type(5n+2) .schedule-item .dot:before,
.schedule-swiper .swiper-slide:nth-of-type(5n+2) .schedule-item .dot{
    border-color: #7125B6;
}

.schedule-swiper .swiper-slide:nth-of-type(5n+3) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(5n+3) .schedule-item .img-wrap .img-box .img{
    background-color: #AE2C5B;
}
.schedule-swiper .swiper-slide:nth-of-type(5n+3) .schedule-item .dot:before,
.schedule-swiper .swiper-slide:nth-of-type(5n+3) .schedule-item .dot{
    border-color: #AE2C5B;
}

.schedule-swiper .swiper-slide:nth-of-type(5n+4) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(5n+4) .schedule-item .img-wrap .img-box .img{
    background-color: #E59000;
}
.schedule-swiper .swiper-slide:nth-of-type(5n+4) .schedule-item .dot:before,
.schedule-swiper .swiper-slide:nth-of-type(5n+4) .schedule-item .dot{
    border-color:#E59000;
}

.schedule-swiper .swiper-slide:nth-of-type(5n+5) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(5n+5) .schedule-item .img-wrap .img-box .img{
    background-color: #323232;
}
.schedule-swiper .swiper-slide:nth-of-type(5n+5) .schedule-item .dot:before,
.schedule-swiper .swiper-slide:nth-of-type(5n+5) .schedule-item .dot{
    border-color: #323232;
}

@media screen and (max-width: 1250px) {
    .schedule-swiper{
        padding: 80px 0;
    }
    .schedule-swiper .swiper-slide:nth-of-type(2n+1) .schedule-item{
        top: 17.5px;
    }
    .schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item{
        bottom: 17.5px;
    }
    .schedule-item .dot:before{
        height: 60px;
    }
    .schedule-swiper .swiper-slide:nth-of-type(2n+1) .schedule-item .wrap{
        top: 130px;
    }
    .schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .wrap{
        bottom: 130px;
    }
}
@media screen and (max-width: 567px) {
    .schedule-swiper{
        padding: 1.6rem 0;
    }
}
/* schedule-END */

/* ala-panel */
.ala-panel{
    background-color: var(--bg-grey);
    padding: var(--size-30);
    border-radius: var(--size-9);
    position: relative;
    overflow: hidden;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.ala-panel .ala-panel_hd{
    display: flex;
    align-items: center;
    width: 100%;
}
.ala-panel .ala-panel_hd .ala-icon{
    /* background-color: unset;
    border-radius: unset; */
    margin-right: var(--size-18);
    object-fit: contain;
    border-radius: var(--size-9);
    overflow: hidden;
}
.ala-panel .ala-panel_hd .ala-icon img{
    width: 60%;
    height: 60%;
    object-fit: contain;
}
.ala-panel .ala-panel_hd .title{
    flex: 1;
}
.ala-panel .ala-panel_bd{
    padding-top: var(--size-18);
    color: var(--color-text-secondary-grey);
    line-height: 1.7;
    flex: 1;
    width: 100%;
}

.ala-panel-list .ala-panel .ala-panel_ft{
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    transform: translateY(0);
    transition: all .3s ease-in-out;
    padding: var(--size-60) var(--size-30) var(--size-20);
    background: linear-gradient( 180deg, rgba(247,250,252,0) 0%, #F7FAFC 100%);
}
.ala-panel-list .ala-panel .ala-panel_ft .more-btn{
    border-radius: var(--size-6);
}
.ala-panel-list .ala-panel .ala-panel_ft .more-btn+.more-btn{
    margin-left: var(--size-15);
}
.ala-panel-list .ala-panel:hover .ala-panel_ft{
    transform: translateY(-100%);
}
.ala-panel-list .ala-panel .ala-panel_ft .more-btn.is-plain{
    background-color: #fff;
    border-color: var(--border-color);
    color: var(--color-text-primary);
}

@media screen and (max-width: 767px) {
    .cob-swiper-nav .swiper-slide{
        padding: var(--size-24);
    }
}
/* ala-panel END */

.mce-content-body+.post-list{
    margin-top: var(--size-45);
}

/* post-list */
.post-list {
    border-top: var(--size-1) solid rgba(0, 0, 0, .1);
}
.post-list .post-item{
    display: flex;
    align-items: flex-start;
    border-bottom: var(--size-1) solid rgba(0, 0, 0, .1);
    padding: var(--size-45) 0;
}
.post-list .post-item .calendar{
    min-width: var(--size-90);
    min-height: var(--size-90);
    text-align: center;
    background-color: var(--bg-grey);
    padding: var(--size-15) 0;
    line-height: 1;
    transition: all .3s ease-in-out;
    border-radius: var(--size-6);
    color: var(--color-text-primary);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.post-list .post-item .calendar .day{
    margin-bottom: var(--size-6);
}
.post-list .post-item .item-body{
    display: flex;
    align-items: flex-start;
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-list .post-item .calendar+.item-body{
    margin-left: var(--size-45);
}
.post-list .post-item .item-img+.text-box{
    padding-left: var(--size-45);
}
.post-list .post-item .text-box{
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-list .post-item .text-box .title{
    font-weight: bold;
    margin-bottom: var(--size-12);
}
.post-list .post-item .buttom{
    margin-top: var(--size-24);
}
.post-list .post-item .info-wrap{
    /* margin-top: var(--size-24); */
    flex: 1;
    padding-left: var(--size-18);
    border-left: var(--size-1) solid var(--color-secondary);
    color: var(--color-secondary);
    line-height: 1;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-list .post-item .info-wrap .item{
    display: flex;
    align-items: center;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-list .post-item .text-box .info-wrap .iconfont{
    margin-right: var(--size-9);
}
.post-list .post-item .info-wrap .item .ala-icon{
    margin-right: var(--size-9);
}
.post-list .post-item .info-wrap .item .ala-icon .iconfont{
    margin-right: 0;
}
.post-list .post-item .info-wrap .item span{
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.post-list .post-item .info-wrap .item+.item{
    margin-top: var(--size-15);
}
.post-list .post-item .apply-btn .more-btn{
    min-width: calc(var(--size-30) + var(--size-30) + 4em);
    text-align: center;
    justify-content: center;
}

.post-list .post-item .item-img{
    width: 13.75vw;
    min-width: 180px;
    /* margin-left: var(--size-60); */
}
.post-list .post-item:hover .calendar{
    background-color: var(--color-primary);
    color: #fff;
}

@media screen and (max-width: 991px) {
    .post-list .post-item .text-box{
        display: block;
    }
    .post-list .post-item .text-box .title{
        width: 100%;
    }
    .post-list .post-item .text-box .content{
        width: 100%;
        margin-left: 0;
        margin-top: var(--size-20);
    }
}
@media screen and (max-width: 767px) {
    .post-list .post-item .item-body{
        display: block;
    }
    .post-list .post-item .calendar+.item-body{
        margin-left: var(--size-30);
    }
    .post-list .post-item .item-img{
        width: 100%;
    }
    .post-list .post-item .text-box{
        padding-left: 0;
        margin-top: var(--size-20);
    }
}
/* post-list END */


/* work-detail */
.work-view{
    margin-bottom: 30px;
    overflow: hidden;
}
.work-view .video-wrap,
.work-view .video-wrap video{
    width: 100%;
    height: 100%;
}
.work-view .video-wrap video{
    background-color: #000;
}
.audio-wrap{
    background-color: var(--bg-grey);
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
}
.audio-wrap .img{
    text-align: center;
    flex: 1;
}
.ani-wrap{
    position: relative;
}
.audio-wrap img{
    max-width: 240px;
    display: block;
    margin: 0 auto;
}
.ani-wrap .ani-circle{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 4.8%;
    z-index: 0;
    animation-duration: 3s;
}
.audio-wrap .ani-bg{
    position: relative;
    z-index: 2;
}
.audio-wrap audio{
    line-height: 1;
    background-color: #F1F3F4;
    border-radius: 0;
    width: 100%;
}
@media screen and (max-width: 767px) {
    .audio-wrap img{
        max-width: 200px;
    }
    .audio-player{
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .audio-player .audio-wrap{
        width: 100%;
        height: 400px!important;
        max-width: 95vw;
    }
}




.work-view .work-title{
    margin-bottom: var(--size-15);
}
.work-details{
    color: var(--color-text-secondary);
}
.work-details a{
    text-decoration: underline;
    color: var(--color-text-secondary);
}
.work-details table{
    margin: 0;
    width: 100%;
}
.work-details table th,
.work-details table td{
    font-weight: normal;
    padding: var(--size-24) 0;
    border-bottom: var(--size-1) solid #e6e6e6;
    color: var(--color-text-secondary);
    vertical-align: top;
}
.work-details table th{
    color: var(--color-text-primary);
    padding-right: var(--size-20);
}
/* work-detail END */

/* work-swiper */
.work-swiper .swiper-container{
    padding: var(--size-20) 0;
}
/* work-swiper END */

/* gallery-list */
.gallery-list .slide-card .text-box .more-link{
    /* color: var(--color-primary); */
    margin-top: var(--size-12);
}
/* gallery-list END */

/* cert-list */
.cert-list .slide-card .img-box{
    padding-bottom: 140%;
}
.cert-list .slide-card .text-box{
    padding-top: var(--size-20);
    display: flex;
    flex-direction: row;
}
.cert-list .slide-card .text-box .title{
    flex: 1;
    padding-right: var(--size-10);
}
.cert-list .slide-card .text-box .ala-icon{
    width: var(--size-48);
    height: var(--size-48);
    background-color: var(--bg-grey);
    color: var(--color-secondary);
    margin-top: var(--size-4);
}
.cert-list .slide-card .text-box .more-link{
    color: var(--color-primary);
    margin-top: var(--size-12);
}
@media screen and (min-width: 1200px) {
    .cert-list .layui-col-md3{
        width: 20%;
    }
}
/* cert-list END */

/* ala-cell */
.ala-cell{
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: var(--size-9);
    padding: var(--size-30) var(--size-40);
    box-shadow: 0px var(--size-2) var(--size-30) 0px rgba(0, 0, 0, 0.08);
    color: var(--color-text-regular);
    transition: all 0.3s ease-in-out;
}
.ala-cell + .ala-cell {
    margin-top: var(--size-20);
}
.ala-cell .ala-cell_bd{
    flex: 1;
}
.ala-cell .ala-cell_bd .desc{
    color: var(--color-text-secondary);
}
.ala-cell .ala-cell_hd + .ala-cell_bd {
    margin-left: var(--size-15);
}
.ala-cell .ala-cell_ft {
    color: var(--color-secondary);
    margin-left: var(--size-15);
}
/* ala-cell END */

/* .file-list */
.file-list .ala-cell .ala-icon{
    background-color: unset;
    border-radius: unset;
}
.file-list .ala-cell .ala-icon img{
    object-fit: contain;
}
/* .file-list END */

/* text-content */
.text-content{
    position: relative;
}
.text-content .mce-content-body{
    background-color: var(--bg-grey);
    padding: var(--size-60);
    position: relative;
    z-index: 2;
}
.text-content::before{
    content: "";
    position: absolute;
    background-image: url(../images/bg_2.png);
    background-size: contain;
    width: 9.375vw;
    height: 9.375vw;
    right: 0;
    bottom: 0;
    z-index: 0;
    min-height: 150px;
    min-width: 150px;
    transform: translate(40%,40%);
}
.text-content::after{
    content: "";
    position: absolute;
    height: 30vw;
    left: 0;
    top: 0;
    background: url(../images/bg_2.png) right no-repeat;
    background-size: contain;
    width: 30vw;
    opacity: .2;
    transform: translate(-80%,-20%);
}
@media screen and (max-width: 767px) {
    .text-content .mce-content-body{
        padding: var(--size-24);
    }
    .text-content::after{
        height: 50vw;
        width: 50vw;
        transform: translate(-80%,-30%);
    }
}
/* text-content END */

/* .review-work-list .slide-card{
    background-color: #fff;
    box-shadow: 0px var(--size-9) var(--size-20) 0px rgba(0,0,0,0.1);
} */

@media screen and (min-width: 992px) {
    .awards-list{
        max-width: 80%;
        margin: 0 auto;
    }
    .awards-list .ala-panel>*{
        position: relative;
    }
    .awards-list .ala-panel:before{
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: url(../images/bg-idmic-3.png) center center no-repeat;
        background-size: 100%;
        opacity: .1;
    }
}

.text-version .mce-content-body{
    display: none;
}
.text-version .mce-content-body.active{
    display: block;
}