.main-hidden{
    overflow: hidden;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


/* menu-toggle END */

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

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

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

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

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

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

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

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

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

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

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

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

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

/* header-nav */
.header-nav {
    width: 100%;
    font-family: 'ScourceHanSerif';
}

.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: 768px) {
    .header-nav .layui-nav {
        padding: 0;
        background: none;
        display: flex;
        justify-content: space-between;
    }

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

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

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

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

    .header-nav .layui-nav .layui-nav-item>a {
        display: block;
        display: inline-block;
        padding: 0 1.40625vw;
        color: #fff;
        position: relative;
        z-index: 2;
        transition: all .4s ease-in-out;
        background-color: transparent;
        white-space: nowrap;
    }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        font-size: var(--size-18);
    }
    .header-nav .layui-nav .layui-nav-item>a span{
        transition: all .3s ease-in-out;
    }
    body:not(.header-fixed) .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a span,
    body:not(.header-fixed) .header-nav .layui-nav .layui-nav-item.layui-this>a span {
        /* font-weight: 600; */
        /* background-color: rgba(255, 255, 255, .1); */
        background: linear-gradient(3.1805546814635168e-15deg, #AD8C2F 0%, #FFD89F 54%, #F7CF94 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
    }

    .header-nav .layui-nav .layui-nav-item>a:after {
        content: "";
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        width: var(--size-15);
        height: var(--size-15);
        background: url(../images/icon-nav-active.png) center center no-repeat;
        background-size: contain;
        bottom: 0;
        transition: all .4s ease-in-out;
        opacity: 0;
    }
    .header-fixed .header-nav .layui-nav .layui-nav-item>a:after{
        background: url(../images/icon-dot.png) center center no-repeat;
        background-size: contain;
    }

    .header-nav .layui-nav .layui-nav-item.layui-this>a:after {
        opacity: 1;
    }

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

    /* 下级菜单 */
    .header-nav .layui-nav-child {
        top: 100%;
        border: 0;
        border-radius: 0;
        /* box-shadow: unset; */
        box-shadow: 0 var(--size-20) var(--size-20) rgba(0,0,0,.2);
        background-color: rgba(255, 255, 255, .95);
        color: var(--color-primary);
        padding: 0;
        white-space: normal;
        line-height: 1.5;
        padding: var(--size-18) var(--size-15);
        text-align: center;
        left: 50%;
        /* margin-top: -.20833vw; */
        /* width: 7.8125vw;
        margin-left: -3.90625vw; */
    }
    .header-nav .layui-nav-child:before{
        content: ""!important;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        height: var(--size-4);
        background: var(--color-secondary);
    }

    .header-nav .layui-nav-child .submenu{
        display: block;
        padding: var(--size-12) 0;
        color: inherit;
        position: relative;
        transition: all .4s ease-in-out;
        white-space: pre-wrap;
        background-color: unset!important;
        white-space: nowrap;
        min-width: 10em;
        color: var(--color-text-primary);
    }
    .header-nav .layui-nav-child .submenu:hover{
        color: var(--color-secondary);
    }

    /* .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a{
        color: #fff;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item.layui-this>a {
        color: #fff;
        font-weight: 600;
    }
    .header_white:not(.header-fixed) .header-nav .layui-nav .layui-nav-item>a:after {
        background: #fff;
    } */
}
@media screen and (min-width: 768px) and (max-width: 1199px) {
    .header-nav .layui-nav{
        margin: 0 -1.40625vw;
    }
    .header-nav .layui-nav .layui-nav-item>a{
        padding: 0 1.40625vw;
    }
}

@media screen and (max-width: 1439px) {
    header .menu-toggle{
        width: 75px;
        height: 75px;
    }
}

@media screen and (max-width: 767px) {
    header .layui-container{
        height: 75px;
        justify-content: flex-start;
    }
    header .header-nav{
        display: none;
    }
    header .logo img {
        min-height: 40px;
    }
    
    .header_white:not(.header-fixed) header{
        background-color: unset;
        backdrop-filter: unset;
    }
    header .menu-toggle{
        width: 75px;
        height: 60px;
        /* background: var(--color-primary); */
    }
}

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

.menu-container .submenu-list .submenu-item .menu-title a{
    color: var(--color-text-secondary-grey);
    padding: var(--size-12) 0;
}
/* .menu-container .menu-list .menu-item.show-submenu>.menu-title{
    background-color: var(--bg-grey);
} */
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right{
    color: var(--color-primary);
}
.menu-container .menu-list .menu-item.show-submenu>.menu-title .icon-right:before{
    content: '\e625';
}


.menu-container .third-menu{
    padding-left: var(--size-20);
    display: none;
}
.menu-container .submenu .m-active .icon-right:before{
    content: '\e625';
}
.menu-container .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: 5.208333vw;
}
@media screen and (max-width: 991px) {
    .menu-container{
        height: calc(100vh - 75px);
    }
    .show-menu .menu-container{
        top: 75px;
    }
}
@media screen and (max-width: 567px) {
    .menu-container{
        height: calc(100vh - 60px);
    }
    .show-menu .menu-container{
        top: 60px;
    }
}

.show-menu.header-fixed header{
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    opacity: 1;
    box-shadow: 0 0 var(--size-9) rgb(0 0 0 / 15%);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}
/* 主菜单 END */

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

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

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

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

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

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

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

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

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

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

/*弹窗动画 END*/


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

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


/* search-layer */
/*弹窗动画*/
.layui-layer.tc-search.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-search{
    left: 0!important;
    right: 0!important;
    width: unset!important;
    background-color: unset!important;
}
.layui-layer.tc-search .layui-layer-content{
    height: 100%!important;
}
.layui-layer.tc-search .search-container{
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}
.layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    background: var(--color-primary);
    color: #fff;
    right: 3.125vw;
    top: 1.25417vw;
}
.search-layer{
    height: 100%;
}
.search-container .search-head,
.search-container .search-body{
    width: 100%;
}
.search-container .search-head{
    font-weight: 600;
    color: #fff;
    background-color: #fff;
    line-height: 1;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}
.search-container .search-head .logo img{
    height: 3.375vw;
}
.search-container .search-body{
    flex: 1;
    background-color: rgb(232 239 241 / 90%);
    padding: 2.5vw 0;
    position: relative;
}
.search-container .search-body>*{
    position: relative;
    z-index: 1;
}
/* .search-container .search-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 75%;
    background: url(../images/bg-search.png) left top no-repeat;
    background-size: contain;
    z-index: 0;
} */
.search-container .search-body:after{
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 3.125vw;
    width: 100%;
    background: url(../images/bg-search-1.png)  bottom no-repeat;
    background-size: 100%;
    z-index: 0;
}

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

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


.search-container .search-body .layui-form{
    max-width: 60%;
    margin: 0 auto;
    padding-bottom: 3.25vw;
}
.search-container .search-body .layui-form .layui-input{
    background-color: #fff;
}
.search-container .search-body .layui-form .layui-form-select{
    margin-right: .3125vw;
}
@media screen and (max-width: 1439px) {
    .search-container .search-head{
        height: 75px;
    }
    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
        width: 36px;
        height: 36px;
        line-height: 36px;
        top: 19.5px;
    }
    .search-container .search-head .logo img{
        height: 40px;
    }
    .search-container .search-body{
        padding: 36px 0;
    }
    .search-container .search-body .layui-form .layui-form-select{
        margin-right: 4.5px;
    }
    .search-container .search-body .layui-form .layui-form-radio{
        height: 50px;
        line-height: 50px;
    }
}
@media screen and (max-width: 1199px) {
    .search-container .search-body:after{
        border-bottom-width: 1px;
        background-size: 200px;
    }
    .search-container .search-body .layui-form{
        max-width: 720px;
    }
}
@media screen and (max-width: 991px) {
    .search-container .search-body:after{
        border-bottom-width: 1px;
        background-size: 200px;
    }
    .search-container .search-head{
        height: 82px;
    }
}
@media screen and (max-width: 767px) {
    .search-container .search-body:before{
        width: 85%;
        height: 75%;
    }
    .search-container .search-body .layui-form .item {
        flex: 1;
    }
}
@media screen and (max-width: 567px) {
    .search-container .search-head .logo img{
        height: .64rem;
    }
    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2{
        right: .32rem;
    }
    .search-container .search-body .layui-form>.ala-flex{
        display: block;
    }
    .search-container .search-body .layui-form .layui-form-select{
        margin-right: 0;
        margin-bottom: 5px;
    }
    .search-container .search-body .layui-form .layui-btn{
        margin-top: 5px;
        justify-content: center;
    }
}
/* search-layer END */


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

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

.ala-swiper .swiper-button-next.swiper-button-disabled,
.ala-swiper .swiper-button-prev.swiper-button-disabled {
    color: var(--border-color);
    opacity: 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;
}
@media screen and (max-width: 1439px) {
    .ala-swiper .swiper-button-prev,
    .ala-swiper .swiper-button-next {
        width: 27px;
        height: 27px;
        margin-top: -13.5px;
    }

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

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

.swiper-pagination-bullet {
    position: relative;
    background-color: unset;
    position: relative;
    width: var(--size-20);
    height: var(--size-20);
    border-radius: 0;
    opacity: 1;
    transition: all .4s ease-in-out;
    background-color: unset !important;
    border: unset!important;
    margin: 0 var(--size-18) !important;
    background: url(../images/icon-dot.png) center center no-repeat;
    background-size: contain;
    transform: scale(1);
}

.swiper-pagination-bullet-active {
    background: url(../images/icon-dot-active.png) center center no-repeat;
    background-size: contain;
    transform: scale(1.65);
}

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

@media screen and (max-width: 1439px) {
    .swiper-button-prev,
    .swiper-button-next {
        width: 27px;
        height: 27px;
        margin-top: -13.5px;
    }

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

/*.swiper-pagination EMD*/


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

.swiper-btn .swiper-button-next,
.swiper-btn .swiper-button-prev {
    width: var(--size-48);
    height: var(--size-48);
    border-radius: 50%;
    background: transparent;
    border: var(--size-1) solid var(--color-secondary);
    font-size: var(--size-16);
    color: var(--color-secondary);
    margin-top: unset;
    transition: all .3s ease-in-out;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    position: relative;
}
.swiper-btn .swiper-button-next:before,
.swiper-btn .swiper-button-prev:before{
    content: "";
    position: absolute;
    left: var(--size-6-reverse);
    right: var(--size-6-reverse);
    top: var(--size-6-reverse);
    bottom: var(--size-6-reverse);
    border: var(--size-1) dotted var(--color-secondary);
    border-radius: 50%;
    opacity: .4;
    transition: all .3s ease-in-out;
}
.swiper-btn.is-white .swiper-button-next:before,
.swiper-btn.is-white .swiper-button-prev:before,
.swiper-btn.is-white .swiper-button-next,
.swiper-btn.is-white .swiper-button-prev{
    border-color: #fff;
    color: #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-secondary);
}
.swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover:before,
.swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover:before{
    opacity: 1;
}

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

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

.swiper-btn .swiper-button-next:after,
.swiper-btn .swiper-button-prev:after {
    content: "\e635";
    font-family: "iconfont";
    font-size: inherit;
}
.swiper-btn .swiper-button-prev:after {
    content: "\e638";
}
.swiper-btn .swiper-button-prev+.swiper-button-next {
    margin-left: var(--size-12);
}

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

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

.swiper-btn.is-solid.is-white .swiper-button-next,
.swiper-btn.is-solid.is-white .swiper-button-prev{
    background-color: #fff;
    color: var(--color-primary);
    border-color: #fff;
}

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

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

/* swiper-btn END */

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

/*banner*/
.banner {
    position: relative;
    height: 50vw;
    max-height: 100vh;
    width: 100%;
}
.home-main{
    /* margin-top: 100vh; */
    background: #fff url(../images/home-bg.png) center center no-repeat;
    background-size: cover;
    position: relative;
    z-index: 9;
}
.banner .ripples-cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 12;
}
.banner .banner-box {
    position: relative;
    z-index: 10;
}

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

.banner .swiper-slide {
    background-size: cover;
    color: #fff;
    background-position: center center;
    height: 100%;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    width: 100%;
}
.banner .swiper-bg{
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}
.banner .swiper-slide .swiper-bg {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}

/* .banner .swiper-slide .swiper-bg {
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    -o-transform: scale(1.15);
    transform: scale(1.15);
    -webkit-transition: all 10s linear;
    -o-transition: all 10s linear;
    transition: all 10s linear;
}

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

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


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

.banner img {
    width: 100%;
}

.banner .swiper-bottom{
    position: absolute;
    right: 9.375vw;
    left: 9.375vw;
    bottom: var(--size-48);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner .banner-button{
    position: absolute;
    right: 8.75vw;
    bottom: var(--size-60);
    display: inline-flex;
    justify-content: center;
    height: var(--size-72);
    width: calc(var(--size-72)*2.68);
    background: url(../images/banner-button-bg.png) center center no-repeat;
    background-size: contain;
    z-index: 99;
    color: #fff;
}
.banner .banner-button .text{
    height: calc(var(--size-72)*.95);
}
.banner .banner-button img{
    width: 1em;
    display: block;
    margin-right: var(--size-15);
}

@media screen and (max-width: 1600px) {
    .banner .swiper-bottom{
        right: 6.25vw;
        left: 6.25vw;
    }
}
@media screen and (max-width: 567px) {
    .banner {
        min-height: 54vw;
    }
    .banner .swiper-bottom{
        right: .32rem;
        bottom: var(--size-20);
    }
}


/*banner END*/

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

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

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

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

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

.block.bg {
    background-attachment: fixed;
}

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

.block.bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .65);
    z-index: 0;
}

.block.bg .container,
.block.color_white .container {
    z-index: 2;
    position: relative;
    color: #fff;
}

.color_white {
    color: #fff;
}

@media screen and (max-width:991px) {
    .block {
        padding: 50px 0;
    }
    .block.small-block {
        padding: 40px 0;
    }
}

/*block END*/

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

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

/* ala-section END */


/*index_title*/
.index_title {
    position: relative;
    margin-bottom: var(--size-24);
    line-height: 1.2;
    color: var(--color-text-primary);
}
.index_title .title-wrap{
    display: flex;
    align-items: center;
}
.index_title .title-wrap>*{
    position: relative;
}
.index_title .title-wrap .title-bg{
    height: 1em;
    margin-right: var(--size-9);
}
.index_title .title-wrap .title-bg img{
    width: unset;
    height: 100%;
    display: block;
}
.index_title.text-center .title-wrap .title-bg{
    left: 50%;
    transform: translateX(-50%);
}
.index_title h2 {
    position: relative;
    z-index: 2;
    font-size: inherit;
    display: inline-block;
    font-family: 'ScourceHanSerif';
}

.index_title h2>* {
    position: relative;
}

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

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

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

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

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

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

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

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

/*index_title END*/

/* page-title */
.page-title{
    margin-bottom: var(--size-40);
    font-weight: 600;
}
@media screen and (max-width: 991px) {
    .page-title{
        display:  none;
    }
    .page-title+*{
        margin-top: 0!important;
    }
}
/* page-title END */


.row-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -o-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-align-items: stretch;
    align-items: stretch;
}

.layui-row.row-flex:after,
.layui-row.row-flex:before {
    content: none;
}

#button-to-top {
    background: var(--color-primary);
    position: fixed;
    z-index: 997;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: var(--size-60);
    height: var(--size-60);
    bottom: var(--size-100);
    right: var(--size-24);
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    border: var(--size-1) solid #fff;
    /* margin-top: var(--size-9-reverse); */
}
#button-to-top:hover{
    background-color: var(--color-secondary);
}
#button-to-top .iconfont{
    transform: rotate(90deg);
    line-height: 1;
}
#button-to-top span{
    display: block;
    margin-top: var(--size-9-reverse);
    padding-top: var(--size-6);
}

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

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

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

/* media-list */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* media-list END */

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

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

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

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

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

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

.footer-top {
    position: relative;
    padding: var(--size-45) 0 0;
}
.footer-top .footer-logo{
    padding-bottom: var(--size-40);
    border-bottom: var(--size-1) solid rgba(255, 255, 255, .2);
    display: flex;
}
.footer-top .footer-logo img {
    max-width: 100%;
    max-height: 3.25vw;
    min-height: 45px;
    object-fit: contain;
}
.footer-top .footer-logo .img{
    display: inline-block;
}
.footer-top .footer-logo .img+.img{
    padding-left: var(--size-24);
    margin-left: var(--size-24);
    position: relative;
}
.footer-top .footer-logo .img+.img:after{
    content: "";
    position: absolute;
    left: 0;
    top: var(--size-6);
    bottom: var(--size-6);
    width: var(--size-1);
    background-color: #fff;
}
.footer-top .col-item{
    padding-bottom: var(--size-60);
}
footer .footer-title {
    margin-bottom: 1.25vw;
    color: rgba(255, 255, 255, 1);
    font-weight: normal;
}

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

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

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

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

.footer-top .footer-link li a {
    display: block;
    margin-bottom: .46875vw;
}
.footer-qrcode img{
    width: calc(var(--size-100)*1.4);
}
.footer-top .media-list .media-item a {
    border-color: rgba(216, 216, 216, .2);
}
.footer-top .media-list .media-item a:hover .iconfont{
    color: var(--color-primary);
}
.footer-logo-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--size-48) 0;
    margin: var(--size-15-reverse);
}
.footer-logo-list .img{
    padding: var(--size-15);
}
.footer-logo-list img{
    height: var(--size-45);
    display: block;
}
.footer-copyright {
    padding: var(--size-18) 0;
    border-top: var(--size-1) solid rgba(255, 255, 255, .2);
    display: flex;
    justify-content: space-between;
}
.footer-copyright span+a,
.footer-copyright a+a{
    margin-left: var(--size-18);
}
@media screen and (max-width: 1600px) {
    .footer-top:before{
        left: -6.25vw;
    }
}
@media screen and (max-width: 991px) {
    .footer-copyright{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
}
@media screen and (min-width: 768px) {
    .footer-top {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .footer-logo-list{
        flex-wrap: wrap;
    }
    .footer-logo-list .img{
        width: 33.33333%;
    }
    .footer-logo-list .img img{
        max-width: 100%;
        min-height: var(--size-48);
        object-fit: contain;
    }
    .footer-top {
        width: 100%;
        text-align: center;
    }

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

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


/* footer END */

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


/* slide */
.slide{
    position: relative;
    display: block;
    color: #fff;
    overflow: hidden;
    cursor: pointer;
}
.slide .img-box-post{
    padding-bottom: 66.66666%;
    overflow: hidden;
}
.slide .text-box{
    position: absolute;
    display: inline-block;
    transition: all .4s ease-in-out;
    padding: var(--size-30) var(--size-24) var(--size-24);
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    z-index: 9;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: transparent;
    transition: all .4s ease-in-out;
    opacity: 0;
    background-color: rgba(0, 0, 0, .6);
}
.slide:hover .text-box{
    opacity: 1;
}
.slide .text-box .qrcode{
    margin: var(--size-18) 0;
    flex: 1;
    width: 100%;
    position: relative;
}
.slide .text-box .qrcode .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.slide .text-box .qrcode img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.slide .text-box .icon{
    width: var(--size-48);
    height: var(--size-48);
    line-height: var(--size-48);
    border: var(--size-1) solid rgba(255, 255, 255, .2);
    border-radius: 50%;
    text-align: center;
    transition: all .4s ease-in-out;
}

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

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

/* slide-card */
.slide-card{
    position: relative;
    box-shadow: unset;
    transition: all .4s ease-in-out;
    display: flex;
    flex-direction: column;
    background-color: #fff;
}
.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 .img-box .ala-icon{
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.slide-card .img-box .img img{
    transform: scale(1);
    transition: all .4s ease-in-out;
}
.slide-card:hover .img-box .img img{
    transform: scale(1.1);
}
.slide-card .cover{
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: flex-end;
}
.slide-card .cover img{
    height: 100%;
    width: unset;
}

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

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


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


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


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

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

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

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

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


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

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

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

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

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

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

.icon-play:before {
    content: "";
    background: var(--color-primary);
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 50%;
    -webkit-animation: warn-3 1.8s ease-out infinite;
    animation: warn-3 1.8s ease-out infinite;
    z-index: 0;
}

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

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

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

@media screen and (max-width: 767px) {
    /* .shxy-block .video-wrapper .icon-play {
        display: none;
    } */
    .shxy-block .video-container img{
        height: 40vw;
    }
}

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

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

@-webkit-keyframes warn-3 {
    0% {
        opacity: .5;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5)
    }
}

@keyframes warn-3 {
    0% {
        opacity: .5;
        -webkit-transform: scale(0);
        transform: scale(0)
    }

    60% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5)
    }

    100% {
        opacity: 0;
        -webkit-transform: scale(2.5);
        transform: scale(2.5)
    }
}


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

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

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

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

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

.layui-layer.tc-video {
    background: none;
    max-height: 95vh;
    max-width: 95vw;
}

.layui-layer.tc-video .video-player {
    height: 100%;
}

.layui-layer.tc-video .video-js {
    width: 100%;
    height: 100%;
}

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

@media screen and (max-width: 767px) {
    .layui-layer.tc-video {
        background: none;
        height: 100vh !important;
        width: 100vw !important;
        max-height: 100vh;
        max-width: 100vw;
    }
}

/*layui-layer tc-video END*/

/* inner-banner */
.inner-banner {
    background-color: var(--bg-primary);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
}
.inner-banner>*{
    position: relative;
    z-index: 2;
}
.inner-banner img{
    width: 100%;
    display: block;
    min-height: 140px;
    object-fit: cover;
}


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

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

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

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

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

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

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

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

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

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

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

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

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

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


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


/* search-banner */
.search-banner{
    padding-bottom: 4.16667vw;
}
.search-banner .inner-banner-text{
    justify-content: center
}

.search-banner.inner-banner.text-center .inner-banner-text .title{
    padding-bottom: 0;
}
.search-banner.inner-banner.text-center .inner-banner-text .title:after{
    content: unset;
}
.search-banner .search-wrap{
    position: relative;
    width: 45vw;
    margin: 0 auto;
    margin-top: var(--size-40);
}
.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 .4s ease-in-out;
    margin: var(--size-4) var(--size-15);
    cursor: pointer;
}
.ala-filter .filter-item .value .option:hover{
    color: var(--color-secondary);
}
.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);
}

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

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

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

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


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

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

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

/* sub-category-nav */

.sub-category-nav{
    position: relative;
    display: flex;
    justify-content: center;
    margin-bottom: var(--size-48);
}
.sub-category-nav .swiper-container{
    width: unset;
}
.sub-category-nav .swiper-wrapper {
    width: unset;
    display: inline-flex;
}
.sub-category-nav .swiper-slide{
    width: auto;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    color: var(--color-text-primary);
    transition: color .3s ease-in-out;
}
.sub-category-nav .swiper-slide a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--size-100)*.45);
    width: calc(var(--size-100)*1.83);
    text-align: center;
    color: inherit;
    background: url(../images/btn-grey.png) center center no-repeat;
    background-size: 100% 100%;
    transition: all .4s ease-in-out;
    font-family: 'ScourceHanSerif';
}
.grey .sub-category-nav .swiper-slide a{
    background-color: #fff;
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(0,0,0,0.05);
}
.sub-category-nav .swiper-slide+.swiper-slide{
    margin-left: var(--size-18);
}
.sub-category-nav .swiper-slide.active a{
    background: url(../images/btn-active.png) center center no-repeat;
    background-size: 100% 100%;
    box-shadow: unset!important;
}

@media screen and (max-width: 567px) {
    .sub-category-nav .swiper-slide+.swiper-slide{
        margin-left: var(--size-15);
    }
    .sub-category-nav .swiper-slide a{
        width: unset;
        padding: 0 var(--size-18);
        min-width: 108px;
    }
}

/* sub_category-nav END */

/* tdlee-btn */
.tdlee-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: calc(var(--size-100)*.45);
    width: calc(var(--size-100)*1.83);
    background: url(../images/btn-grey.png) center center no-repeat;
    background-size: 100% 100%;
    margin: var(--size-6) var(--size-6);
    box-shadow: unset;
    transition: all .3s ease-in-out;
    font-family: 'ScourceHanSerif';
}
.tdlee-btn.is-large{
    height: calc(var(--size-100)*.6);
    width: calc(var(--size-100)*2.4);
}
.tdlee-btn:hover{
    color: var(--color-text-primary);
    box-shadow: 0px var(--size-6) var(--size-9) 0px rgba(0,0,0,0.2);
}
.tdlee-btn.btn-primary{
    background: url(../images/btn-active.png) center center no-repeat;
    background-size: 100% 100%;
}
.tdlee-btn-group{
    margin-left: var(--size-6-reverse);
    margin-right: var(--size-6-reverse);
}
/* tdlee-btn */

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

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

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

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

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

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

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

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

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

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

/* filter END */


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

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

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

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

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

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

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

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

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

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

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

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

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

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

/* ala-tab END */

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

/* people-detail END */

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


/* Home */
.bg_primary{
    background-color: var(--bg-primary);
}
.content-box{
    position: relative;
    padding: var(--size-36) var(--size-30);
}
.content-box>*{
    position: relative;
    z-index: 9;
}
.content-box.has-bg{
    padding: var(--size-54);
}
.content-box.has-bg:before{
    content: "";
    position: absolute;
    left: var(--size-15);
    right: var(--size-15);
    top: var(--size-15);
    bottom: var(--size-15);
    background-color: #fff;
    z-index: 0;
}
.content-box .bg{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    z-index: 1;
}
.content-box .bg img{
    width: 100%;
}
.content-box .bg .line-middle{
    flex: 1;
    background: url(../images/line-middle.png) center center no-repeat;
    background-size: 100% 100%;
}
/* news-list */
.news-list{
    padding-top: var(--size-30);
    border-top: var(--size-1) solid rgba(0, 0, 0, .1);
}
.news-list .news-item{
    display: block;
    padding-bottom: var(--size-30);
    margin-bottom: var(--size-30);
    position: relative;
}
.news-list .news-item:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-1);
    background-color: rgba(0, 0, 0, .1);
}
.news-list .news-item:after{
    content: "";
    position: absolute;
    left: 0;
    width: 0;
    bottom: 0;
    height: var(--size-1);
    background-color: var(--color-primary);
    transition: all .4s ease-in-out;
}
.news-list .news-item:hover:after{
    width: 100%;
}
.news-list .news-item .text-box{
    flex: 1;
}
.news-list .news-item .tag{
    line-height: 1;
}
.news-list .news-item .tag,
.news-list .news-item .time{
    color: var(--color-text-secondary);
    line-height: 1;
}
.news-list .news-item .tag.color_secondary{
    color: var(--color-secondary);
}
.news-list .news-item .img-box{
    width: 6.25vw;
    padding-bottom: 4.6875vw;
    margin-left: var(--size-45);
    border-radius: var(--size-6);
    overflow: hidden;
}
.news-list .news-item .title{
    color: var(--color-text-primary);
    transition: all .4s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    font-weight: 600;
}
.news-list .news-item .desc{
    opacity: .85;
    line-height: 1.7;
}
.news-list .news-item:hover .title{
    color: var(--color-primary);
}

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

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

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

/* list */
.list {
    border-top: var(--size-1) solid var(--border-color);
}
.list:not(.has-border){
    padding-top: var(--size-12);
}
.list .item{
    display: flex;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all .3s ease-in-out;
    padding: var(--size-9) 0 var(--size-9) 1.6em;
    position: relative;
}
.list.has-border .item{
    padding: var(--size-18) 0 var(--size-18) 1.6em;
    border-bottom: var(--size-1) solid var(--border-color);
}
.list .item:before{
    content: "";
    position: absolute;
    left: 0;
    top: var(--size-9);
    margin-top: .3em;
    width: .9em;
    height: .9em;
    background: url(../images/icon-dot-active.png) center left no-repeat;
    background-size: contain;
}
.list.has-border .item:before{
    top: var(--size-18);
}
.list .item .title{
    flex: 1;
}
.list .item:hover .title{
    text-decoration: underline;
}
.list.has-border .item:hover .title{
    text-decoration: none;
}
.list .item .time{
    color: var(--color-text-secondary-grey);
    padding-left: var(--size-15);
}
.list.no-dot .item{
    padding-left: 0;
}
.list.no-dot .item:before{
    content: unset;
}
@media screen and (max-width: 1600px) {
    .list.has-border .item{
        padding: 15px 0 15px 1.6em;
    }
    .list.has-border .item:before{
        top: 15px;
    }
}
/* list END */

/* special-card */
.special-card .img-box-post{
    padding-bottom: 90%;
}
.special-card .title-btn{
    position: absolute;
    left: var(--size-45);
    right: var(--size-45);
    bottom: var(--size-36);
}
.special-card .title-btn img{
    display: block;
}
.special-card .title-btn .title{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-text-primary);
    font-family: 'ScourceHanSerif';
    white-space: nowrap;
}
/* special-card END */

/* photo-list */
.photo-list{
    padding-top: var(--size-24);
    border-top: var(--size-1) solid var(--border-color);
}
.photo-swiper .swiper-wrapper{
    -webkit-transition-timing-function: linear;
    transition-timing-function: linear;
}
/* photo-list END */

/* Home END */

/* content-wrapper */
.content-wrapper{
    width: 62.5vw;
    margin: 0 auto;
}
@media screen and (max-width: 1199px) {
    .content-wrapper{
        width: 80vw;
    }
}
@media screen and (max-width: 991px) {
    .content-wrapper{
        width: 100%;
    }
}
/* content-wrapper END */



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

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

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

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

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

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

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

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

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

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

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


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

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

/* article-title */
.article-title {
    line-height: 1.3;
    position: relative;
    flex: 1;
    padding-bottom: var(--size-40);
    margin-bottom: var(--size-45);
    /* border-bottom: var(--size-1) solid var(--border-color); */
}
.article-title>*{
    position: relative;
}
.article-title:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: url(../images/article-title-line.png) center bottom no-repeat;
    background-size: 100%;
}
.article-title h3{
    font-family: "ScourceHanSerif";
}

.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 .share-btn .icon-share,
.article-title .article-otherBase .iconfont {
    margin-right: var(--size-9);
    width: var(--size-20);
    text-align: center;
    display: inline-block;
}

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

.article-title .index_title{
    margin-bottom: 0;
}
.article-title.text-center .article-other,
.article-title.text-center .index_title .title-wrap{
    text-align: center;
    justify-content: center;
}

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

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

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

/* article-title END */

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

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

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

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

/* article-btn END */

.article-content p{
    text-indent: 2em;
}
.article-content img{
    max-width: 32vw;
    margin: 0 auto;
    display: block;
}
@media screen and (max-width: 1439px) {
    .article-content img{
        max-width: 460px;
    }
}
@media screen and (max-width: 567px) {
    .article-content img{
        max-width: 100%;
    }
}

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

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

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

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

/*share END*/

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

.post-list .post-item .text-content .text-box{
    flex: 1;
}

.post-list .post-item:hover .title{
    color: var(--color-primary);
    text-decoration: underline;
}
.post-list .post-item .link a,
.post-list .post-item .link{
    color: var(--color-primary);
}
.post-list .post-item .link:hover a,
.post-list .post-item .link a:hover{
    text-decoration: underline;
}
.post-list .post-item .time{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .desc{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .ala-info{
    color: var(--color-text-secondary-grey);
    margin-top: var(--size-18);
}
.post-list .post-item .ala-info .item+.item{
    margin-top: var(--size-4);
}
.post-list .post-item .ala-icon{
    position: absolute;
    right: var(--size-15-reverse);
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all .4s ease-in-out;
}
.post-list .post-item:hover .ala-icon{
    opacity: 1;
    right: 0;
}
.post-list .post-item .post-item_img{
    width: calc(var(--size-100)*2.8);
    margin-left: var(--size-40);
    align-self: flex-start;
    position: relative;
    padding-right: var(--size-9);
    padding-top: var(--size-9);
}
.post-list .post-item .post-item_img .img-box{
    overflow: unset;
}
.post-list .post-item .post-item_img .img-box:before{
    content: "";
    position: absolute;
    right: var(--size-9-reverse);
    top: var(--size-9-reverse);
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: var(--size-1) solid var(--color-third);
    transition: all .3s ease-in-out;
}
.post-list .post-item:hover .post-item_img .img-box:before{
    background-color: var(--color-third);
}

.post-list .post-item .calendar{
    width: var(--size-80);
    min-height: var(--size-80);
    height: unset;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--size-6);
    line-height: 1;
    box-shadow: 0px var(--size-9) var(--size-9) 0px rgba(0,0,0,0.1);
    overflow: hidden;
    /* padding: var(--size-12) 0; */
}
.post-list .post-item .calendar .month{
    background-color: var(--color-primary);
    color: #fff;
    display: block;
    padding: var(--size-6) 0;
    width: 100%;
    text-align: center;
}
.post-list .post-item .calendar .day{
    color: var(--color-primary);
    padding: var(--size-12) 0;
    line-height: 1;
    flex: 1;
    font-weight: 600;
}

.post-list .post-item .date-head{
    font-family: "ScourceHanSerif";
    padding-right: var(--size-20);
    margin-right: var(--size-24);
    border-right: var(--size-1) solid var(--border-color);
}
.post-list .post-item .date-head .date{
    min-width: 5.5em;
}
@media screen and (max-width: 1199px) {
    .post-list .post-item .post-item_img{
        margin-left: var(--size-100);
    }
}
@media screen and (max-width: 991px) {
    .post-list .post-item .post-item_img{
        margin-left: var(--size-40);
    }
}
@media screen and (max-width: 767px) {
    .post-list .post-item{
        display: block;
        padding: var(--size-30) 0;
    }
    .post-list .post-item .date-head{
        padding: 0;
        border: 0;
        margin: 0;
    }
    .post-list .post-item .post-item_body{
        padding: 0;
        padding-top: var(--size-24);
    }
    .post-list .post-item .post-item_img{
        width: calc(var(--size-100)*2);
    }
}
@media screen and (max-width: 567px) {
    .post-list .post-item,
    .post-list .post-item .text-content{
        flex-wrap: wrap;
    }
    .post-list .post-item .post-item_img{
        width: 100%;
        margin-left: 0;
    }
    .post-list .post-item .post-item_img .img-box{
        margin-top: var(--size-24);
    }
    .post-list .post-item .calendar{
        width: 1.2rem;
        min-height: 1.2rem;
    }
    .post-list .post-item .text-content{
        display: block;
    }
}
/* post-list END */

/* remembrance-block */
.remembrance-block .post-list .post-item:first-child{
    border-top: 0;
}
.remembrance-block .sub-category-nav{
    padding: var(--size-30) 0;
    border-bottom: var(--size-1) solid var(--border-color);
    margin-bottom: 0;
}
@media screen and (min-width: 1199px) {
    .remembrance-top{
        position: relative;
    }
    .remembrance-top .breadcrumb{
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        z-index: 9;
    }
}
@media screen and (max-width: 991px) {
    .remembrance-block .sub-category-nav{
        padding-top: 0;
    }
}
@media screen and (min-width: 768px) {
    .remembrance-block .post-list .post-item:first-child .date-head,
    .remembrance-block .post-list .post-item:first-child .post-item_body{
        padding-top: var(--size-80);
    }
    .remembrance-block .post-list .post-item:last-child .date-head,
    .remembrance-block .post-list .post-item:last-child .post-item_body{
        padding-bottom: var(--size-100);
    }
}
@media screen and (max-width: 767px) {
    .remembrance-block{
        padding-bottom: 40px;
    }
}
/* remembrance-block END */

/* activity-card */
.activity-card .slide-card .tdlee-btn{
    position: relative;
    left: 50%;
    transform: translate(-50%,-50%);
}
.activity-card .slide-card:hover .tdlee-btn{
    color: var(--color-text-primary);
}
/* activity-card END */

/* .activity-list */
.activity-list .activity-item+.activity-item{
    padding-top: var(--size-60);
    margin-top: var(--size-60);
    border-top: var(--size-1) solid var(--border-color);
}
.activity-list .img{
    /* position: relative; */
    padding-bottom: var(--size-9);
    padding-right: var(--size-9);
}
.activity-list .img:before{
    content: "";
    position: absolute;
    left: var(--size-9);
    top: var(--size-9);
    right: 0;
    bottom: 0;
    border: var(--size-1) solid var(--color-third);
    z-index: 0;
}
.activity-list .img img{
    width: 100%;
    position: relative;
}
.activity-list .link{
    margin-top: var(--size-15);
    color: var(--color-primary);
}
.activity-list .link a{
    color: inherit;
}
.activity-list .link a:hover{
    text-decoration: underline;
}
/* .activity-list END */

.remembrance-block+.media-block{
    padding-top: var(--size-48);
}
@media screen and (max-width: 767px) {
    .remembrance-block+.block{
        padding-top: 0;
    }
}
/* ala-tab */
.ala-tab .tab-nav{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--size-48);
}
.ala-tab .tab-nav .nav-item{
    display: block;
    padding: var(--size-9) var(--size-45);
    border: var(--size-1) solid var(--border-color);
    transition: all .3s ease-in-out;
    font-family: 'ScourceHanSerif';
}
.ala-tab .tab-nav .nav-item:hover{
    color: unset;
}
.ala-tab .tab-nav .nav-item.active{
    border-color: transparent;
    background: url(../images/tab-nav-bg.png) center center no-repeat;
    background-size: 100% 100%;
}
.ala-tab .tab-nav .nav-item+.nav-item{
    margin-left: var(--size-18);
}
/* ala-tab END */

/* video-list */
.video-list .slide-card .img-box-post{
    padding-bottom: 66.66666%;
}
.video-list .slide-card .text-box{
    background: url(../images/title-bg-2.png) center center no-repeat;
    background-size: 100% 100%;
    color: #fff;
    padding: var(--size-12) var(--size-24);
    text-align: center;
    color: #fff;
}
.video-list .slide-card .text-box .title{
    -webkit-line-clamp: 1;
    color: inherit;
}
.video-list .slide-card:hover .text-box .title{
    color: #fff!important;
    text-decoration: none!important;
}
.video-list .slide-card .ala-icon{
    background-color: rgba(0, 0, 0, .5);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
.video-list .slide-card .ala-icon img{
    width: 30%;
    height: 30%;
    object-fit: contain;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}
/* video-list END */