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

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

.main-hidden {
    overflow: hidden;
}

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

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

        .menu-toggle .toggle-iconfont span {
            display: block;
            width: 100%;
            margin-top: 0.36458vw;
            height: 0.10417vw;
            background: #fff;
            position: relative;
            cursor: pointer;
        }

    .menu-toggle span:after,
    .menu-toggle span:before {
        content: "";
        position: absolute;
        display: inline-block;
        left: 0;
        width: 1.04166vw;
        height: 0.10417vw;
        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.36458vw;
        -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 100%;
    }

    .menu-toggle span:after {
        transform-origin: 0 0;
    }

    .menu-toggle.open span:before {
        top: -0.36458vw;
        width: 1.015625vw;
        -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
        -o-transform: rotate(42deg);
        transform: rotate(42deg);
    }

    .menu-toggle.open span:after {
        bottom: -0.36458vw;
        width: 1.015625vw;
        -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;
    }

    .menu-toggle span:after {
        bottom: -0.36458vw;
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -ms-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
    }

/* menu-toggle END */

/* left-container */
.left-container {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3.125vw;
    padding-bottom: 3.125vw;
    background-color: var(--color-secondary);
    z-index: 999;
}

.left-menu {
    color: #fff;
}

    .left-menu .menu-toggle {
        width: 100%;
        height: 3.125vw;
        background-color: #012846;
    }

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

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

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

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

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

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

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

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

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

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

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


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

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

            .left-menu .bottom-wrap .open-box ul a:hover span {
                text-decoration: underline;
            }

            .left-menu .bottom-wrap .open-box ul a .icon-img {
                width: 18px;
                margin-right: .3125vw;
            }

        .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child {
            top: unset;
            bottom: 100%;
            margin-top: 0;
            margin-bottom: 10px;
        }

            .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child a {
                color: var(--color-text-regular);
                justify-content: center;
            }

                .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child a:hover {
                    color: var(--color-darkblue);
                }

            .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child:after,
            .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child:before {
                transform: rotate(180deg);
                top: 100%;
            }

            .left-menu .bottom-wrap .open-box .layui-nav.nav-horizon .layui-nav-child:before {
                top: calc(100% + 1px);
            }
/* left-container END */

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

/* body-container END */

@media screen and (max-width: 1440px) {
    /*.layout {
        padding-left: 45px;
    }*/

    .left-container {
        width: 45px;
        padding-bottom: 45px;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media screen and (max-width: 991px) {
    /*.layout {
        padding-left: 0;
    }*/

    .left-container {
        display: none;
    }
}

/* layout END */

/* header */
header {
    background-color: #fff;
    position: relative;
    z-index: 99;
}

    header:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background-color: var(--border-color);
    }

    header a {
        color: var(--color-text-secondary-grey);
        -webkit-transition: all .2s ease-in;
        -o-transition: all .2s ease-in;
        transition: all .2s ease-in;
    }

    header .logo img {
        height: 3.375vw;
    }

    header .layui-container {
        position: relative;
    }

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

.header-top {
    height: 5.20833vw;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
}

    .header-top .layui-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

header .secondary-nav {
    width: auto;
    position: relative;
}

    header .secondary-nav .layui-nav {
        display: flex;
        align-items: center;
    }

        header .secondary-nav .layui-nav .layui-nav-item > a {
            cursor: pointer;
            font-size: inherit;
            padding: 0 1.09475vw;
            color: var(--color-text-secondary-grey);
            display: flex;
            align-items: center;
        }

            header .secondary-nav .layui-nav .layui-nav-item > a:hover {
                color: var(--color-darkblue);
            }

        header .secondary-nav .layui-nav .layui-nav-item + .layui-nav-item:after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            height: .875vw;
            margin-top: -.4375vw;
            width: 1px;
            background-color: var(--border-color);
            transform: rotate(12deg);
            transition: 50% 10%;
        }

        header .secondary-nav .layui-nav .layui-nav-item > a img {
            width: 1.35417vw;
            height: 1.35417vw;
            object-fit: contain;
            margin-right: .3125vw;
        }

header .search-btn {
    color: var(--color-text-secondary-grey);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all .3s ease-in-out;
    cursor: pointer;
    width: 2.5vw;
    height: 2.5vw;
    border-radius: 50%;
    background-color: var(--color-plain);
    overflow: hidden;
}

header .secondary-btn + .secondary-btn {
    margin-left: .625vw;
}

header .search-btn:hover {
    color: #fff !important;
    background-color: var(--color-darkblue) !important;
}

.headerTemp {
    height: 4.21875vw;
    display: none;
}

@media screen and (min-width: 992px) {
    .header-fixed header .header-main {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        top: -100%;
        opacity: 0;
        box-shadow: 0 0 10px rgb(0 0 0 / 15%);
        -webkit-transition: top .3s;
        -o-transition: top .3s;
        transition: top .3s;
        z-index: 9999;
    }

    .header-fixed.menu-show header .header-main {
        position: fixed;
        top: 0;
        opacity: 1;
    }
}

@media screen and (max-width: 1440px) {
    /*.header-fixed header .header-main {
        left: 45px;
    }*/

    header .search-btn {
        width: 36px;
        height: 36px;
    }

    header .secondary-nav .layui-nav .layui-nav-item > a {
        padding: 0 15px;
    }

    header .secondary-nav .layui-nav .layui-nav-item + .layui-nav-item:after {
        height: 14px;
        margin-top: -7px;
    }
}

@media screen and (max-width: 991px) {
    header .secondary-nav .layui-nav .layui-nav-item > a {
        padding: 0 10px;
    }

    header {
        border-top: 7px solid var(--color-secondary);
    }
}

@media screen and (max-width: 767px) {
    header .secondary-nav .layui-nav {
        display: none;
    }
}

/* header-nav */
.header-nav {
    display: flex;
    align-items: center;
}

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

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

    .header-nav .layui-nav .layui-nav-child:before,
    .header-nav .layui-nav .layui-nav-child:after {
        content: unset;
    }

@media screen and (min-width: 992px) {
    .header-nav .layui-nav {
        padding: 0;
        z-index: 99;
        background: none;
        display: flex;
        margin: 0 -1.321875vw;
        position: static;
    }

        .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: unset;
        line-height: 4.21875vw;
        position: static;
    }

        .header-nav .layui-nav .layui-nav-item > .nav-title > a {
            display: block;
            display: inline-block;
            padding: 0 4.121875vw;
            color: var(--color-text-regular);
            position: relative;
            z-index: 2;
        }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        display: none;
    }

    .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover > .nav-title > a,
    .header-nav .layui-nav .layui-nav-item.layui-this > .nav-title > a {
        color: var(--color-text-regular);
        font-weight: bold;
    }

    .header-nav .layui-nav .layui-nav-item > .nav-title > a:after {
        content: "";
        position: absolute;
        left: 1.321875vw;
        right: 1.321875vw;
        bottom: 0;
        height: .15625vw;
        background-color: var(--color-darkblue);
        transition: all .3s ease-in-out;
        transform: scaleX(0);
    }

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

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

    /* 下级菜单 */
    .header-nav .layui-nav-child {
        top: 100%;
        left: 0;
        border: 0;
        border-radius: 0;
        /* box-shadow: unset; */
        box-shadow: 0 20px 20px rgba(0,0,0,.2);
        background-color: var(--color-plain);
        color: var(--color-text-regular);
        padding: 2.8125vw 3.125vw;
        padding-bottom: 3.75vw;
        white-space: normal;
        line-height: 1.5;
    }

    .layui-nav .layui-nav-child a:hover {
        background-color: unset;
    }

    .header-nav .layui-nav-child .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 66.66666%;
        position: relative;
        overflow: hidden;
    }

        .header-nav .layui-nav-child .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .header-nav .layui-nav-child .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .header-nav .layui-nav-child .submenu-list {
        position: relative;
        /* height: 100%; */
    }

        .header-nav .layui-nav-child .submenu-list:after {
            content: "";
            position: absolute;
            left: 50%;
            width: 1px;
            top: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, .1);
            z-index: 9;
        }

    .header-nav .layui-nav-child .more-btn {
        color: #fff;
        padding: 0;
    }

        .header-nav .layui-nav-child .more-btn:hover {
            background-color: var(--color-darkblue);
            color: #fff !important;
        }

    .header-nav .layui-nav-child .submenu-item .second-column,
    .header-nav .layui-nav-child .submenu-item .first-column {
        width: 50%;
        padding: 0 4.21875vw;
    }

    .header-nav .layui-nav-child .submenu-item .toggle-btn {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        cursor: pointer;
    }

        .header-nav .layui-nav-child .submenu-item .toggle-btn > a {
            padding: .625vw 0;
            color: inherit;
            flex: 1;
            font-weight: bold;
        }

        .header-nav .layui-nav-child .submenu-item .toggle-btn .iconfont {
            transform: scale(.8);
            display: flex;
            align-items: center;
            padding-left: 1.25vw;
        }

    .header-nav .layui-nav-child .submenu-item.active .toggle-btn,
    .header-nav .layui-nav-child .submenu-item .first-column:hover .toggle-btn {
        color: var(--color-darkblue);
    }

    .header-nav .layui-nav-child .submenu-item .second-column {
        position: absolute;
        left: 50%;
        top: 0;
        /* bottom: 0; */
        right: 0;
        background-color: var(--color-plain);
        opacity: 0;
        transition: all .3s ease-in-out;
        z-index: 0;
    }

    .header-nav .layui-nav-child .submenu-item.active .second-column {
        opacity: 1;
        z-index: 1;
    }

    /* 三级菜单 */
    .header-nav .layui-nav-child .submenu-child .title {
        font-weight: bold;
        margin-bottom: .9375vw;
    }

    .header-nav .layui-nav-child .submenu-child .content {
        line-height: 1.8;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 8;
        -webkit-box-orient: vertical;
    }

    .header-nav .layui-nav-child .submenu-child .child-item {
        display: block;
        padding: .625vw 0;
        color: inherit;
        flex: 1;
        border-bottom: 1px solid rgba(0, 0, 0, .1);
    }

        .header-nav .layui-nav-child .submenu-child .child-item:hover {
            color: var(--color-darkblue);
        }

    /* 下级菜单 END */
}

@media screen and (max-width: 1920px) {
    .header-nav .layui-nav.fnt16 {
        font-size: 16px;
    }
}

@media screen and (max-width: 1800px) {
    .header-nav .layui-nav-child.fnt16 {
        font-size: 15px;
    }
}

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

    .header-nav .layui-nav-child .submenu-child .child-item,
    .header-nav .layui-nav-child .submenu-item .toggle-btn > a {
        padding: 10px 0;
    }
}

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

    header .logo img {
        height: 40px;
    }

    .header-nav .layui-nav .layui-nav-item {
        line-height: 60px;
    }

    .headerTemp {
        height: 60px;
    }

    .header-nav .layui-nav .layui-nav-item > a:after {
        height: 2.2px;
    }
}

@media screen and (min-width: 1200px) and (max-width: 1339px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 3.821875vw;
    }
}

@media screen and (min-width: 1109px) and (max-width: 1200px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 3.521875vw;
    }
}

@media screen and (min-width: 992px) and (max-width: 1110px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 3.021875vw;
    }
}

@media screen and (max-width: 991px) {
    .headerTemp {
        height: 82px;
    }

    .header-fixed header {
        position: fixed;
        background: #fff;
        left: 0;
        right: 0;
        top: -100%;
        opacity: 0;
        box-shadow: 0 0 10px rgb(0 0 0 / 15%);
        -webkit-transition: top .3s;
        -o-transition: top .3s;
        transition: top .3s;
        z-index: 9999;
    }

    .header-fixed.menu-show header {
        position: fixed;
        top: 0;
        opacity: 1;
    }
}

@media screen and (min-width: 993px) {
    header .mobile-title,
    header .language-btn,
    header .identity-btn,
    header .menu-toggle {
        display: none;
    }
}

/* 移动端菜单 */
@media screen and (max-width: 992px) {
    header .menu-toggle {
        height: 75px;
        width: 45px;
        margin-left: 5px;
        margin-right: -11.5px;
    }

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

            header .menu-toggle .toggle-iconfont span {
                margin-top: 7px;
                height: 2px;
                background-color: var(--color-text-regular);
            }

        header .menu-toggle span:after,
        header .menu-toggle span:before {
            width: 22px;
            height: 2px;
            background-color: var(--color-text-regular);
        }

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

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

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

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

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

        header .language-btn a {
            display: inline-block;
            line-height: 1;
            padding: 10px 18px;
            border-radius: 30px;
            background-color: var(--color-plain);
            transition: all .3s ease-in-out;
            color: var(--color-text-regular);
        }

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

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

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

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

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

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

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

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

    .header-nav .layui-nav {
        background-color: unset;
        padding: 0;
        border-top: 1px solid var(--border-color);
        width: 100%;
        position: static;
    }

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

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

    .header-nav .layui-nav .layui-nav-item {
        width: 100%;
        display: block;
        line-height: 1.3;
        border-bottom: 1px solid var(--border-color);
        color: var(--color-text-regular);
        position: static;
    }

        .header-nav .layui-nav .layui-nav-item > .nav-title > a {
            display: block;
            padding: 15px 8px;
            color: var(--color-text-regular);
            position: relative;
            z-index: 2;
            flex: 1;
        }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        display: none;
    }

    .header-nav .layui-nav .layui-nav-item > .nav-title {
        display: flex;
        /* align-items: center; */
        width: 100%;
    }

        .header-nav .layui-nav .layui-nav-item > .nav-title > .icon {
            padding: 0 8px 0 40px;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            width: 50px;
        }

    .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover > .nav-title > a,
    .header-nav .layui-nav .layui-nav-item.layui-this > .nav-title > a {
        color: var(--color-text-regular);
        font-weight: bold;
    }

    /* 二级菜单 */
    .header-nav .layui-nav .layui-nav-child {
        position: fixed;
        top: 82px;
        left: unset !important;
        right: -360px;
        bottom: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        z-index: 999;
        width: 320px;
        background: #fff;
        padding: 30px;
        left: auto;
        height: auto;
        overflow-x: hidden;
        overflow-y: auto;
        display: block;
        min-width: unset;
        box-shadow: unset;
        border: unset;
        line-height: 1.5;
    }

        .header-nav .layui-nav .layui-nav-child .mobile-title {
            padding-bottom: 15px;
            border-bottom: 1px solid var(--border-color);
            font-weight: bold;
            cursor: pointer;
        }

            .header-nav .layui-nav .layui-nav-child .mobile-title .iconfont {
                transform: rotate(180deg);
                display: inline-block;
                margin-right: 10px;
                cursor: pointer;
            }

        .header-nav .layui-nav .layui-nav-child.show-child {
            right: 0;
        }

        .header-nav .layui-nav .layui-nav-child a:hover {
            background-color: unset;
        }

    .header-nav .layui-nav .img-box {
        display: none;
    }

    .header-nav .layui-nav-child .submenu-item .toggle-btn {
        border-bottom: 1px solid rgba(0, 0, 0, .1);
        cursor: pointer;
    }

        .header-nav .layui-nav-child .submenu-item .toggle-btn > a {
            display: block;
            padding: 15px 8px;
            color: inherit;
            position: relative;
            z-index: 2;
            flex: 1;
        }

            .header-nav .layui-nav-child .submenu-item .toggle-btn > a:hover {
                background-color: unset;
            }

        .header-nav .layui-nav-child .submenu-item .toggle-btn .iconfont {
            font-size: 12px;
            display: flex;
            align-items: center;
            padding-left: 40px;
            padding-right: 8px;
        }

    .header-nav .layui-nav-child .submenu-item .second-column {
        display: none;
        padding: 10px 24px;
        border-bottom: 1px solid var(--border-color);
    }

    .header-nav .layui-nav-child .submenu-child .child-item {
        display: block;
        padding: 10px 0;
        color: var(--color-text-regular);
        font-size: 14px;
    }

        .header-nav .layui-nav-child .submenu-child .child-item:hover,
        .header-nav .layui-nav-child .submenu-child .child-item.m-active {
            color: var(--color-darkblue);
            text-decoration: underline;
        }

    .header-nav .layui-nav-child .submenu-item:hover {
        color: var(--color-darkblue);
    }

    .header-nav .layui-nav-child .submenu-item.m-active .toggle-btn {
        background-color: var(--color-secondary);
        color: #fff;
    }

    .header-nav .layui-nav-child .submenu-item.m-active .second-column.child-list {
        display: block;
    }


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

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

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

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

/* 移动端菜单 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*/


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ala-swiper.is-white .swiper-pagination-bullet-active::after,
    .ala-swiper.is-white .swiper-pagination-bullet::after {
        background: url(../../images/img6.png) center center no-repeat;
        background-size: cover;
    }

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

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

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

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

/* swiper-scrollbar */
/*.ala-swiper .swiper-scrollbar {
    height: 2.34375vw;
    background-color: rgba(19,172,189,.2);
    border-radius: 0;
    width: 100%;
    left: 0;
    border-radius: .625vw;
}

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

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

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

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

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


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

    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 2.5vw;
        height: 2.5vw;
        border-radius: 50%;
        background-color: var(--color-darkblue);
        position: static;
        font-size: 1.25vw;
        color: #fff;
        margin-top: unset;
    }

        .swiper-btn .swiper-button-next:after,
        .swiper-btn .swiper-button-prev:after {
            content: "\e6ee";
            font-family: "iconfont";
            font-size: inherit;
        }

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

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

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

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

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

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

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

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

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

    .banner .slide-inner:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .2);
        z-index: 9;
    }

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

    .banner .swiper-slide {
        background-size: cover;
        color: #fff;
        background-position: center center;
        height: 100%;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 100vh;
        max-height: calc(100vh - 9.375vw);
        /* min-height: 240px; */
    }

        .banner .swiper-slide .swiper-bg {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            z-index: 1;
        }

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

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

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


.banner img {
    width: 100%;
}

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

    .banner .banner-swiper-button .swiper-button-prev,
    .banner .banner-swiper-button .swiper-button-next {
        background-color: unset;
        width: unset;
        height: unset;
        cursor: pointer !important;
        position: static;
    }

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

        .banner .banner-swiper-button .swiper-button-prev:hover,
        .banner .banner-swiper-button .swiper-button-next:hover {
            background-color: unset !important;
        }

        .banner .banner-swiper-button .swiper-button-prev:after,
        .banner .banner-swiper-button .swiper-button-next:after,
        .banner .banner-swiper-button .swiper-button-prev:before,
        .banner .banner-swiper-button .swiper-button-next:before {
            content: unset;
        }

        .banner .banner-swiper-button .swiper-button-prev:before,
        .banner .banner-swiper-button .swiper-button-next:before {
            content: '';
            position: absolute;
            width: 1.5vw;
            height: 1.5vw;
            left: unset;
            right: unset;
            top: unset;
            bottom: unset;
            background-color: rgba(237, 138, 10, 0.5);
            border-radius: 0;
            border: unset;
            z-index: 0;
            opacity: 0;
            transition: all .3s ease-in-out;
        }

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

    .banner .banner-swiper-button .swiper-button-prev:before {
        left: -.41667vw;
    }

    .banner .banner-swiper-button .swiper-button-next:before {
        right: -.41667vw;
    }

    .banner .banner-swiper-button img {
        width: 3.125vw;
        height: 1.875vw;
        object-fit: contain;
        cursor: pointer !important;
        position: relative;
        z-index: 2;
    }

    .banner .banner-swiper-button .swiper-button-next img {
        transform: rotate(180deg);
    }


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

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

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

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

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

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

.banner .video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.banner .video-js {
    width: 100%!important;
    height: 100%!important;
}

    .banner .video-js .vjs-poster {
        background-size: cover!important;
    }

    .banner .video-js .vjs-tech {
        object-fit: cover;
    }

.banner .icon-play {
    display: none;
    margin-top: 30px;
}

@media screen and (max-width: 1439px) {
    .banner .swiper-slide {
        max-height: calc(100vh - 135px);
    }

    .banner .banner-swiper-button .swiper-button-next {
        margin-left: 13.5px;
    }

    .banner .banner-swiper-button img {
        width: 45px;
        height: 27px;
    }

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

    .banner .banner-swiper-button .swiper-button-prev:before {
        left: -6px;
    }

    .banner .banner-swiper-button .swiper-button-next:before {
        right: -6px;
    }

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

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

    .banner .swiper-pagination-bullet-active {
        width: 32px;
    }
}

@media screen and (max-width: 991px) {
    .banner .swiper-slide {
        max-height: calc(100vh - 75px);
    }
}

@media screen and (max-width: 767px) {
    .banner .speit {
        width: 65%;
    }

    .banner .swiper-slide {
        height: 120vw;
    }

    .banner .swiper-container, .slide-inner {
        height: 50vw;
    }
}

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

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

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

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

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

/*banner END*/


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

    .home-banner-wrap .banner-title {
        line-height: 1.2;
    }

    .home-banner-wrap .banner-desc {
        margin-top: 1.40625vw;
        line-height: 1.5;
        font-style: italic;
    }

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

/*home-banner-wrap END*/

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

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

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

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

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

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


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

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

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

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

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

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

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

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

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

.color_white {
    color: #fff;
}

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

    .block {
        padding: 50px 0;
    }
}

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

/* ala-section */
.ala-section + .ala-section {
    margin-top: 6.25vw;
}

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

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

    .ala-section.section-small + .ala-section.section-small,
    .block.small-block .ala-section + .ala-section {
        margin-top: 40px;
    }
}

/* ala-section END */


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

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

        .index_title h2 > * {
            position: relative;
        }

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

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

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

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

/**标题背后的英文**/
.witr_back_title {
    position: absolute;
    top: -1.25vw;
    z-index: -1;
}

    .witr_back_title h4 {
        color: #c6d3e6;
        font-weight: 700;
        opacity: 1;
    }

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

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

/*index_title END*/


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

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

#button-to-top {
    background: var(--color-darkblue);
    position: fixed;
    z-index: 997;
    display: block;
    width: 3.125vw;
    height: 3.125vw;
    line-height: 3.125vw;
    bottom: .9375vw;
    right: .9375vw;
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

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


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

/* media-list */

/*.media-list {
    margin: 0 -.10417vw;
    position: relative;
    z-index: 9;
}

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

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

        .media-list .media-item a {
            display: block;
            text-align: center;
            width: 2.5vw;
            height: 2.5vw;
            line-height: 2.5vw;
            text-align: center;
            color: var(--color-text-secondary-grey);
            border-radius: 50%;
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
            border: 1px solid rgba(0, 0, 0, .2);
        }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    .ala-swiper .swiper-pagination {
        bottom: -9vw;
    }
}*/

/* media-list END */

/*footer*/
footer {
    color: #ffffff;
    background: url(../../images/footer.png) center center no-repeat;
    background-size: cover;
}

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

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

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

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

    .footer-top .footer-civil {
        border-right: 3px solid #fff;
        margin-right: 2vw;
        font-family: fantasy;
    }

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

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

footer .footer-title {
    margin-bottom: 1.25vw;
    color: var(--color-text-secondary);
}

.footer-top p {
}

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

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

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

    .footer-top .footer-link li a {
        display: block;
    }

        .footer-top .footer-link li a:hover {
            color: var(--color-orange);
            text-decoration: none;
        }

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

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

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

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

        .footer-top:after {
            content: "";
            position: absolute;
            top: 0;
            bottom: 0;
            left: 50%;
            width: 1px;
        }

    footer .footer-right {
        padding-left: 3.125vw;
    }
}

@media screen and (min-width: 992px) {
    .footer-top:after {
        left: 41.666667%;
    }
}

@media screen and (min-width: 1200px) {
    .footer-top:after {
        left: 50%;
    }
}

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

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

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

    .footer-copyright {
        padding: 15px 0;
    }
}


/* footer END */


/*slide*/
.slide {
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    color: inherit;
}

    .slide:hover {
        /* top: -5px; */
        color: var(--color-darkblue);
    }

    .slide .img-box {
        height: 0;
        padding-bottom: 66.66666%;
        position: relative;
        cursor: pointer;
    }

        .slide .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            overflow: hidden;
        }

        .slide .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
        }

    /* .slide:hover .img-box img {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    -o-transform: scale(1.1);
    transform: scale(1.1);
} */
    .slide .text-box {
        position: relative;
        padding-bottom: 3.90625vw;
        flex: 1;
    }

        .slide .text-box .title.ellipsis {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 0;
            margin-top: 0;
        }

        .slide .text-box .desc {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            margin-bottom: 0;
            color: var(--color-text-secondary);
            margin-top: 1.5625vw;
        }

        .slide .text-box .time {
            color: var(--color-darkblue);
            margin-bottom: .625vw;
        }

        .slide .text-box .more-btn {
            position: absolute;
            right: 8%;
            bottom: 0;
            transform: translateY(50%) rotate(-20deg) scale(0);
            /* opacity: 0; */
            transition: all .4s ease-in-out;
            z-index: 2;
        }

    .slide:hover .text-box .more-btn {
        transform: translateY(50%) rotate(-20deg) scale(1);
    }

    .slide .text-box .more-btn:hover {
        transform: translateY(50%) rotate(0) scale(1);
    }

.slide-reverse .text-box {
    padding: 1.5625vw 0 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

    .slide-reverse .text-box .time {
        margin-top: 0.9375vw;
        margin-bottom: 0;
    }

    .slide-reverse .text-box .desc {
        margin-top: 0.9375vw;
    }

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

    .slide-reverse .text-box .time,
    .slide-reverse .text-box .desc {
        margin-top: 12px;
    }

    .slide-reverse .text-box {
        padding-top: 20px;
        padding-bottom: 0;
    }
}

@media screen and (max-width: 991px) {
    .slide .text-box {
        padding-bottom: 40px;
    }

        .slide .text-box .time {
            margin-bottom: 8px;
        }

        .slide .text-box .desc {
            margin-top: 16px;
        }
}

@media screen and (max-width: 767px) {
    .slide .text-box {
        padding-bottom: 20px;
    }

    .slide-reverse .text-box {
        padding-bottom: 0;
    }
}

/*slide-END*/

/* slide-card */
/*.slide-card {
    position: relative;
    cursor: pointer;
    box-shadow: unset;
    transition: all .3s ease-in-out;
    height: 100%;
    display: flex;
    flex-direction: column;
}

    .slide-card:hover {
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

    .slide-card .img-box {
        height: 0;
        padding-bottom: 66.66666%;
        position: relative;
        cursor: pointer;
    }

        .slide-card .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            overflow: hidden;
        }

        .slide-card .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            -webkit-transform: scale(1);
            -ms-transform: scale(1);
            -o-transform: scale(1);
            transform: scale(1);
            -webkit-transition: all .5s;
            -o-transition: all .5s;
            transition: all .5s;
        }

        .slide-card .img-box .img:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 60%;
            background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%);
            z-index: 2;
        }

    .slide-card .text-box {
        position: absolute;
        padding: .9375vw 1.5625vw;
        color: #fff;
        z-index: 2;
        left: 0;
        right: 0;
        bottom: 0;
        border-bottom: .46875vw solid var(--color-darkblue);
    }

        .slide-card .text-box .time {
            color: var(--color-darkblue);
            line-height: 1;
        }

        .slide-card .text-box .title {
            margin-top: .46875vw;
        }

    .slide-card.has-desc .text-box {
        border-bottom: 0;
    }

    .slide-card .desc-box {
        background-color: #fff;
        border: 1px solid var(--border-color);
        border-top: 0;
        padding: 1.5625vw;
        flex: 1;
        color: var(--color-text-regular);
        transition: all .3s ease-in-out;
    }

    .slide-card:hover .desc-box {
        border-color: transparent;
    }

    .slide-card .desc {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 4;
        -webkit-box-orient: vertical;
    }

    .slide-card .more-btn {
        position: absolute;
        right: 3.75%;
        bottom: 4.4%;
        transform: rotate(-20deg) scale(0);
        transition: all .4s ease-in-out;
        z-index: 2;
    }

    .slide-card:hover .more-btn {
        transform: rotate(-20deg) scale(1);
    }

    .slide-card .more-btn:hover {
        transform: rotate(0) scale(1);
    }

@media screen and (max-width: 991px) {
    .slide-card .text-box {
        padding: 12px 16px;
        border-bottom-width: 5px;
    }

        .slide-card .text-box .title {
            margin-top: 5px;
        }

    .slide-card .desc-box {
        padding: 16px;
    }
}

@media screen and (max-width: 567px) {
    .slide-card .text-box {
        padding: .24rem .32rem;
        border-bottom-width: .1rem;
    }

        .slide-card .text-box .title {
            margin-top: .1rem;
        }

    .slide-card .desc-box {
        padding: .32rem;
    }
}*/
/* slide-card END */

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

    .video-play:hover {
        background-color: var(--color-darkblue);
        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;
        }
}*/

/* post-list */
.post-list {
    position: relative;
    overflow: hidden;
}

    .post-list.has-border {
        padding-top: 3.75vw;
        border-top: .3125vw solid var(--color-darkblue);
    }

@media screen and (max-width: 991px) {
    .post-list.has-border {
        padding-top: 50px;
        border-top-width: 3px;
    }
}

@media screen and (max-width: 767px) {
    .post-list.has-border {
        padding-top: 30px;
    }
}
/* .post-list:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: #fff;
} */
.post-list .layui-col-xs12:before,
.post-list .layui-col-xs12:after {
    content: "";
    position: absolute;
}

.post-list .layui-col-xs12:after {
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--border-color);
}

.post-list .layui-col-xs12:before {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--border-color);
}

@media screen and (min-width: 992px) {
    .post-list .layui-col-xs12:after {
        top: 2.5vw;
        bottom: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+1):after {
        content: unset;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+1):before {
        left: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+3):before {
        right: 2.5vw;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .post-list .layui-col-xs12:after {
        top: 2.5vw;
        bottom: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+1):after {
        content: unset;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+1):before {
        left: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+2):before {
        right: 2.5vw;
    }
}

@media screen and (max-width: 767px) {
    .post-list .layui-col-xs12 {
        padding-bottom: 30px;
    }

        .post-list .layui-col-xs12 + .layui-col-xs12 {
            padding-top: 30px;
        }

        .post-list .layui-col-xs12:after {
            content: unset;
        }

        .post-list .layui-col-xs12:before {
            left: 15px;
        }

        .post-list .layui-col-xs12:before {
            right: 15px;
        }
}

/* post-list END */

/* post-swiper */
/*.post-swiper {
    padding: 3.125vw 0 6.25vw;
    border-top: 0.3125vw solid var(--color-darkblue);
    overflow: hidden;
}

    .post-swiper .swiper-container {
        margin: -2.5vw;
    }

        .post-swiper .swiper-container .swiper-slide {
            padding: 2.5vw;
        }

    .post-swiper .swiper-slide {
        height: auto;
    }

        .post-swiper .swiper-slide:before,
        .post-swiper .swiper-slide:after {
            content: "";
            position: absolute;
        }

        .post-swiper .swiper-slide:after {
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: var(--border-color);
        }

        .post-swiper .swiper-slide:before {
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background-color: var(--border-color);
        }

    .post-swiper .swiper-container {
        width: auto;
    }

@media screen and (min-width: 768px) {
    .post-swiper .swiper-slide:after {
        top: 2.5vw;
        bottom: 2.5vw;
    }
}

@media screen and (max-width: 991px) {
    .post-swiper {
        border-top-width: 3px;
        padding: 30px 0 60px;
    }
}

@media screen and (max-width: 767px) {
    .post-swiper .swiper-container {
        margin: -15px;
    }

        .post-swiper .swiper-container .swiper-slide {
            padding: 15px;
        }

    .post-swiper .swiper-slide:after {
        top: 15px;
        bottom: 15px;
    }
}

@media screen and (max-width: 567px) {
    .post-swiper {
        padding: .4rem 0 .8rem;
    }

        .post-swiper .swiper-slide:before,
        .post-swiper .swiper-slide:after {
            content: unset;
        }
}*/
/* post-swiper END */

/* video-list */
/*.video-list .slide:hover .video-play,
.video-list .slide-card:hover .video-play {
    background-color: var(--color-darkblue);
    border-color: transparent;
}

.video-list .video-play {
    left: 1.40625vw;
    top: 1.40625vw;
    transform: unset;
}

.video-list .slide .img-box:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 50%;
    background: linear-gradient(to bottom, #1B1B1B 0%, rgba(0, 0, 0, 0) 100%);
    ;
}

@media screen and (max-width: 991px) {
    .video-list .video-play {
        left: 14px;
        top: 14px;
    }
}

@media screen and (max-width: 767px) {
    .video-list .layui-col-xs12 {
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 567px) {
    .video-list .video-play {
        left: .28rem;
        top: .28rem;
    }
}*/

/* video-list END */

/* custom-cursor */
.custom-cursor {
    position: fixed;
    pointer-events: none;
    top: 0;
    /* mix-blend-mode: difference;  */
    opacity: 0;
    z-index: 9999;
    color: #fff;
    display: flex;
    align-items: center;
    white-space: nowrap;
}

    .custom-cursor .icon {
        width: 0;
        height: 0;
        text-align: center;
        display: inline-block;
        border-radius: 50%;
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .custom-cursor .text {
        margin-left: 2.34375vw;
    }

    .custom-cursor .icon:before,
    .custom-cursor .icon:after {
        content: "";
        border-radius: 50%;
        position: absolute;
        width: 3.125vw;
        height: 3.125vw;
        left: -1.5625vw;
        top: -1.5625vw;
        border-radius: 50%;
        border: 1px dashed rgba(255, 255, 255, .25);
        box-sizing: border-box;
    }

    .custom-cursor .icon:after {
        border-style: solid;
        border-color: #fff;
        clip-path: polygon(0 0, 100% 0, 100% 75%, 0 75%);
        -webkit-animation: rotate 3s linear infinite;
        -o-animation: rotate 3s linear infinite;
        animation: rotate 3s linear infinite;
    }

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

    .custom-cursor .icon:before,
    .custom-cursor .icon:after {
        width: 37.5px;
        height: 37.5px;
        left: -18.75px;
        top: -18.75px;
    }

    .custom-cursor .text {
        margin-left: 28px;
    }
}

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

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

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

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

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

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

/* custom-cursor END */

.banner .swiper-container,
.banner .swiper-container * {
    cursor: none !important;
}

    .banner .swiper-container:hover .custom-cursor {
        opacity: 1;
    }


/* campus-block */
/*.campus-block {
    position: relative;
    height: 47.91667vw !important;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    padding-bottom: 4.6875vw;
}

    .campus-block > * {
        position: relative;
    }

    .campus-block:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(to top, #1B1B1B 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 9;
    }

.campus-img-swiper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .campus-img-swiper:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 9;
    }

    .campus-img-swiper .swiper-slide {
        position: relative;
    }

    .campus-img-swiper .img-box,
    .campus-img-swiper img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.campus-block .layui-container {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.campus-text-swiper {
    position: relative;
    z-index: 10;
}

    .campus-text-swiper .text-box {
        display: flex;
        align-items: center;
        position: relative;
        color: #fff;
        transition: all .3s ease-in-out;
        padding: 1.25vw 0;
    }

        .campus-text-swiper .text-box:after,
        .campus-text-swiper .text-box:before {
            content: "";
            position: absolute;
            left: 0;
            width: 100%;
            bottom: 0;
            height: 1px;
            border-bottom: 1px solid #fff;
            opacity: .2;
        }

        .campus-text-swiper .text-box:after {
            opacity: 1;
            width: 0;
            transition: all .3s ease-in-out;
        }

        .campus-text-swiper .text-box .img {
            width: 2.5vw;
            height: 2.5vw;
            display: flex;
            align-items: center;
            justify-content: center;
            border: 2px solid #fff;
            border-radius: 50%;
            transition: all .3s ease-in-out;
            opacity: .5;
        }

            .campus-text-swiper .text-box .img img {
                width: 100%;
                height: 100%;
                object-fit: contain;
            }

        .campus-text-swiper .text-box .title {
            padding: 0 .625vw;
            opacity: .5;
            flex: 1;
        }

        .campus-text-swiper .text-box .icon {
            opacity: 0;
            transition: all .3s ease-in-out;
            color: #fff;
        }

    .campus-text-swiper .swiper-slide:hover .text-box,
    .campus-text-swiper .swiper-slide-thumb-active .text-box {
        opacity: 1;
    }

        .campus-text-swiper .swiper-slide:hover .text-box .img,
        .campus-text-swiper .swiper-slide-thumb-active .text-box .img {
            border-color: transparent;
            background-color: var(--color-darkblue);
            opacity: 1;
        }

        .campus-text-swiper .swiper-slide:hover .text-box .title,
        .campus-text-swiper .swiper-slide-thumb-active .text-box .title,
        .campus-text-swiper .swiper-slide:hover .text-box .icon,
        .campus-text-swiper .swiper-slide-thumb-active .text-box .icon {
            opacity: 1;
        }

        .campus-text-swiper .swiper-slide:hover .text-box:after,
        .campus-text-swiper .swiper-slide-thumb-active .text-box:after {
            width: 100%;
        }

@media screen and (max-width: 1199px) {
    .campus-text-swiper .text-box .img {
        width: 30px;
        height: 30px;
    }

    .campus-text-swiper .text-box .title {
        padding: 0 10px;
    }

    .campus-text-swiper .text-box {
        padding: 15px 0;
    }
}

@media screen and (min-width: 768px) {
    .campus-text-swiper .campus-item .img-box {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .campus-block {
        padding-top: 0;
        padding-bottom: 50px;
        height: unset !important;
    }

        .campus-block:before {
            content: unset;
        }

        .campus-block .index_title {
            color: var(--color-text-regular);
        }

    .campus-img-swiper {
        display: none;
    }

    .campus-text-swiper .campus-item {
        display: block;
        position: relative;
    }

        .campus-text-swiper .campus-item .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 112.5%;
            position: relative;
        }

            .campus-text-swiper .campus-item .img-box:after {
                content: "";
                position: absolute;
                left: 0;
                right: 0;
                bottom: 0;
                height: 50%;
                background: linear-gradient(to top, #1B1B1B 0%, rgba(0, 0, 0, 0) 100%);
                z-index: 9;
            }

            .campus-text-swiper .campus-item .img-box .img {
                position: absolute;
                left: 0;
                bottom: 0;
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .campus-text-swiper .text-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        color: #fff;
        z-index: 10;
        padding: 20px;
    }

    .campus-text-swiper .swiper-slide:hover .text-box,
    .campus-text-swiper .swiper-slide-active .text-box {
        opacity: 1;
    }

        .campus-text-swiper .swiper-slide:hover .text-box .img,
        .campus-text-swiper .swiper-slide-active .text-box .img {
            border-color: transparent;
            background-color: var(--color-darkblue);
            opacity: 1;
        }

        .campus-text-swiper .swiper-slide:hover .text-box .title,
        .campus-text-swiper .swiper-slide-active .text-box .title,
        .campus-text-swiper .swiper-slide:hover .text-box .icon,
        .campus-text-swiper .swiper-slide-active .text-box .icon {
            opacity: 1;
        }

        .campus-text-swiper .swiper-slide:hover .text-box:after,
        .campus-text-swiper .swiper-slide-active .text-box:after {
            width: 100%;
        }
}*/
/* campus-block END */

/* enroll-block */
/*.enroll-block {
    background: url(../images/bg_building.png?v=1) left bottom no-repeat;
    background-size: 50% auto;
    padding: 7.29177vw 0;
}

    .enroll-block .left-column {
        position: relative;
        height: 100%;
        padding-bottom: 50px;
        max-width: 85%;
    }

        .enroll-block .left-column .text {
            position: absolute;
            left: 0;
            bottom: 0;
            font-style: italic;
        }

.enroll-list {
    position: relative;
}

.enroll-menu {
    border-top: 1px solid var(--border-color-base);
}

    .enroll-menu .enroll-item {
        display: block;
        position: relative;
        transition: all .3s ease-in-out;
        display: flex;
        align-items: center;
    }

        .enroll-menu .enroll-item .ala-flex {
            padding: 2.1875vw 0;
            width: 55%;
        }

        .enroll-menu .enroll-item:before,
        .enroll-menu .enroll-item:after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            width: 100%;
            background-color: var(--border-color-base);
        }

        .enroll-menu .enroll-item:after {
            width: 0;
            transition: all .3s ease-in-out;
            background-color: var(--color-darkblue);
        }

        .enroll-menu .enroll-item.active,
        .enroll-menu .enroll-item:hover {
            color: var(--color-darkblue);
        }

            .enroll-menu .enroll-item.active:after {
                width: 100%;
            }

        .enroll-menu .enroll-item + .enroll-item {
            border-top: 0;
        }

        .enroll-menu .enroll-item .icon {
            width: 2vw;
            height: 2vw;
            margin-right: .75vw;
            background-size: auto 2vw;
            background-position: -2vw 0;
            overflow: hidden;
            background-repeat: no-repeat;
        }

        .enroll-menu .enroll-item.active .icon,
        .enroll-menu .enroll-item:hover .icon {
            background-position: 0 0;
        }

        .enroll-menu .enroll-item .title {
            flex: 1;
        }

.enroll-img-list {
    position: absolute;
    width: 40%;
    right: 5%;
    top: 50%;
}

.enroll-img {
    transform: translateY(-50%);
}

    .enroll-img,
    .enroll-img * {
        cursor: none !important;
    }

.enroll-img-list:hover .custom-cursor {
    opacity: 1;
}

.enroll-img .enroll-item {
    display: block;
    width: 100%;
    height: 0;
    padding-bottom: 140%;
    position: relative;
    display: none;
    transform: rotate(5deg);
    transition: all .5s ease-in-out;
}

    .enroll-img .enroll-item.active {
        display: block;
    }

    .enroll-img .enroll-item:hover {
        transform: rotate(0);
    }

    .enroll-img .enroll-item .img {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

.enroll-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 1399px) {
    .enroll-menu .enroll-item .icon {
        width: 28px;
        height: 28px;
        margin-right: 10px;
        background-size: auto 28px;
        background-position: -28px 0;
    }

    .enroll-menu .enroll-item.active .icon,
    .enroll-menu .enroll-item:hover .icon {
        background-position: 0 0;
    }
}

@media screen and (max-width: 991px) {
    .enroll-menu .enroll-item .ala-flex {
        padding: 30px 0;
    }

    .enroll-img-list {
        max-width: 240px;
    }

    .enroll-block {
        padding: 50px 0;
    }

        .enroll-block .left-column {
            max-width: 100%;
        }
}

@media screen and (min-width: 768px) {
    .enroll-menu .enroll-item .iconfont {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .enroll-img-list {
        display: none;
    }

    .enroll-menu .enroll-item .ala-flex {
        width: 100%;
    }

    .enroll-menu .enroll-item .iconfont {
        margin-left: 10px;
    }

    .enroll-block {
        background: unset;
    }

        .enroll-block .left-column > * {
            position: relative;
        }

        .enroll-block .left-column:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: -30px;
            top: 0;
            background: url(../images/bg_building.png?v=1) right bottom -30px no-repeat;
            background-size: 90% auto;
        }
}

@media screen and (max-width: 567px) {
    .enroll-menu .enroll-item .ala-flex {
        padding: .47rem 0;
    }

    .enroll-menu {
        font-size: .36rem;
    }
}*/
/* enroll-block END */

/* speit-block */
/*.speit-block {
    background-color: var(--color-third);
    padding-bottom: 0 !important;
}

    .speit-block .video-container {
        mask: url(../images/SPEIT.svg);
        -webkit-mask: url(../images/SPEIT.svg);
        mask-repeat: no-repeat;
        -webkit-mask-repeat: no-repeat;
        mask-position: center;
        -webkit-mask-position: center;
        mask-size: contain;
        -webkit-mask-size: contain;
        width: 100%;
        overflow: hidden;
    }

        .speit-block .video-container .video-js {
            width: 100%;
            height: 26vw;
            object-fit: cover;
        }

            .speit-block .video-container .video-js .vjs-tech {
                object-fit: cover;
            }

.video-wrapper {
    position: relative;
}*/
/* speit-block END */


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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

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

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

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

        .layui-layer .layui-layer-setwin .layui-layer-close2:hover {
            background: var(--color-darkblue);
            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*/

/* overview-container */
/*.overview-container {
    padding: 6.25vw 0;
    background: url(../images/bg-building2.png) right bottom no-repeat;
    background-size: 40% auto;
}

    .overview-container .title {
        margin-bottom: 1.25vw;
    }

@media screen and (max-width: 991px) {
    .overview-container .title {
        margin-bottom: 12px;
    }
}

@media screen and (max-width: 567px) {
    .overview-container {
        padding: .9rem 0;
    }

        .overview-container .title {
            margin-bottom: 12px;
            font-size: .4rem;
        }

    .overview-container {
        background-position: center bottom;
        background-size: 100% auto;
    }
}*/

/* overview-container END */

/* digital */
/*.digital {
    border-top: 1px solid rgba(0, 0, 0, .1);
    position: relative;
}

    .digital > * {
        position: relative;
    }

    .digital:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(to top, rgba(19, 172, 189, .5) 0%, rgba(19, 172, 189, 0) 100%);
    }*/

/* digital END */

/* keywords-list */
/*.keywords-list {
    overflow: hidden;
}

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

.keywords-list .keyword-item {
    padding: 4.6875vw 0;
}

    .keywords-list .keyword-item .count-title {
        color: var(--color-darkblue);
    }

        .keywords-list .keyword-item .count-title em {
            font-style: normal;
        }

.keywords-list .layui-col-md3 {
    position: relative;
}

    .keywords-list .layui-col-md4 + .layui-col-md4:after,
    .keywords-list .layui-col-md3 + .layui-col-md3:after {
        content: "";
        position: absolute;
        left: 0;
        top: 2.5vw;
        bottom: 2.5vw;
        width: 1px;
        background-color: rgba(0, 0, 0, .1);
    }

@media screen and (max-width: 991px) {
    .keywords-list .keyword-item {
        padding: 2.5vw 0;
    }
}

@media screen and (max-width: 767px) {
    .keywords-list {
        overflow: unset;
        margin: 0 -15px;
    }

        .keywords-list .layui-col-md4 + .layui-col-md4:after,
        .keywords-list .layui-col-md3 + .layui-col-md3:after {
            top: 0px;
            bottom: 0px;
        }

        .keywords-list .layui-col-md3:nth-of-type(3):after {
            content: unset;
        }

        .keywords-list .layui-col-md3:nth-of-type(1):before,
        .keywords-list .layui-col-md3:nth-of-type(2):before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: 1px;
            background-color: rgba(0, 0, 0, .1);
        }

        .keywords-list .layui-col-md3:nth-of-type(1):before {
            left: -3.125vw;
        }

        .keywords-list .layui-col-md3:nth-of-type(2):before {
            right: -3.125vw;
        }

        .keywords-list .layui-row {
            margin: 0!important;
        }

            .keywords-list .layui-row > * {
                padding: 0!important;
            }

        .keywords-list .keyword-item {
            padding: 30px 15px;
        }
}*/

/* keywords-list END */

/* faculty-block */
/*.faculty-block > * {
    position: relative;
}

.faculty-block:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: url(../../images/xgdt-bg.png) center bottom no-repeat;
    background-size: cover;
}

.faculty-swiper {
    padding: 0 3.125vw 6.125vw;
    position: relative;
}

    .faculty-swiper .ala-swiper .swiper-pagination {
        bottom: -3.75vw;
    }

    .faculty-swiper .swiper-button-prev {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -3.75vw;
        transform: translateY(-50%);
    }

    .faculty-swiper .swiper-button-next {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -3.75vw;
        transform: translateY(-50%);
    }

    .faculty-swiper .swiper-slide {
        height: unset;
    }

    .faculty-swiper .faculty-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fff;
        border: 1px solid var(--border-color);
        border-top: 0;
        padding: 2.1875vw 1.875vw;
        transition: all .3s ease-in-out;
        position: relative;
        height: 100%;
    }

        .faculty-swiper .faculty-item:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: .3125vw;
            background-color: var(--border-color);
        }

        .faculty-swiper .faculty-item > * {
            display: block;
            width: 100%;
        }

        .faculty-swiper .faculty-item .title {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .faculty-swiper .faculty-item .desc {
            color: var(--color-text-secondary-grey);
            padding-top: 1.25vw;
            border-top: 1px solid var(--border-color);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 4;
            -webkit-box-orient: vertical;
        }

            .faculty-swiper .faculty-item .desc img {
                width: 100%;
            }

        .faculty-swiper .faculty-item .faculty-info {
            margin-top: 2.8125vw;
            background-color: var(--color-plain);
            padding: 1.041667vw;
            border-radius: .46875vw;
            display: flex;
            align-items: center;
            width: 100%;
            transition: all .3s ease-in-out;
        }

            .faculty-swiper .faculty-item .faculty-info .avatar {
                width: 4.6875vw;
                height: 4.6875vw;
                position: relative;
                padding: .3125vw;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, .1);
            }

                .faculty-swiper .faculty-item .faculty-info .avatar img {
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    object-fit: cover;
                }

            .faculty-swiper .faculty-item .faculty-info .info {
                flex: 1;
                margin-left: 1.041667vw;
                line-height: 1.3;
            }

                .faculty-swiper .faculty-item .faculty-info .info .title {
                    color: var(--color-text-secondary-grey);
                    margin-top: .46875vw;
                    transition: all .3s ease-in-out;
                }

            .faculty-swiper .faculty-item:hover .faculty-info .name,
            .faculty-swiper .faculty-item .faculty-info:hover .name {
                color: var(--color-text-regular);
            }

            .faculty-swiper .faculty-item .faculty-info .right {
                opacity: 0;
            }

        .faculty-swiper .faculty-item a.faculty-info:hover {
            background-color: var(--color-darkblue);
            color: #fff;
        }


            .faculty-swiper .faculty-item a.faculty-info:hover .title {
                color: #fff;
            }

            .faculty-swiper .faculty-item a.faculty-info:hover .right {
                opacity: 1;
            }

@media screen and (max-width: 1439px) {
    .faculty-swiper {
        padding: 0 45px;
    }

        .faculty-swiper .faculty-item {
            padding: 30px 27px;
        }

            .faculty-swiper .faculty-item .faculty-info {
                padding: 15px;
            }

                .faculty-swiper .faculty-item .faculty-info .info {
                    margin-left: 15px;
                }
}

@media screen and (max-width: 1199px) {
    .faculty-swiper .faculty-item .desc {
        margin-top: 15px;
        padding-top: 15px;
    }

    .faculty-swiper .faculty-item .faculty-info {
        padding: 10px;
        border-radius: 4px;
    }

        .faculty-swiper .faculty-item .faculty-info .info {
            margin-left: 10px;
        }

        .faculty-swiper .faculty-item .faculty-info .avatar {
            width: 56px;
            height: 56px;
            padding: 3px;
        }
}

@media screen and (max-width: 991px) {
    .faculty-swiper {
        padding-bottom: 20px;
    }

        .faculty-swiper .ala-swiper .swiper-pagination {
            bottom: -26px;
        }

        .faculty-swiper .faculty-item .desc {
            margin-top: 15px;
            padding-top: 15px;
        }

        .faculty-swiper .faculty-item .faculty-info {
            margin-top: 25px;
        }

            .faculty-swiper .faculty-item .faculty-info .info .title {
                margin-top: 5px;
            }

        .faculty-swiper .faculty-item:before {
            height: 3px;
        }
}

@media screen and (max-width: 767px) {
    .faculty-swiper {
        padding-left: 0;
        padding-right: 0;
    }

        .faculty-swiper .swiper-btn {
            display: none;
        }
}*/
/* faculty-block END */

/* visitor-faculty-block */
/*.visitor-faculty-block .mce-content-body {
    max-width: 41.25vw;
    text-align: center;
    margin: 0 auto;
    margin-bottom: 3.125vw;
}

.visitor-faculty-swiper {
    position: relative;
}

    .visitor-faculty-swiper .people-item:hover .text-box .ala-tag {
        display: none;
    }

    .visitor-faculty-swiper .people-item .text-box .info {
        display: none;
    }

    .events-swiper .swiper-btn,
    .visitor-faculty-swiper .swiper-btn {
        margin: 3.125vw auto 0;
        justify-content: center;
    }

        .events-swiper .swiper-btn .more,
        .visitor-faculty-swiper .swiper-btn .more {
            display: inline-block;
            height: 2.5vw;
            line-height: 2.5vw;
            color: var(--color-text-secondary-grey);
            background-color: var(--color-plain);
            padding: 0 1.40625vw;
            border-radius: .52083vw;
            margin: 0 .625vw;
        }

        .events-swiper .swiper-btn .swiper-button-next,
        .visitor-faculty-swiper .swiper-btn .swiper-button-next {
            margin-left: 0;
        }

@media screen and (max-width: 1440px) {
    .events-swiper .swiper-btn .more,
    .visitor-faculty-swiper .swiper-btn .more {
        height: 36px;
        line-height: 36px;
        border-radius: 7.5px;
        margin: 0 9px;
    }
}

@media screen and (max-width: 1199px) {
    .visitor-faculty-block .mce-content-body {
        max-width: 600px;
    }

    .events-swiper .swiper-btn .more,
    .visitor-faculty-swiper .swiper-btn .more {
        padding: 0 16px;
    }
}

@media screen and (max-width: 767px) {
    .events-swiper .swiper-btn,
    .visitor-faculty-swiper .swiper-btn {
        margin-top: 25px;
    }
}*/
/* visitor-faculty-block END */

/* events-swiper */
/*.events-swiper .swiper-container {
    overflow: unset;
}

.events-swiper .swiper-slide {
    height: auto;
}

.event-list .event-item {
    display: block;
    height: 100%;
    padding: 1.25vw 1.875vw 2.8125vw;
    border: 1px solid #D3DBDA;
    border-left: 0;
    position: relative;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}

.events-swiper .event-item {
    border: unset;
}

.event-list .event-item:hover {
    color: #fff;
    border-color: var(--color-darkblue);
}

.event-list .event-item > * {
    position: relative;
}

.event-list .event-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: .3125vw;
    background-color: var(--color-orange);
    transition: all .3s ease-in-out;
}

.event-list .event-item:hover:before {
    width: 100%;
}

.event-list .event-item .calendar {
    padding: 1.09375vw .625vw;
    background-color: var(--color-orange);
    color: #fff;
    display: inline-block;
    line-height: 1;
}

    .event-list .event-item .calendar .year {
        margin-top: .46875vw;
    }

.event-list .event-item:hover .calendar {
    background-color: #fff;
    color: var(--color-text-regular);
    transition: all .3s ease-in-out;
}

.event-list .event-item .title {
    margin: 1.875vw 0 3.5vw;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.event-list .event-item .tag {
    color: var(--color-darkblue);
    transition: all .3s ease-in-out;
    margin-bottom: .9375vw;
}

.event-list .event-item:hover .tag {
    color: #fff;
}

.event-list .event-item .info {
    color: var(--color-text-secondary-grey);
    transition: all .3s ease-in-out;
}

    .event-list .event-item .info .item {
        white-space: nowrap;
        text-overflow: ellipsis;
        overflow: hidden;
    }

        .event-list .event-item .info .item + .item {
            margin-top: .3125vw;
        }

.event-list .event-item:hover .info {
    color: #fff;
}

.events-swiper .swiper-container {
    position: relative;
}


.event-list .event-item .img-box {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 66.66666%;
    overflow: hidden;
}

    .event-list .event-item .img-box .img {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

    .event-list .event-item .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .event-list .event-item .img-box .calendar {
        position: absolute;
        left: 0;
        top: 0;
    }

@media screen and (max-width: 1440px) {
    .event-list .event-item {
        padding: 18px 27px 40.5px;
    }
}

@media screen and (max-width: 1199px) {
    .event-list .event-item .calendar {
        padding: 12px 8px;
    }
}

@media screen and (max-width: 991px) {
    .event-list .event-item:before {
        width: 3px;
    }

    .event-list .event-item .title {
        margin: 18px 0 34px;
    }

    .event-list .event-item .info .item + .item {
        margin-top: 2px;
    }

    .event-list .event-item .tag {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 567px) {
    .event-list .event-item {
        padding: .28rem;
        padding-bottom: .34rem;
    }

    .events-swiper .swiper-container {
        padding-bottom: 0;
    }
}*/
/* events-swiper END */


/* home-ennews */
.home-ennews .ennews-container {
    overflow: unset;
    padding-bottom: 3.3125vw;
}

.home-ennews .swiper-slide {
    height: auto;
}

.ennews-list .ennews-item {
    display: block;
    height: 100%;
    padding: 1.25vw 1.875vw 2.8125vw;
    border: 1px solid #D3DBDA;
    border-left: 0;
    position: relative;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #fff;
}

.home-ennews .ennews-item {
    border: unset;
    background-color: var(--color-plain);
}

    .home-ennews .ennews-item img {
        width: 100%;
    }

.ennews-list .ennews-item:hover {
    color: #fff;
    border-color: var(--color-darkblue);
}

.ennews-list .ennews-item > * {
    position: relative;
}

.ennews-list .ennews-item:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: .3125vw;
    background-color: var(--color-darkblue);
    transition: all .3s ease-in-out;
}

.ennews-list .ennews-item:hover:before {
    width: 100%;
}

.home-ennews .ennews-container {
    position: relative;
}

@media screen and (max-width: 1440px) {
    .ennews-list .ennews-item {
        padding: 18px 27px 40.5px;
    }
}

@media screen and (max-width: 991px) {
    .ennews-list .ennews-item:before {
        width: 3px;
    }
}

@media screen and (max-width: 567px) {
    .ennews-list .ennews-item {
        padding: .28rem;
        padding-bottom: .34rem;
    }

    .home-ennews .ennews-container {
        padding-bottom: 20px;
    }
}
/* home-ennews END */

/* home-announcement */
/*.home-announcement {
    border-top: .3125vw solid var(--border-color);
}

    .home-announcement .layui-col-space40 {
        margin-top: 0;
        margin-bottom: 0;
    }

        .home-announcement .layui-col-space40 > * {
            padding-top: 0;
            padding-bottom: 0;
        }

    .home-announcement .announcement-item {
        display: block;
        padding: 2.8125vw 0;
        position: relative;
        height: 100%;
    }

        .home-announcement .announcement-item:after,
        .home-announcement .announcement-item:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            background-color: #D3DBDA;
            width: 100%;
            z-index: 1;
        }

        .home-announcement .announcement-item:after {
            width: 0;
            background-color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .home-announcement .announcement-item:hover:after {
            width: 100%;
        }

        .home-announcement .announcement-item .more-btn {
            position: absolute;
            right: 15%;
            bottom: 0;
            transform: translateY(50%) rotate(-20deg) scale(0);
            transition: all .4s ease-in-out;
            z-index: 2;
        }

        .home-announcement .announcement-item:hover .more-btn {
            transform: translateY(50%) rotate(-20deg) scale(1);
        }

        .home-announcement .announcement-item .more-btn:hover {
            transform: translateY(50%) rotate(0) scale(1);
        }

        .home-announcement .announcement-item .ala-tag + .time {
            margin-left: .625vw;
        }

        .home-announcement .announcement-item .time {
            color: var(--color-text-secondary-grey);
        }

        .home-announcement .announcement-item .title {
            margin-top: 1.25vw;
            color: inherit;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            transition: all .3s ease-in-out;
        }*/

/* home-employment */
/*.home-employment {
    border-top: .3125vw solid var(--color-orange);
}

    .home-employment .layui-col-space40 {
        margin-top: 0;
        margin-bottom: 0;
    }

        .home-employment .layui-col-space40 > * {
            padding-top: 0;
            padding-bottom: 0;
        }

    .home-employment .announcement-item {
        display: block;
        padding: 2.8125vw 0;
        position: relative;
        height: 100%;
    }

        .home-employment .announcement-item:after,
        .home-employment .announcement-item:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            background-color: #D3DBDA;
            width: 100%;
            z-index: 1;
        }

        .home-employment .announcement-item:after {
            width: 0;
            background-color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .home-employment .announcement-item:hover:after {
            width: 100%;
        }

        .home-employment .announcement-item .more-btn {
            position: absolute;
            right: 15%;
            bottom: 0;
            transform: translateY(50%) rotate(-20deg) scale(0);
            transition: all .4s ease-in-out;
            z-index: 2;
        }

        .home-employment .announcement-item:hover .more-btn {
            transform: translateY(50%) rotate(-20deg) scale(1);
        }

        .home-employment .announcement-item .more-btn:hover {
            transform: translateY(50%) rotate(0) scale(1);
        }

        .home-employment .announcement-item .ala-tag + .time {
            margin-left: .625vw;
        }

        .home-employment .announcement-item .time {
            color: var(--color-text-secondary-grey);
        }

        .home-employment .announcement-item .title {
            margin-top: 1.25vw;
            color: inherit;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            transition: all .3s ease-in-out;
        }

@media screen and (max-width: 991px) {
    .home-announcement, .home-employment {
        border-top-width: 3px;
    }

        .home-announcement .announcement-item, .home-employment .announcement-item {
            padding: 30px 0;
        }

            .home-announcement .announcement-item .ala-tag + .time, .home-employment .announcement-item .ala-tag + .time {
                margin-left: 8px;
            }

            .home-announcement .announcement-item .title, .home-employment .announcement-item .title {
                margin-top: 12px;
            }
}

@media screen and (max-width: 567px) {
    .home-announcement .announcement-item, .home-employment .announcement-item {
        padding: .5rem 0;
    }

        .home-announcement .announcement-item .title, .home-employment .announcement-item .title {
            font-size: .3rem;
        }
}*/
/* home-announcement END */

/* home-intro */
.home-intro {
    background: url(../../images/intro-bg.png) center center;
    background-size: cover;
    color: #fff;
    padding: 9.38889vw;
}
/* home-intro END*/

/* home-news */
/*.news-swiper-container {
    position: relative;
    height: 100%;
}

.news-swiper {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

    .news-swiper .news-item {
        display: block;
        height: 100%;
        position: relative;
    }

        .news-swiper .news-item .img-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, 0) 100%);
            height: 35%;
            z-index: 2;
        }

        .news-swiper .news-item .img-box {
            position: relative;
            width: 100%;
            height: 100%;
            z-index: 1;
        }

            .news-swiper .news-item .img-box .img {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            .news-swiper .news-item .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .news-swiper .news-item .text-box {
            position: absolute;
            left: 0;
            bottom: 0;
            z-index: 3;
            padding: 1.875vw;
            color: #fff;
            width: 70%;
        }

            .news-swiper .news-item .text-box .title {
                margin-top: .625vw;
            }

        .news-swiper .news-item:hover .text-box .title {
            text-decoration: underline;
        }

    .news-swiper .swiper-box {
        position: absolute;
        right: 1.875vw;
        bottom: 1.875vw;
        z-index: 9;
        width: 25%;
        display: flex;
        align-items: center;
    }

        .news-swiper .swiper-box .swiper-pagination {
            position: static;
            color: #fff;
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .news-swiper .swiper-button-prev,
    .news-swiper .swiper-button-next {
        border: 0 !important;
    }

    .news-swiper .swiper-button-prev {
        left: 0;
    }

    .news-swiper .swiper-button-next {
        right: 0;
    }

.news-list-wrap {
    border-top: .3125vw solid var(--border-color);
}

    .news-list-wrap .news-hightlight {
        position: relative;
    }

        .news-list-wrap .news-hightlight:after,
        .news-list-wrap .news-hightlight:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            background-color: #D3DBDA;
            width: 100%;
            z-index: 1;
        }

        .news-list-wrap .news-hightlight:after {
            width: 0;
            background-color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .news-list-wrap .news-hightlight:hover:after {
            width: 100%;
        }

        .news-list-wrap .news-hightlight .title {
            padding: 1.875vw 3.125vw;
            padding-left: 0;
            border-right: 1px solid var(--border-color);
            line-height: 1.3;
            transition: all .3s ease-in-out;
            width: 75%;
        }

            .news-list-wrap .news-hightlight .title .text {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 3;
                -webkit-box-orient: vertical;
            }

        .news-list-wrap .news-hightlight:hover .title {
            color: var(--color-darkblue);
        }

        .news-list-wrap .news-hightlight .time {
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 1.875vw 3.125vw;
            padding-right: 0;
            color: var(--border-color);
        }

.news-list .news-item {
    padding: 1.875vw 0;
    display: block;
    position: relative;
}

    .news-list .news-item:after,
    .news-list .news-item:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        background-color: #D3DBDA;
        width: 100%;
        z-index: 1;
    }

    .news-list .news-item:after {
        width: 0;
        background-color: var(--color-darkblue);
        transition: all .3s ease-in-out;
    }

    .news-list .news-item:hover:after {
        width: 100%;
    }

    .news-list .news-item .time {
        color: var(--color-darkblue);
        margin-bottom: .625vw;
    }

    .news-list .news-item .text {
        overflow: hidden;
    }

    .news-list .news-item .title {
        width: 35%;
        margin-right: 8%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 1.3;
        transition: all .3s ease-in-out;
    }

    .news-list .news-item .desc {
        flex: 1;
        color: var(--color-text-secondary-grey);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 100%;
    }

@media screen and (max-width: 991px) {
    .news-swiper {
        position: static;
    }

        .news-swiper .news-item .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 66.66666%;
        }

            .news-swiper .news-item .img-box img {
                width: 100%;
            }

        .news-swiper .swiper-box {
            width: 130px;
            right: 20px;
            bottom: 20px;
        }

        .news-swiper .news-item .text-box {
            width: 100%;
            padding: 20px;
            padding-right: 150px;
        }

    .news-list-wrap {
        margin-top: 15px;
        border-top-width: 3px;
    }

        .news-list-wrap .news-hightlight .title {
            padding: 30px 30px 30px 0;
        }

        .news-list-wrap .news-hightlight .time {
            padding: 30px 0 30px 30px;
        }

    .news-list .news-item {
        padding: 30px 0;
    }

        .news-list .news-item .time {
            margin-bottom: 8px;
        }
}

@media screen and (max-width: 767px) {
    .news-swiper .news-item .text-box {
        position: static;
        padding: 0;
        padding-top: 20px;
        color: var(--color-text-regular);
    }

        .news-swiper .news-item .text-box .time {
            color: var(--color-darkblue);
        }

        .news-swiper .news-item .text-box .title {
            margin-top: 15px;
        }

    .news-swiper {
        padding-bottom: 40px;
    }

        .news-swiper .swiper-box {
            left: 50%;
            margin-left: -65px;
            bottom: 0;
            right: 0;
        }

        .news-swiper .ala-swiper .swiper-pagination-bullet::after {
            background-color: var(--color-text-secondary-grey)!important;
        }

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

        .news-swiper .ala-swiper.is-white .swiper-pagination-bullet-active {
            border-color: var(--color-darkblue)!important;
        }

        .news-swiper .ala-swiper.is-white .swiper-button-prev,
        .news-swiper .ala-swiper.is-white .swiper-button-next {
            color: var(--color-text-regular);
        }

    .news-list .news-item .desc {
        display: none;
    }

    .news-list .news-item .title {
        width: 100%;
        margin-right: 0;
    }
}

@media screen and (max-width: 567px) {
    .news-swiper .news-item .text-box .title {
        margin-top: .2rem;
    }

    .news-list-wrap .news-hightlight .title {
        padding: .5rem;
        padding-left: 0;
    }

    .news-list-wrap .news-hightlight .time {
        padding: .5rem;
        padding-right: 0;
    }

    .news-list .news-item {
        padding: .5rem 0;
    }
}*/
/* home-news END */


/* inner-banner */
.inner-banner {
    background-color: var(--color-plain);
}

    .inner-banner.banner-noImg {
        background-color: transparent;
    }

    /* breadcrumb */
    .inner-banner .breadcrumb {
        padding: 1.09375vw 0;
    }

    .inner-banner .layui-breadcrumb {
        color: #fff;
        font-size: inherit;
    }

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

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

        .inner-banner .layui-breadcrumb span[lay-separator] {
            color: inherit;
            font-family: Arial;
            margin: 0 .3125vw;
        }

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

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

@media screen and (max-width: 1199px) {
    .inner-banner .breadcrumb {
        padding: 13px 0;
    }

    .inner-banner .layui-breadcrumb span[lay-separator] {
        margin: 0 4px;
    }
}

/* breadcrumb END */

/* inner-banner-text */
.inner-banner-text .text-box {
    height: 100%;
    padding: 3.75vw 0;
    padding-right: 6.875vw;
    position: relative;
}

.inner-banner-text .mce-content-body {
    padding: 3.75vw 0;
}

.inner-banner-text .text-box > * {
    position: relative;
}

.inner-banner-text .text-box .bg {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background-size: 80% auto;
    background-repeat: no-repeat;
    background-position: left bottom;
}

.inner-banner-text .text-box .title_en {
    font-style: italic;
}

.inner-banner-text .text-box .page-desc {
    margin-top: 2.5vw;
    line-height: 1.75;
}

.inner-banner-text .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 66.66666%;
    position: relative;
}

.inner-banner-text .video-container {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    z-index: 1;
}

.inner-banner-text .video-js {
    width: 100%!important;
    height: 100%!important;
}

    .inner-banner-text .video-js .vjs-poster {
        background-size: cover!important;
    }

    .inner-banner-text .video-js .vjs-tech {
        object-fit: cover;
    }

.inner-banner-text .img-box .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.inner-banner-text .img-box:after,
.inner-banner-text .img-box:before {
    content: "";
    position: absolute;
    width: 2.5vw;
    height: 2.5vw;
    box-sizing: border-box;
    z-index: 3;
}

.inner-banner-text .img-box:before {
    left: 0;
    top: 0;
    border-left: .625vw solid var(--color-darkblue);
    border-top: .625vw solid var(--color-darkblue);
}

.inner-banner-text .img-box:after {
    right: 0;
    bottom: 0;
    border-right: .625vw solid var(--color-darkblue);
    border-bottom: .625vw solid var(--color-darkblue);
}

.inner-banner-text .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* .inner-banner-text .img-box .img:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0, 0, 0, .75) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 2;
} */

.inner-banner-text .slide-down {
    position: absolute;
    left: 50%;
    margin-left: -2.734375vw;
    bottom: 2.34375vw;
    width: 5.46875vw;
    height: 5.46875vw;
    border-radius: 50%;
    background-color: var(--color-plain);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-darkblue);
    cursor: pointer;
    z-index: 9;
}

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

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

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

/* .inner-banner-text.has-border */
.inner-banner.has-noImg,
.inner-banner.has-border {
    background: url(../../images/sec-bg.png) 100%;
    background-size: cover;
    color: var(--color-darkblue);
    text-shadow: 0 0 10px #fff;
    /*background-color: unset;*/
}

    .inner-banner.has-border .inner-banner-text {
        /*border-bottom: .3125vw solid var(--color-darkblue);*/
    }

        .inner-banner.has-noImg .inner-banner-text .text-box,
        .inner-banner.has-border .inner-banner-text .text-box {
            padding-bottom: 2.1875vw;
            padding-right: 0 !important;
        }

    .inner-banner.has-noImg .ala-flex,
    .inner-banner.has-border .ala-flex {
        align-items: flex-end;
    }

        .inner-banner.has-noImg .ala-flex.is-center,
        .inner-banner.has-border .ala-flex.is-center {
            align-items: center;
        }

/* .inner-banner-text.has-border END */
@media screen and (max-width: 1199px) {

    .inner-banner-text .img-box:after,
    .inner-banner-text .img-box:before {
        width: 30px;
        height: 30px;
    }

    .inner-banner-text .img-box:after {
        border-right-width: 7.5px;
        border-bottom-width: 7.5px;
    }

    .inner-banner-text .img-box:before {
        border-left-width: 7.5px;
        border-top-width: 7.5px;
    }
}

@media screen and (max-width: 991px) {
    .inner-banner-text .slide-down {
        width: 54px;
        height: 54px;
        font-size: 13px;
        margin-left: -27px;
    }

    .inner-banner-text .text-box {
        padding: 15px 30px 15px 0;
    }

        .inner-banner-text .text-box .page-desc {
            margin-top: 15px;
        }

    .inner-banner-text .mce-content-body {
        padding: 15px 0;
    }

    .inner-banner-text .img-box {
        padding-bottom: 82%;
    }

    .inner-banner.has-border .inner-banner-text {
        border-bottom-width: 3px;
    }
}

@media screen and (max-width: 767px) {
    .inner-banner {
        padding-bottom: 50px;
    }

    .inner-banner-text .text-box {
        padding: 10px 0 30px;
    }

    .inner-banner-text .mce-content-body {
        padding: 0 0 30px;
    }

    .inner-banner-text .img-box {
        padding-bottom: 66.66666%;
    }

    .inner-banner-text .slide-down {
        bottom: 30px;
        display: none;
    }

    .inner-banner.has-noImg,
    .inner-banner.has-border {
        padding-bottom: 0px;
    }

        .inner-banner.has-noImg .text-box > .ala-flex,
        .inner-banner.has-border .text-box > .ala-flex {
            display: block;
        }

    .inner-banner-text .text-box .bg {
        display: none;
    }

    .inner-banner.has-noImg .inner-banner-text .text-box,
    .inner-banner.has-border .inner-banner-text .text-box {
        padding: 10px 0 15px;
    }

    .inner-banner.has-noImg + .small-block,
    .inner-banner.has-border + .small-block {
        padding-top: 30px;
    }
}

@-webkit-keyframes MoveUpDown {
    0% {
        bottom: 3px;
    }

    50% {
        bottom: -3px;
    }

    100% {
        bottom: 3px;
    }
}

@keyframes MoveUpDown {
    0% {
        bottom: 3px;
    }

    50% {
        bottom: -3px;
    }

    100% {
        bottom: 3px;
    }
}

/* inner-banner-text END */
/*.icon-play {
    position: absolute;
    width: 4.6879vw;
    height: 4.6879vw;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    transition: all .3s ease-in-out;
    background: var(--color-darkblue);
    border-radius: 50%;
    z-index: 999;
}

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

/* inner-banner-filter */
/*.inner-banner-filter {
    width: 35vw;
}

    .inner-banner-filter .form-select {
        flex: 1;
    }

        .inner-banner-filter .form-select + .form-select {
            margin-left: .625vw;
        }

    .inner-banner-filter .layui-input {
        flex: 1;
    }

    .inner-banner-filter .layui-input-date {
        position: relative;
    }

        .inner-banner-filter .layui-input-date .layui-input {
            padding: 0 1.875vw;
        }

        .inner-banner-filter .layui-input-date:before,
        .inner-banner-filter .layui-input-date:after {
            font-family: 'iconfont';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .inner-banner-filter .layui-input-date:before {
            content: "\e667";
            left: .625vw;
            color: var(--color-text-secondary);
        }

        .inner-banner-filter .layui-input-date:after {
            content: "\e625";
            font-size: .7em;
            right: .625vw;
        }

@media screen and (max-width: 1439px) {
    .inner-banner-filter .layui-input-date .layui-input {
        padding: 0 30px;
    }

    .inner-banner-filter .layui-input-date:before {
        left: 10px;
    }

    .inner-banner-filter .layui-input-date:after {
        right: 10px;
    }
}

@media screen and (max-width: 991px) {
    .inner-banner-filter {
        width: 50vw;
    }
}

@media screen and (max-width: 767px) {
    .inner-banner-filter {
        padding-top: 15px;
        width: 100%;
    }
}*/
/* inner-banner-filter END */

/* inner-banner END */

/* introduce-section */
/*.introduce-section .title-column {
    padding-right: 6.25vw;
}

.inner-title {
    margin-bottom: 2.34275vw;
}

    .inner-title .title {
        display: inline-block;
        position: relative;
        line-height: 1.2;
    }

        .inner-title .title > * {
            position: relative;
        }

        .inner-title .title:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: .33333em;
            width: 2em;
            background: var(--color-darkblue);
            opacity: .5;
        }

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

    .introduce-section .title-column {
        padding-right: 3.125vw;
    }
}

@media screen and (max-width: 991px) {
    .introduce-section .title-column {
        padding-right: 0;
    }
}

@media screen and (max-width: 767px) {
    .inner-title {
        margin-bottom: 20px;
    }
}*/
/* introduce-section END */

/* school-section */
/*.school-section .school-item .title-column {
    margin-bottom: 2.34275vw;
}

.school-section .school-item .school-logo img {
    height: 3.75vw;
    max-width: 100%;
}

.school-section .school-item .school-name {
    margin-top: 1.25vw;
}

.school-section .school-item .ranking {
    line-height: 1;
    color: var(--color-darkblue);
    margin-top: 1.875vw;
}

@media screen and (max-width: 1199px) {
    .school-section .school-item .title-column {
        margin-bottom: 25px;
    }

    .school-section .school-item .school-logo img {
        height: 45px;
    }
}

@media screen and (max-width: 991px) {
    .school-section .school-item .school-name {
        margin-top: 12px;
    }
}

@media screen and (max-width: 767px) {
    .school-section .school-item .title-column {
        margin-bottom: 15px;
    }
}*/
/* school-section END */

/* school-slide */
/*.school-slide {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color-base);
}

    .school-slide .slide-title {
        cursor: pointer;
        transition: all .3s ease-in-out;
    }

        .school-slide .slide-title .img {
            width: 8.3333vw;
            height: 5.72917vw;
            margin-right: 12px;
            text-align: center;
            display: flex;
            align-items: center;
            justify-content: center;
        }

            .school-slide .slide-title .img .num {
                color: var(--color-darkblue);
                -webkit-text-stroke: 1px var(--color-darkblue);
                text-stroke: 1px var(--color-darkblue);
                color: transparent;
                font-style: italic;
                transition: all .3s ease-in-out;
                line-height: .75;
                transform: translateX(-8%);
                opacity: .5;
                letter-spacing: -.05em;
                font-family: "PoppinsSemiBold";
            }

    .school-slide.open .slide-title .img .num {
        color: var(--color-darkblue);
        -webkit-text-stroke: unset;
        text-stroke: unset;
        opacity: .3;
    }

    .school-slide .slide-title .img img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .school-slide .slide-title .title {
        flex: 1;
    }

        .school-slide .slide-title .title .cn {
            font-weight: bold;
        }

    .school-slide .slide-title,
    .school-slide .slide-content {
        padding-right: calc(50% + 3.125vw);
    }

    .school-slide .slide-content {
        padding-left: calc(8.3333vw + 12px);
        padding-bottom: 3.125vw;
        padding-top: .625vw;
        display: none;
    }

    .school-slide.open .slide-title {
        color: var(--color-darkblue);
    }

    .school-slide.open .slide-content {
        display: block;
    }*/
/* school-slide END */

/*.school-list-container {
    position: relative;
}*/

/* school-img-list */
/*.school-img-list {
    position: absolute;
    width: 20vw;
    left: 75%;
    top: 50%;
    margin-left: -10vw;
    bottom: 0;
}

    .school-img-list .school-img {
        transform: translateY(-50%);
    }

        .school-img-list .school-img,
        .school-img-list .school-img * {
            cursor: none !important;
        }

    .school-img-list:hover .custom-cursor {
        opacity: 1;
    }

    .school-img-list .school-img .img-item {
        display: block;
        width: 100%;
        height: 0;
        padding-bottom: 140%;
        position: relative;
        display: none;
        transform: rotate(5deg);
        transition: all .5s ease-in-out;
    }

        .school-img-list .school-img .img-item.active {
            display: block;
        }

        .school-img-list .school-img .img-item:hover {
            transform: rotate(0);
        }

        .school-img-list .school-img .img-item .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .school-img-list .school-img .img-item img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

@media screen and (max-width: 1199px) {
    .school-img-list {
        width: 24vw;
        margin-left: -12vw;
    }
}

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

    .school-slide .slide-title,
    .school-slide .slide-content {
        padding-right: calc(40% + 3.125vw);
    }

    .school-img-list {
        left: 80%;
    }

    .school-slide .slide-title .img {
        width: 82px;
        height: 56px;
    }

    .school-slide .slide-content {
        padding-left: 94px;
        margin-top: 10px;
    }
}

@media screen and (max-width: 767px) {
    .school-img-list {
        display: none;
    }

    .school-slide .slide-title,
    .school-slide .slide-content {
        padding-right: 0;
    }

    .school-slide .slide-content {
        padding: 10px 0 20px 84px;
    }

    .school-slide .slide-title .img {
        width: 72px;
        height: 50px;
    }
}*/
/* school-img-list END */

/* school-bottom */
/*.school-bottom .img-box {
    width: 10.9375vw;
    margin-right: 3.75vw;
}

    .school-bottom .img-box img {
        width: 100%;
    }

.school-bottom .mce-content-body {
    flex: 1;
}

@media screen and (max-width: 767px) {
    .school-bottom {
        display: block;
    }

        .school-bottom .img-box {
            width: 84px;
            margin-right: 0;
            margin-bottom: 20px;
        }
}*/
/* school-bottom END */

/* category-filter */
/*.category-filter {
    display: flex;
    flex-wrap: wrap;
    margin: -.3125vw -1.09375vw;
    padding: .9375vw 0;
}

    .category-filter a {
        display: block;
        padding: 0 1.09375vw;
        position: relative;
        line-height: 1;
        cursor: pointer;
        transition: all .3s ease-in-out;
        margin: .3125vw 0;
    }

        .category-filter a + a {
            border-left: 1px solid var(--border-color);
        }

        .category-filter a.active {
            color: var(--color-darkblue);
        }

@media screen and (max-width: 991px) {
    .category-filter a {
        padding: 0 10px;
        margin: 4px 0;
    }

    .category-filter {
        margin: -4px -10px;
        padding: 10px 0;
    }
}

@media screen and (max-width: 567px) {
    .category-filter a {
        padding: 0 .11rem;
        margin: .12rem 0;
    }

    .category-filter {
        margin: -.12rem -.11rem;
        padding-top: .42rem;
    }
}*/
/* category-filter END */

/* article-banner */
/*.article-banner {
    background-color: var(--color-darkblue);
}

    .article-banner.inner-banner .layui-breadcrumb {
        color: #fff !important;
    }

        .article-banner.inner-banner .layui-breadcrumb a:hover {
            color: #fff !important;
            text-decoration: underline;
        }

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


/* article-title */
/*.article-container {
    width: 52.08333vw;
    margin: 0 auto;
}

.article-title-wrapper {
    padding: 1.875vw 0 3.75vw;
    position: relative;
}

    .article-title-wrapper:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        width: 0;
        height: 0;
        border: 1.041667vw solid transparent;
        border-left-width: 1.041667vw;
        border-right-width: 1.041667vw;
        border-top-width: .729167vw;
        border-bottom-width: .729167vw;
        border-top-color: var(--color-darkblue);
        border-left-color: var(--color-darkblue);
        transform: translateY(100%);
    }

.article-title {
    line-height: 1.3;
    position: relative;
    flex: 1;
}

.article-title-wrapper .article-title {
    color: #fff;
}

.article-title .tags {
    margin-bottom: 1.25vw;
}

.article-title .article-other {
    margin-top: 1.875vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.article-title .article-otherBase .iconfont {
    margin-right: .3125vw;
}

.article-title .article-otherBase span + span {
    margin-left: 3.125vw;
}

.article-title .icon-weixin,
.article-title .icon-weibo {
    cursor: pointer;
    font-size: 1.1em;
}

.article-calendar {
    color: #fff;
    line-height: 1;
    padding-right: 2.5vw;
    margin-right: 2.5vw;
    border-right: 1px solid #fff;
}

    .article-calendar > * {
        line-height: 1 !important;
    }

    .article-calendar .date {
        font-weight: bold;
    }

    .article-calendar .year {
        margin-top: .625vw;
    }*/

/* 活动 */
/*.article-title.event-title .article-otherBase span {
    display: block;
}

    .article-title.event-title .article-otherBase span + span {
        margin-left: 0;
        margin-top: .3125vw;
    }

@media screen and (max-width: 1600px) {
    .article-title .article-otherBase .iconfont {
        margin-right: 5px;
    }
}

@media screen and (max-width: 1440px) {
    .article-container {
        width: 800px;
    }
}

@media screen and (max-width: 1199px) {
    .article-title-wrapper:after {
        border-left-width: 12.5px;
        border-right-width: 12.5px;
        border-top-width: 8.5px;
        border-bottom-width: 8.5px;
    }

    .article-title .tags {
        margin-bottom: 15px;
    }

    .article-title.event-title .article-otherBase span + span {
        margin-left: 0;
        margin-top: 3px;
    }
}

@media screen and (max-width: 991px) {
    .article-container {
        width: 100%;
    }

    .article-title-wrapper {
        padding: 20px 0 40px;
    }

    .article-title .article-other {
        margin-top: 15px;
    }
}

@media screen and (max-width: 567px) {
    .article-title-wrapper {
        padding: .32rem 0 .64rem;
    }

    .article-title .tags {
        margin-bottom: .24rem;
    }

    .article-title .article-other {
        margin-top: .24rem;
    }

    .article-title .article-otherBase span + span {
        margin-left: .4rem;
    }

    .article-calendar {
        margin-right: .3rem;
        padding-right: .3rem;
    }
}*/
/* article-title END */

/* article-btn */
/*.article-btn .btn {
    display: block;
    padding: 1.25vw;
    background-color: var(--color-plain);
}

    .article-btn .btn:hover {
        text-decoration: underline;
        color: var(--color-darkblue);
    }

    .article-btn .btn + .btn {
        margin-top: 2px;
    }

@media screen and (max-width: 1199px) {
    .article-btn .btn {
        padding: 15px;
    }
}

@media screen and (max-width: 567px) {
    .article-btn .btn {
        padding: .3rem;
    }
}*/
/* article-btn END */


/*share*/
/*#qrcode-img {
    padding: 1.09375vw;
    border-radius: .46875vw;
    overflow: hidden;
    text-align: center;
    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*/

/* people-item */
/*.people-item {
    position: relative;
    display: block;
}

    .people-item:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
    }

    .people-item .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 130%;
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

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

        .people-item .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .people-item .text-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        color: #fff;
        padding: 2.1875vw;
        z-index: 3;
    }

        .people-item .text-box > * {
            position: relative;
        }

        .people-item .text-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: .46875vw;
            background-color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

    .people-item:hover .text-box:before {
        height: 100% !important;
    }

    .people-item:hover .ala-tag {
        background-color: #fff;
        color: var(--color-text-secondary-grey);
    }

    .people-item .text-box .name {
        line-height: 1.2;
    }

    .people-item .text-box .ala-tag {
        margin-bottom: .46875vw;
    }

    .people-item .text-box .title {
        margin-top: .3125vw;
    }

    .people-item .text-box .info {
        margin-top: .9375vw;
    }

        .people-item .text-box .info .item {
            display: block;
        }

            .people-item .text-box .info .item + .item {
                margin-top: 2px;
            }

    .people-item.is-small .text-box {
        padding: 1.40625vw;
    }

        .people-item.is-small .text-box:before {
            height: .3125vw;
        }

@media screen and (max-width: 1200px) {
    .people-item .text-box .title {
        margin-top: 4px;
    }

    .people-item .text-box .ala-tag {
        margin-bottom: 6px;
    }

    .people-item .text-box .info {
        margin-top: 12px;
    }
}

@media screen and (max-width: 991px) {
    .people-item .text-box {
        padding: 20px;
    }

        .people-item .text-box:before {
            height: 5px;
        }

        .people-item .text-box .title,
        .people-item .text-box .info {
            font-size: 13px;
        }

    .people-item.is-small .text-box {
        padding: 15px;
    }

        .people-item.is-small .text-box:before {
            height: 3px;
        }
}

@media screen and (max-width: 567px) {
    .people-item .text-box {
        padding: .4rem;
    }

        .people-item .text-box:before {
            height: .1rem;
        }

        .people-item .text-box .title,
        .people-item .text-box .info {
            font-size: .26rem;
        }

    .people-item.is-small .text-box {
        padding: .3rem;
    }

        .people-item.is-small .text-box:before {
            height: .06rem;
        }
}*/
/* people-item END */

/* people-detail */
/*.people-detail .people-img {
    position: sticky;
    position: -webkit-sticky;
    top: 10px;
    transition: all .3s ease-in-out;
}

.header-fixed.menu-show .people-detail .people-img {
    top: calc(4.21875vw + 10px);
}

.people-detail .people-img .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 130%;
    position: relative;
    overflow: hidden;
    z-index: 0;
}

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

    .people-detail .people-img .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.people-detail .people-container {
    background-color: var(--color-plain);
    padding: 3.125vw;
}

.people-detail .people-top .name {
    line-height: 1.2;
}

.people-detail .people-top .title {
    margin-top: .9375vw;
}

.people-detail .people-top .info {
    margin-top: 1.25vw;
}

    .people-detail .people-top .info .item + .item {
        margin-top: .625vw;
    }

    .people-detail .people-top .info .iconfont {
        width: 1.875vw;
        height: 1.875vw;
        line-height: 1.875vw;
        border-radius: 50%;
        background-color: var(--color-darkblue);
        color: #fff;
        margin-right: .9375vw;
        text-align: center;
    }

    .people-detail .people-top .info span {
        flex: 1;
        word-break: break-all;
        line-height: 1.2;
    }

.people-detail .people-content {
    margin-top: 3.125vw;
    padding-top: 3.125vw;
    border-top: 1px solid #C2CFCD;
}

    .people-detail .people-content .content-title {
        position: relative;
        line-height: 1.3;
        margin-bottom: .9375vw;
    }

        .people-detail .people-content .content-title > * {
            position: relative;
        }

        .people-detail .people-content .content-title:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 0.33333em;
            width: 2.5em;
            background: var(--color-darkblue);
            opacity: .5;
            z-index: 0;
        }

.people-detail .people-container + .mce-content-body {
    margin-top: 1.5625vw;
}

@media screen and (max-width: 1439px) {
    .people-detail .people-top .info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }

    .header-fixed.menu-show .people-detail .people-img {
        top: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .people-detail .people-content .content-title {
        margin-bottom: 12px;
    }

    .people-detail .people-container + .mce-content-body {
        margin-top: 18px;
    }
}

@media screen and (max-width: 991px) {
    .people-detail .people-container {
        padding: 30px;
    }

    .people-detail .people-top .title {
        margin-top: 10px;
    }

    .people-detail .people-top .info {
        margin-top: 12px;
    }

        .people-detail .people-top .info .item + .item {
            margin-top: 6px;
        }

    .people-detail .people-content {
        margin-top: 30px;
        padding-top: 30px;
    }

    .people-detail .people-top .info .iconfont {
        margin-right: 12px;
        font-size: 15px;
    }

    .people-detail .people-top .info span {
        flex: 1;
    }

    .header-fixed.menu-show .people-detail .people-img {
        top: 92px;
    }
}

@media screen and (max-width: 567px) {
    .people-detail .people-container {
        padding: .4rem;
    }

    .people-detail .people-content {
        margin-top: .4rem;
        padding-top: .4rem;
    }

    .people-detail .people-top .info .iconfont {
        margin-right: .16rem;
        width: .54rem;
        height: .54rem;
        line-height: .54rem;
        font-size: .3rem;
    }
}*/
/* people-detail END */

/* secondary-menu */
.secondary-menu {
    position: sticky;
    position: -webkit-sticky;
    transition: all .3s ease-in-out;
    top: 10px;
    min-height: calc(100vh - 3.75vw - 10px);
}

    .secondary-menu:before {
        content: "";
        position: absolute;
        left: -3.125vw;
        bottom: -3.75vw;
        width: calc(100% + 3.125vw);
        height: 100%;
        z-index: 0;
        background: url(../images/menu_bg.png) left bottom no-repeat;
        background-size: 100% auto;
    }

.header-fixed.menu-show .secondary-menu {
    top: calc(4.21875vw + 10px);
    min-height: calc(100vh - 3.75vw - 4.21875vw - 10px);
}

.secondary-menu > * {
    position: relative;
    z-index: 1;
}

.secondary-menu .small-title {
    padding-top: 1.09375vw;
    color: var(--color-darkblue);
    border-left: .3125vw solid var(--color-darkblue);
    line-height: 50px;
    padding: 0 0 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
    font-weight: bold;
}

.secondary-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.09375vw 0;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
}

    .secondary-menu .menu-item em {
        font-style: normal;
    }

    .secondary-menu .menu-item .iconfont {
        opacity: 0;
        transition: all .3s ease-in-out;
        font-size: .9em;
    }

    .secondary-menu .menu-item.active {
        color: var(--color-darkblue);
    }

        .secondary-menu .menu-item.active .iconfont {
            opacity: 1;
        }

@media screen and (max-width: 1439px) {
    .header-fixed.menu-show .secondary-menu {
        top: 70px;
        min-height: calc(100vh - 3.75vw - 70px);
    }

    .secondary-menu .menu-item {
        padding: 15px 0;
    }
}

@media screen and (max-width: 991px) {
    .secondary-menu {
        min-height: calc(100vh - 50px - 10px);
    }

    .header-fixed.menu-show .secondary-menu {
        top: 92px;
        min-height: calc(100vh - 50px - 92px);
    }

    .secondary-menu:before {
        bottom: -50px;
    }
}

@media screen and (max-width: 767px) {
    .secondary-menu-body {
        background-color: #fff;
        padding: 5px 3.125vw;
        display: none;
    }

    .secondary-menu .menu-item {
        border-bottom: 0;
        padding: 10px 0;
    }

        .secondary-menu .menu-item .iconfont {
            display: none;
        }
}

/* secondary-menu END */

/* secondary-menu-right */
.secondary-menu-right {
    margin-bottom: 1.5625vw;
    border-bottom: 5px solid var(--color-darkblue);
    padding-bottom: 1vw;
}

.secondary-menu-title {
    color: var(--color-darkblue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .secondary-menu-title em {
        font-style: normal;
    }

.secondary-menu-right + .mce-content-body {
    margin-top: -.78125vw;
    margin-bottom: 1.5625vw;
}

@media screen and (min-width: 768px) {
    .secondary-menu-title .icon-down,
    .secondary-menu-list {
        display: none !important;
    }
}

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

        .secondary-menu-right + .mce-content-body {
            margin-top: -10px;
            margin-bottom: 20px;
        }
}

@media screen and (max-width: 767px) {
    .secondaryMenuTemp {
        height: 60px;
        display: none;
    }

    .secondary-menu-right {
        background-color: #fff;
        position: relative;
        transition: all .3s ease-in-out;
        transform: unset !important;
        display: block!important;
    }

        .secondary-menu-right .secondary-menu-title {
            padding: 10px 0;
            margin-bottom: 0;
            border-bottom: 1px solid transparent;
            cursor: pointer;
            height: 50px;
        }

        .secondary-menu-right.open .secondary-menu-title {
            border-bottom-color: var(--border-color);
        }

        .secondary-menu-right .secondary-menu-title .icon-down {
            transition: all .3s ease-in-out;
        }

        .secondary-menu-right.open .secondary-menu-title .icon-down {
            transform: rotate(180deg);
        }

    .secondary-menu-list {
        padding: 10px 0;
        display: none;
    }

    .secondary-menu-right.open .secondary-menu-list {
        display: block;
    }

    .secondary-menu-list .menu-item {
        display: block;
        border-bottom: 0;
        padding: 10px 0;
    }

        .secondary-menu-list .menu-item em {
            font-style: normal;
        }

        .secondary-menu-list .menu-item.active {
            color: var(--color-darkblue);
        }

    .secondary-menu-fixed .secondary-menu-shade {
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .75);
        z-index: 98;
        display: none;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .secondary-menu-fixed header {
        box-shadow: unset;
    }

    .secondary-menu-right .fixed-wrap {
        background-color: #fff;
        transition: all .3s ease-in-out;
    }

    .secondary-menu-fixed .secondary-menu-right .fixed-wrap {
        position: fixed;
        left: 0;
        right: 0;
        top: 0;
        z-index: 999;
    }

    .header-fixed.menu-show.secondary-menu-fixed .secondary-menu-right .fixed-wrap {
        top: 82px;
    }

    .secondary-menu-fixed .secondary-menu-right .secondary-menu-title {
        padding: 0 3.125vw;
        border-bottom: 1px solid var(--border-color);
        height: 50px;
    }

    .secondary-menu-fixed .secondary-menu-list {
        padding: 10px 3.125vw;
    }
}

@media screen and (max-width: 567px) {
    .secondary-menu-right {
        margin-bottom: .3rem;
    }

        .secondary-menu-right .mce-content-body {
            margin-top: .15rem;
            margin-bottom: .3rem;
        }

    .secondary-menu-fixed .secondary-menu-right .secondary-menu-title {
        padding: 0 .32rem;
        height: 1rem;
    }

    .secondary-menu-fixed .secondary-menu-list {
        padding: 10px .32rem;
    }
}

/* secondary-menu-right END */


/* secondary-menu-filter */
/*.secondary-menu-filter {
    width: 35vw;
}

    .secondary-menu-filter .layui-form.flex-1 {
        flex: 1;
    }

    .secondary-menu-filter .layui-form.flex-2 {
        flex: 2;
    }

    .secondary-menu-filter .layui-form-select {
        max-width: 30%;
    }

    .secondary-menu-filter [class^='layui-col'] .layui-form-select {
        max-width: 100%;
    }

    .secondary-menu-filter .layui-form-select + .layui-form-select,
    .secondary-menu-filter .layui-form-select + .layui-input,
    .secondary-menu-filter .layui-input + .layui-input,
    .secondary-menu-filter .layui-input + .layui-form-select {
        margin-left: .15625vw;
    }

    .secondary-menu-filter .layui-input {
        flex: 1;
    }

    .secondary-menu-filter .layui-input-date {
        position: relative;
    }

        .secondary-menu-filter .layui-input-date .layui-input {
            padding: 0 1.875vw;
        }

        .secondary-menu-filter .layui-input-date:before,
        .secondary-menu-filter .layui-input-date:after {
            font-family: 'iconfont';
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
        }

        .secondary-menu-filter .layui-input-date:before {
            content: "\e667";
            left: .625vw;
            color: var(--color-text-secondary);
        }

        .secondary-menu-filter .layui-input-date:after {
            content: "\e625";
            font-size: .7em;
            right: .625vw;
        }

@media screen and (max-width: 1439px) {
    .secondary-menu-filter .layui-input-date .layui-input {
        padding: 0 30px;
    }

    .secondary-menu-filter .layui-input-date:before {
        left: 10px;
    }

    .secondary-menu-filter .layui-input-date:after {
        right: 10px;
    }
}

@media screen and (max-width: 991px) {
    .secondary-menu-filter {
        width: 50vw;
    }

        .secondary-menu-filter .layui-form-select + .layui-form-select,
        .secondary-menu-filter .layui-form-select + .layui-input,
        .secondary-menu-filter .layui-input + .layui-input,
        .secondary-menu-filter .layui-input + .layui-form-select {
            margin-left: 2px;
        }
}

@media screen and (max-width: 767px) {
    .secondary-menu-filter {
        padding-top: 15px;
        width: 100%;
    }
}*/
/* secondary-menu-filter END */

/* secondary-menu-content */
/*.secondary-menu-content {
    border: 1px solid var(--color-darkblue);
}

    .secondary-menu-content .back {
        background-color: var(--color-darkblue);
        color: #fff;
        line-height: 1;
        padding: .9375vw 1.25vw;
        cursor: pointer;
        display: block;
    }

    .secondary-menu-content .content-head {
        padding: 2.1875vw 3.125vw;
        background-color: var(--color-plain);
    }

    .secondary-menu-content .content-body {
        padding: 3.125vw;
    }

    .secondary-menu-content .content-head .article-title .article-other {
        margin-top: 1.5625vw;
    }

@media screen and (max-width: 991px) {
    .secondary-menu-content .back {
        padding: 10px 12px;
    }

    .secondary-menu-content .content-head {
        padding: 20px 30px;
    }

    .secondary-menu-content .content-body {
        padding: 30px;
    }

    .secondary-menu-content .content-head .article-title .article-other {
        margin-top: 15px;
    }
}

@media screen and (max-width: 567px) {
    .secondary-menu-content .back {
        padding: .2rem .24rem;
    }

    .secondary-menu-content .content-head {
        padding: .4rem;
    }

    .secondary-menu-content .content-body {
        padding: .4rem;
    }

    .secondary-menu-content .content-head .article-title .article-other {
        margin-top: .2rem;
    }
}*/
/* secondary-menu-content END */


/* staff-item */
/*.staff-item {
    display: flex;
    background-color: var(--color-plain);
    border-top: 0.3125vw solid var(--color-darkblue);
    padding: 2.8125vw;
    margin-bottom: 2.34375vw;
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

    .staff-item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

    .staff-item .staff-img {
        width: 15.625vw;
    }

        .staff-item .staff-img .img-box {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 130%;
            overflow: hidden;
        }

            .staff-item .staff-img .img-box .img {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            .staff-item .staff-img .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .staff-item .staff-container {
        margin-left: 2.65625vw;
        flex: 1;
    }

        .staff-item .staff-container .staff-content {
            flex: 1;
        }

        .staff-item .staff-container .name {
            line-height: 1.3;
        }

        .staff-item .staff-container .title {
            margin-top: .46875vw;
        }

        .staff-item .staff-container .content {
            margin-top: 1.875vw;
        }

        .staff-item .staff-container .staff-info {
            padding-left: 2.5vw;
            margin-left: 2.5vw;
            border-left: 1px solid var(--border-color);
            width: 15.625vw;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            box-sizing: content-box;
        }

            .staff-item .staff-container .staff-info .item + .item {
                margin-top: .625vw;
            }

            .staff-item .staff-container .staff-info .iconfont {
                width: 1.875vw;
                height: 1.875vw;
                line-height: 1.875vw;
                border-radius: 50%;
                background-color: var(--color-darkblue);
                color: #fff;
                margin-right: .9375vw;
                text-align: center;
            }

            .staff-item .staff-container .staff-info span {
                flex: 1;
                word-break: break-all;
                line-height: 1.2;
            }

@media screen and (max-width: 1440px) {
    .staff-item .staff-container .staff-info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }
}

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

        .staff-item .staff-container .staff-info {
            width: 100%;
            padding-left: 0;
            margin-left: 0;
            border-left: 0;
            padding-top: 2.5vw;
            margin-top: 2.5vw;
            border-top: 1px solid var(--border-color);
        }
}

@media screen and (max-width: 991px) {
    .staff-item {
        border-top-width: 3px;
        margin-bottom: 12px;
    }

        .staff-item .staff-container .title,
        .staff-item .staff-container .staff-info .item + .item {
            margin-top: 6px;
        }

        .staff-item .staff-container .staff-info {
            padding-top: 24px;
            margin-top: 24px;
        }
}

@media screen and (max-width: 767px) {
    .staff-item {
        padding: 20px;
    }

        .staff-item .staff-container .content {
            margin-top: 15px;
        }
}

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

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

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

            .staff-item .staff-container .content {
                margin-top: .3rem;
            }

            .staff-item .staff-container .staff-info {
                padding-top: .4rem;
                margin-top: .4rem;
            }

                .staff-item .staff-container .staff-info .iconfont {
                    margin-right: .16rem;
                    width: .54rem;
                    height: .54rem;
                    line-height: .54rem;
                    font-size: .3rem;
                }
}*/
/* staff-item END */

/* list */
.list .item {
    display: flex;
    background-color: var(--color-plain);
    position: relative;
    margin-bottom: 1.09375vw;
    transition: all .3s ease-in-out;
}

    .list .item > * {
        position: relative;
    }

    .list .item:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0.15625vw;
        background-color: var(--color-darkblue);
        transition: all .3s ease-in-out;
    }

    .list .item:hover {
        color: #fff;
    }

        .list .item:hover:before {
            width: 100%;
        }

    .list .item .right-box,
    .list .item .text-box {
        padding: 2.1875vw;
    }

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

    .list .item .title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .list .item .tags {
        margin-bottom: .9375vw;
    }

    .list .item .desc {
        margin-top: .9375vw;
        color: var(--color-text-secondary-grey);
        transition: all .3s ease-in-out;
    }

    .list .item:hover .desc {
        color: #fff;
    }

    .list .item:hover .ala-tag {
        background-color: #fff !important;
        color: var(--color-text-secondary-grey) !important;
    }

    .list .item .right-box {
        display: flex;
        align-items: center;
        min-width: 9vw;
    }

        .list .item .right-box:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 1px;
            background-color: var(--border-color);
            opacity: 1;
            transition: all .3s ease-in-out;
        }

        .list .item .right-box .icon-box .iconfont {
            margin-right: .46875vw;
        }

    .list .item .time {
        position: relative;
        line-height: 1;
    }

    .list .item:hover .time.show-pc:after {
        opacity: .2;
    }

    .list .item .time.show-pc .year {
        margin-top: 0.46875vw;
    }

    .list .item .time.show-mobile {
        display: none;
    }

    .list .item .time.show-pc {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
    }

@media screen and (max-width: 1439px) {
    .list .item {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .list .item .right-box {
        min-width: 115px;
    }

    .list .item .right-box,
    .list .item .text-box {
        padding: 26px;
    }

    .list .item .tags {
        margin-bottom: 12px;
    }

    .list .item .desc {
        margin-top: 12px;
    }

    .list .item:before {
        width: 1.875px;
    }

    .list .item .right-box .icon-box .iconfont {
        margin-right: 5px;
    }
}

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

        .list .item .right-box {
            padding-top: 0;
        }

            .list .item .right-box:after {
                content: unset;
            }

        .list .item .text-box {
            padding-bottom: 12px;
        }

        .list .item .time.show-pc {
            display: none;
        }

        .list .item .time.show-mobile {
            display: block;
            color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .list .item .right-box .icon-box {
            color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .list .item:hover .time.show-mobile,
        .list .item:hover .right-box .icon-box {
            color: #fff;
        }
}

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

        .list .item .right-box,
        .list .item .text-box {
            padding: .4rem;
        }

        .list .item .right-box {
            padding-top: 0;
        }

        .list .item .text-box .tags {
            margin-bottom: .24rem;
        }

        .list .item .desc {
            margin-top: .24rem;
        }

        .list .item .text-box {
            padding-bottom: .24rem;
        }

        .list .item:before {
            width: .0375rem;
        }
}

/* list END */

/* contact-banner */
/*.contact-banner {
    position: relative;
}

    .contact-banner .page-title .title {
        line-height: 1.3;
    }

    .contact-banner .page-desc i {
        color: var(--color-darkblue);
    }


.contact-map {
    margin-right: -3.125vw;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
}

    .contact-map .img {
        position: relative;
        display: inline-block;
    }

    .contact-map img {
        height: 100%;
        width: 100%;
        object-fit: contain;
    }

    .contact-map .sjtu-mark {
        position: absolute;
        display: block;
        left: 27.9%;
        top: 62.6%;
        width: 26.0849057%;
        transform: rotate(-20deg);
        transform-origin: 0 0;
        cursor: pointer;
    }

        .contact-map .sjtu-mark img {
            width: 100%;
        }

.contact-map-tc {
    width: 57.291667vw;
    border: .1315vw solid #fff;
    border-radius: .3125vw;
}

    .contact-map-tc img {
        width: 100%;
        max-width: 100%;
    }

.layui-layer.tc-map .layui-layer-content {
    height: auto !important;
}

.layui-layer.tc-map .layui-layer-setwin .layui-layer-close2 {
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    border-radius: 50%;
    color: #fff;
    font-weight: bold;
    background-color: var(--color-darkblue);
    cursor: pointer;
    text-align: center;
    font-size: .9375vw;
}

.contact-map-tc .mark {
    font-weight: bold;
    color: #fff;
    position: absolute;
    left: 33%;
    bottom: 45.7%;
    width: 15.363636%;
    height: 11.25%;
    background: url(../images/sjtu-mark-bg.png) center center no-repeat;
    background-size: cover;
    font-size: .7291666666vw;
    text-align: center;
    white-space: nowrap;
    display: flex;
    justify-content: center;
}

    .contact-map-tc .mark span {
        height: 60%;
        display: flex;
        align-items: center;
        justify-content: center;
    }

@media screen and (min-width: 768px) {
    .contact-banner .contact-text {
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-banner .inner-banner-text {
        position: relative;
        flex: 1;
    }

        .contact-banner .inner-banner-text .text-box {
            padding-top: 15px;
            padding-bottom: 15px;
            padding-right: 3.125vw;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            height: 100%;
        }

            .contact-banner .inner-banner-text .text-box .page-desc {
                margin-top: 1.5625vw;
            }
}

@media screen and (max-width: 1439px) {
    .contact-map-tc {
        border-width: 3px;
        border-radius: 3px;
    }

    .layui-layer.tc-map .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        line-height: 36px;
        top: 10px;
        right: 10px;
        font-size: 14px;
    }
}

@media screen and (max-width: 1199px) {
    .contact-map-tc {
        width: 80vw;
    }
}

@media screen and (max-width: 991px) {
    .contact-map-tc {
        width: 90vw;
    }
}

@media screen and (max-width: 767px) {
    .contact-banner {
        padding-bottom: 0;
    }

    .contact-map {
        position: static;
    }

    .contact-map-tc {
        width: 95vw;
    }

    .contact-map img {
        width: 100%;
    }

    .layui-layer.tc-map .layui-layer-setwin .layui-layer-close2 {
        width: 30px;
        height: 30px;
        line-height: 30px;
    }

    .contact-map {
        margin-left: -3.125vw;
        margin-right: -3.125vw;
    }
}

@media screen and (max-width: 567px) {
    .contact-map {
        margin-left: -.32rem;
        margin-right: -.32rem;
    }
}*/
/* contact-banner END */

/* contact-block */
/*.contact-block {
    padding: 3.125vw;
    background-color: var(--color-plain);
}

    .contact-block .title {
        display: flex;
        align-items: center;
        padding-bottom: .78125vw;
        border-bottom: 1px solid var(--border-color);
        margin-bottom: 1.25vw;
    }

        .contact-block .title .icon {
            width: 2.5vw;
            height: 2.5vw;
            line-height: 2.5vw;
            text-align: center;
            border-radius: 50%;
            background-color: var(--color-darkblue);
            color: #fff;
            margin-right: .46875vw;
        }

@media screen and (max-width: 1439px) {
    .contact-block .title {
        padding-bottom: 12px;
        margin-bottom: 18px;
    }

        .contact-block .title .icon {
            width: 36px;
            height: 36px;
            line-height: 36px;
            margin-right: 6px;
        }
}

@media screen and (max-width: 991px) {
    .contact-block {
        padding: 30px;
    }
}

@media screen and (max-width: 567px) {
    .contact-block {
        padding: .4rem;
    }

        .contact-block .title .icon {
            width: 0.72rem;
            height: 0.72rem;
            line-height: .72rem;
            margin-right: .12rem;
        }
}*/
/* contact-block END */

/* contact-page */
/*.contact-page .slide-door .accordion-content ul {
    margin-bottom: .9375vw;
}

.contact-page .slide-door .accordion-content li {
    margin-bottom: .46875vw;
}

.contact-page .slide-door .accordion-content ul > li:last-child {
    margin-bottom: 0;
}

.contact-page .slide-door .accordion-content li:before {
    border-radius: 0;
    transform: rotate(45deg);
}

@media screen and (max-width: 1199px) {
    .contact-page .slide-door .accordion-content ul {
        margin-bottom: 12px;
    }

    .contact-page .slide-door .accordion-content li {
        margin-bottom: 6px;
    }
}*/
/* contact-page END */

/* wide-img-panel */
/*.wide-img-panel {
    position: relative;
    width: 100%;
    min-height: 31.25vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .wide-img-panel .img-box {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

        .wide-img-panel .img-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, .3);
        }

        .wide-img-panel .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .wide-img-panel .text-box {
        width: 100%;
        text-align: center;
        position: relative;
        height: 100%;
        color: #fff;
        padding: 3.125vw 15%;
    }

        .wide-img-panel .text-box .icon {
            width: 2.8125vw;
        }

    .wide-img-panel .order-btn {
        transform: unset;
        position: absolute;
        right: 3.125vw;
        bottom: 3.125vw;
        cursor: pointer;
    }

        .wide-img-panel .order-btn .iconfont {
            font-size: 1.3em;
        }

@media screen and (max-width: 1199px) {
    .wide-img-panel .text-box .icon {
        width: 32px;
    }
}

@media screen and (max-width: 991px) {
    .wide-img-panel .text-box {
        padding: 30px;
    }
}

@media screen and (max-width: 567px) {
    .wide-img-panel {
        min-height: 40vw;
    }

        .wide-img-panel .text-box .icon {
            width: .48rem;
        }

        .wide-img-panel .text-box {
            padding: .6rem .3rem;
        }
}*/
/* wide-img-panel END */

/* order-form */
/*.layui-layer.tc-order .layui-layer-content {
    height: auto !important;
    max-height: 90vh;
}

.order-form {
    background-color: #fff;
    width: 43.75vw;
    border-top: .3125vw solid var(--color-darkblue);
    padding: 1.5625vw 2.5vw;
}

    .order-form .order-form-title {
        padding-bottom: 1.5625vw;
        margin-bottom: 1.875vw;
        border-bottom: 1px solid var(--border-color);
    }

        .order-form .order-form-title .iconfont {
            width: 2.5vw;
            height: 2.5vw;
            line-height: 2.5vw;
            text-align: center;
            border-radius: 50%;
            background-color: var(--color-darkblue);
            color: #fff;
            margin-right: 0.625vw;
        }

    .order-form .layui-form-item {
        margin-bottom: 0;
    }

        .order-form .layui-form-item .layui-form-label {
            padding: 0;
            width: 100%;
            text-align: left;
            margin-bottom: .625vw;
            font-size: inherit;
            float: unset;
        }

        .order-form .layui-form-item .layui-input-block {
            margin-left: 0;
        }

.layui-layer.tc-order .layui-layer-setwin .layui-layer-close2 {
    top: 0;
    right: -3.125vw;
    width: 2.5vw;
    height: 2.5vw;
    line-height: calc(2.5vw - 2px);
    background-color: transparent;
    border: 1px solid #fff;
    font-size: .9375vw;
    box-sizing: border-box;
}

    .layui-layer.tc-order .layui-layer-setwin .layui-layer-close2:hover {
        background-color: var(--color-darkblue);
        color: #fff;
        border-color: transparent;
    }

@media screen and (max-width: 1440px) {
    .layui-layer.tc-order .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        line-height: 34px;
        font-size: 14px;
        right: -45px;
    }

    .order-form {
        width: 630px;
        padding: 22.5px 36px;
        border-top-width: 4.5px;
    }

        .order-form .order-form-title {
            padding-bottom: 22.5px;
            margin-bottom: 27px;
        }

            .order-form .order-form-title .iconfont {
                width: 36px;
                height: 36px;
                line-height: 36px;
                margin-right: 9px;
            }

        .order-form .layui-form-item .layui-form-label {
            margin-bottom: 9px;
        }
}

@media screen and (max-width: 767px) {
    .order-form {
        width: 90vw;
        padding: 20px;
    }

        .order-form .order-form-title {
            padding-bottom: 15px;
            margin-bottom: 15px;
        }

    .layui-layer.tc-order .layui-layer-setwin .layui-layer-close2 {
        top: 10px;
        right: 10px;
    }

        .layui-layer.tc-order .layui-layer-setwin .layui-layer-close2:after {
            color: var(--color-text-secondary-grey);
        }

        .layui-layer.tc-order .layui-layer-setwin .layui-layer-close2:hover:after {
            color: #fff;
        }
}*/
/* order-form END */

/* about-digital */
/*.digital.about-digital {
    border: 0;
}

    .digital.about-digital:before,
    .about-digital .keywords-list .layui-col-md4 + .layui-col-md4:after,
    .about-digital .keywords-list .layui-col-md3 + .layui-col-md3:after,
    .about-digital .keywords-list .layui-col-md3:before {
        content: unset !important;
    }

.about-digital .keywords-list .keyword-item {
    position: relative;
    padding-left: 3.125vw;
    padding-right: 3.125vw;
    height: 100%;
}

    .about-digital .keywords-list .keyword-item > * {
        position: relative;
    }

    .about-digital .keywords-list .keyword-item:after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: .3125vw;
        background-color: var(--color-darkblue);
    }

    .about-digital .keywords-list .keyword-item:before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 100%;
        background: linear-gradient(to top, rgba(19, 172, 189, .5) 0%, rgba(19, 172, 189, 0) 100%);
    }

@media screen and (max-width: 991px) {
    .about-digital .keywords-list .keyword-item:after {
        height: 3px;
    }
}

@media screen and (max-width: 767px) {
    .about-digital .keywords-list {
        margin: 0;
    }

        .about-digital .keywords-list .keyword-item {
            padding: 40px 15px 20px;
        }
}*/
/* about-digital END */

/* .develop-swiper */
/*.develop-swiper .swiper-container {
    padding: 0 3.125vw;
    overflow: unset;
}

.develop-swiper .swiper-slide {
    width: auto;
    height: unset;
}

.develop-swiper .develop-year {
    color: var(--color-darkblue);
    position: relative;
    line-height: 1;
}

    .develop-swiper .develop-year span {
        display: inline-block;
        transform: translateX(-50%);
        padding-bottom: 1.25vw;
        position: relative;
    }

        .develop-swiper .develop-year span:before {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            width: .46875vw;
            height: .46875vw;
            transform: translate(-50%, 50%);
            border-radius: 50%;
            background-color: var(--color-darkblue);
        }

        .develop-swiper .develop-year span:after {
            content: "";
            position: absolute;
            top: 100%;
            left: 50%;
            width: 1px;
            height: 2.083333vw;
            transform: translateX(-50%);
            background-color: var(--color-darkblue);
        }

.develop-list {
    display: flex;
    padding: 0 1.041667vw;
    padding-top: 4.375vw;
    position: relative;
}

.develop-swiper .develop-list:before {
    content: "";
    position: absolute;
    top: 0;
    height: .1041667vw;
    left: 1.041667vw;
    right: 1.041667vw;
    background-color: var(--color-darkblue);
}

.develop-swiper .swiper-slide:nth-of-type(1) .develop-list:after {
    content: "";
    position: absolute;
    top: 0;
    height: .1041667vw;
    width: 5.208333vw;
    right: calc(100% + 1.041667vw);
    background-color: var(--color-darkblue);
}

.develop-list .develop-item {
    width: 18.75vw;
    display: block;
}

    .develop-list .develop-item + .develop-item {
        margin-left: 2.083333vw;
    }

    .develop-list .develop-item img {
        width: 100%;
    }

    .develop-list .develop-item .title {
        margin-bottom: .9375vw;
    }

    .develop-list .develop-item .time {
        margin-bottom: 1.40625vw;
    }

@media screen and (max-width: 1199px) {
    .develop-swiper .develop-year span {
        padding-bottom: 15px;
    }

        .develop-swiper .develop-year span:before {
            width: 5px;
            height: 5px;
        }

        .develop-swiper .develop-year span:after {
            height: 25px;
        }

    .develop-swiper .develop-list {
        padding: 0 12.5px;
        padding-top: 40px;
    }

        .develop-swiper .develop-list:before {
            left: 12.5px;
            right: 12.5px;
            height: 1.25px;
        }

    .develop-swiper .swiper-slide:nth-of-type(1) .develop-list:after {
        height: 1.25px;
        width: 5.208333vw;
        right: calc(100% + 12.5px);
    }

    .develop-list .develop-item {
        width: 250px;
    }

        .develop-list .develop-item + .develop-item {
            margin-left: 25px;
        }

        .develop-list .develop-item .title {
            margin-bottom: 12px;
        }

        .develop-list .develop-item .time {
            margin-bottom: 21px;
        }
}

@media screen and (max-width: 567px) {
    .develop-swiper .swiper-container {
        padding: 0 .32rem;
        padding-bottom: 0;
    }

    .develop-swiper .develop-year span {
        padding-bottom: .3rem;
    }

        .develop-swiper .develop-year span:before {
            width: .1rem;
            height: .1rem;
        }

        .develop-swiper .develop-year span:after {
            height: .5rem;
        }

    .develop-swiper .develop-list {
        padding: 0 .25rem;
        padding-top: .8rem;
    }

        .develop-swiper .develop-list:before {
            left: .25rem;
            right: .25rem;
            height: .025rem;
        }

    .develop-swiper .swiper-slide:nth-of-type(1) .develop-list:after {
        height: .025rem;
        width: .64rem;
        right: calc(100% + .25rem);
    }

    .develop-list .develop-item {
        width: 5rem;
    }

        .develop-list .develop-item + .develop-item {
            margin-left: .5rem;
        }

        .develop-list .develop-item .title {
            margin-bottom: .24rem;
        }

        .develop-list .develop-item .time {
            margin-bottom: .42rem;
        }
}*/
/* .develop-swiper END */

/* gallery-swiper */
/*.gallery-swiper {
    width: 100%;
    height: 45vw;
    background: url(../images/bg-gallery.png) center center no-repeat;
    background-size: contain;
}

    .gallery-swiper .swiper-container {
        overflow: unset;
    }

    .gallery-swiper .swiper-slide {
        position: relative;
    }

    .gallery-swiper .gallery-item {
        position: absolute;
        width: 16.71875vw;
    }

        .gallery-swiper .gallery-item .img-box {
            position: relative;
        }

        .gallery-swiper .gallery-item a {
            display: block;
            width: 100%;
            height: 100%;
        }

        .gallery-swiper .gallery-item .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 66.66666%;
            position: relative;
        }

            .gallery-swiper .gallery-item .img-box .img {
                width: 100%;
                height: 100%;
                position: absolute;
                left: 0;
                top: 0;
                overflow: hidden;
            }

            .gallery-swiper .gallery-item .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .gallery-swiper .gallery-item.video-item .img-box:after,
        .gallery-swiper .gallery-item:not(.video-item) .img-box a:after {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, .5);
            opacity: 0;
            transition: all .3s ease-in-out;
        }

        .gallery-swiper .gallery-item:not(.video-item):hover .img-box a:after {
            opacity: 1;
        }

        .gallery-swiper .gallery-item .video-play {
            display: none;
        }

        .gallery-swiper .gallery-item.video-item .video-play {
            display: block;
            background-color: var(--color-darkblue);
            border: 0;
            width: 3.125vw;
            height: 3.125vw;
        }

        .gallery-swiper .gallery-item.video-item .img-box {
            cursor: pointer;
        }

            .gallery-swiper .gallery-item.video-item .img-box:after {
                opacity: 1;
            }


        .gallery-swiper .gallery-item.gallery-1 {
            top: 10vw;
            left: 1.875vw;
        }

            .gallery-swiper .gallery-item.gallery-1 .img-box {
                padding-bottom: 127.1875%;
            }

            .gallery-swiper .gallery-item.gallery-1:before {
                content: "";
                position: absolute;
                left: -1.875vw;
                bottom: -1.770833vw;
                width: 7.65625vw;
                height: 9.7395833vw;
                background-color: var(--color-darkblue);
            }

        .gallery-swiper .gallery-item.gallery-2 {
            left: 25.78125vw;
            top: 0;
        }

        .gallery-swiper .gallery-item.gallery-3 {
            right: 9.0625vw;
            top: 2.1875vw;
        }

        .gallery-swiper .gallery-item.gallery-4 {
            left: 22.8125vw;
            bottom: 2.8125vw;
        }

        .gallery-swiper .gallery-item.gallery-5 {
            left: 48.90652vw;
            bottom: 0;
        }

        .gallery-swiper .gallery-item.gallery-6 {
            right: 1.5625vw;
            bottom: 9.53125vw;
        }

            .gallery-swiper .gallery-item.gallery-6:before {
                content: "";
                position: absolute;
                right: -1.5625vw;
                top: -1.5625vw;
                width: 7.65625vw;
                height: 9.7395833vw;
                background-color: var(--color-darkblue);
            }

        .gallery-swiper .gallery-item.gallery-7 {
            width: 31.770833vw;
            left: 29.0625vw;
            top: 8.4375vw;
        }

            .gallery-swiper .gallery-item.gallery-7:before {
                content: "";
                position: absolute;
                left: -.78125vw;
                right: -.78125vw;
                top: -.78125vw;
                bottom: -.78125vw;
                background-color: var(--color-darkblue);
            }

            .gallery-swiper .gallery-item.gallery-7 .img-box {
                padding-bottom: 54.09836%;
            }

        .gallery-swiper .gallery-item:not(.video-item),
        .gallery-swiper .gallery-item:not(.video-item) * {
            cursor: none !important;
        }

@media screen and (max-width: 1440px) {
    .gallery-swiper .gallery-item.video-item .video-play {
        width: 45px;
        height: 45px;
    }
}

@media screen and (max-width: 767px) {
    .gallery-swiper .gallery-item.video-item .video-play {
        width: 36px;
        height: 36px;
        background-color: unset;
    }
}*/
/* gallery-list END */

/* faculty-banner */
/*.faculty-banner .inner-banner-text .img-box:before,
.faculty-banner .inner-banner-text .img-box:after,
.faculty-banner .inner-banner-text .img-box .img:before {
    content: unset;
}*/
/* faculty-banner END */

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

    .filter.bg-primary {
        background-color: var(--color-darkblue);
        border-color: var(--color-darkblue);
    }

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

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

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

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

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

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

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

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

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


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

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

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

    .ala-tab .layui-tab-title li {
        height: unset;
        line-height: inherit;
        font-size: inherit;
        background-color: var(--color-plain);
    }

        .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 .layui-this {
        background: var(--color-darkblue);
        color: #fff;
    }

    .ala-tab .layui-tab-title li:not(.layui-this):hover {
        color: var(--color-darkblue);
    }

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

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

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

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

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

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

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

/* letter-filter */
/*.letter-filter {
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
}

    .letter-filter .item {
        height: 2.5vw;
        width: 2.5vw;
        line-height: calc(2.5vw - 2px);
        text-align: center;
        border: 1px solid transparent;
        border-radius: .3125vw;
        cursor: pointer;
        display: block;
        transition: all .4s;
        background-color: transparent;
        position: relative;
        margin: .3125vw 0;
    }

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

        .letter-filter .item.active {
            border-color: var(--color-darkblue);
            background-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 .item {
            width: 36px;
            height: 36px;
            line-height: 34px;
            border-radius: 4px;
            margin: 4px 0;
        }
}

@media screen and (max-width: 567px) {
    .letter-filter .item {
        width: .64rem;
        height: .64rem;
        line-height: calc(.64rem - 2px);
        border-radius: .08rem;
        margin: .08rem 0;
    }
}*/
/* letter-filter END */

/*.faculty-container {
    margin-top: 1.71875vw;
}

@media screen and (max-width: 1199px) {
    .faculty-container {
        margin-top: 30px;
    }
}

@media screen and (max-width: 567px) {
    .faculty-container {
        margin-top: .4rem;
    }
}*/

/* faculty-list */
/*.faculty-list .faculty-list-title {
    width: 100%;
}

.faculty-list .faculty-item {
    display: flex;
    background-color: var(--color-plain);
    height: 100%;
}

    .faculty-list .faculty-item .img-box {
        width: 12.5vw;
        height: 16.25vw;
        position: relative;
        overflow: hidden;
    }

        .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: 1.875vw 1.5625vw;
        transition: all .3s ease-in-out;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

        .faculty-list .faculty-item .text-box > * {
            width: 100%;
        }

        .faculty-list .faculty-item .text-box .title {
            margin-top: .3125vw;
            color: var(--color-text-regular);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 1.09375vw;
            color: var(--color-text-regular);
        }

            .faculty-list .faculty-item .text-box .info span {
                display: block;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .faculty-list .faculty-item .text-box .info .iconfont {
                display: inline-block;
                text-align: center;
                width: 1.875vw;
                height: 1.875vw;
                line-height: 1.875vw;
                border-radius: 50%;
                background-color: var(--color-darkblue);
                color: #fff;
                margin-right: .625vw;
            }

            .faculty-list .faculty-item .text-box .info span + span {
                margin-top: .3125vw;
            }

@media screen and (max-width: 1439px) {
    .faculty-list .faculty-item .text-box .info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
        margin-right: 9px;
    }

    .faculty-list .faculty-item .text-box .info span + span {
        margin-top: 4.5px;
    }

    .faculty-list .faculty-item .img-box {
        width: 180px;
        height: 234px;
    }
}

@media screen and (max-width: 1300px) {
    .faculty-list .faculty-item .text-box {
        padding: 1.5625vw;
    }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 1.25vw;
        }

            .faculty-list .faculty-item .text-box .info .iconfont {
                margin-right: 6px;
            }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .faculty-list .faculty-item .text-box .info {
        margin-top: .9375vw;
    }
}

@media screen and (max-width: 991px) {
    .faculty-list .faculty-item .img-box {
        width: 140px;
        height: 182px;
    }

    .faculty-list .faculty-item .text-box {
        padding: 18px;
    }

        .faculty-list .faculty-item .text-box .title {
            margin-top: 2px;
        }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 10px;
        }

            .faculty-list .faculty-item .text-box .info span + span {
                margin-top: 3px;
            }
}

@media screen and (max-width: 567px) {
    .faculty-list .faculty-item .img-box {
        width: 2.4rem;
        height: 3.12rem;
    }

    .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 span + span {
                margin-top: .04rem;
            }

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

/* 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: 17.1875vw;
        margin-bottom: .78125vw;
    }

@media screen and (max-width: 1920px) {
    .ala-empty img {
        width: 330px;
    }
}*/
/* ala-empty END */

/* layui-laydate */
/*.layui-laydate {
    border-color: var(--color-darkblue);
    box-shadow: unset;
    color: var(--color-text-regular);
    min-width: 17.1875vw;
    margin: 0;
    margin-top: -1px;
}

    .layui-laydate .layui-laydate-main {
        min-width: 100%;
    }

    .layui-laydate .layui-laydate-header {
        border-bottom: 0;
        padding: 0;
        line-height: 3.125vw;
        font-size: .833333vw;
    }

        .layui-laydate .layui-laydate-header .laydate-prev-y,
        .layui-laydate .layui-laydate-header .laydate-next-y {
            display: none;
        }

        .layui-laydate .layui-laydate-header i {
            top: 0;
            font-size: inherit;
            color: inherit;
            padding: 0;
        }

            .layui-laydate .layui-laydate-header i.laydate-prev-y,
            .layui-laydate .layui-laydate-header i.laydate-prev-m {
                left: 1.5625vw;
            }

            .layui-laydate .layui-laydate-header i.laydate-next-y,
            .layui-laydate .layui-laydate-header i.laydate-next-m {
                right: 1.5625vw;
            }

            .layui-laydate .layui-laydate-header i:hover,
            .layui-laydate .layui-laydate-header span:hover {
                color: var(--color-darkblue);
            }

    .layui-laydate .laydate-set-ym span {
        padding: 0 .625vw;
    }

    .layui-laydate table {
        width: 100%;
    }

    .layui-laydate .layui-laydate-content {
        padding: 0 .9375vw .9375vw;
        font-size: .7291667vw;
    }

        .layui-laydate .layui-laydate-content td,
        .layui-laydate .layui-laydate-content th {
            height: 2.1875vw;
            line-height: 2.1875vw;
            border-radius: 50%;
            color: inherit;
        }

        .layui-laydate .layui-laydate-content th {
            color: var(--color-text-secondary);
        }

        .layui-laydate .layui-laydate-content td > div {
            padding: 0!important;
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
        }

    .layui-laydate-content td > div:hover,
    .layui-laydate-list li:hover,
    .layui-laydate-shortcut > li:hover:hover,
    .layui-laydate .layui-this,
    .layui-laydate .layui-this > div {
        background-color: unset!important;
        color: inherit;
    }

    .layui-laydate .laydate-day-mark {
        font-size: inherit;
        width: 2.1875vw;
        height: 2.1875vw;
        position: static;
        border-radius: 50%;
        line-height: inherit;
    }

        .layui-laydate .laydate-day-mark::after {
            bottom: 8%;
            right: unset;
            top: unset;
            left: 50%;
            width: .3125vw;
            height: .3125vw;
            border-radius: 50%;
            transform: translateX(-50%);
            background-color: var(--color-darkblue);
            font-size: inherit;
        }

    .layui-laydate .layui-this .laydate-day-mark {
        background-color: var(--color-darkblue)!important;
        color: #fff!important;
    }

.layui-laydate-content td > div:hover .laydate-day-mark,
.layui-laydate-list li:hover .laydate-day-mark,
.layui-laydate-shortcut > li:hover:hover .laydate-day-mark {
    background-color: var(--color-plain);
}

// 年份 //
.layui-laydate .layui-laydate-list > li {
    margin: 0;
    height: 2.8125vw;
    line-height: 2.8125vw;
}

    .layui-laydate .layui-laydate-list > li.li-mark {
        position: relative;
        color: var(--color-text-regular)!important;
    }

        .layui-laydate .layui-laydate-list > li.li-mark:after {
            content: "";
            position: absolute;
            bottom: 8%;
            right: unset;
            top: unset;
            left: 50%;
            width: .3125vw;
            height: .3125vw;
            border-radius: 50%;
            transform: translateX(-50%);
            background-color: var(--color-darkblue);
            font-size: inherit;
        }

// 月份 //
.layui-laydate .laydate-month-list > li {
    margin: .9375vw 0;
}

@media screen and (max-width: 1600px) {
    .layui-laydate .layui-laydate-header {
        font-size: 14px;
    }

    .layui-laydate .layui-laydate-content {
        font-size: 12px;
    }
}

@media screen and (max-width: 1440px) {
    .layui-laydate .layui-laydate-header {
        height: 45px;
        line-height: 45px;
    }

        .layui-laydate .layui-laydate-header i.laydate-prev-y,
        .layui-laydate .layui-laydate-header i.laydate-prev-m {
            left: 22.5px;
        }

        .layui-laydate .layui-laydate-header i.laydate-next-y,
        .layui-laydate .layui-laydate-header i.laydate-next-m {
            right: 22.5px;
        }

    .layui-laydate .laydate-set-ym span {
        padding: 0 9px;
    }

    .layui-laydate .layui-laydate-content {
        padding: 0 13.5px 13.5px;
    }

        .layui-laydate .layui-laydate-content td,
        .layui-laydate .layui-laydate-content th {
            height: 31.5px;
            line-height: 31.5px;
        }

    .layui-laydate .laydate-day-mark {
        width: 31.5px;
        height: 31.5px;
    }

        .layui-laydate .layui-laydate-list > li.li-mark:after,
        .layui-laydate .laydate-day-mark::after {
            width: 4.5px;
            height: 4.5px;
        }

    .layui-laydate .layui-laydate-list > li {
        height: 40.5px;
        line-height: 40.5px;
    }

    .layui-laydate .laydate-month-list > li {
        margin: 13.5px 0;
    }
}*/
/* layui-laydate END */

/* event-detail-wrapper */
/*.event-detail-wrapper {
    background-color: var(--color-plain);
}

.article-container.event-container .article-title-wrapper {
    flex: 1;
}

.article-container.event-container {
    display: flex;
    width: 71.458333vw;
    align-items: flex-start;
}

    .article-container.event-container .event-content {
        background-color: #fff;
        padding: 2.5vw;
        flex: 1;
    }

.event-content-right {
    margin-left: .625vw;
    width: 18.75vw;
    position: sticky;
    position: -webkit-sticky;
    top: 10px;
    transition: all .3s ease-in-out;
}

.header-fixed.menu-show .event-content-right {
    top: calc(4.21875vw + 10px);
}

.event-content-right .side-item {
    background-color: #fff;
    border-top: .3125vw solid var(--color-darkblue);
    padding: 1.5625vw;
}

.event-content-right .side-head {
    color: var(--color-darkblue);
    display: flex;
    align-items: center;
}

.event-content-right .side-head {
    padding-bottom: 1.09375vw;
    margin-bottom: 1.25vw;
    border-bottom: 1px solid var(--border-color);
}

    .event-content-right .side-head .iconfont {
        margin-right: .625vw;
    }

.event-content-right .side-body .info span {
    display: flex;
}

.event-content-right .side-body .info .iconfont {
    margin-right: .625vw;
}

.event-content-right .side-body .info span + span {
    margin-top: .9375vw;
}

.event-content-right .side-body .layui-btn {
    width: 100%;
    margin-top: 1.875vw;
    margin-bottom: 1.25vw;
    font-weight: bold;
}

.event-content-right .side-body .share-btn {
    display: flex;
    align-items: center;
}

    .event-content-right .side-body .share-btn .icon i {
        color: var(--color-text-secondary);
        cursor: pointer;
        transition: all .3s ease-in-out;
    }

        .event-content-right .side-body .share-btn .icon i:hover {
            color: var(--color-darkblue);
        }

        .event-content-right .side-body .share-btn .icon i + i {
            margin-left: .3125vw;
            font-size: 1.2em;
        }

@media screen and (max-width: 1440px) {
    .article-container.event-container {
        width: 1080px;
    }

    .event-content-right {
        margin-left: 10px;
        width: 270px;
    }
}

@media screen and (max-width: 1439px) {
    .header-fixed.menu-show .event-content-right {
        top: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .article-container.event-container {
        width: 100%;
    }

    .event-content-right {
        margin-left: 10px;
        width: 270px;
    }
}

@media screen and (max-width: 991px) {
    .article-container.event-container {
        display: block;
    }

        .article-container.event-container .event-content {
            padding: 25px;
        }

    .event-content-right .side-item {
        padding: 25px;
        border-top-width: 3px;
    }

    .event-content-right {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
        width: 100%;
    }

    .header-fixed.menu-show .event-content-right {
        top: 92px;
    }

    .event-content-right .side-head {
        margin-bottom: 15px;
        padding-bottom: 15px;
    }

        .event-content-right .side-body .info .iconfont,
        .event-content-right .side-head .iconfont {
            margin-right: 6px;
        }

    .event-content-right .side-body .info span + span {
        margin-top: 9px;
    }

    .event-content-right .side-body .layui-btn {
        margin: 18px 0 15px;
    }

    .event-content-right .side-body .share-btn .icon i + i {
        margin-left: 6px;
    }
}

@media screen and (max-width: 567px) {
    .event-detail-wrapper {
        background-color: #fff;
    }

    .article-container.event-container .event-content {
        padding: 0;
    }

    .event-content-right {
        margin-top: .6rem;
    }

        .event-content-right .side-item {
            background-color: var(--color-plain);
            padding: .3rem;
        }

        .event-content-right .side-head {
            margin-bottom: .4rem;
            padding-bottom: .2rem;
        }

        .event-content-right .side-body .info span + span {
            margin-top: .18rem;
        }

        .event-content-right .side-body .layui-btn {
            margin: .36rem 0 .3rem;
        }
}*/
/* event-detail-wrapper END */

/* event-section */
/*.article-container.event-container .event-content .ala-section .section-head {
    padding-bottom: 1.09375vw;
    margin-bottom: 1.5625vw;
    border-bottom: 1px solid var(--border-color);
    color: var(--color-darkblue);
    line-height: 1.5;
}

    .article-container.event-container .event-content .ala-section .section-head .iconfont {
        margin-right: .625vw;
    }

@media screen and (max-width: 1440px) {
    .article-container.event-container .event-content .ala-section .section-head {
        margin-bottom: 25px;
        padding-bottom: 15px;
    }
}

@media screen and (max-width: 991px) {
    .article-container.event-container .event-content .ala-section .section-head .iconfont {
        margin-right: 6px;
    }

    .article-container.event-container .event-content .ala-section + .ala-section {
        margin-top: 30px;
    }
}

@media screen and (max-width: 567px) {
    .article-container.event-container .event-content .ala-section .section-head {
        margin-bottom: .5rem;
        padding-bottom: .3rem;
    }

    .article-container.event-container .event-content .ala-section + .ala-section {
        margin-top: .6rem;
    }
}*/
/* event-section END */

/* sitemap */
/*弹窗动画*/
.layui-layer.tc-sitemap.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-sitemap {
    left: 3.125vw!important;
    right: 0!important;
    width: unset!important;
}

    .layui-layer.tc-sitemap .layui-layer-content {
        height: 100%!important;
    }

    .layui-layer.tc-sitemap .sitemap-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

.sitemap {
    height: 100%;
}

.sitemap-container .sitemap-head,
.sitemap-container .sitemap-body {
    width: 100%;
}

.sitemap-container .sitemap-head {
    font-weight: bold;
    color: #fff;
    background-color: var(--color-darkblue);
    line-height: 1;
    padding: 0 9.375vw;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
}

    .sitemap-container .sitemap-head:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-size: auto 80%;
        opacity: .05;
    }

    .sitemap-container .sitemap-head img {
        width: 23vw;
    }

.sitemap-container .sitemap-body {
    flex: 1;
    background-color: #fff;
    overflow: hidden;
    padding: 2.5vw 9.375vw;
}

    .sitemap-container .sitemap-body .scrollbar-box {
        height: 100%;
        overflow: hidden;
    }

.sitemap .sitemap-section {
    margin-bottom: 1.5625vw;
    padding-bottom: 1.5625vw;
    border-bottom: 1px solid var(--border-color);
}

.sitemap a {
    transition: all .3s ease-in-out;
    display: block;
}

.sitemap .first-title {
    font-weight: bold;
}

.sitemap .second-title .iconfont {
    opacity: 0;
    transform: scale(.8);
    font-weight: bold;
    display: inline-block;
    transition: opacity .3s ease-in-out;
}

.sitemap .second-title:hover .iconfont {
    opacity: 1;
}

.sitemap .third-list {
    margin: .9375vw 0;
    padding-left: .625vw;
    border-left: 1px solid var(--border-color);
}

    .sitemap .third-list .third-title {
        color: var(--color-text-secondary-grey);
        margin-bottom: .3125vw;
    }

        .sitemap .third-list .third-title:hover {
            color: var(--color-darkblue);
        }

@media screen and (max-width: 1440px) {
    .layui-layer.tc-sitemap {
        left: 45px!important;
    }

    .sitemap-container .sitemap-head {
        height: 75px;
    }

    .sitemap .sitemap-section {
        margin-bottom: 22.5px;
        padding-bottom: 22.5px;
    }

    .sitemap .third-list {
        margin-bottom: 13.5px;
        padding-left: 9px;
    }

        .sitemap .third-list .third-title {
            margin-bottom: 4.5px;
        }

    .sitemap-container .sitemap-head {
        padding: 34px 9.375vw;
    }

    .sitemap-container .sitemap-body {
        padding: 36px 9.375vw;
    }
}
/* sitemap END */


/*.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
    background-color: var(--color-darkblue);
}

.mCSB_scrollTools .mCSB_draggerRail {
    background-color: unset;
}

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


/* search-layer */
/*弹窗动画*/
.layui-layer.tc-search.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-search {
    left: 0!important;
    right: 0!important;
    width: unset!important;
    z-index: 98!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-color: var(--color-darkblue);
        color: #fff;
        right: 3.125vw;
        top: 1.25417vw;
    }

.search-layer {
    height: 100%;
}

.search-container .search-head,
.search-container .search-body {
    width: 100%;
}

.search-container .search-head {
    font-weight: bold;
    color: #fff;
    background-color: #fff;
    line-height: 1;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

    .search-container .search-head .logo img {
        height: 3.375vw;
    }

.search-container .search-body {
    flex: 1;
    background-color: var(--color-plain);
    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.png) right 2.1875vw bottom no-repeat;
        background-size: 18.75vw;
        z-index: 0;
    }

    .search-container .search-body .layui-form .type-radio-group {
        margin-bottom: .15625vw;
        display: flex;
        align-items: center;
    }

    .search-container .search-body .layui-form .item + .item {
        margin-left: .15625vw;
    }

    .search-container .search-body .layui-form .layui-form-radio {
        margin: 0;
        padding: 0 1.25vw;
        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;
        transition: all .3s ease-in-out;
    }

        .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: var(--color-darkblue);
        }

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

    .search-container .search-body .layui-form {
        max-width: 60vw;
        margin: 0 auto;
        padding-bottom: 3.25vw;
    }

        .search-container .search-body .layui-form .layui-input {
            background-color: #fff;
            border-radius: 25px 0 0 25px;
        }

        .search-container .search-body .layui-form .layui-form-select {
            margin-right: .3125vw;
        }

@media screen and (max-width: 1439px) {
    .layui-layer.tc-search {
        left: 45px!important;
    }

    .search-container .search-head {
        height: 75px;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        line-height: 36px;
        top: 19.5px;
    }

    .search-container .search-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;
        }

        .search-container .search-body .layui-form .type-radio-group {
            margin-bottom: 2px;
        }

        .search-container .search-body .layui-form .item + .item {
            margin-left: 2px;
        }
}

@media screen and (max-width: 1199px) {
    .layui-layer.tc-search {
        left: 0px!important;
    }

    .search-container .search-body:after {
        border-bottom-width: 1px;
        background-size: 200px;
    }

    .search-container .search-body .layui-form {
        max-width: 720px;
    }

        .search-container .search-body .layui-form .layui-form-radio {
            min-width: 80px;
        }
}

@media screen and (max-width: 991px) {
    .layui-layer.tc-search {
        left: 0px!important;
    }

    .search-container .search-body:after {
        border-bottom-width: 1px;
        background-size: 200px;
    }

    .search-container .search-head {
        height: 82px;
    }
}

@media screen and (max-width: 767px) {
    .search-container .search-body:before {
        width: 85%;
        height: 75%;
    }

    .search-container .search-body .layui-form .item {
        flex: 1;
    }

    .search-container .search-body .layui-form .type-radio-group {
        margin-bottom: 1px;
    }

    .search-container .search-body .layui-form .item + .item {
        margin-left: 1px;
    }

    .search-container .search-body .layui-form .layui-form-radio {
        min-width: 0;
    }

    .search-container .search-body .layui-form > .ala-flex {
        display: block;
    }

    .search-container .search-body .layui-form .layui-btn {
        margin-top: 15px;
        justify-content: center;
        width: 100%;
    }

    .search-container .search-body .layui-form .layui-input {
        border-radius: 25px;
    }

    .layui-btn.is-small {
        border-radius: 25px;
    }
}

@media screen and (max-width: 567px) {
    .search-container .search-head .logo img {
        height: .64rem;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        right: .32rem;
    }

    .search-container .search-body .layui-form .layui-form-select {
        margin-right: 0;
        margin-bottom: 5px;
    }
}


@media screen and (min-width: 992px) {
    .show-search .header-main {
        /* display: none; */
        opacity: 0;
        transition: all .3s ease-in-out;
    }

        .show-search .header-main a {
            cursor: default;
            pointer-events: none;
        }

    .show-search header {
        background-color: transparent;
    }

        .show-search header:after {
            content: unset;
        }

        .show-search header .header-top {
            background-color: #fff;
        }
}

.show-search .layui-layer-shade {
    z-index: 0!important;
    opacity: 0!important;
}

.show-search header .search-btn {
    background-color: var(--color-darkblue);
    color: #fff;
}

    .show-search header .search-btn .icon-search:before {
        content: "\e60b";
        font-weight: bold;
    }

.show-search header .secondary-nav .layui-nav {
    display: none;
}
/* search-layer END */

/* user-list */
/*.user-list .item {
    padding: 2.5vw 1.5625vw;
    position: relative;
    background-color: transparent;
    transition: all .3s ease-in-out;
}

    .user-list .item:hover {
        background-color: var(--color-darkblue);
        color: #fff;
    }

    .user-list .item > * {
        position: relative;
    }

    .user-list .item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background: linear-gradient(to bottom, rgba(19, 172, 189, .15) 0%, rgba(19, 172, 189, 0) 100%);
    }

    .user-list .item .icon {
        width: 3.4375vw;
        height: 3.4375vw;
        background-size: auto 3.4375vw;
        background-position: -3.4375vw 0;
        transition: all .3s ease-in-out;
    }

    .user-list .item:hover .icon {
        background-position: 0 0;
    }

    .user-list .item .text {
        padding: 0 .78125vw;
        flex: 1;
    }

    .user-list .item .iconfont {
        color: var(--color-text-secondary-grey);
        transition: all .3s ease-in-out;
    }

    .user-list .item:hover .iconfont {
        color: #fff;
    }

@media screen and (max-width: 1200px) {
    .user-list .item {
        padding: 30px 18.75px;
    }

        .user-list .item .text {
            padding: 0 10px;
        }

        .user-list .item .icon {
            width: 42px;
            height: 42px;
            background-size: auto 42px;
            background-position: -42px 0;
        }

        .user-list .item:hover .icon {
            background-position: 0 0;
        }
}

@media screen and (max-width: 567px) {
    .user-list .item {
        padding: .4rem .3rem;
    }

        .user-list .item .text {
            padding: 0 10px;
        }

        .user-list .item .icon {
            width: .72rem;
            height: .72rem;
            background-size: auto .72rem;
            background-position: -.72rem 0;
        }

        .user-list .item:hover .icon {
            background-position: 0 0;
        }
}*/
/* user-list END */

/* list-horizon */
/*.list-horizon .item {
    display: flex;
    background-color: var(--color-plain);
    border-top: 0.3125vw solid var(--color-darkblue);
    padding: 2.8125vw;
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

    .list-horizon .item + .item {
        margin-top: 2.34375vw;
    }

    .list-horizon .item.open,
    .list-horizon .item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

    .list-horizon .item .item-img {
        width: 15.625vw;
    }

        .list-horizon .item .item-img .img-box {
            position: relative;
            width: 100%;
            overflow: hidden;
        }

            .list-horizon .item .item-img .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .list-horizon .item .item-content {
        margin-left: 2.65625vw;
        flex: 1;
        position: relative;
    }

        .list-horizon .item .item-content .title {
            line-height: 1.2;
        }

        .list-horizon .item .item-content .tags,
        .list-horizon .item .item-content .info {
            margin-top: .9375vw;
        }

            .list-horizon .item .item-content .info span {
                display: block;
            }

                .list-horizon .item .item-content .info span + span {
                    margin-top: .3125vw;
                }

        .list-horizon .item .item-content hr {
            margin: 1.875vw 0;
            border-bottom: 1px solid var(--border-color);
        }

        .list-horizon .item .item-content .content {
            margin-bottom: 1.875vw;
        }

            .list-horizon .item .item-content .content .text {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                display: -moz-box;
                -webkit-line-clamp: 3;
                line-clamp: 3;
                -webkit-box-orient: vertical;
            }

    .list-horizon .item:not(.open) .item-content .content .text p {
        display: inline;
    }

    .list-horizon .item.open .item-content .content .text {
        -webkit-line-clamp: unset;
        line-clamp: unset;
    }

    .list-horizon .item .toggle-btn {
        background-color: var(--color-darkblue);
        color: #fff;
        line-height: 1;
        padding: .78125vw 1.5625vw;
        display: inline-block;
        cursor: pointer;
        position: absolute;
        left: 0;
        bottom: -2.8125vw;
    }

        .list-horizon .item .toggle-btn .iconfont {
            transform: scale(.9);
            display: inline-block;
        }

        .list-horizon .item .toggle-btn.hide-btn {
            display: none;
        }

@media screen and (max-width: 1199px) {
    .list-horizon .item .item-content {
        display: block;
    }

    .list-horizon .item .toggle-btn {
        padding: 9px 18px;
    }

    .list-horizon .item .item-content .content {
        margin-bottom: 30px;
    }

    .list-horizon .item + .item {
        margin-top: 28px;
    }
}

@media screen and (max-width: 991px) {
    .list-horizon .item {
        border-top-width: 3px;
    }

        .list-horizon .item .item-content .info,
        .list-horizon .item .item-content .tags {
            margin-top: 12px;
        }

            .list-horizon .item .item-content .info span + span {
                margin-top: 6px;
            }
}

@media screen and (max-width: 767px) {
    .list-horizon .item {
        padding: 20px;
    }

        .list-horizon .item .toggle-btn {
            bottom: -20px;
        }

        .list-horizon .item .item-content .content {
            margin-bottom: 30px;
        }

        .list-horizon .item .item-content hr {
            margin: 15px 0;
        }
}

@media screen and (max-width: 567px) {
    .list-horizon .item {
        padding: .4rem;
        display: block;
    }

        .list-horizon .item + .item {
            margin-top: .4rem;
        }

        .list-horizon .item .item-img {
            width: 100%;
        }

        .list-horizon .item .item-content {
            margin-left: 0;
            margin-top: .4rem;
        }

        .list-horizon .item .toggle-btn {
            bottom: -1rem;
        }

        .list-horizon .item .item-content .content {
            margin-bottom: .6rem;
        }

        .list-horizon .item .item-content hr {
            margin: .3rem 0;
        }
}*/
/* list-horizon END */

/* course-list */
/*.course-list .course-item {
    display: block;
    background-color: var(--color-plain);
    border-bottom: 0.3125vw solid var(--color-darkblue);
    padding: 2.8125vw;
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

    .course-list .course-item + .course-item {
        margin-top: 2.34375vw;
    }

    .course-list .course-item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

    .course-list .course-item .content {
        position: relative;
    }

    .course-list .course-item .title-wrap {
        margin-bottom: 1.875vw;
        font-weight: bold;
        color: var(--color-text-regular);
    }

    .course-list .course-item .info-item .label {
        color: var(--color-text-secondary-grey);
    }

    .course-list .course-item .info-item .value {
        color: var(--color-text-regular);
        font-weight: bold;
    }

    .course-list .course-item .desc-content {
        margin-top: .78125vw;
    }

        .course-list .course-item .desc-content p,
        .course-list .course-item .desc-content li {
            margin-bottom: .625vw;
        }

        .course-list .course-item .desc-content.scrollbar-box {
            max-height: 140px;
            overflow: hidden;
        }

    .course-list .course-item:hover .mce-content-body {
        color: var(--color-text-regular);
    }

    .course-list .course-item .content .left-column:after {
        content: "";
        position: absolute;
        right: 0;
        top: 2.5vw;
        bottom: 2.5vw;
        width: 1px;
        background-color: var(--border-color);
    }

    .course-list .course-item .content {
        overflow: hidden;
    }

    .course-list .course-item .more-btn {
        position: absolute;
        right: 53%;
        bottom: 0;
        transform: rotate(-20deg) scale(0);
        transition: all .4s ease-in-out;
        z-index: 2;
    }

    .course-list .course-item:hover .more-btn {
        transform: rotate(-20deg) scale(1);
    }

    .course-list .course-item .more-btn:hover {
        transform: rotate(0) scale(1);
    }

    .course-list .course-item .item-section + .item-section {
        border-top: 1px solid var(--border-color);
        margin-top: 1.5625vw;
        padding-top: 1.5625vw;
    }

@media screen and (max-width: 1199px) {
    .course-list .course-item + .course-item {
        margin-top: 28px;
    }

    .course-list .course-item .title-wrap {
        margin-bottom: 25px;
    }

    .course-list .course-item .item-section + .item-section {
        margin-top: 20px;
        padding-top: 20px;
    }
}

@media screen and (max-width: 991px) {
    .course-list .course-item {
        border-bottom-width: 3px;
    }
}

@media screen and (max-width: 767px) {
    .course-list .course-item {
        padding: 20px;
    }

        .course-list .course-item .content .left-column:after {
            content: "";
            position: absolute;
            right: 15px;
            left: 15px;
            top: unset;
            bottom: 0;
            height: 1px;
            width: unset;
            background-color: var(--border-color);
        }

        .course-list .course-item .title-wrap {
            margin-bottom: 20px;
        }

        .course-list .course-item .more-btn {
            right: 0px;
        }

        .course-list .course-item .item-section + .item-section {
            margin-top: 15px;
            padding-top: 15px;
        }

        .course-list .course-item .desc-content.scrollbar-box {
            max-height: unset;
        }
}

@media screen and (max-width: 567px) {
    .course-list .course-item {
        padding: .4rem;
        display: block;
    }

        .course-list .course-item + .course-item {
            margin-top: .4rem;
        }

        .course-list .course-item .title-wrap {
            margin-bottom: .4rem;
        }
}*/
/* course-list END */

/*.filter .score-change {
    background-color: var(--color-darkblue);
    color: #fff;
    position: relative;
}

    .filter .score-change .layui-col-xs6:nth-of-type(1) {
        border-right: 1px solid rgba(255, 255, 255, .25);
    }

    .filter .score-change .text {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    .filter .score-change .iconfont {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        width: 1.875vw;
        height: 1.875vw;
        line-height: 1.875vw;
        text-align: center;
        background-color: #fff;
        border-radius: 50%;
        color: var(--color-text-regular);
    }

    .filter .score-change .layui-form-select {
        display: inline-block;
        width: unset!important;
        margin: 0 auto;
    }

    .filter .score-change .layui-input {
        background-color: transparent;
        border-color: transparent;
        color: #fff;
    }

        .filter .score-change .layui-input::-webkit-input-placeholder {
            color: #fff;
        }
        // 使用webkit内核的浏览器 //
        .filter .score-change .layui-input:-moz-placeholder {
            color: #fff;
        }
        // Firefox版本4-18 //
        .filter .score-change .layui-input::-moz-placeholder {
            color: #fff;
        }
        // Firefox版本19+ //
        .filter .score-change .layui-input:-ms-input-placeholder {
            color: #fff;
        }
    // IE浏览器 //
    .filter .score-change .layui-edge {
        color: #fff;
    }

    .filter .score-change .layui-row {
        margin-top: 0;
        margin-bottom: 0;
    }

    .filter .score-change .layui-col-xs6 {
        padding-top: 0;
        padding-bottom: 0;
    }

@media screen and (max-width: 1439px) {
    .filter .score-change .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }
}*/

/* contact-info */
/*.contact-info span {
    display: block;
}

    .contact-info span + span {
        margin-top: .625vw;
    }

.contact-info .iconfont {
    display: inline-block;
    text-align: center;
    width: 1.875vw;
    height: 1.875vw;
    line-height: 1.875vw;
    border-radius: 50%;
    background-color: var(--color-darkblue);
    color: #fff;
    margin-right: 0.625vw;
}

@media screen and (max-width: 1439px) {
    .contact-info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
        margin-right: 9px;
    }

    .contact-info span + span {
        margin-top: 9px;
    }
}

@media screen and (max-width: 991px) {
    .contact-info span + span {
        margin-top: 6px;
    }
}

@media screen and (max-width: 567px) {
    .contact-info .iconfont {
        margin-right: 0.18rem;
        width: 0.54rem;
        height: 0.54rem;
        line-height: .54rem;
        font-size: .3rem;
    }
}*/
/* contact-info END */

/* job-list */
/*.job-list {
    border-top: 0;
}

.home-announcement.job-list .announcement-item {
    padding: 2.1875vw;
    border-top: .3125vw solid var(--color-darkblue);
    background-color: var(--color-plain);
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

    .home-announcement.job-list .announcement-item:after,
    .home-announcement.job-list .announcement-item:before {
        content: unset;
    }

    .home-announcement.job-list .announcement-item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

@media screen and (max-width: 991px) {
    .home-announcement.job-list .announcement-item {
        border-top-width: 3px;
    }
}*/
/* job-list END */

/* job-detail */
/*.job-detail .job-title {
    font-weight: bold;
    border-bottom: .3125vw solid var(--color-darkblue);
    padding-bottom: .9375vw;
    margin-bottom: .9375vw;
}

.job-detail table th,
.job-detail table td {
    border-bottom: 1px solid var(--border-color);
    padding: 1.5625vw 0;
    vertical-align: top;
    text-align: left;
}

@media screen and (max-width: 1199px) {
    .job-detail .job-title {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }

    .job-detail table th,
    .job-detail table td {
        padding: 18px 0;
    }
}

@media screen and (max-width: 991px) {
    .job-detail .job-title {
        border-bottom-width: 3px;
    }
}*/
/* job-detail END */

/* alumni-swiper */
/*.alumni-swiper {
    position: relative;
}

    .alumni-swiper .swiper-slide {
        height: 100%!important;
    }

    .alumni-swiper .swiper-container {
        padding-bottom: 18px;
    }

.alumni-list .alumni-item {
    display: block;
    justify-content: space-between;
    background-color: var(--color-plain);
    border: 1px solid var(--border-color);
    border-top: 0;
    padding: 2.1875vw 1.875vw;
    transition: all .3s ease-in-out;
    position: relative;
    height: 100%;
    box-shadow: unset;
}

.block.grey .alumni-item,
.alumni-item.bg_white {
    background-color: #fff;
}

.alumni-list .alumni-item:hover {
    background-color: #fff;
    box-shadow: 2px 4px 18px 2px #CCCCCC;
}

.alumni-list .alumni-item:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: .3125vw;
    background-color: var(--color-darkblue);
}

.alumni-list .alumni-item > * {
    display: block;
    width: 100%;
}

.alumni-list .alumni-item .text-box {
    color: var(--color-text-secondary-grey);
    padding-top: 1.25vw;
    border-top: 1px solid var(--border-color);
}

    .alumni-list .alumni-item .text-box .desc {
        color: var(--color-text-secondary-grey);
        line-height: 1.8;
    }

    .alumni-list .alumni-item .text-box .quote {
        color: var(--color-text-placeholder);
        opacity: .5;
    }

    .alumni-list .alumni-item .text-box .quote-right {
        text-align: right;
    }

        .alumni-list .alumni-item .text-box .quote-right i {
            transform: rotate(180deg);
            display: inline-block;
        }

.alumni-list .alumni-item .alumni-info {
    margin-bottom: 2.03125vw;
    display: flex;
    align-items: center;
    width: 100%;
    transition: all .3s ease-in-out;
}

    .alumni-list .alumni-item .alumni-info .avatar {
        width: 5.20833vw;
        height: 5.20833vw;
        position: relative;
        padding: .3125vw;
        border-radius: 50%;
        background-color: rgba(0, 0, 0, .1);
    }

        .alumni-list .alumni-item .alumni-info .avatar img {
            width: 100%;
            height: 100%;
            border-radius: 50%;
            object-fit: cover;
        }

    .alumni-list .alumni-item .alumni-info .info {
        flex: 1;
        margin-left: 1.041667vw;
        line-height: 1.3;
    }

        .alumni-list .alumni-item .alumni-info .info .title {
            color: var(--color-text-secondary-grey);
            margin-top: .46875vw;
            transition: all .3s ease-in-out;
        }

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

    .alumni-list .alumni-item {
        padding: 30px 27px;
    }

        .alumni-list .alumni-item .alumni-info .info {
            margin-left: 15px;
        }

        .alumni-list .alumni-item .alumni-info .avatar {
            width: 75px;
            height: 75px;
            padding: 4.5px;
        }
}

@media screen and (max-width: 1199px) {
    .alumni-list .alumni-item .text-box {
        padding-top: 15px;
    }

    .alumni-list .alumni-item .alumni-info .info {
        margin-left: 10px;
    }
}

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

    .alumni-swiper .ala-swiper .swiper-pagination {
        bottom: -26px;
    }

    .alumni-list .alumni-item .alumni-info {
        margin-bottom: 25px;
    }

        .alumni-list .alumni-item .alumni-info .info .title {
            margin-top: 5px;
        }

    .alumni-list .alumni-item:before {
        height: 3px;
    }
}

@media screen and (max-width: 767px) {
    .alumni-swiper {
        padding-left: 0;
        padding-right: 0;
    }

        .alumni-swiper .swiper-btn {
            display: none;
        }
}

@media screen and (max-width: 567px) {
    .alumni-swiper .swiper-slide {
        height: auto!important;
    }
}*/
/* alumni-swiper END */

/*.service-list .service-item {
    display: block;
    position: relative;
    transition: all .3s ease-in-out;
    display: flex;
    align-items: center;
}

.service-list .service-item {
    padding: 1.25vw .78125vw;
    cursor: pointer;
    border-top: 1px solid var(--border-color-base);
    ;
}

    .service-list .service-item:before,
    .service-list .service-item:after {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        width: 100%;
        background-color: var(--border-color-base);
    }

    .service-list .service-item:after {
        width: 0;
        transition: all .3s ease-in-out;
        background-color: var(--color-darkblue);
    }

    .service-list .service-item.active,
    .service-list .service-item:hover {
        color: var(--color-darkblue);
    }

        .service-list .service-item:hover:after {
            width: 100%;
        }

    .service-list .service-item + .service-item {
        border-top: 0;
    }

    .service-list .service-item .icon {
        width: 3.4375vw;
        height: 3.4375vw;
        margin-right: .9375vw;
        background-size: auto 3.4375vw;
        background-position: -3.4375vw 0;
        overflow: hidden;
        background-repeat: no-repeat;
        transition: all .3s ease-in-out;
    }

    .service-list .service-item.active .icon,
    .service-list .service-item:hover .icon {
        background-position: 0 0;
    }

    .service-list .service-item .title {
        flex: 1;
    }

    .service-list .service-item .iconfont {
        opacity: 0;
        transition: opacity .3s ease-in-out;
    }

    .service-list .service-item:hover .iconfont {
        opacity: 1;
    }

@media screen and (max-width: 1200px) {
    .service-list .service-item {
        padding: 15px 10px;
    }

        .service-list .service-item .icon {
            width: 42px;
            height: 42px;
            margin-right: 12px;
            background-size: auto 42px;
            background-position: -42px 0;
        }

        .service-list .service-item.active .icon,
        .service-list .service-item:hover .icon {
            background-position: 0 0;
        }
}

@media screen and (max-width: 991px) {
    .service-list .service-item .iconfont {
        margin-left: 10px;
        opacity: 1;
    }
}

@media screen and (max-width: 767px) {
    .service-list .service-item {
        width: 100%;
    }

    .service-list .service-item {
        padding: 15px 0;
    }

    .service-list .layui-row {
        margin: 0;
    }

        .service-list .layui-row > * {
            padding: 0;
        }

    .service-list .layui-col-xs12:not(:nth-of-type(1)) .service-item:nth-of-type(1) {
        border-top: 0;
    }
}

@media screen and (max-width: 567px) {
    .service-list .service-item {
        padding: .3rem 0;
    }

        .service-list .service-item .icon {
            width: .72rem;
            height: .72rem;
            margin-right: 10px;
            background-size: auto .72rem;
            background-position: -.72rem 0;
        }

        .service-list .service-item.active .icon,
        .service-list .service-item:hover .icon {
            background-position: 0 0;
        }

    .service-list {
        font-size: .36rem;
    }
}*/

/* icon-title */
/*.icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 1.25vw;
}

    .icon-title .icon {
        width: 2.5vw;
        height: 2.5vw;
        line-height: 2.5vw;
        text-align: center;
        border-radius: 50%;
        background-color: var(--color-darkblue);
        color: #fff;
        margin-right: .46875vw;
    }

        .icon-title .icon img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
        }

@media screen and (max-width: 1439px) {
    .icon-title {
        margin-bottom: 18px;
    }

        .icon-title .icon {
            width: 36px;
            height: 36px;
            line-height: 36px;
            margin-right: 6px;
        }
}

@media screen and (max-width: 567px) {
    .icon-title .icon {
        width: 0.72rem;
        height: 0.72rem;
        line-height: .72rem;
        margin-right: .12rem;
    }
}*/
/* icon-title END */

/* jxfz-block */
/*.jxfz-block .jxfz-item {
    display: block;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover!important;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 10.9375vw 7.8125vw 8.33333vw;
    height: 100%;
}

    .jxfz-block .jxfz-item > * {
        position: relative;
    }

    .jxfz-block .jxfz-item:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border: 1px solid #fff;
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .jxfz-block .jxfz-item:hover:before {
        left: 1.875vw;
        right: 1.875vw;
        top: 1.875vw;
        bottom: 1.875vw;
        opacity: .35;
    }

    .jxfz-block .jxfz-item .title {
        margin: 1.09375vw 0 2.08333vw;
        padding-bottom: 1.5625vw;
        position: relative;
        line-height: 1;
    }

        .jxfz-block .jxfz-item .title:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            height: .1041667vw;
            background-color: #fff;
            width: 2.34375vw;
            transform: translateX(-50%);
        }

    .jxfz-block .jxfz-item .icon {
        width: 4.375vw;
        height: 4.375vw;
        background-repeat: no-repeat;
        background-position: 0 0;
        background-size: auto 100%;
        border-radius: 50%;
        position: relative;
        margin: 0 auto;
    }

    .jxfz-block .jxfz-item:hover .icon:before {
        background-color: rgba(255, 255, 255, .2);
        border-color: transparent;
    }

    .jxfz-block .jxfz-item:hover .icon {
        background-position: -4.375vw 0;
    }

@media screen and (max-width: 1200px) {
    .jxfz-block .jxfz-item {
        padding: 10.9375vw 6.66667vw 8.33333vw;
    }

        .jxfz-block .jxfz-item .title:after {
            width: 28px;
        }
}

@media screen and (max-width: 991px) {
    .jxfz-block .jxfz-item .icon {
        width: 40px;
        height: 40px;
    }

    .jxfz-block .jxfz-item:hover .icon {
        background-position: -40px 0;
    }

    .jxfz-block .jxfz-item .title {
        margin: 10px 0 20px;
        padding-bottom: 15px;
    }

    .jxfz-block .jxfz-item:before {
        border-width: 1px;
    }

    .jxfz-block .jxfz-item .title:after {
        height: 1px;
    }
}

@media screen and (max-width: 767px) {
    .jxfz-block .jxfz-item .icon {
        width: .8rem;
        height: .8rem;
    }

    .jxfz-block .jxfz-item:hover .icon {
        background-position: -.8rem 0;
    }

    .jxfz-block .jxfz-item .title {
        margin: .2rem 0 .4rem;
        padding-bottom: .3rem;
    }

        .jxfz-block .jxfz-item .title:after {
            width: .56rem;
        }

    .jxfz-block .jxfz-item:before {
        border-width: .02rem;
    }

    .jxfz-block .jxfz-item .title:after {
        height: .02rem;
    }
}*/
/* jxfz-block END */

/* jxsys_intro_block */
/*.jxsys_intro_block:before {
    content: "";
    position: absolute;
    left: 0;
    width: 50%;
    bottom: -6.25vw;
    top: 0;
    background: url(../images/bg_building.png) bottom center no-repeat;
    background-size: 55% auto;
}

@media screen and (max-width: 991px) {
    .jxsys_intro_block:before {
        content: unset;
    }
}*/
/* jxsys_intro_block END */

/* list-img */
/*.list-img {
    margin-bottom: 4.16667vw;
}

    .list-img .item {
        padding: 0 4.16667vw;
        position: relative;
        background-color: var(--color-plain);
        border-top: 0.3125vw solid var(--color-darkblue);
        box-shadow: unset;
        transition: all .3s ease-in-out;
    }

        .list-img .item + .item {
            margin-top: 6.25vw;
        }

        .list-img .item:hover {
            background-color: #fff;
            box-shadow: 2px 4px 18px 2px #CCCCCC;
        }

    .list-img.odd .item:nth-of-type(odd) .layui-row {
        flex-direction: row-reverse;
    }

    .list-img.even .item:nth-of-type(even) .layui-row {
        flex-direction: row-reverse;
    }

    .list-img .item .img-swiper {
        transform: translateY(2.08333vw);
        margin-top: 2.08333vw;
        position: relative;
    }

        .list-img .item .img-swiper .swiper-pagination {
            bottom: .625vw;
        }

    .list-img .item .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 66.66666%;
        position: relative;
        overflow: hidden;
    }

        .list-img .item .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

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

    .list-img .item .text-box {
        padding: 4.16667vw 0;
        position: relative;
        min-height: 100%;
        overflow: hidden;
    }

        .list-img .item .text-box .title,
        .list-img .item .text-box .info {
            color: var(--color-darkblue);
            font-weight: bold;
        }

        .list-img .item .text-box .info {
            margin-top: .46875vw;
            display: flex;
            align-items: center;
        }

            .list-img .item .text-box .info .iconfont {
                width: 1.875vw;
                height: 1.875vw;
                text-align: center;
                line-height: 1.875vw;
                background-color: var(--color-darkblue);
                color: #fff;
                border-radius: 50%;
                font-weight: normal;
                margin-right: .3125vw;
            }

        .list-img .item .text-box .desc {
            margin-top: 1.5625vw;
            position: relative;
            z-index: 2;
        }

            .list-img .item .text-box .desc li {
                margin-bottom: 0;
            }

        .list-img .item .text-box .num {
            color: var(--color-darkblue);
            font-size: 9.375vw;
            -webkit-text-stroke: 1px var(--color-darkblue);
            text-stroke: 1px var(--color-darkblue);
            color: transparent;
            font-style: italic;
            transition: all .3s ease-in-out;
            position: absolute;
            left: 0;
            bottom: 0;
            line-height: .75;
            transform: translate(-8%,30%);
            opacity: .3;
            letter-spacing: -.05em;
            font-family: "PoppinsSemiBold";
            z-index: 1;
        }

    .list-img .item:hover .num {
        color: var(--color-darkblue);
        -webkit-text-stroke: unset;
        text-stroke: unset;
        opacity: .15;
    }

@media screen and (max-width: 1199px) {
    .list-img .item .text-box .info {
        margin-top: 5px;
    }

        .list-img .item .text-box .info .iconfont {
            width: 27px;
            height: 27px;
            line-height: 27px;
            margin-right: 5px;
        }
}

@media screen and (max-width: 991px) {
    .list-img .item {
        border-top-width: 3px;
    }

        .list-img .item + .item {
            margin-top: 28px;
        }

        .list-img .item .img-swiper {
            transform: unset;
            margin: 4.16667vw 0;
        }

        .list-img .item .text-box .desc {
            margin-top: 15px;
        }
}

@media screen and (max-width: 767px) {
    .list-img .item .img-swiper {
        margin-top: 0;
    }

    .list-img {
        margin-bottom: 0;
    }

        .list-img .item .text-box .num {
            font-size: 65px;
            left: unset;
            right: 0;
            bottom: unset;
            top: 0;
            transform: translate(-20%,8%);
        }
}

@media screen and (max-width: 567px) {
    .list-img .item {
        padding: .4rem;
        display: block;
    }

        .list-img .item + .item {
            margin-top: .4rem;
        }

        .list-img .item .text-box {
            padding: 0;
            margin-bottom: .4rem;
        }

        .list-img .item .img-swiper {
            margin: 0;
        }

        .list-img .item .text-box .info {
            margin-top: .1rem;
        }

            .list-img .item .text-box .info .iconfont {
                width: .54rem;
                height: .54rem;
                line-height: .54rem;
                margin-right: .1rem;
            }

        .list-img .item .text-box .desc {
            margin-top: .3rem;
        }

        .list-img .item .text-box .num {
            font-size: 1rem;
        }
}*/
/* list-img END */

/* post-panel */
/*.post-panel {
    padding: 3.125vw;
    position: relative;
    background-color: var(--color-plain);
    border-top: 0.3125vw solid var(--color-darkblue);
    transition: all .3s ease-in-out;
}

    .post-panel > *,
    .post-panel .intro-box,
    .post-panel .intro-box .top > * {
        position: relative;
    }

        .post-panel .intro-box > * {
            width: 100%;
        }

    .post-panel .intro-box {
        height: 100%;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        position: relative;
    }

        .post-panel .intro-box .bg {
            position: absolute;
            width: unset;
            top: -3.125vw;
            left: -3.125vw;
            right: -2.5vw;
            bottom: -3.125vw;
            background-repeat: no-repeat;
            background-size: 100% auto;
            background-position: left bottom;
        }

    .post-panel .layui-col-xs12:nth-of-type(1) .intro-box:after {
        content: "";
        position: absolute;
        right: -2.5vw;
        width: 1px;
        background-color: #CED9D7;
        top: -3.125vw;
        bottom: -3.125vw;
    }

    .post-panel .intro-box .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 56.26%;
        position: relative;
    }

        .post-panel .intro-box .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .post-panel .intro-box .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }


    .post-panel .post-box .title-wrap {
        padding-bottom: 1.09375vw;
        margin-bottom: 1.5625vw;
        border-bottom: 1px solid var(--border-color);
    }

        .post-panel .post-box .title-wrap .title {
            font-weight: bold;
        }

    .post-panel .swiper-btn .swiper-button-next,
    .post-panel .swiper-btn .swiper-button-prev {
        height: 1.25vw;
        border-radius: 0;
        font-size: .625vw;
        background-color: var(--color-darkblue);
        color: #fff;
        transition: all .3s ease-in-out;
    }

        .post-panel .swiper-btn .swiper-button-next:hover,
        .post-panel .swiper-btn .swiper-button-prev:hover {
            background-color: #fff;
            color: var(--color-darkblue);
        }

    .post-panel .swiper-btn .swiper-button-next {
        margin-left: .208333vw;
    }

        .post-panel .swiper-btn .swiper-button-next:after {
            content: "\e625";
        }

    .post-panel .swiper-btn .swiper-button-prev:after {
        content: "\e87f";
    }

    .post-panel .panel-swiper {
        overflow: hidden;
    }

    .post-panel .post-item {
        display: flex;
    }

        .post-panel .post-item + .post-item {
            margin-top: 1.5625vw;
            padding-top: 1.5625vw;
            border-top: 1px solid var(--border-color);
        }

        .post-panel .post-item .img-box {
            width: 13.54167vw;
            height: 8.59375vw;
            position: relative;
        }

            .post-panel .post-item .img-box .img {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            .post-panel .post-item .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

        .post-panel .post-item .text-box {
            flex: 1;
            padding-left: 1.40625vw;
        }

            .post-panel .post-item .text-box .time {
                color: var(--color-darkblue);
            }

            .post-panel .post-item .text-box .title {
                line-height: 1.3;
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                margin-top: .625vw;
            }

            .post-panel .post-item .text-box .desc {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                color: var(--color-text-secondary-grey);
                margin-top: .625vw;
            }

@media screen and (max-width: 1440px) {
    .post-panel .swiper-btn .swiper-button-next,
    .post-panel .swiper-btn .swiper-button-prev {
        height: 18px;
        font-size: 12px;
    }

    .post-panel .swiper-btn .swiper-button-next {
        margin-left: 3px;
    }
}

@media screen and (max-width: 1199px) {
    .post-panel .post-box .title-wrap {
        margin-bottom: 20px;
        padding-bottom: 12px;
    }

    .post-panel .post-item + .post-item {
        margin-top: 20px;
        padding-top: 20px;
    }

    .post-panel .post-item .text-box {
        padding-left: 15px;
    }

    .post-panel .post-item .img-box {
        width: 162px;
        height: 103px;
    }

    .post-panel .post-item .text-box .title,
    .post-panel .post-item .text-box .desc {
        margin-top: 8px;
    }
}

@media screen and (max-width: 991px) {
    .post-panel {
        padding: 3.125vw;
        border-top-width: 3px;
    }

        .post-panel .intro-box {
            min-height: 33.3333vw;
        }

        .post-panel .layui-col-xs12:nth-of-type(1) .intro-box:after {
            content: unset;
        }

        .post-panel .intro-box .bg {
            top: -3.125vw;
            bottom: -2.5vw;
            right: -3.125vw;
        }
}

@media screen and (max-width: 767px) {
    .post-panel .intro-box .bg {
        bottom: -15px;
    }

    .post-panel .post-box .title-wrap {
        margin-top: 10px;
    }
}

@media screen and (max-width: 567px) {
    .post-panel {
        padding: .4rem;
    }

        .post-panel .intro-box {
            padding-bottom: .1rem;
        }

            .post-panel .intro-box .bg {
                top: -.4rem;
                right: -.4rem;
                left: -.4rem;
            }

        .post-panel .post-box .title-wrap {
            margin-top: .1rem;
            margin-bottom: .4rem;
            padding-bottom: .24rem;
        }

        .post-panel .post-item + .post-item {
            padding-top: .4rem;
            margin-top: .4rem;
        }

        .post-panel .post-item .text-box {
            padding-left: 0;
            padding-top: .3rem;
        }

        .post-panel .post-item .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 66.66666%;
        }

        .post-panel .post-item {
            display: block;
        }
}*/
/* post-panel END */

/* association-list */
/*.association-list .item {
    display: block;
    position: relative;
}

    .association-list .item > * {
        position: relative;
    }

    .association-list .item:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        border: 1px solid var(--border-color);
        opacity: 0;
        transition: all .3s ease-in-out;
    }

    .association-list .item:hover:after {
        left: .78125vw;
        right: .78125vw;
        top: .78125vw;
        bottom: .78125vw;
        opacity: .5;
    }

    .association-list .item .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        position: relative;
    }

        .association-list .item .img-box .img {
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
        }

        .association-list .item .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .association-list .item .text-box {
        background-color: var(--color-plain);
        height: 100%;
        padding: 2.5vw;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        transition: all .3s ease-in-out;
        text-align: center;
    }

        .association-list .item .text-box:after {
            content: "";
            position: absolute;
            top: 50%;
            left: 100%;
            transform: translateY(-50%);
            border: .46875vw solid transparent;
            border-left: .78125vw solid var(--color-plain);
            z-index: 9;
            transition: all .3s ease-in-out;
        }

    .association-list .item:hover .text-box:after {
        border-left-color: var(--color-darkblue);
    }

    .association-list .item .text-box .icon {
        width: 3.4375vw;
        height: 3.4375vw;
        background-size: auto 3.4375vw;
        background-position: 0 0;
        overflow: hidden;
        background-repeat: no-repeat;
        transition: all .3s ease-in-out;
    }

    .association-list .item:hover .text-box .icon {
        background-position: -3.4375vw 0;
    }

    .association-list .item .text-box .title {
        margin: .9375vw 0;
        font-weight: bold;
    }

    .association-list .item .text-box .desc {
        color: var(--color-text-secondary-grey);
        transition: all .3s ease-in-out;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }

    .association-list .item:hover .text-box {
        background-color: var(--color-darkblue);
        color: #fff;
    }

        .association-list .item:hover .text-box .desc {
            color: #fff;
        }

@media screen and (min-width: 992px) {
    .association-list .item-col:nth-of-type(4n) .item .layui-row,
    .association-list .item-col:nth-of-type(4n-1) .item .layui-row {
        flex-direction: row-reverse;
    }

    .association-list .item-col:nth-of-type(4n) .item .text-box:after,
    .association-list .item-col:nth-of-type(4n-1) .item .text-box:after {
        border-left: .46875vw solid transparent;
        border-right: .78125vw solid var(--color-plain);
        left: unset;
        right: 100%;
    }

    .association-list .item-col:nth-of-type(4n) .item:hover .text-box:after,
    .association-list .item-col:nth-of-type(4n-1) .item:hover .text-box:after {
        border-left-color: transparent;
        border-right-color: var(--color-darkblue);
    }
}

@media screen and (max-width: 1200px) {
    .association-list .item .text-box .icon {
        width: 42px;
        height: 42px;
        background-size: auto 42px;
        background-position: 0 0;
    }

    .association-list .item:hover .text-box .icon {
        background-position: -42px 0;
    }

    .association-list .item .text-box:after {
        border: 6px solid transparent;
        border-left: 9px solid var(--color-plain);
    }

    .association-list .item:hover .text-box:after {
        border-left-color: var(--color-darkblue);
    }
}

@media screen and (max-width: 1200px) and (min-width: 992px) {
    .association-list .item-col:nth-of-type(4n) .item .text-box:after,
    .association-list .item-col:nth-of-type(4n-1) .item .text-box:after {
        border-left: 6px solid transparent;
        border-right: 9px solid var(--color-plain);
    }

    .association-list .item-col:nth-of-type(4n) .item:hover .text-box:after,
    .association-list .item-col:nth-of-type(4n-1) .item:hover .text-box:after {
        border-left-color: transparent;
        border-right-color: var(--color-darkblue);
    }
}

@media screen and (max-width: 991px) and (min-width: 568px) {
    .association-list .item-col:nth-of-type(2n) .item .layui-row {
        flex-direction: row-reverse;
    }

    .association-list .item-col:nth-of-type(2n) .item .text-box:after {
        border-left: 6px solid transparent;
        border-right: 9px solid var(--color-plain);
        left: unset;
        right: 100%;
    }

    .association-list .item-col:nth-of-type(2n) .item:hover .text-box:after {
        border-left-color: transparent;
        border-right-color: var(--color-darkblue);
    }
}

@media screen and (max-width: 567px) {
    .association-list .item .layui-row {
        flex-direction: column-reverse;
    }

    .association-list .item .text-box .icon {
        width: 0.72rem;
        height: 0.72rem;
        margin-right: 10px;
        background-size: auto 0.72rem;
        background-position: 0 0;
    }

    .association-list .item:hover .text-box .icon {
        background-position: -0.72rem 0;
    }

    .association-list .item .text-box {
        padding: .4rem;
    }

        .association-list .item .text-box .title {
            margin: .2rem 0;
        }

    .association-list .item:hover:after {
        left: .2rem;
        right: .2rem;
        top: .2rem;
        bottom: .2rem;
    }

    .association-list .item .text-box:after {
        border-left: 6px solid transparent;
        border-bottom: 9px solid var(--color-plain);
        ;
        left: 50%;
        transform: translateX(-50%);
        top: unset;
        bottom: 100%;
    }

    .association-list .item:hover .text-box:after {
        border-left-color: transparent;
        border-bottom-color: var(--color-darkblue);
    }
}*/
/* association-list END */

/*.img-container {
    border: 1px solid var(--border-color);
    text-align: center;
    display: flex;
    align-items: center;
}

    .img-container .item {
        padding: 3.75vw;
        text-align: center;
        display: block;
    }

        .img-container .item + .item {
            border-left: 1px solid var(--border-color);
        }

    .img-container img {
        max-width: 100%;
        margin: 0 auto;
        width: unset;
        height: auto!important;
    }

@media screen and (max-width: 767px) {
    .img-container {
        display: block;
    }

        .img-container .item {
            padding: 20px;
        }

            .img-container .item + .item {
                border-left: unset;
                border-top: 1px solid var(--border-color);
            }
}

@media screen and (max-width: 567px) {
    .img-container .item {
        padding: .3rem;
    }
}

.xszz-section .img-container .item + .item {
    border: unset!important;
}*/

/* kctx-list */
/*.kctx-list .kctx-item {
    height: 100%;
    display: flex;
    align-items: center;
    margin-bottom: 0;
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

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

    .kctx-list .kctx-item .title {
        color: var(--color-darkblue);
        margin-bottom: .625vw;
    }

    .kctx-list .kctx-item .icon-box {
        width: 5.208333vw;
        margin-left: 15%;
    }

        .kctx-list .kctx-item .icon-box img {
            width: 100%;
            opacity: .2;
            transition: all .3s ease-in-out;
        }

    .kctx-list .kctx-item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

        .kctx-list .kctx-item:hover .desc {
            color: var(--color-text-regular);
        }

        .kctx-list .kctx-item:hover .icon-box img {
            opacity: 1;
        }

@media screen and (max-width: 1200px) {
    .kctx-list .kctx-item .title {
        margin-bottom: 8px;
    }
}

@media screen and (max-width: 767px) {
    .kctx-list .kctx-item .icon-box {
        width: 36px;
        margin-left: 20px;
    }
}

@media screen and (max-width: 767px) {
    .kctx-list .kctx-item .icon-box {
        width: .72rem;
        margin-left: .4rem;
    }
}*/
/* kctx-list END */

/* download-list */
/*.download-list .item .text-box {
    display: flex;
    padding: 1.25vw 1.5625vw;
}

.download-list .text-box .iconfont {
    color: var(--color-darkblue);
    margin-right: .78125vw;
    transition: all .3s ease-in-out;
}

.download-list .item:hover .text-box .iconfont {
    color: #fff;
}

.download-list .item.is-img {
    border: 1px solid var(--border-color);
    padding: 3.125vw;
    background-color: #fff;
    height: 18.75vw;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .download-list .item.is-img:before {
        content: unset;
    }

    .download-list .item.is-img .img-box {
        height: 100%;
        width: 50%;
    }

    .download-list .item.is-img img {
        display: block;
        margin: 0 auto;
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

@media screen and (max-width: 1199px) {
    .download-list .item .text-box {
        padding: 15px;
    }

    .download-list .text-box .iconfont {
        margin-right: 9px;
    }
}

@media screen and (max-width: 767px) {
    .download-list .item.is-img {
        height: 36vw;
    }

        .download-list .item.is-img .img-box {
            height: 80%;
        }
}

.download-list .slide .img-box {
    background-color: var(--color-plain);
}

    .download-list .slide .img-box img {
        object-fit: contain;
    }

.download-list .slide .text-box {
    padding-bottom: 0;
    margin-top: 1.25vw;
    overflow: hidden;
    text-overflow: ellipsis;
}

.download-list .slide .title {
    flex: 1;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-right: .625vw;
}

.download-list .slide .text-box .icon {
    width: 2.5vw;
    height: 2.5vw;
    line-height: 2.5vw;
    text-align: center;
    border-radius: 50%;
    background-color: var(--color-darkblue);
    color: #fff;
}

    .download-list .slide .text-box .icon i {
        color: inherit;
        font-size: inherit;
        margin-right: 0;
    }

.download-list .slide .cover {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
    opacity: 0;
    transition: all .3s ease-in-out;
    background-color: rgba(0, 0, 0, .2);
}

.download-list .slide:hover .cover {
    opacity: 1;
}

@media screen and (max-width: 1439px) {
    .download-list .slide .text-box .icon {
        width: 36px;
        height: 36px;
        line-height: 36px;
    }
}

@media screen and (max-width: 1199px) {
    .download-list .slide .text-box {
        margin-top: 15px;
    }
}

@media screen and (max-width: 567px) {
    .download-list .slide .text-box .icon {
        width: 0.72rem;
        height: 0.72rem;
        line-height: .72rem;
    }

    .download-list .slide .text-box {
        margin-top: .3rem;
    }
}*/
/* download-list END */

/* report-list */
/*.report-list .item {
    padding: 1.875vw 1.5625vw;
    background-color: var(--color-plain);
    transition: all .3s ease-in-out;
    display: flex;
}

    .report-list .item:before,
    .report-list .item:hover::before {
        width: 0.15625vw;
    }

    .report-list .item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
        color: inherit;
    }

    .report-list .item .text-box {
        padding: 0;
        padding-left: 1.5625vw;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

        .report-list .item .text-box .title {
            line-height: 1.3;
        }

    .report-list .item .img-box {
        width: 10.416667vw;
        height: 14.0625vw;
    }

        .report-list .item .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .report-list .item .layui-btn {
        height: 2.5vw;
        line-height: 2.5vw;
        margin-top: .9375vw;
    }

@media screen and (max-width: 1400px) {
    .report-list .item .layui-btn {
        height: 36px;
        line-height: 36px;
    }
}

@media screen and (max-width: 1199px) {
    .report-list .item {
        padding: 20px 15px;
    }

        .report-list .item .text-box {
            padding-left: 15px;
        }

        .report-list .item .img-box {
            width: 120px;
            height: 162px;
        }
}*/
/* report-list END */

/* logo-card */
/*.logo-swiper .swiper-slide {
    height: auto;
}

.logo-card {
    height: 100%;
    border: 1px solid var(--border-color);
}

    .logo-card .img-box {
        padding-bottom: 47.62%;
        background-color: var(--color-plain);
    }

        .logo-card .img-box .img:before {
            content: unset;
        }

    .logo-card .desc-box {
        position: relative;
        border: 0;
    }

        .logo-card .desc-box:before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 0;
            height: .3125vw;
            background-color: var(--color-darkblue);
            transition: all .3s ease-in-out;
        }

        .logo-card .desc-box .desc {
            -webkit-line-clamp: unset;
            line-clamp: unset;
        }

        .logo-card .desc-box .title {
            color: var(--color-darkblue);
            font-weight: bold;
        }

    .logo-card:hover .desc-box:before {
        width: 100%;
    }

    .logo-card:hover {
        border-color: transparent;
    }

@media screen and (max-width: 991px) {
    .logo-card .desc-box:before {
        height: 3px;
    }
}*/
/* logo-card END */

/* scholarship-list */
/*.scholarship-list .ala-card .tip {
    background-color: #fff;
    border-radius: .46875vw;
    position: relative;
}

    .scholarship-list .ala-card .tip:after {
        content: "";
        position: absolute;
        left: 1.25vw;
        top: -.78125vw;
        width: 0;
        height: 0;
        border: 0.3125vw solid transparent;
        border-bottom: 0.46875vw solid rgba(255, 255, 255, 1);
    }

.scholarship-list .layui-col-xs12:nth-of-type(2) .ala-card:before {
    background-image: none;
}

.scholarship-list .layui-col-xs12:nth-of-type(3) .ala-card:before {
    background-image: url(../images/icon_sjtu_logo.png);
}

@media screen and (max-width: 1439px) {
    .scholarship-list .ala-card .tip:after {
        top: -11px;
        border-width: 4.5px;
        border-bottom-width: 6.5px;
    }

    .scholarship-list .ala-card .tip {
        border-radius: 6px;
    }
}

@media screen and (max-width: 567px) {
    .scholarship-list .ala-card .tip:after {
        top: -.22rem;
        border-width: .09rem;
        border-bottom-width: .13rem;
    }
}*/
/* scholarship-list END */

/* degree-list */
/*.degree-list .blockquote {
    position: relative;
    overflow: hidden;
    box-shadow: unset;
    transition: all .3s ease-in-out;
    display: flex;
    margin-bottom: 0;
}

    .degree-list .blockquote > * {
        position: relative;
    }

    .degree-list .blockquote .num {
        left: 1.875vw;
        right: unset;
    }

    .degree-list .blockquote:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }

    .degree-list .blockquote .icon img {
        width: 2.1875vw;
        height: 2.1875vw;
        object-fit: contain;
    }

    .degree-list .blockquote .text-box {
        flex: 1;
    }

    .degree-list .blockquote .img-box img {
        width: 9.375vw;
        display: block;
    }

@media screen and (max-width: 1199px) {
    .degree-list .blockquote .icon img {
        width: 24px;
        height: 24px;
    }

    .degree-list .blockquote .num {
        left: 20px;
    }
}

@media screen and (max-width: 991px) {
    .degree-list .blockquote .img-box img {
        width: 90px;
    }
}

@media screen and (max-width: 567px) {
    .degree-list .blockquote .icon img {
        width: .48rem;
        height: .48rem;
    }

    .degree-list .blockquote .img-box img {
        width: 1.8rem;
    }

    .degree-list .blockquote .num {
        left: .4rem;
    }
}*/
/* degree-list END */

/* degree-list */
/*.degree-list .item {
    text-align: center;
    position: relative;
}

    .degree-list .item .img-box {
        position: relative;
        width: 100%;
        padding-left: 10%;
        padding-right: 10%;
    }

        .degree-list .item .img-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            border-bottom: 1px solid var(--border-color);
        }

        .degree-list .item .img-box:after {
            content: "";
            position: absolute;
            left: 50%;
            bottom: 0;
            width: 1.09375vw;
            height: 1.09375vw;
            background: url(../images/icon_dot.png) center center no-repeat;
            background-size: contain;
            transform: translate(-50%,50%);
        }

        .degree-list .item .img-box img {
            width: 100%;
        }

    .degree-list .item .text-box {
        padding-left: 15%;
        padding-right: 15%;
    }

@media screen and (max-width: 1200px) {
    .degree-list .item .img-box:after {
        width: 13px;
        height: 13px;
    }
}

@media screen and (max-width: 767px) {
    .degree-list .item .text-box,
    .degree-list .item .img-box {
        padding-left: .1rem;
        padding-right: .1rem;
    }
}*/
/* degree-list END */

/* reason-list */
/*.reason-list .item {
    margin-bottom: 0;
    text-align: center;
    transition: all .3s ease-in-out;
    overflow: hidden;
    position: relative;
    height: 100%;
    border-top: 0;
    background-image: unset;
}

    .reason-list .item:before {
        content: "";
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        left: 0;
        opacity: 0;
        background: url(../images/icon_speit_logo.png) center bottom no-repeat;
        background-size: auto 80%;
        transition: all .3s ease-in-out;
    }

    .reason-list .item:hover:before {
        opacity: 1;
    }

    .reason-list .item .num {
        transform: unset;
        left: 1.09375vw;
        top: 1.09375vw;
        bottom: unset;
        right: unset;
        font-size: 1.5625vw;
        color: var(--color-darkblue);
        -webkit-text-stroke: unset;
        text-stroke: unset;
        opacity: 1!important;
    }

@media screen and (min-width: 992px) {
    .reason-list .layui-col-xs12:nth-of-type(odd) .item {
        background-color: var(--color-darkblue);
        color: #fff;
    }

        .reason-list .layui-col-xs12:nth-of-type(odd) .item .num {
            color: #fff;
        }

        .reason-list .layui-col-xs12:nth-of-type(odd) .item:before {
            background: url(../images/icon_speit_logo_white.png) center bottom no-repeat;
            background-size: auto 80%;
        }
}

@media screen and (max-width: 1200px) {
    .reason-list .item .num {
        font-size: 22px;
        left: 12px;
        top: 12px;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .reason-list .layui-col-xs12:nth-of-type(4n+1) .item,
    .reason-list .layui-col-xs12:nth-of-type(4n+4) .item {
        background-color: var(--color-darkblue);
        color: #fff;
    }

        .reason-list .layui-col-xs12:nth-of-type(4n+1) .item .num,
        .reason-list .layui-col-xs12:nth-of-type(4n+4) .item .num {
            color: #fff;
        }

        .reason-list .layui-col-xs12:nth-of-type(4n+1) .item:before,
        .reason-list .layui-col-xs12:nth-of-type(4n+4) .item:before {
            background: url(../images/icon_speit_logo_white.png) center bottom no-repeat;
            background-size: auto 80%;
        }
}

@media screen and (max-width: 767px) {
    .reason-list .item {
        padding: 36px 25px;
    }

    .reason-list .layui-col-xs12:nth-of-type(odd) .item {
        background-color: var(--color-darkblue);
        color: #fff;
    }

        .reason-list .layui-col-xs12:nth-of-type(odd) .item .num {
            color: #fff;
        }

        .reason-list .layui-col-xs12:nth-of-type(odd) .item:before {
            background: url(../images/icon_speit_logo_white.png) center bottom no-repeat;
            background-size: auto 80%;
        }
}

@media screen and (max-width: 567px) {
    .reason-list .item {
        padding: .72rem .4rem;
    }

        .reason-list .item .num {
            font-size: .36rem;
            top: .24rem;
            left: .24rem;
        }
}*/
/* reason-list END */

/* contact-us */
/*.contact-us .blockquote {
    padding: 1.25vw 1.875vw;
}

.contact-us .icon {
    width: 3.4375vw;
    height: 3.4375vw;
    line-height: 3.2475vw;
    background-color: var(--color-darkblue);
    color: #fff;
    border-radius: 50%;
    text-align: center;
}

.contact-us .img-box img {
    width: 6.25vw;
}

.contact-us .text {
    flex: 1;
}

@media screen and (max-width: 1200px) {
    .contact-us .icon {
        width: 42px;
        height: 42px;
        line-height: 42px;
    }

    .contact-us .img-box img {
        width: 75px;
    }

    .contact-us .blockquote {
        padding: 15px 20px;
    }
}

@media screen and (max-width: 567px) {
    .contact-us .icon {
        width: .72rem;
        height: .72rem;
        line-height: .72rem;
    }

    .contact-us .img-box img {
        width: 1.2rem;
    }

    .contact-us .blockquote {
        padding: .3rem .4rem;
    }
}*/
/* contact-us END */

/* byqx-college */
/*.byqx-college {
    border-top: 1px solid var(--border-color);
}

    .byqx-college .item {
        border-bottom: 1px solid var(--border-color);
    }

    .byqx-college .title {
        color: var(--color-darkblue);
        font-weight: bold;
    }

    .byqx-college p {
        margin-bottom: .46875vw;
    }

    .byqx-college hr {
        margin: .9375vw 0;
    }

@media screen and (max-width: 991px) {
    .byqx-college p {
        margin-bottom: 6px;
    }

    .byqx-college hr {
        margin: 12px 0;
    }
}

@media screen and (max-width: 567px) {
    .byqx-college p {
        margin-bottom: .12rem;
    }

    .byqx-college hr {
        margin: .24rem 0;
    }
}*/
/* byqx-college END */

/* chart */
/*.lineChart {
    width: 100%;
    height: 28.125vw;
}

.pieChart {
    background-color: #fff;
    height: 23.4375vw;
    padding-top: 0;
    padding-bottom: 0;
}

@media screen and (max-width: 991px) {
    .pieChart,
    .lineChart {
        height: 400px;
    }
}

@media screen and (max-width: 767px) {
    .pieChart,
    .lineChart {
        height: 320px;
    }
}

@media screen and (max-width: 567px) {
    .pieChart,
    .lineChart {
        height: 6.4rem;
    }
}*/
/* chart END */

/* byqx-major */
/*.byqx-major .ala-card {
    border: 1px solid var(--border-color);
}

.byqx-major .title {
    color: var(--color-darkblue);
}

.byqx-major .column2 {
    column-gap: 5px;
    column-count: 2;
}*/
/* byqx-major END */

/* download-report */
/*.download-report {
    padding: 2.1875vw;
    color: #fff;
    background-color: var(--color-darkblue);
    background-image: url(../images/download-bg.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    text-align: center;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .download-report > * {
        position: relative;
    }

    .download-report::before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-color: rgba(0, 0, 0, .5);
    }

    .download-report:hover {
        color: #fff;
    }

@media screen and (max-width: 991px) {
    .download-report {
        padding: 24px 15px;
    }
}*/
/* download-report END */

/* cti-section */
/*.cti-section .slide-card .img-box {
    padding-bottom: 56.25%;
}

.cti-section .slide-card .text-box {
    border-bottom-width: .3125vw;
}

@media screen and (max-width: 991px) {
    .cti-section .slide-card .text-box {
        border-bottom-width: 3px;
    }
}*/
/* cti-section END */

/* awards-list */
/*.awards-list {
    padding: 2.34375vw 0;
    border-top: .3125vw solid var(--color-darkblue);
}

    .awards-list .year {
        color: var(--color-darkblue);
    }

    .awards-list .layui-timeline-time {
        color: var(--color-darkblue);
    }

    .awards-list .layui-timeline .layui-timeline-item:last-child:before {
        display: block;
    }

@media screen and (min-width: 1200px) {
    .awards-list .layui-timeline .layui-timeline-item:last-child:before {
        bottom: 1.875vw;
    }
}

@media screen and (max-width: 991px) {
    .awards-list {
        border-top-width: 3px;
    }

    .awards-list {
        padding: 24px 0;
    }
}*/
/* awards-list END */

/* giving-table */
/*.giving-table table {
    border-top: .3125vw solid var(--color-darkblue);
}

    .giving-table table th,
    .giving-table table td {
        border-bottom: 1px solid var(--border-color);
        padding: .9375vw .78125vw;
        vertical-align: top;
        text-align: left;
    }

@media screen and (max-width: 1199px) {
    .giving-table table th,
    .giving-table table td {
        padding: 9px 5px;
    }
}

@media screen and (max-width: 991px) {
    .giving-table table {
        border-top-width: 3px;
    }
}*/
/* giving-table END */

/* alumni-card */
/*.alumni-list .swiper-slide {
    height: auto;
}

.alumni-card {
    position: relative;
    overflow: hidden;
    height: 100%;
    background-color: var(--color-plain);
    border-bottom: 2px solid var(--color-darkblue);
    display: flex;
    flex-direction: column;
}

    .alumni-card .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 100%;
        overflow: hidden;
        position: relative;
    }

        .alumni-card .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

            .alumni-card .img-box .img img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .alumni-card .text-box {
        display: flex;
        flex-direction: column;
        flex: 1;
    }

        .alumni-card .text-box > * {
            width: 100%;
        }

        .alumni-card .text-box .top {
            flex: 1;
        }

        .alumni-card .text-box .name,
        .alumni-card .text-box .title {
            font-weight: bold;
        }

        .alumni-card .text-box .title {
            color: var(--color-darkblue);
            line-height: 1.3;
        }*/
/* alumni-card END */

/* history-swiper */
/*.history-swiper .item:hover {
    background-color: var(--color-plain);
    box-shadow: unset;
}

.history-swiper > .swiper-container {
    padding-bottom: 2.08333vw;
}*/
/* history-swiper END */

/* history-swiper-year */
/*.history-swiper-year .year {
    color: var(--color-darkblue);
    font-weight: bold;
    line-height: 1;
    position: relative;
    display: inline-block;
    cursor: pointer;
}

    .history-swiper-year .year::before {
        content: "";
        position: absolute;
        left: 50%;
        width: .15625vw;
        height: .78125vw;
        background-color: var(--color-darkblue);
        transform: translateX(-50%);
        bottom: 0;
    }

.history-swiper-year .swiper-slide-thumb-active .year {
    color: var(--color-text-regular);
}

    .history-swiper-year .swiper-slide-thumb-active .year::before {
        background-color: var(--color-text-regular);
    }

@media screen and (max-width: 991px) {
    .history-swiper-year .year::before {
        width: 2px;
        height: 10px;
    }
}*/
/* history-swiper-year END */

/* boardmember-list */
/*.boardmember-list .scrollbar-box {
    max-height: 320px;
    overflow: hidden;
    margin-right: -1.875vw;
}

@media screen and (max-width: 991px) {
    .boardmember-list .scrollbar-box {
        margin-right: -20px;
    }
}

@media screen and (max-width: 567px) {
    .boardmember-list .scrollbar-box {
        margin-right: -.4rem;
    }
}*/
/* boardmember-list END */

/* leader-list */
/*.leader-list .people-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 20vw;
    margin: 0 auto;
}

    .leader-list .people-item:after,
    .leader-list .people-item.is-small .text-box:before {
        content: unset;
    }

    .leader-list .people-item.is-small .text-box {
        position: static;
        color: var(--color-text-regular);
        border: 1px solid var(--border-color);
        border-top: 0;
        width: 100%;
        flex: 1;
        padding: 1.40625vw .9375vw;
    }

.leader-list .text-box .info {
    color: var(--color-text-secondary-grey);
}

.leader-list .people-item .text-box .info .item {
    line-height: 1.5;
}

    .leader-list .people-item .text-box .info .item + .item {
        margin-top: 4px;
    }

@media screen and (max-width: 1440px) {
    .leader-list .people-item {
        max-width: 260px;
    }
}

@media screen and (max-width: 991px) {
    .leader-list .people-item.is-small .text-box {
        padding: 15px;
    }

    .leader-list .people-item {
        max-width: 100%;
    }
}

@media screen and (max-width: 567px) {
    .leader-list .people-item.is-small .text-box {
        padding: .3rem;
    }
}*/
/* leader-list END */

/*.alumni-list.faculty-swiper {
    padding: 0!important;
}*/

/* search-filter */
/*.search-filter {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 2.34275vw;
    overflow: hidden;
}

    .search-filter .category-filter {
        padding: 1.5625vw 0;
        margin: 0 -2.34275vw;
    }

        .search-filter .category-filter a {
            padding: 0 2.34275vw;
            color: var(--color-text-primary);
        }

            .search-filter .category-filter a.active {
                color: var(--color-darkblue);
            }

    .search-filter .ala-tag {
        background-color: var(--color-plain);
        line-height: 1.2;
        padding: 0.15625vw 0.46875vw;
        color: var(--color-text-secondary-grey);
        position: relative;
        top: -.1041667vw;
    }*/
/* search-filter END */

/* search-list */
/*.search-list .item {
    display: block;
    border-bottom: 1px dashed var(--border-color-lighter);
    padding-bottom: 1.5625vw;
    margin-bottom: 1.5625vw;
}

    .search-list .item .title {
        color: var(--color-text-primary);
    }

    .search-list .item:hover .title {
        color: var(--color-darkblue);
    }

    .search-list .item .desc {
        color: var(--color-text-secondary-grey);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .search-list .item .time {
        color: var(--color-text-secondary);
    }*/
/* search-list END */

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

        .search-filter .category-filter {
            padding: 18px 0;
        }

    .search-list .item {
        padding-bottom: 18px;
        margin-bottom: 18px;
    }

    .search-filter .ala-tag {
        padding: 2px 6px;
    }
}

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

        .search-filter .category-filter {
            padding: .36rem 0;
        }

    .search-list .item {
        padding-bottom: .36rem;
        margin-bottom: .36rem;
    }

    .search-filter .category-filter {
        display: flex;
        justify-content: space-between;
    }

        .search-filter .category-filter a {
            flex: 1;
            text-align: center;
        }

    .search-filter .ala-tag {
        padding: .02rem .06rem;
    }
}*/

/* research-member */
/*.research-member .item {
    display: block;
}

    .research-member .item .title {
        color: var(--color-text-secondary);
    }*/
/* research-member END */


/* feedback */
/*.feedback .layui-form-label {
    width: 6.25vw;
    padding: 0;
    padding-right: 1.25vw;
    height: 3.4658333vw;
    line-height: 3.4658333vw;
    font-size: inherit;
}

.feedback .layui-input-block {
    margin-left: 6.25vw;
}

.feedback .layui-form {
    width: 50%;
    margin: 0 auto;
    max-width: 100%;
}

.feedback .layui-form-item {
    margin-bottom: .78125vw;
}

.feedback .layui-input-block .layui-btn + .layui-btn {
    margin-left: .78125vw;
}

@media screen and (max-width: 1439px) {
    .feedback .layui-form {
        width: 800px;
    }

    .feedback .layui-input-block .layui-btn + .layui-btn {
        margin-left: 12px;
    }

    .feedback .layui-form-item {
        margin-bottom: 12px;
    }

    .feedback .layui-form-label {
        padding-right: 18px;
    }

    .feedback .layui-form-label {
        height: 50px;
        line-height: 50px;
    }
}

@media screen and (max-width: 1920px) {
    .feedback .layui-form-label {
        width: 120px;
    }

    .feedback .layui-input-block {
        margin-left: 120px;
    }
}

@media screen and (max-width: 767px) {
    .feedback .layui-form-label {
        width: 90px;
    }

    .feedback .layui-input-block {
        margin-left: 90px;
    }
}*/
/* feedback END */

/* content_list */
.content_list {
    position: relative;
}

    .content_list .title {
        line-height: 2;
        color: var(--color-orange);
    }

    .content_list .datetime {
        line-height: 2.5;
        border-bottom: solid 2px var(--color-plain);
        color: var(--color-text-secondary);
    }

    .content_list .content {
        line-height: 2;
        padding: 1.12368vw 0;
    }
/* content_list END */
