/* layout */
.layout {
    width: 100%;
}

.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 */

/* body-container */
.body-container {
    flex: 1;
}
/* body-container END */
/* 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: rgba(255, 255, 255, 0.7);
    }

    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: 4.70833vw;
    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;
    }
}

@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: 3.71875vw;
        /*position: static;*/
    }

        .header-nav .layui-nav .layui-nav-item > .nav-title > a {
            display: block;
            display: inline-block;
            padding: 0 1.94vw;
            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 {
        color: var(--color-orange);
    }

    .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: .25625vw;
        background-color: var(--color-orange);
        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: #fff;
        padding: 1.125vw; /*2.8125vw 3.125vw;
        padding-bottom: 3.75vw;*/
        white-space: normal;
        line-height: 1.5;
        width: 12vw;
    }

    .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(255, 255, 255, .5);
        cursor: pointer;
    }

        .header-nav .layui-nav-child .submenu-item .toggle-btn > a {
            padding: .625vw 0;
            color: inherit;
            flex: 1;
        }

        .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 {
        font-weight: 700;
    }

    /*.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);
        }
}
/* header-nav 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: 1325px) and (max-width: 1420px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 1.75vw;
    }
}

@media screen and (min-width: 1276px) and (max-width: 1325px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 1.6vw;
    }
}

@media screen and (min-width: 1209px) and (max-width: 1276px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 1.45vw;
    }
}

@media screen and (min-width: 1124px) and (max-width: 1209px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 1.2vw;
    }
}

@media screen and (min-width: 1032px) and (max-width: 1124px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 10px;
    }
}

@media screen and (min-width: 992px) and (max-width: 1032px) {
    .header-nav .layui-nav .layui-nav-item > .nav-title > a {
        padding: 0 8px;
    }
}

@media screen and (max-width: 991px) {
    .headerTemp {
        height: 82px;
    }

    .header-fixed header {
        position: fixed;
        background: var(--color-primary);
        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-orange);
        }

            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-plain);
            }

    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: 74px;
        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-plain);
        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-fixed header {
        background: var(--color-primary);
    }

    header .logo img {
        height: .64rem;
    }
}

/*搜索弹窗动画*/
.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-plain);
    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-plain);
}

.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: 50vh;
        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);
    }
/* 放大动画 END */

.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: 8.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: 8.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: .2vw;
    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;
    }

        .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*/

/*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.little-block {
        padding: 1.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.little-block {
        padding: 15px 0;
    }

    .block.small-block {
        padding: 30px 0 50px 0;
    }

    .block {
        padding: 50px 0;
    }
}

/* @media screen and (max-width:767px) {
    .block{
        padding: 40px 0;
    }
} */
/*block END*/

/*gzdt-block*/
.gzdt-block {
    background: url(../images/gzdt-bg.png);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: left bottom;
}

/*tzgg-block*/
.tzgg-block {
    background: url(../images/tzgg-bg.png) var(--bg-grey);
    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;
        background: #fff;
    }

        .notice-item .calendar-box .month {
            background: linear-gradient( 219deg, #c9423d 0%, #a00d04 100%);
            color: #fff;
            text-align: center;
            padding: 0 -.46875vw;
            line-height: 1.5em;
            text-align: center;
        }

        .notice-item .calendar-box .day {
            text-align: center;
            padding: .3125vw .46875vw;
            -webkit-background-clip: text;
            border: 1px solid #E0E0E0;
            border-top: none;
            font-weight: 300;
        }

.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 */

/* 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;
}

.ala-section.section-small + .ala-section.section-small,
.block.little-block .ala-section + .ala-section {
    margin-top: 1.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.section-small + .ala-section.section-small,
    .block.little-block .ala-section + .ala-section {
        margin-top: 20px;
    }
}
/* 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;
    border-bottom: 5px solid var(--color-primary);
}

    .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;
}

/** title后的英文 **/
.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: url(../images/bottom.png) var(--color-primary);
    background-repeat: no-repeat;
    background-position: bottom;
    background-size: contain;
}

    footer,
    footer a,
    footer a:visited {
        color: rgba(255, 255, 255, 0.9);
    }

        footer a:hover,
        footer a:focus {
            color: var(--color-orange);
        }

        footer a:hover {
            text-decoration: underline;
        }

.footer-top {
    padding: 3.21875vw 0;
}

    .footer-top .footer-link li {
        line-height: 2.5;
        display: inline-block;
        padding-right: 2vw;
    }

        .footer-top .footer-link li a {
            display: block;
        }

            .footer-top .footer-link li a:hover {
                color: var(--color-orange);
                text-decoration: none;
            }

@media screen and (min-width: 768px) {
    .footer-top {
        position: relative;
    }
}
/* 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: 2.5vw;
    }

    .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;
    }

/* 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;
        display: flex;
        align-items: center;
    }

        .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-list-wrap .news-hightlight .right {
        display: none;
    }

    .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);
}

.breadcrumb {
    padding: .5vw 0;
}

/*.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: 20vw;
    /*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;
    }

    .inner-banner.has-noImg + .little-block,
    .inner-banner.has-border + .little-block {
        padding-top: 15px;
    }
}

@-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 END */

/* secondary-menu */
.secondary-menu-wrap {
    position: sticky;
    position: -webkit-sticky;
    transition: all .3s ease-in-out;
    top: 7.125vw;
    border: 1px solid #D5D7D9;
    border-radius: .3125vw;
    background-color: #F7F8FA;
}

    .secondary-menu-wrap .secondary-menu-title {
        padding: 1.04167vw 1.25vw;
        border-bottom: 1px solid #D5D7D9;
        color: #fff;
        background: var(--color-plain);
        border-radius: .3125vw .3125vw 0 0;
    }

.header-fixed.secondary-menu-fixed .secondary-menu {
    /*position: fixed;
    min-width: 20%;*/
    top: calc(4.21875vw + 20px);
}

.secondary-menu > * {
    position: relative;
    z-index: 1;
}

.secondary-menu .small-title {
    padding-top: 1.09375vw;
    color: var(--color-darkblue);
    border-left: .3125vw solid var(--color-darkblue);
    line-height: 50px;
    padding: 0 0 0 10px;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
    font-weight: bold;
}

.secondary-menu .menu-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.09375vw;
    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;
    }
}

@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: .5vw;
    border-bottom: 5px solid var(--color-primary);
    padding-bottom: .5vw;
}

.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 */

/* list */
.list .item {
    display: flex;
    background-color: var(--bg-grey);
    position: relative;
    margin-bottom: .69375vw;
    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: 1.1875vw;
    }

    .list .item .text-box {
        flex: 1;
    }

    .list .item .title {
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 1;
        -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;
        justify-content: flex-end;
        min-width: 8vw;
    }

        .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;
    }

        .list .item .title {
            -webkit-line-clamp: 2;
        }
}

@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 .title {
            -webkit-line-clamp: 3;
        }

        .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 */

/* 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;*/
        display: none;
    }

.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: var(--color-primary);
    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 3.175vw bottom no-repeat;
        background-size: 25vw;
        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: var(--color-primary);
        }
}

.show-search .layui-layer-shade {
    z-index: 0!important;
    opacity: 0!important;
}

.show-search header .search-btn {
    background-color: #fff;
    color: var(--color-primary);
}

    .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;
        }

@media screen and (max-width: 567px) {
    .content_list .content img {
        width: 100%;
        height: auto;
    }
}
/* content_list END */

.keywords-list .keyword-item .count-title {
    font-family: Algerian;
    /*font-family: "Trebuchet MS";
    font-family: "Georgia";*/
}

/* ala-bgzn */
/*.ala-bgzn {
    background-color: var(--color-plain);
    position: relative;
    overflow: hidden;
}

.row-flex .ala-bgzn {
    height: 100%;
    padding-bottom: 1.5635vw;
}

.ala-bgzn_head {
    padding: 1.05635vw 2.34375vw;
    background-color: var(--color-primary);
    color: #fff;
    font-weight: bold;
}

.ala-bgzn_body {
    padding: 1.5635vw 2.34375vw 0;
    line-height: 2.5;
}

    .ala-bgzn_body .ala-bgzn_title {
        color: var(--color-primary);
    }

.ala-bgzn.has-icon .ala-bgzn_head {
    position: relative;
}

    .ala-bgzn.has-icon .ala-bgzn_head:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        opacity: .1;
    }

    .ala-bgzn.has-icon .ala-bgzn_head > * {
        position: relative;
    }

    .ala-bgzn.has-icon .ala-bgzn_head .icon {
        width: 2.5vw;
        height: 2.5vw;
        object-fit: contain;
    }

.ala-bgzn.has-icon:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 12.5vw;
}

.ala-bgzn.has-icon {
    transition: all .5s ease-in-out;
}

@media screen and (max-width: 991px) {
    .ala-bgzn.has-icon .ala-bgzn_head .icon {
        width: 36px;
        height: 36px;
    }
}

@media screen and (max-width: 991px) {
    .ala-bgzn_head {
        padding: 16px 20px;
    }

    .ala-bgzn_body {
        padding: 20px;
    }
}

@media screen and (max-width: 567px) {
    .ala-bgzn_head {
        padding: .32rem .4rem;
    }

    .ala-bgzn_body {
        padding: .4rem;
    }
}*/
/* ala-bgzn END */

/* faculty-container */
.faculty-container {
    margin-top: 1.71875vw;
}

@media screen and (max-width: 1199px) {
    .faculty-container {
        margin-top: 30px;
    }
}

@media screen and (max-width: 567px) {
    .faculty-container {
        margin-top: .4rem;
    }
}
/* faculty-container END */

/* faculty-list */
.faculty-list .faculty-list-title {
    width: 100%;
}

.faculty-list .faculty-item {
    display: flex;
    background-color: var(--color-plain);
    height: 100%;
}

    .faculty-list .faculty-item .img-box {
        width: 14.5vw;
        min-height: 16.25vw;
        position: relative;
        overflow: hidden;
    }

        .faculty-list .faculty-item .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .faculty-list .faculty-item .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .faculty-list .faculty-item .text-box {
        flex: 1;
        padding: 1.875vw 1.5625vw;
        transition: all .3s ease-in-out;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        height: 100%;
    }

        .faculty-list .faculty-item .text-box > * {
            width: 100%;
        }

        .faculty-list .faculty-item .text-box .title {
            margin-top: .3125vw;
            color: var(--color-text-regular);
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 1.09375vw;
            color: var(--color-text-regular);
        }

            .faculty-list .faculty-item .text-box .info span {
                display: block;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }

            .faculty-list .faculty-item .text-box .info .iconfont {
                display: inline-block;
                text-align: center;
                width: 1.875vw;
                height: 1.875vw;
                line-height: 1.875vw;
                border-radius: 50%;
                background-color: var(--color-darkblue);
                color: #fff;
                margin-right: .625vw;
            }

            .faculty-list .faculty-item .text-box .info span + span {
                margin-top: .3125vw;
            }

@media screen and (max-width: 1439px) {
    .faculty-list .faculty-item .text-box .info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
        margin-right: 9px;
    }

    .faculty-list .faculty-item .text-box .info span + span {
        margin-top: 4.5px;
    }

    .faculty-list .faculty-item .img-box {
        width: 180px;
        height: 234px;
    }
}

@media screen and (max-width: 1300px) {
    .faculty-list .faculty-item .text-box {
        padding: 1.5625vw;
    }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 1.25vw;
        }

            .faculty-list .faculty-item .text-box .info .iconfont {
                margin-right: 6px;
            }
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .faculty-list .faculty-item .text-box .info {
        margin-top: .9375vw;
    }
}

@media screen and (max-width: 991px) {
    .faculty-list .faculty-item .img-box {
        width: 140px;
        height: 182px;
    }

    .faculty-list .faculty-item .text-box {
        padding: 18px;
    }

        .faculty-list .faculty-item .text-box .title {
            margin-top: 2px;
        }

        .faculty-list .faculty-item .text-box .info {
            margin-top: 10px;
        }

            .faculty-list .faculty-item .text-box .info span + span {
                margin-top: 3px;
            }
}

@media screen and (max-width: 567px) {
    .faculty-list .faculty-item .img-box {
        width: 2.4rem;
        height: 3.12rem;
    }

    .faculty-list .faculty-item .text-box {
        padding: .2rem .3rem;
    }

        .faculty-list .faculty-item .text-box .title {
            margin-top: .06rem;
            line-height: 1.3;
        }

        .faculty-list .faculty-item .text-box .info {
            margin-top: .2rem;
            line-height: 1.3;
        }

            .faculty-list .faculty-item .text-box .info span + span {
                margin-top: .04rem;
            }

            .faculty-list .faculty-item .text-box .info .iconfont {
                margin-right: 0.16rem;
                width: 0.5rem;
                height: 0.5rem;
                line-height: .5rem;
                font-size: .3rem;
            }
}
/* faculty-list END */


/*======== portfolio area start  ==========*/
.item-5-block {
    background: url(../images/item-5-top.png) var(--color-plain);
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center top;
}

.portfolio_area_top {
    padding: 8vw 0 0;
}
/* portfolio nav css */
.portfolio_nav {
    padding-bottom: .5vw;
}

    .portfolio_nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .portfolio_nav ul li {
            display: inline-block;
            padding: 10px 0;
            margin: 0 25px 10px;
            cursor: pointer;
            transition: .5s;
            color: #fff;
        }

            .portfolio_nav ul li.current_menu_item,
            .portfolio_nav ul li:hover {
                border-bottom: 5px solid var(--color-orange);
            }

.grid .single-link {
    color: #fff;
}

    .grid .single-link .text:before {
        background-color: var(--color-orange);
    }


.s3-outside {
    margin: 1vw 1vw 0;
    padding: 15px;
    background: #f2f4f2;
    cursor: pointer;
    transition: .5s;
    box-shadow: 0 0 10px 0 rgb(240 241 240);
}

    .s3-outside:hover {
        transform: translateY(-10px);
    }

.s3-inside {
    padding: 10px 0;
    border: 1px solid #f2f4f2;
    border-radius: 3px;
    background: var(--whitec);
    box-shadow: 0 0 .2rem rgba(0, 0, 0, .1);
}

    .s3-inside .content {
        display: flex;
        align-items: flex-start;
        line-height: 1.8;
    }

        .s3-inside .content .left {
            border-right: 2px solid var(--color-primary);
            width: 20%;
            padding-right: 1.5vw;
            text-align: right;
            color: var(--color-primary);
        }

        .s3-inside .content .right {
            width: 80%;
            padding: 0 1.5vw;
        }

            .s3-inside .content .right a {
                min-height: 3.5vw;
            }
/*======== portfolio area end  ==========*/

.jbzn {
    width: 100%;
    background: url(../images/jbzn-bg.png) #8c0101;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: right bottom;
    padding: 6.75vw 3vw;
}

    .jbzn p {
        line-height: 2.5;
        color: #fff;
    }

@media (max-width: 1600px) {
    .jbzn {
        padding: 6.5vw 3vw;
    }
}

@media (max-width: 1480px) {
    .jbzn {
        padding: 6.2vw 3vw;
    }
}

@media (max-width: 1414px) {
    .jbzn {
        padding: 6vw 2.5vw;
    }
}

@media (max-width: 1330px) {
    .jbzn {
        padding: 5.8vw 2vw;
    }
}

@media (max-width: 1256px) {
    .jbzn {
        padding: 5.5vw 1.5vw;
    }
}

@media (max-width: 1160px) {
    .jbzn {
        padding: 5vw 1.5vw;
    }
}

@media (max-width: 1064px) {
    .jbzn {
        padding: 4.8vw 1.3vw;
    }
}

@media (max-width: 1047px) {
    .jbzn {
        padding: 4.7vw 1vw;
    }
}

@media (max-width: 1023px) {
    .jbzn {
        padding: 4.5vw .5vw;
    }
}

@media (max-width: 992px) {
    .jbzn {
        padding: 1.5vw;
    }
}

.ljwh .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 40%;
    position: relative;
    overflow: hidden;
    background: var(--color-plain);
}

    /*.ljwh .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }*/

    .ljwh .img-box img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.img-box img {
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.img-box:hover img {
    transform: scale(1.1);
}

.ljwh .text-box2 {
    width: 100%;
    background: var(--color-plain);
    text-align: center;
    color: #fff;
    line-height: 2.5;
}
