/* 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-primary);
                }

            .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: var(--color-primary);
    position: relative;
    z-index: 99;
}

    header:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 1px;
        background-color: #fff;
    }

    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 rgba(255, 255, 255, 0.2);
    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: #fff;
            display: flex;
            align-items: center;
        }

            header .secondary-nav .layui-nav .layui-nav-item > a:hover {
                color: var(--color-orange);
            }

        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: #fff;
    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-primary);
    overflow: hidden;
}

header .secondary-btn + .secondary-btn {
    margin-left: .625vw;
}

header .search-btn:hover {
    color: var(--color-primary) !important;
    background-color: var(--color-plain) !important;
}

.headerTemp {
    height: 4.21875vw;
    display: none;
}

@media screen and (min-width: 992px) {
    .header-fixed header .header-main {
        position: fixed;
        background: var(--color-primary);
        left: 0; /*3.125vw*/
        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 2.121875vw;
            color: #fff;
            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: #fff;
        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: #fff;
        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-primary);
            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 .821875vw;
    }

    .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-primary);
    }

    /*.header-nav .layui-nav-child .submenu-item .second-column {
        position: absolute;
        left: 50%;
        top: 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-primary);
        }
    /* 下级菜单 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 21px;
    }
}

@media screen and (min-width: 1109px) and (max-width: 1200px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 17px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1109px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 11px;
    }
}

@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-primary);
            text-decoration: underline;
        }

    .header-nav .layui-nav-child .submenu-item:hover {
        color: var(--color-primary);
    }

    .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: 781px) {
    header .logo img {
        height: 37px;
    }
}

@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;
}

@media screen and (max-width: 567px) {
    .ala-swiper .swiper-pagination {
        bottom: -9vw;
    }
}

.ala-swiper .swiper-pagination-bullet {
    position: relative;
    background-color: unset;
    position: relative;
    width: .5vw;
    height: .5vw;
    border-radius: .5vw;
    opacity: 1;
    transition: all .3s ease-in-out;
    background-color: unset !important;
    border: 1.5px solid transparent !important;
    margin: 0 .6125vw !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: .5vw;
    height: .5vw;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background-color: var(--color-secondary);
}

.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;
    /* left: 50%;
    right: unset;
    width: 2.34375vw;
    transform: translateX(-50%); */
}

.ala-swiper .swiper-scrollbar-drag {
    background-color: unset;
    position: relative;
}

    .ala-swiper .swiper-scrollbar-drag:after {
        content: "";
        position: absolute;
        right: unset;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2.34375vw;
        transform: translateX(-50%);
        background: url(../images/icon_drag.png) right center no-repeat;
        background-size: contain;
        cursor: pointer;
    }

@media screen and (max-width: 1199px) {
    .ala-swiper .swiper-scrollbar,
    .ala-swiper .swiper-scrollbar-drag:after {
        width: 28px;
        height: 28px;
    }
}

@media screen and (max-width: 567px) {
    .ala-swiper .swiper-scrollbar {
        display: none;
    }
}
/* swiper-scrollbar END */

/* swiper-btn */
.swiper-btn {
    display: flex;
    align-items: center;
}

    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 2.5vw;
        height: 2.5vw;
        border-radius: 50%;
        background-color: var(--color-primary);
        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 6s linear;
            -o-transition: all 6s linear;
            transition: all 6s 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: .6vw;
    height: .6vw;
    background-color: #fff !important;
    color: #fff;
    background: transparent;
    transition: all .5s ease-in-out;
    position: relative;
    border-radius: 25px;
    cursor: pointer !important;
    margin-right: 0;
    opacity: 1;
}

    .banner .swiper-pagination-bullet + .swiper-pagination-bullet {
        margin-top: .52083vw;
    }

.banner .swiper-pagination-bullet-active {
    width: 1.8vw;
}

.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: 12px;
    }

        .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: .2rem;
        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*/

/*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: 30px 0 50px 0;
    }

    .block {
        padding: 50px 0;
    }
}

/* @media screen and (max-width:767px) {
    .block{
        padding: 40px 0;
    }
} */
/*block END*/

/*news-block*/
.news-block {
    background: url(../images/news-bg.png) center top;
    background-size: cover;
}

/*notice-block*/
.notice-block {
    background: url(../images/notice-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: right bottom;
}

/* notice-item END */
.notice-list {
    padding: 2.08vw;
    background-color: var(--color-plain);
    border-radius: 8px;
}

.notice-item {
    display: flex;
    align-items: center;
    padding: .875vw;
    border-bottom: 1px solid var(--border-color-base);
    transition: .5s;
}

    .notice-item:hover {
        transform: translateY(-.65vw);
    }

    .notice-item .calendar-box {
        width: 4.9vw;
        min-width: 82px;
        margin-right: 1.5625vw;
    }

        .notice-item .calendar-box .month {
            background: linear-gradient( 219deg, #207DDD 0%, #0D3C94 100%);
            color: #fff;
            text-align: center;
            border-radius: 8px 8px 0 0;
            padding: 0 -.46875vw;
            line-height: 1.5em;
            text-align: center;
        }

        .notice-item .calendar-box .day {
            text-align: center;
            padding: .3125vw .46875vw;
            background: linear-gradient( 219deg, #207DDD 0%, #0D3C94 100%);
            -webkit-background-clip: text;
            color: transparent;
            border: 1px solid #E0E0E0;
            border-top: none;
            border-radius: 0 0 8px 8px;
            font-weight: 600;
        }

.grey .notice-item .calendar-box .day {
    background-color: #fff;
}

.notice-item .text-box {
    flex: 1;
}

    .notice-item .text-box .title {
        font-family: 'PoppinsMedium';
        line-height: 1.8;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

.notice-item .desc {
    margin-top: var(--size-15);
    color: var(--color-text-secondary-grey);
}

    .notice-item .desc p + p {
        margin-top: var(--size-4);
    }

@media screen and (max-width: 567px) {
    .notice-item .calendar-box {
        min-width: 86px;
    }
}
/* notice-item END */

/*data-block*/
.data-block {
    background: url(../images/sstm-bg.png) center top;
    background-size: cover;
    margin-bottom: 1vw;
}

/* 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-primary);
}

.index_title_white {
    color: #fff;
}

.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: -.8vw;
    z-index: 1;
}

    .witr_back_title h4 {
        color: rgba(5, 40, 78, 0.1);
        font-weight: 700;
        opacity: 1;
    }

.back_title {
    position: absolute;
    top: -.8vw;
    z-index: -1;
}

    .back_title h4 {
        color: rgba(213, 215, 217, 0.2);
        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-primary);
    position: fixed;
    z-index: 997;
    display: block;
    width: 3.125vw;
    height: 3.125vw;
    line-height: 3.125vw;
    bottom: .9375vw;
    right: .9375vw;
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}

@media screen and (max-width: 1199px) {
    #button-to-top {
        width: 37.5px;
        height: 37.5px;
        line-height: 37.5px;
        right: 11.25px;
        bottom: 11.25px;
    }
}

/*footer*/
footer {
    background: var(--color-primary);
}

    footer,
    footer a,
    footer a:visited {
        color: rgba(255, 255, 255, 0.75);
    }

        footer a:hover,
        footer a:focus {
            color: var(--color-orange);
        }

        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 {
        color: var(--color-primary);
    }

    .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 .text-box {
        position: relative;
        padding-bottom: 1.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-primary);
            margin-bottom: .625vw;
        }

        .slide .text-box .more-btn {
            position: absolute;
            right: 8%;
            bottom: 0;
            transform: translateY(50%) rotate(-20deg) scale(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: 30px;
    }

        .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*/

/* post-list */
.post-list {
    position: relative;
    overflow: hidden;
}

    .post-list.has-border {
        padding-top: 3.75vw;
        border-top: .3125vw solid var(--color-primary);
    }

@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 .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 */

/* 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;
    }

/* stuwork-block */
.stuwork-block > * {
    position: relative;
}

.stuwork-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;
}

.stuwork-swiper {
    padding: 0 3.125vw 6.125vw;
    position: relative;
}

    .stuwork-swiper .ala-swiper .swiper-pagination {
        bottom: -3.75vw;
    }

    .stuwork-swiper .swiper-button-prev {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -3.75vw;
        transform: translateY(-50%);
    }

    .stuwork-swiper .swiper-button-next {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -3.75vw;
        transform: translateY(-50%);
    }

    .stuwork-swiper .swiper-slide {
        height: unset;
    }

    .stuwork-swiper .stuwork-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fff;
        border: 1px solid var(--border-color-base);
        border-top: 0;
        padding: 2.1875vw 1.875vw;
        transition: all .3s ease-in-out;
        position: relative;
        height: 100%;
    }

        .stuwork-swiper .stuwork-item:hover {
            transform: translateY(-.25vw);
        }

        .stuwork-swiper .stuwork-item:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: .3125vw;
            background-color: var(--color-primary);
        }

        .stuwork-swiper .stuwork-item > * {
            display: block;
            width: 100%;
        }

        .stuwork-swiper .stuwork-item .title {
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            transition: .5s;
            line-height: 1.8;
        }

        .stuwork-swiper .stuwork-item .desc {
            color: var(--color-text-secondary-grey);
            /*margin-top: 1.25vw;*/
            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;
        }

            .stuwork-swiper .stuwork-item .desc img {
                width: 100%;
                max-height: 13vw;
            }

        .stuwork-swiper .stuwork-item .stuwork-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;
        }

            .stuwork-swiper .stuwork-item .stuwork-info .avatar {
                width: 4.6875vw;
                height: 4.6875vw;
                position: relative;
                padding: .3125vw;
                border-radius: 50%;
                background-color: rgba(0, 0, 0, .1);
            }

                .stuwork-swiper .stuwork-item .stuwork-info .avatar img {
                    width: 100%;
                    height: 100%;
                    border-radius: 50%;
                    object-fit: cover;
                }

            .stuwork-swiper .stuwork-item .stuwork-info .info {
                flex: 1;
                margin-left: 1.041667vw;
                line-height: 1.3;
            }

                .stuwork-swiper .stuwork-item .stuwork-info .info .title {
                    color: var(--color-text-secondary-grey);
                    margin-top: .46875vw;
                    transition: all .3s ease-in-out;
                }

            .stuwork-swiper .stuwork-item:hover .stuwork-info .name,
            .stuwork-swiper .stuwork-item .stuwork-info:hover .name {
                color: var(--color-text-regular);
            }

            .stuwork-swiper .stuwork-item .stuwork-info .right {
                opacity: 0;
            }

        .stuwork-swiper .stuwork-item a.stuwork-info:hover {
            background-color: var(--color-primary);
            color: #fff;
        }


            .stuwork-swiper .stuwork-item a.stuwork-info:hover .title {
                color: #fff;
            }

            .stuwork-swiper .stuwork-item a.stuwork-info:hover .right {
                opacity: 1;
            }

@media screen and (max-width: 1439px) {
    .stuwork-swiper {
        padding: 0 45px;
    }

        .stuwork-swiper .stuwork-item {
            padding: 30px 27px;
        }

            .stuwork-swiper .stuwork-item .stuwork-info {
                padding: 15px;
            }

                .stuwork-swiper .stuwork-item .stuwork-info .info {
                    margin-left: 15px;
                }
}

@media screen and (max-width: 1199px) {
    .stuwork-swiper .stuwork-item .desc {
        margin-top: 15px;
        padding-top: 15px;
    }

    .stuwork-swiper .stuwork-item .stuwork-info {
        padding: 10px;
        border-radius: 4px;
    }

        .stuwork-swiper .stuwork-item .stuwork-info .info {
            margin-left: 10px;
        }

        .stuwork-swiper .stuwork-item .stuwork-info .avatar {
            width: 56px;
            height: 56px;
            padding: 3px;
        }
}

@media screen and (max-width: 991px) {
    .stuwork-swiper {
        padding-bottom: 20px;
    }

        .stuwork-swiper .ala-swiper .swiper-pagination {
            bottom: -26px;
        }

        .stuwork-swiper .stuwork-item .desc {
            margin-top: 15px;
            padding-top: 15px;
        }

        .stuwork-swiper .stuwork-item .stuwork-info {
            margin-top: 25px;
        }

            .stuwork-swiper .stuwork-item .stuwork-info .info .title {
                margin-top: 5px;
            }

        .stuwork-swiper .stuwork-item:before {
            height: 3px;
        }
}

@media screen and (max-width: 767px) {
    .stuwork-swiper {
        padding-left: 0;
        padding-right: 0;
    }

        .stuwork-swiper .swiper-btn {
            display: none;
        }

        .stuwork-swiper .stuwork-item .desc img {
            max-height: 150px;
        }
}
/* stuwork-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-primary);
}

.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.675vw 0;
    line-height: 1.8;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

/* .event-list .event-item:hover .title{
    text-decoration: underline;
} */
.event-list .event-item .tag {
    color: var(--color-primary);
    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;
    /* padding-bottom: 4.6875vw; */
}

.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;
    }

    /* .events-swiper .swiper-container {
        padding-bottom: 56px;
    } */
}

@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-announcement */
.home-announcement {
    background-color: rgba(235, 240, 242, 0.3);
}

    .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;
        /* border-bottom: 1px solid #D3DBDA; */
        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-primary);
            transition: all .3s ease-in-out;
        }

        .home-announcement .announcement-item:hover {
            transform: translateY(-1vw);
        }

            .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);
            /* opacity: 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;
        }

/* employment-block*/
.employment-block {
    background: url(../images/jyxx-bg.png) center bottom no-repeat;
    background-size: contain;
    padding-bottom: 16vw;
}

/* 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 a:hover {
        transform: translateY(-1vw);
    }

    .home-employment .announcement-item {
        display: block;
        padding: 2.8125vw 0;
        position: relative;
        /* border-bottom: 1px solid #D3DBDA; */
        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-primary);
            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);
            /* opacity: 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;
        }

/* .home-announcement .announcement-item:hover .title{
    color: var(--color-text-regular);
    text-decoration: underline;
} */
@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-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: 28%;
            z-index: 2;
            background-color: rgba(0, 85, 150, 0.80);
        }*/

        .news-swiper .news-item .img-box {
            position: relative;
            width: 100%;
            height: 75%;
            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: relative;
            width: 100%;
            height: 25%;
            z-index: 1;
            background-color: #fff;
        }

            .news-swiper .news-item .text-box .time {
                margin: 1.625vw 0 .625vw;
                color: var(--color-orange);
            }

            .news-swiper .news-item .text-box .title {
                margin-bottom: .625vw;
            }

        .news-swiper .news-item:hover .text-box .title {
            color: var(--color-primary);
        }

    .news-swiper .swiper-box {
        position: absolute;
        right: 0;
        bottom: 1vw;
        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;
        padding: .825vw 0;
    }

        .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-primary);
            transition: all .3s ease-in-out;
        }

        .news-list-wrap .news-hightlight:hover {
            transform: translateY(-.65vw);
        }

            .news-list-wrap .news-hightlight:hover:after {
                width: 100%;
            }

        .news-list-wrap .news-hightlight .title {
            line-height: 2;
            transition: all .3s ease-in-out;
            overflow: hidden;
            flex: 1;
        }

            .news-list-wrap .news-hightlight .title .text {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.8;
            }

        .news-list-wrap .news-hightlight:hover .title {
            color: var(--color-primary);
            /* text-decoration: underline; */
        }

        .news-list-wrap .news-hightlight .time {
            display: flex;
            align-items: center;
            padding-bottom: .625vw;
            color: var(--color-orange);
        }

        /*.news-list-wrap .news-hightlight .img img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 15vw;
            min-width: 150px;
            padding-top: 1.875vw;
        }*/
        .news-list-wrap .news-hightlight .right {
            width: 12.5vw;
            margin-left: 1.25vw;
        }

        .news-list-wrap .news-hightlight .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
        }

            .news-list-wrap .news-hightlight .img-box .img {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

                .news-list-wrap .news-hightlight .img-box .img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

.news-list .news-item {
    padding: 1.875vw 0;
    display: block;
    /* border-bottom: 1px solid var(--border-color); */
    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-primary);
        transition: all .3s ease-in-out;
    }

    .news-list .news-item:hover:after {
        width: 100%;
    }

    .news-list .news-item .time {
        color: var(--color-primary);
        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-primary);
        }

        .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-primary)!important;
        }

        .news-swiper .ala-swiper.is-white .swiper-pagination-bullet-active {
            border-color: var(--color-primary)!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;
        /* font-size: .3rem; */
    }

    .news-list-wrap .news-hightlight .time {
        padding: .2rem 0;
        padding-right: 0;
    }

    .news-list .news-item {
        padding: .5rem 0;
    }
}
/* home-news END */

/* inner-banner breadcrumb*/
.inner-banner {
    background-color: var(--color-plain);
}

    .inner-banner.banner-noImg {
        background-color: transparent;
    }

    .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 .text-box .page-desc p {
        text-indent: 30px;
    }

.inner-banner-text .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 66.66666%;
    position: relative;
    margin-top: 3vw;
}

.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-primary);
    border-top: .625vw solid var(--color-primary);
}

.inner-banner-text .img-box:after {
    right: 0;
    bottom: 0;
    border-right: .625vw solid var(--color-primary);
    border-bottom: .625vw solid var(--color-primary);
}

.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-primary);
    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) center center;
    background-size: cover;
    color: #fff;
    height: 28vw;
    /*text-shadow: 0 0 10px #fff;
    background-color: unset;*/
}

    .inner-banner.has-border .inner-banner-text {
        /*border-bottom: .3125vw solid var(--color-primary);*/
    }

        .inner-banner.has-noImg .inner-banner-text .text-box,
        .inner-banner.has-border .inner-banner-text .text-box {
            padding-bottom: 0 !important;
            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 */

/* 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-primary);
            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 */

/* secondary-menu */
.secondary-menu {
    position: sticky;
    position: -webkit-sticky;
    transition: all .3s ease-in-out;
    top: 10px;
    min-height: calc(100vh - 3.75vw - 10px);
    box-shadow: 0 0 5px #999;
    background: url(../images/menu_bg.png) center bottom no-repeat;
    background-size: 100% auto;
}

/*.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-primary);
    border-left: .3125vw solid var(--color-primary);
    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;
    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-primary);
    }

        .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-primary);
    padding-bottom: 1vw;
}

.secondary-menu-title {
    color: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .secondary-menu-title em {
        font-style: normal;
    }

.secondary-menu-right + .mce-content-body {
    margin-top: -.78125vw;
    margin-bottom: 1.5625vw;
}

@media screen and (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-primary);
        }

    .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 */

/* staff-item */
.staff-item {
    display: flex;
    background-color: var(--color-plain);
    border-top: 0.3125vw solid var(--color-primary);
    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: .46875vw 0;
            color: var(--color-orange);
        }

        .staff-item .staff-container .content {
            margin-top: .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-primary);
                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-primary);
        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;
    }

.list .szdw {
    border: 2px solid var(--color-primary);
    position: relative;
    margin-bottom: 1.09375vw;
    transition: all .3s ease-in-out;
}

    .list .szdw .title {
        width: 100%;
        background-color: var(--color-primary);
        color: #fff;
        line-height: 3;
        padding-left: 3.125vw;
        /*text-indent: 2rem;*/
    }

    .list .szdw .content {
        display: flex;
        padding: 2rem;
    }

@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-primary);
            transition: all .3s ease-in-out;
        }

        .list .item .right-box .icon-box {
            color: var(--color-primary);
            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 */

/* 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-primary);
    line-height: 1;
    padding: 0 9.375vw;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
}

    .sitemap-container .sitemap-head:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        background-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-primary);
        }

@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-primary);
}

.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; /*3.125vw*/
    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-primary);
        color: #fff;
        right: 3.125vw;
        top: 1.25417vw;
    }

.search-layer {
    height: 100%;
}

.search-container .search-head,
.search-container .search-body {
    width: 100%;
}

.search-container .search-head {
    font-weight: bold;
    color: #fff;
    background-color: #fff;
    line-height: 1;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

    .search-container .search-head .logo img {
        height: 3.375vw;
    }

.search-container .search-body {
    flex: 1;
    background-color: 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-primary);
        }

    .search-container .search-body .layui-form .layui-form-radioed {
        background-color: var(--color-primary);
        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-primary);
    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 */

/* content_list */
.content_list {
    position: relative;
}

    .content_list .title {
        line-height: 2;
        color: var(--color-primary);
        padding: 1vw 5vw;
    }

    .content_list .datetime {
        line-height: 2.5;
        border-bottom: solid 2px var(--color-plain);
        color: var(--color-text-secondary);
        padding-bottom: .5vw;
    }

    .content_list .content {
        padding: 1.12368vw 4vw;
    }

        .content_list .content p {
            line-height: 2;
        }
/* content_list END */
