.main-hidden {
    overflow: hidden;
}

/* menu-toggle */
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--color-primary);
    text-align: center;
    transition: all .3s ease-in-out;
}

    .menu-toggle .toggle-iconfont {
        transition: 0.4s;
        position: relative;
        z-index: 20;
        float: right;
        cursor: pointer;
        width: 1.25vw;
        height: 0.9375vw;
        margin: 0 auto;
    }

        .menu-toggle .toggle-iconfont span {
            display: block;
            width: 100%;
            margin-top: 0.416667vw;
            height: var(--size-2);
            background: var(--color-primary);
            position: relative;
            cursor: pointer;
        }

    .menu-toggle span:after,
    .menu-toggle span:before {
        content: "";
        position: absolute;
        display: inline-block;
        left: 0;
        width: 1.25vw;
        height: var(--size-2);
        background-color: var(--color-primary);
        -webkit-transition-duration: .3s, .3s;
        -moz-transition-duration: .3s, .3s;
        -ms-transition-duration: .3s, .3s;
        -o-transition-duration: .3s, .3s;
        transition-duration: .3s, .3s;
        -webkit-transition-delay: .3s, 0s;
        -moz-transition-delay: .3s, 0s;
        -ms-transition-delay: .3s, 0s;
        -o-transition-delay: .3s, 0s;
        transition-delay: .3s, 0s;
    }

    .menu-toggle span:before {
        top: -0.416667vw;
        -webkit-transition-property: top, transform;
        -moz-transition-property: top, transform;
        -ms-transition-property: top, transform;
        -o-transition-property: top, transform;
        transition-property: top, transform;
        transform-origin: 0 50%;
    }

    .menu-toggle span:after {
        bottom: -0.416667vw;
        width: .78125vw;
        -webkit-transition-property: bottom, transform;
        -moz-transition-property: bottom, transform;
        -ms-transition-property: bottom, transform;
        -o-transition-property: bottom, transform;
        transition-property: bottom, transform;
        transform-origin: 0 50%;
    }

    .menu-toggle.open span:after,
    .menu-toggle.open span:before {
        width: 1.25vw;
    }

    .menu-toggle.open span:before {
        top: -0.416667vw;
        -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
        -o-transform: rotate(42deg);
        transform: rotate(42deg);
    }

    .menu-toggle.open span:after {
        bottom: -0.416667vw;
        -webkit-transform: rotate(-42deg);
        -ms-transform: rotate(-42deg);
        -o-transform: rotate(-42deg);
        transform: rotate(-42deg);
    }

    .menu-toggle.open .toggle-iconfont span {
        background-color: transparent !important;
    }

@media screen and (max-width: 1920px) {
    .menu-toggle .toggle-iconfont {
        width: 24px;
        height: 18px;
    }

        .menu-toggle .toggle-iconfont span {
            margin-top: 8px;
            height: 2px;
        }

    .menu-toggle span:after,
    .menu-toggle span:before {
        width: 24px;
        height: 2px;
    }

    .menu-toggle span:before {
        top: -8px;
    }

    .menu-toggle span:after {
        bottom: -8px;
        width: 15px;
    }

    .menu-toggle.open span:after,
    .menu-toggle.open span:before {
        width: 24px;
    }

    .menu-toggle.open span:before {
        top: -8px;
    }

    .menu-toggle.open span:after {
        bottom: -8px;
    }
}


/* menu-toggle END */

/* header */
header {
    background-color: transparent;
    /*position: relative;
    left: 0;
    right: 0;
    top: 0;
    z-index: 99;*/
    transition: all .3s ease-in-out;
    /*background-color: var(--color-primary);
    border-bottom: 1px solid rgba(255, 255, 255, .2);*/
}

.header {
    position: relative;
    z-index: 99;
}

    .header .header-top {
        background-color: var(--color-primary);
        height: var(--size-48);
        padding: 0 8.125vw;
        display: flex;
        justify-content: flex-end;
    }

/**首页顶部菜单在大图上**/
/*.header_white:not(.header-fixed) header {
    position: absolute;
    background-color: transparent;
}*/
.header_white:not(.header-fixed) header:after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: var(--size-1);
    /*background-color: rgba(255, 255, 255, .4);*/
}

header a {
    color: #fff;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

header .logo img {
    height: var(--size-72);
    min-height: 30px;
}

header .layui-container {
    position: relative;
}
/* header .layui-container >*{
    position: relative;
    z-index: 9;
} */
header .menu-toggle {
    position: relative;
    z-index: 100001;
    display: none;
}

.header {
    transition: height .5s ease-in-out;
}

    .header .layui-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 4.8166667vw;
    }

    .header .header-right {
        padding-left: var(--size-15);
        display: flex;
        flex-direction: column;
        justify-content: center;
        height: 100%;
    }

header .secondary-nav {
    position: relative;
    text-align: right;
    justify-content: flex-end;
    margin-top: var(--size-24);
}

    header .secondary-nav .layui-nav {
        display: flex;
        align-items: center;
        justify-content: flex-end;
        /* margin: 0 -1.09375vw; */
    }

        header .secondary-nav .layui-nav .layui-nav-item > a {
            cursor: pointer;
            font-size: inherit;
            padding: 0 1.09375vw;
            color: #fff;
            display: flex;
            align-items: center;
            /* opacity: .7; */
        }

        header .secondary-nav .layui-nav .layui-nav-item + .layui-nav-item:after {
            content: "";
            position: absolute;
            left: 0;
            top: 50%;
            height: .875vw;
            margin-top: -.4375vw;
            width: 1px;
            background-color: rgba(255, 255, 255, .2);
            transition: 50% 10%;
        }

        header .secondary-nav .layui-nav .layui-nav-item > a img {
            width: var(--size-24);
            height: var(--size-24);
            object-fit: contain;
            margin-right: var(--size-9);
        }

        header .secondary-nav .layui-nav .layui-nav-item > a .layui-icon-down.layui-nav-more {
            display: none;
        }

.headerTemp {
    height: 7.29166667vw;
    display: none;
}

.header_white .headerTemp {
    height: 0!important;
    min-height: 0!important;
}

.logo-search {
    border-bottom: 1px solid var(--border-color);
}

.show-menu .main-menu,
.header-fixed .main-menu {
    position: fixed;
    left: 0;
    right: 0;
    /* top: -100%;
    opacity: 0; */
    top: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    background: #fff!important;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}

.header-fixed .main-menu {
    top: -100%;
    opacity: 0;
}

    .show-menu .main-menu:after,
    .header-fixed .main-menu:after {
        content: unset!important;
    }

.header-fixed.header-show .main-menu {
    position: fixed;
    top: 0;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    .header-fixed .main-menu {
        position: fixed;
        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 .main-menu {
        position: fixed;
        top: 0;
        opacity: 1;
    }
}

@media screen and (max-width: 1440px) {
    /* header .secondary-nav .layui-nav{
        margin: 0 -15px;
    } */
    header .secondary-nav .layui-nav .layui-nav-item > a {
        padding: 0 15px;
    }

    header .secondary-nav .layui-nav .layui-nav-item + .layui-nav-item:after {
        height: 14px;
        margin-top: -7px;
    }
}

@media screen and (max-width: 1024px) {
    .header .header-top {
        height: 5vw;
    }

    .header .header-right {
        justify-content: center;
    }

    header .secondary-nav {
        margin-top: 0;
    }

        header .secondary-nav .layui-nav .layui-nav-item > a {
            padding: 0 10px;
        }

    header .menu-toggle {
        display: flex;
        position: absolute;
        right: 0;
        top: 0;
    }

    .headerTemp,
    .header .layui-container {
        height: 75px;
    }

    .header-right {
        padding-right: calc(75px - 4.166667vw);
    }

    header .secondary-nav {
        padding-bottom: 0;
        /* padding-right: var(--size-15); */
    }

    .hide-mobile {
        display: none!important;
    }
}

@media screen and (max-width: 769px) {
    header .secondary-nav .layui-nav .layui-nav-item.hide-mobile + .layui-nav-item:after {
        content: unset;
    }
}

/* 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;
    }
/* .header-nav .layui-nav .layui-nav-child::after{
    content: '';
    display: block;
    width: 100vw;
    height:calc(100vh - 100px) ;
    background-color: rgba(0, 0, 0, .3);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9;

}
.header-nav .layui-nav .layui-nav-child .dropmenu{
    position: relative;
    z-index: 10;
} */

@media screen and (min-width: 1024px) {
    header .secondary-nav {
        flex: 1;
        margin-top: 0;
    }

    .header-nav .layui-nav {
        padding: 0;
        background: none;
        display: flex;
        align-items: center;
        /* margin-bottom: var(--size-9); */
    }

        .header-nav .layui-nav > .layui-this:after {
            content: unset;
        }

    .header-nav .layui-nav-bar {
        display: none;
    }

    .header-nav .layui-nav ul {
        font-size: 0;
        display: table;
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }

    .header-nav .layui-nav .layui-nav-item {
        display: table-cell;
        margin: 0;
        height: var(--size-48);
        line-height: var(--size-48);
    }

        .header-nav .layui-nav .layui-nav-item > a {
            display: block;
            display: inline-block;
            padding: 0 var(--size-105) 0 0;
            color: var(--color-text-menu);
            position: relative;
            z-index: 2;
            transition: all .3s ease-in-out;
            background-color: transparent;
            white-space: nowrap;
            min-width: 78px;
            text-align: center;
        }

    .header-nav .layui-nav .layui-nav-more {
        right: 5px;
        display: none;
    }

    /* .header-nav .layui-nav .layui-nav-item:not(.layui-this):hover>a,
    .header-nav .layui-nav .layui-nav-item.layui-this>a {
        border-radius: var(--size-4);
    } */


    .header-nav .layui-nav .layui-nav-item > a:before {
        content: "";
        position: absolute;
        left: var(--size-4);
        right: var(--size-4);
        bottom: 0;
        top: 0;
        /*background-color: rgba(255, 255, 255, .1);
        transform-origin: 50% 50%;
        transform: skewX(-15deg);
        transition: all .3s ease-in-out;*/
        z-index: 1;
    }

    /*.header-nav .layui-nav .layui-nav-item:nth-child(7) > a {
        overflow: hidden;
    }

        .header-nav .layui-nav .layui-nav-item:nth-child(7) > a::before {
            right: -20px;
            left: var(--size-6);
        }*/

    .header-nav .layui-nav .layui-nav-item > a > span {
        position: relative;
        z-index: 2;
    }

    /*.header-nav .layui-nav .layui-nav-item > a:hover:before,
    .header-nav .layui-nav .layui-nav-item.layui-this > a:before {
        background-color: var(--color-orange);
    }*/

    /* .header-nav .layui-nav .layui-nav-item>a:after {
        content: "";
        position: absolute;
        left: 1.40625vw;
        right: 1.40625vw;
        bottom: 0;
        height: var(--size-4);
        background: #fff;
        transition: all .3s ease-in-out;
        transform: scaleX(0);
    } */

    /* .header-nav .layui-nav .layui-nav-item.layui-this>a:after {
        transform: scaleX(1);
    } */

    .header-nav .layui-nav .layui-nav-item > .icon {
        display: none;
    }

    .header-nav .layui-nav,
    .header-nav .layui-nav .layui-nav-item {
        position: relative;
    }
    /* 下级菜单 */
    .header-nav .layui-nav-child {
        /*width: 100vw;
        right: 0;*/
        top: 145%;
        left: -30%;
        right: 30%;
        /*border: 0;
        border-radius: 0;
        box-shadow: unset;
        padding: 0;
        white-space: normal;
        line-height: 1.5;
        color: var(--color-text-primary);*/
        background-color: var(--color-darkblue);
    }

        /*.header-nav .layui-nav-child .dropmenu {
            background: url(../images/sub_nav_bg.jpg) no-repeat;
            background-size: cover;
            background-position: right bottom;
        }*/

        .header-nav .layui-nav-child .dropmenu-container {
            width: 100%;
            /*padding: var(--size-60) 6.25vw;*/
        }

            .header-nav .layui-nav-child .dropmenu-container .title-wrap {
                display: flex;
                flex-direction: column;
                align-items: flex-start;
                border-right: 1px solid var(--border-color);
                padding-right: var(--size-80);
            }

                .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn {
                    padding: var(--size-15) var(--size-30);
                    color: #ffffff;
                }

                    .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn i {
                        margin-right: var(--size-6);
                        margin-left: 0;
                        color: var(--color-orange);
                    }

                    .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn:hover {
                        background-color: var(--color-orange);
                        color: #fff;
                    }

                    .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn.plain {
                        color: var(--color-text-primary);
                        background-color: unset;
                        border: 1px solid var(--border-color);
                    }

                        .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn.plain:hover {
                            color: #fff;
                            border-color: var(--color-orange);
                            background-color: var(--color-orange);
                        }

                            .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn.plain:hover i {
                                color: #fff;
                            }

                    .header-nav .layui-nav-child .dropmenu-container .title-wrap .more-btn:hover i {
                        color: #fff;
                    }

            .header-nav .layui-nav-child .dropmenu-container .title {
                font-weight: 500;
            }

            .header-nav .layui-nav-child .dropmenu-container .desc {
                color: var(--color-text-secondary-grey);
                margin-top: var(--size-12);
            }

            .header-nav .layui-nav-child .dropmenu-container .more-link {
                margin-top: var(--size-100);
            }

        .header-nav .layui-nav-child .sub-nav-wrap {
            /*padding-left: var(--size-80);*/
            text-align: center;
        }

        .header-nav .layui-nav-child .sub-nav-list {
            margin-top: var(--size-12);
        }

        .header-nav .layui-nav-child .sub-nav {
            padding: 0;
            color: var(--color-text-secondary-grey);
            margin-bottom: var(--size-9);
            transition: all .3s;
        }

        .header-nav .layui-nav-child .sub-title {
            padding: 0;
            font-weight: 500;
        }

            /*.header-nav .layui-nav-child .sub-title > span {
                position: relative;
            }

                .header-nav .layui-nav-child .sub-title > span::after {
                    content: '';
                    display: block;
                    position: absolute;
                    bottom: 0;
                    left: 0;
                    width: 0;
                    height: 1px;
                    background-color: #fff;
                    transition: all .3s ease-in-out;
                }

            .header-nav .layui-nav-child .sub-title:hover > span::after {
                width: 100%;
            }*/

            .header-nav .layui-nav-child .sub-title:hover {
                background: #5877a2;
                color: #fff;
            }

            .header-nav .layui-nav-child .sub-title i {
                color: #fff;
            }

        .header-nav .layui-nav-child .sub-nav > span {
            position: relative;
        }

            .header-nav .layui-nav-child .sub-nav > span::after {
                content: '';
                display: block;
                position: absolute;
                bottom: 0;
                left: 0;
                width: 0;
                height: 1px;
                background-color: var(--color-orange);
                transition: all .3s ease-in-out;
            }

        .header-nav .layui-nav-child .sub-nav:hover > span::after {
            width: 100%;
        }

        .header-nav .layui-nav-child .sub-nav:hover {
            background-color: unset;
            color: var(--color-orange);
        }

    .header-nav .nav-focus {
        position: relative;
        height: var(--size-64);
        line-height: var(--size-64);
        overflow: hidden;
    }

        .header-nav .nav-focus:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            top: 0;
            background-color: var(--color-orange);
            transform-origin: 0% 100%;
            transform: skewX(-15deg);
            transition: all .3s ease-in-out;
        }

        .header-nav .nav-focus a {
            color: #fff;
            display: block;
            position: relative;
            padding: 0 var(--size-40);
        }

        .header-nav .nav-focus .iconfont {
            margin-right: var(--size-6);
        }
}
/* @media screen and (min-width: 992px) and (max-width: 1199px) {
    .header-nav .layui-nav .layui-nav-item>a{
        padding: 0 .4vw 0 .8vw;
        font-size: 14px;
    }
    .header-nav .nav-focus a{
        padding: 0 var(--size-20);
    }
} */

@media screen and (max-width: 1024px) {
    header .layui-container {
        height: 75px;
    }

    header .header-main {
        display: none;
    }
}

@media screen and (min-width: 1200px) {
    header .menu-toggle {
        width: 5.208333vw;
        height: 5.20833vw;
        background: var(--color-primary);
    }
}

@media screen and (max-width: 1439px) {
    header .menu-toggle {
        width: 75px;
        height: 75px;
        /* background: var(--color-primary); */
    }
}
/* @media screen and (max-width: 567px) {
    header .logo img {
        min-height: .6rem;
    }
} */
@media screen and (min-width: 1200px) {
    .site-menu-shade,
    .menu-container {
        display: none!important;
    }
}
/* 主菜单 */
.menu-container {
    position: fixed;
    right: 0;
    top: -100%;
    height: calc(100vh - 7.29166667vw);
    width: 100%;
    z-index: 99;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    z-index: 98;
    overflow: hidden;
    background: #fff url(../images/donor-bg.png) center bottom no-repeat;
    background-size: 100% auto;
}

    .menu-container .menu-body {
        padding: var(--size-24);
        padding-right: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
    }

        .menu-container .menu-body .mCSB_inside > .mCSB_container {
            margin-right: var(--size-24)!important;
        }

    .menu-container .menu-list .menu-item {
    }

    .menu-container .menu-list .menu-title {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

        .menu-container .menu-list .menu-title a {
            padding: var(--size-15) 0;
            flex: 1;
            color: var(--color-primary);
        }

            .menu-container .menu-list .menu-title a:hover {
                color: var(--color-orange);
            }

        .menu-container .menu-list .menu-title .icon {
            cursor: pointer;
            padding: var(--size-15) 0 var(--size-15) var(--size-36);
            font-size: .75em;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            font-weight: bold;
            width: 50px;
            color: var(--color-primary);
        }

            .menu-container .menu-list .menu-title .icon:hover {
                color: var(--color-orange);
            }

    .menu-container .submenu {
        position: fixed;
        width: 100%;
        height: calc(100vh - 75px);
        padding: 0 var(--size-24);
        left: 0;
        bottom: 0;
        transform: translateX(100%);
        background: #fff url(../images/donor-bg.png) center bottom no-repeat;
        background-size: 100% auto;
        overflow: hidden;
        transition: 0.3s;
        z-index: 99;
    }

.submenu-top,
.third-menu-top {
    padding: var(--size-24) var(--size-24) var(--size-20) 0;
    color: var(--color-primary);
    border-bottom: 1px solid var(--color-primary);
    margin-bottom: var(--size-15);
}

    .submenu-top .title-nav a,
    .third-menu-top .title-nav a {
        color: var(--color-primary);
        transition: all .3s;
        padding: 0;
    }

        .submenu-top .title-nav a i,
        .third-menu-top .title-nav a i {
            position: relative;
            transition: all .3s;
            color: inherit;
            left: 0;
        }

        .submenu-top .title-nav a:hover i,
        .third-menu-top .title-nav a:hover i {
            left: 5px;
        }

        .submenu-top .title-nav a:hover,
        .third-menu-top .title-nav a:hover {
            color: var(--color-orange);
        }

    .third-menu-top .back-btn,
    .submenu-top .back-btn {
        cursor: pointer;
        margin-bottom: var(--size-24);
    }

        .third-menu-top .back-btn i,
        .submenu-top .back-btn i {
            font-size: .75em;
            font-weight: bold;
        }

        .third-menu-top .back-btn:hover,
        .submenu-top .back-btn:hover {
            color: var(--color-orange);
        }

.menu-container .menu-list .menu-item.show-submenu .submenu {
    transform: none;
    visibility: visible;
}

.menu-container .menu-list .menu-item.show-submenu > .menu-title .icon-right {
    color: var(--color-primary);
}

    .menu-container .menu-list .menu-item.show-submenu > .menu-title .icon-right:before {
        content: '\e625';
    }


.menu-container .third-menu {
    position: fixed;
    width: 100%;
    height: calc(100vh - 75px);
    padding-left: var(--size-24);
    left: 0;
    bottom: 0;
    transform: translateX(100%);
    /*background: #fff url(../images/donor-bg.png) center bottom no-repeat;
    background-size: 100% auto;*/
    overflow: hidden;
    transition: 0.3s;
    z-index: 100;
}

.menu-container .submenu-item.m-active .third-menu {
    transform: none;
    visibility: visible;
}

.menu-container .submenu .m-active .icon-right:before {
    content: '\e625';
}

.menu-container .third-menu .third-menu-list a {
    display: block;
    padding: var(--size-15) 0;
    color: var(--color-primary);
    transition: color .3s ease-in-out;
}

.menu-container .third-menu a:hover {
    color: var(--color-orange);
}


.show-menu .site-menu-shade {
    position: fixed;
    left: 0;
    right: 0;
    top: 75px;
    bottom: 0;
    background-color: rgba(0, 0, 0, .6);
    z-index: 98;
}

.show-menu .menu-container {
    /* right: 0; */
    top: 7.29166667vw;
}

@media screen and (max-width: 1200px) {
    .menu-container {
        height: calc(100vh - 75px);
    }

    .show-menu .menu-container {
        top: 75px;
    }
}

.show-menu.header-fixed header {
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    top: 0;
    opacity: 1;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}
/* 主菜单 END */

/*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-orange);
    border-radius: 50%;
}

.ala-swiper.is-white .swiper-button-prev,
.ala-swiper.is-white .swiper-button-next {
    color: #fff;
}

.ala-swiper .swiper-button-next.swiper-button-disabled,
.ala-swiper .swiper-button-prev.swiper-button-disabled {
    color: var(--border-color);
    opacity: 1;
}

.ala-swiper .swiper-button-prev:not(.ala-swiper .swiper-button-disabled):hover:after,
.ala-swiper .swiper-button-next:not(.ala-swiper .swiper-button-disabled):hover:after {
    color: var(--color-orange);
}

.ala-swiper .swiper-button-next:after,
.ala-swiper .swiper-button-prev:after {
    font-weight: lighter;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.ala-swiper .swiper-button-next:after,
.ala-swiper .swiper-button-prev:after {
    content: "\e607";
    font-family: "iconfont";
}

.ala-swiper .swiper-button-prev:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.ala-swiper .swiper-button-prev,
.ala-swiper .swiper-container-rtl .swiper-button-next {
    left: 0;
}

.ala-swiper .swiper-button-next,
.ala-swiper .swiper-container-rtl .swiper-button-prev {
    right: 0;
}

    .ala-swiper .swiper-button-next:after,
    .ala-swiper .swiper-button-prev:after {
        position: relative;
        right: 0;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }
/*swiper-button END*/

/*.swiper-pagination*/
.ala-swiper .swiper-pagination {
    left: 0;
    right: 0;
    text-align: center;
    bottom: -3vw;
}

.ala-swiper .swiper-pagination-bullet {
    position: relative;
    background-color: unset;
    position: relative;
    width: var(--size-9);
    height: var(--size-9);
    border-radius: var(--size-9);
    opacity: 1;
    transition: all .3s ease-in-out;
    background-color: var(--color-text-secondary);
    margin: 0 var(--size-9) !important;
}

.ala-swiper.is-white .swiper-pagination-bullet {
    background-color: #fff;
}

.ala-swiper .swiper-pagination-bullet-active {
    background: var(--color-orange)!important;
}

    .ala-swiper .swiper-pagination-bullet-active::after {
        background: var(--color-orange) !important;
    }

@media screen and (max-width: 1439px) {
    .ala-swiper .swiper-button-prev,
    .ala-swiper .swiper-button-next {
        width: 27px;
        height: 27px;
        margin-top: -13.5px;
    }
}
/*.swiper-pagination EMD*/

/* swiper-scrollbar */
.ala-swiper .swiper-scrollbar {
    height: 2.34375vw;
    background-color: unset;
    border-radius: 0;
    left: 50%;
    right: unset;
    width: 0;
    top: 0;
}

.ala-swiper .swiper-scrollbar-drag {
    background-color: unset;
    position: relative;
    width: 0!important;
}

    .ala-swiper .swiper-scrollbar-drag:after {
        content: "";
        position: absolute;
        right: unset;
        left: 50%;
        top: 0;
        bottom: 0;
        width: 2.34375vw;
        transform: translateX(-50%);
        /*background: url(../images/icon_drag.png) right center no-repeat;
        background-size: contain;*/
        cursor: pointer;
    }

@media screen and (max-width: 1199px) {
    .ala-swiper .swiper-scrollbar,
    .ala-swiper .swiper-scrollbar-drag:after {
        width: 28px;
        height: 28px;
    }

    .ala-swiper .swiper-scrollbar {
        width: 0;
    }
}

@media screen and (max-width: 567px) {
    .ala-swiper .swiper-scrollbar {
        display: none;
    }
}
/* swiper-scrollbar END */

/* swiper-btn */
.swiper-btn-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-btn {
    display: flex;
    align-items: center;
}

    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 2.5vw;
        height: 2.5vw;
        border-radius: 50%;
        background: transparent;
        border: var(--size-1) solid var(--border-color);
        position: static;
        font-size: inherit;
        color: var(--color-text-primary);
        margin-top: unset;
        transition: all .3s ease-in-out;
    }

    .swiper-btn.is-white .swiper-button-next,
    .swiper-btn.is-white .swiper-button-prev {
        border: var(--size-1) solid #fff;
    }

    .swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover,
    .swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover {
        background-color: var(--color-orange);
        color: #fff;
        border-color: var(--color-orange);
    }

        .swiper-btn .swiper-button-next:not(.swiper-button-disabled):hover:after,
        .swiper-btn .swiper-button-prev:not(.swiper-button-disabled):hover:after {
            color: #fff!important;
        }

    .swiper-btn.is-white .swiper-button-next:not(.swiper-button-disabled):hover,
    .swiper-btn.is-white .swiper-button-prev:not(.swiper-button-disabled):hover {
        background-color: #fff;
    }

        .swiper-btn.is-white .swiper-button-next:not(.swiper-button-disabled):hover:after,
        .swiper-btn.is-white .swiper-button-prev:not(.swiper-button-disabled):hover:after {
            color: var(--color-orange)!important;
        }

    .swiper-btn .swiper-button-next:after,
    .swiper-btn .swiper-button-prev:after {
        content: "\e6f0";
        font-family: "iconfont";
        font-size: inherit;
    }

    .swiper-btn .swiper-button-prev:after {
        -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
        -o-transform: rotate(180deg);
        transform: rotate(180deg);
    }

    .swiper-btn .swiper-button-prev + .swiper-button-next {
        margin-left: .625vw;
    }

    .swiper-btn .swiper-button-prev.swiper-button-disabled,
    .swiper-btn .swiper-button-next.swiper-button-disabled {
        background: transparent;
        border: var(--size-1) solid var(--color-text-placeholder);
        color: var(--color-text-secondary);
        cursor: no-drop;
        opacity: .5;
    }

    .swiper-btn.is-solid .swiper-button-next,
    .swiper-btn.is-solid .swiper-button-prev {
        background-color: var(--color-orange);
        color: #fff;
    }

        .swiper-btn.is-solid .swiper-button-prev.swiper-button-disabled,
        .swiper-btn.is-solid .swiper-button-next.swiper-button-disabled {
            background-color: transparent;
            color: var(--color-text-secondary);
        }

    .swiper-btn .swiper-pagination {
        position: static;
        width: unset;
        display: inline-flex;
        align-items: center;
        padding: 0 var(--size-18);
    }

    .swiper-btn .swiper-pagination-progressbar {
        background-color: #E8E8E8;
        height: var(--size-6);
        border-radius: var(--size-6);
        overflow: hidden;
    }

        .swiper-btn .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
            background-color: var(--color-primary);
            height: var(--size-6);
            border-radius: var(--size-6)!important;
        }

@media screen and (max-width: 1440px) {
    .swiper-btn .swiper-button-next,
    .swiper-btn .swiper-button-prev {
        width: 36px;
        height: 36px;
    }

        .swiper-btn .swiper-button-prev + .swiper-button-next {
            margin-left: 9px;
        }
}
/* swiper-btn END */

.swiper-container {
    overflow: hidden;
    width: 100%;
    height: 100%;
}

/*banner*/
.banner {
    position: relative;
    height: 60vh;
    width: 100%;
}

    .banner .ripples-cover {
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        z-index: 12;
    }

    .banner .banner-box {
        position: relative;
        z-index: 10;
    }

    .banner .slide-inner:not(.no-text):after,
    .banner .slide-inner:not(.no-text):before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        z-index: 9;
        height: 12vw;
        /*background: linear-gradient( 180deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);*/
    }

    .banner .slide-inner:not(.no-text):after {
        top: unset;
        bottom: 0;
        /*background: linear-gradient( to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,0) 100%);*/
    }

    .banner .swiper-container {
        width: 100%;
        height: 100%;
        position: relative;
        z-index: 10;
    }

    .banner .swiper-slide {
        background-size: cover;
        color: #fff;
        background-position: center center;
        height: 100%;
        background-repeat: no-repeat;
        position: relative;
        overflow: hidden;
        width: 100%;
    }

        .banner .swiper-slide .swiper-bg {
            position: absolute;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            -o-object-fit: cover;
            object-fit: cover;
            z-index: 1;
        }

/**大图放大缩小动画**/
/*.banner .swiper-slide .swiper-bg {
            -webkit-transform: scale(1.15);
            -ms-transform: scale(1.15);
            -o-transform: scale(1.15);
            transform: scale(1.15);
            -webkit-transition: all 6s linear;
            -o-transition: all 6s linear;
            transition: all 6s linear;
        }

    .banner .swiper-slide-active .swiper-bg {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }*/

.slide-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    color: #fff;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.banner img {
    width: 100%;
}

.swiper-bottom {
    position: absolute;
    right: 3.125vw;
    bottom: var(--size-60);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .swiper-bottom .swiper-pagination {
        position: static;
        width: unset;
        display: flex;
        align-items: center;
    }

    .swiper-bottom.ala-swiper.is-white .swiper-pagination-bullet-active {
        border-color: var(--color-primary) !important;
    }

.ala-swiper.is-white .swiper-pagination-bullet-active::after {
    background-color: var(--color-primary) !important;
}

.banner-swiper-btn {
    width: 6.25vw;
    height: 6.25vw;
    position: relative;
    z-index: 90;
    margin-left: var(--size-24);
}

    .banner-swiper-btn .swiper-button-prev {
        left: 12%;
    }

    .banner-swiper-btn .swiper-button-next {
        right: 12%;
    }

.banner .banner-swiper-button {
    position: absolute;
    z-index: 12;
    left: 4.166666vw;
    width: unset;
    bottom: 26%;
    display: flex;
    align-items: center;
    cursor: default !important;
}

    .banner .banner-swiper-button .swiper-button-prev {
        background: rgba(255, 255, 255, .2);
        transition: background .3s ease-in-out;
    }

        .banner .banner-swiper-button .swiper-button-prev:after {
            color: #fff;
        }

        .banner .banner-swiper-button .swiper-button-prev:hover {
            background-color: #fff;
        }

            .banner .banner-swiper-button .swiper-button-prev:hover:after {
                color: var(--color-primary);
            }

    .banner .banner-swiper-button .swiper-button-next {
        background: #fff!important;
    }

        .banner .banner-swiper-button .swiper-button-next:after {
            color: var(--color-primary);
        }

.banner .slide-down {
    text-transform: uppercase;
    position: absolute;
    right: 0;
    bottom: 0;
    padding: 0 var(--size-60) var(--size-24) 0;
    font-weight: 100;
    color: #fff;
    z-index: 90;
    letter-spacing: var(--size-2);
    opacity: .75;
    overflow: hidden;
    transform-origin: 100% 100%;
    transform: translateX(-50%) rotate(90deg);
    cursor: pointer;
}

    .banner .slide-down:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: var(--size-2);
        background-color: rgba(255, 255, 255, .5);
        z-index: 0;
    }

    .banner .slide-down span {
        position: absolute;
        left: 0;
        height: var(--size-2);
        background-color: var(--color-primary);
        width: var(--size-40);
        bottom: 0;
        animation: slideToDown 2s linear 0s infinite;
        z-index: 2;
        transform: translateX(-100%);
    }

@keyframes slideToDown {
    0% {
        left: 0%;
        transform: translateX(-100%);
    }

    100% {
        left: 100%;
        transform: translateX(0);
    }
}

@media screen and (max-width: 1199px) {
    .banner {
        height: 45vh;
    }
}

@media screen and (max-width: 991px) {
    .banner {
        height: 25vh;
    }

        .banner .slide-down {
            display: none;
        }
}

@media screen and (max-width: 567px) {
    .banner {
        height: 40vw;
    }

        .banner .slide-down {
            display: none;
        }
}
/*banner END*/

/*home-banner-wrap*/
.home-banner-wrap {
    position: absolute;
    left: .125vw;
    right: 0;
    bottom: 0;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    color: #fff;
    z-index: 10;
    text-align: left;
}

    /*.home-banner-wrap .bg {
        position: absolute;
        left: 0;
        right: 0;
        top: 25%;
        height: 40%;
        background: url(../images/banner-bg.png) center center no-repeat;
        background-size: 75%;
    }*/

    .home-banner-wrap .banner-title {
        padding: 20px;
        line-height: 1.5;
        text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
        width: 50%;
        background: rgba(57, 109, 198, 0.60);
    }

        .home-banner-wrap .banner-title img {
            height: 8.75vw;
            width: unset;
            max-width: 100%;
        }

    .home-banner-wrap .banner-desc {
        margin-top: var(--size-15);
        line-height: 1.5;
        text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
        font-weight: 300;
    }

    .home-banner-wrap .more-link {
        margin-top: var(--size-36);
    }

        .home-banner-wrap .more-link .iconfont {
            color: #fff;
        }

@media screen and (max-width: 991px) {
    .home-banner-wrap .banner-title {
        width: 70%;
        font-size: var(--size-48);
    }

    .banner .slide-inner:not(.no-text)::after {
        height: 300px;
    }
}

@media screen and (max-width: 567px) {
    /*.home-banner-wrap {
        bottom: 1.5rem;
    }*/

    .home-banner-wrap .banner-title {
        width: 100%;
        font-size: var(--size-40);
    }

    .swiper-bottom {
        bottom: var(--size-45);
        left: .32rem;
        right: .32rem;
    }
}
/*home-banner-wrap END*/

/*block*/
.block {
    padding: 5.78125vw 0;
    position: relative;
    width: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* overflow: hidden; */
}

    .block.small-block {
        padding: 3.21vw 0;
    }

    .block > * {
        position: relative;
        z-index: 9;
    }

    .theme-grey,
    .block.grey {
        background-color: var(--bg-grey);
    }

    .block.bg_primary {
        background-color: var(--color-primary);
    }

    .block.darkGrey {
        background-color: #F0F0F0;
    }

    .block.bg {
        background-attachment: fixed;
    }

        .block.bg > * {
            position: relative;
            z-index: 9;
        }

        .block.bg:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, .65);
            z-index: 0;
        }

        .block.bg .container,
        .block.color_white .container {
            z-index: 2;
            position: relative;
            color: #fff;
        }

@media screen and (max-width:991px) {
    .block {
        padding: 50px 0;
    }

        .block.small-block {
            padding: 15px 0;
        }
}
/*block 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: calc(3.125vw - 3px);
    bottom: .9375vw;
    right: .9375vw;
    border-radius: 50%;
    text-align: center;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
    border: 1.5px solid #fff;
}

@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;
    }
}

/* 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;
        background-color: var(--color-primary);
    }

        /*.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;
        }

            .news-swiper .news-item .text-box .time {
                margin: var(--size-12) var(--size-24);
                color: #fff;
            }

            .news-swiper .news-item .text-box .title {
                margin: var(--size-12) var(--size-24);
                color: #fff;
            }

        .news-swiper .news-item:hover .text-box .title {
            color: var(--color-orange);
        }

    .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-swiper .swiper-box .swiper-pagination-bullet {
        width: 12px;
        height: 12px;
        line-height: 12px;
        border: none;
        outline: none;
        font-size: 0;
        background: url(../images/img6.png) no-repeat center;
        height: 20px;
        width: 20px;
        color: var(--color-white);
    }

    .news-swiper .swiper-box .swiper-pagination-bullet-active {
        background: url(../images/img7.png) no-repeat center;
    }

        .news-swiper .swiper-box .swiper-pagination-bullet-active::after {
            background: url(../images/img7.png) no-repeat center;
        }

.news-list-wrap {
    /*border-top: .3125vw solid var(--border-color);*/
}

    .news-list-wrap .news-hightlight {
        position: relative;
        padding: .825vw 0;
    }

        .news-list-wrap .news-hightlight:after,
        .news-list-wrap .news-hightlight:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            background-color: #D3DBDA;
            width: 100%;
            z-index: 1;
        }

        .news-list-wrap .news-hightlight:after {
            width: 0;
            background-color: var(--color-primary);
            transition: all .3s ease-in-out;
        }

        .news-list-wrap .news-hightlight:hover {
            transform: translateY(-.65vw);
        }

            .news-list-wrap .news-hightlight:hover:after {
                width: 100%;
            }

        .news-list-wrap .news-hightlight .title {
            line-height: 2;
            transition: all .3s ease-in-out;
            overflow: hidden;
            flex: 1;
        }

            .news-list-wrap .news-hightlight .title .text {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.8;
            }

        .news-list-wrap .news-hightlight:hover .title {
            color: var(--color-primary);
            /* text-decoration: underline; */
        }

        .news-list-wrap .news-hightlight .time {
            display: flex;
            align-items: center;
            padding-bottom: .625vw;
            color: var(--color-orange);
        }

        /*.news-list-wrap .news-hightlight .img img {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 15vw;
            min-width: 150px;
            padding-top: 1.875vw;
        }*/
        .news-list-wrap .news-hightlight .right {
            width: 12.5vw;
            margin-left: 1.25vw;
        }

        .news-list-wrap .news-hightlight .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 56.25%;
            position: relative;
            border-radius: 5px;
            overflow: hidden;
        }

            .news-list-wrap .news-hightlight .img-box .img {
                position: absolute;
                top: 0;
                left: 0;
                right: 0;
                bottom: 0;
            }

                .news-list-wrap .news-hightlight .img-box .img img {
                    width: 100%;
                    height: 100%;
                    object-fit: cover;
                }

.news-list .news-item {
    padding: 1.875vw 0;
    display: block;
    /* border-bottom: 1px solid var(--border-color); */
    position: relative;
}

    .news-list .news-item:after,
    .news-list .news-item:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 0;
        height: 1px;
        background-color: #D3DBDA;
        width: 100%;
        z-index: 1;
    }

    .news-list .news-item:after {
        width: 0;
        background-color: var(--color-primary);
        transition: all .3s ease-in-out;
    }

    .news-list .news-item:hover:after {
        width: 100%;
    }

    .news-list .news-item .time {
        color: var(--color-primary);
        margin-bottom: .625vw;
    }

    .news-list .news-item .text {
        overflow: hidden;
    }

    .news-list .news-item .title {
        width: 35%;
        margin-right: 8%;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        line-height: 1.3;
        transition: all .3s ease-in-out;
    }

    .news-list .news-item .desc {
        flex: 1;
        color: var(--color-text-secondary-grey);
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        height: 100%;
    }

@media screen and (max-width: 991px) {
    .news-swiper {
        position: static;
    }

        .news-swiper .news-item .img-box {
            width: 100%;
            height: 0;
            padding-bottom: 66.66666%;
        }

            .news-swiper .news-item .img-box img {
                width: 100%;
            }

        .news-swiper .swiper-box {
            width: 130px;
            right: 20px;
            bottom: 20px;
        }

        .news-swiper .news-item .text-box {
            width: 100%;
            padding: 20px;
            padding-right: 150px;
        }

    .news-list-wrap {
        margin-top: 15px;
        border-top-width: 3px;
    }

        .news-list-wrap .news-hightlight .title {
            padding: 30px 30px 30px 0;
        }

    /*.news-list-wrap .news-hightlight .time {
            padding: 30px 0 30px 30px;
        }*/

    .news-list .news-item {
        padding: 30px 0;
    }

        .news-list .news-item .time {
            margin-bottom: 8px;
        }
}

@media screen and (max-width: 767px) {
    .news-list-wrap .news-hightlight .right {
        display: none;
    }

    .news-swiper .news-item .text-box {
        position: static;
        padding: 20px 0;
        color: var(--color-text-regular);
    }

        .news-swiper .news-item .text-box .title {
            margin-top: 15px;
        }

    .news-swiper {
        padding-bottom: 20px;
    }

        .news-swiper .swiper-box {
            left: 50%;
            margin-left: -65px;
            right: 0;
        }

        .news-swiper .ala-swiper .swiper-pagination-bullet::after {
            background-color: var(--color-primary)!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-primary);
        }

    .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: 0;
    }

    .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 */

/* index_xydt start */
.index_xydt_list {
    padding: var(--size-12) var(--size-6);
    background-color: var(--bg-grey);
    border-top: solid 1px var(--border-color-grey);
    transition: .5s;
}

.index_xydt_list_dian {
    text-align: center;
    color: var(--color-text-secondary-grey);
    line-height: 1.3;
}

.index_xydt_list_title {
    color: var(--color-text-secondary-grey);
    line-height: 1.8;
}

.index_xydt_list_content {
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.index_xydt_list:hover {
    background-color: var(--color-primary);
    transform: translateY(-.65vw);
}

    .index_xydt_list:hover .index_xydt_list_dian {
        color: #fff;
    }

    .index_xydt_list:hover .index_xydt_list_title {
        color: #fff;
    }

    .index_xydt_list:hover .index_xydt_list_content {
        color: #fff;
    }

    .index_xydt_list:hover .index_day {
        color: #fff;
    }

    .index_xydt_list:hover .index_yearly {
        color: #fff;
    }

.index_day {
    color: var(--color-text-secondary);
    text-align: center;
}

.index_yearly {
    color: var(--color-text-secondary);
    text-align: center;
}
/* index_xydt end */

/*footer*/
footer {
    position: relative;
    overflow: hidden;
    background: var(--color-footer);
}

    footer,
    footer a,
    footer a:visited {
        color: #fff;
    }

        footer a:hover,
        footer a:focus {
            color: var(--color-orange);
        }

.footer-top {
    padding: var(--size-40) 0;
    overflow: hidden;
}

    .footer-top .footer-logo img {
        max-width: 100%;
        /*max-height: 4.375vw;
        min-height: 50px;*/
    }

footer .footer-title {
    border-right: solid 3px #fff;
    line-height: 4;
}

.footer-top p,
.footer-top ul li {
    line-height: 2;
}

.footer-top ul,
.footer-top ul li {
    list-style: none;
}

.footer-top .footer-link.columns {
    columns: 2;
    column-count: 3;
    column-gap: 1.25vw;
}

.footer-top .footer-link li {
    /*line-height: 2;*/
    position: relative;
}

    .footer-top .footer-link li a {
        display: block;
        /*margin-bottom: .46875vw;*/
    }

.footer-copyright {
    padding: var(--size-24) 0;
    border-top: var(--size-1) solid rgba(255, 255, 255, .1);
    font-weight: 100;
}

@media screen and (max-width: 1191px) {
    .footer-top .footer-link.columns {
        columns: 3;
        column-count: 2;
        column-gap: 1.25vw;
    }
}

@media screen and (max-width: 992px) {
    footer .footer-title {
        border-right: none;
    }
}

@media screen and (min-width: 768px) {
    .footer-top {
        position: relative;
    }
}

@media screen and (max-width: 767px) {
    .footer-top {
        width: 100%;
    }

    .footer-flex {
        display: block;
        text-align: center;
        margin-bottom: var(--size-45);
    }

    .footer-top .footer-link.columns {
        columns: unset;
    }
}
/* footer END */


/* slide */
.slide {
    position: relative;
    display: block;
    color: #fff;
    overflow: hidden;
}

    .slide .img-box {
        z-index: 1;
    }

        .slide .img-box:after,
        .slide .img-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: 45%;
            background: linear-gradient( to top, rgba(16,38,59,0) 0%, #05284E 100%);
            opacity: 1;
            transition: all .3s ease-in-out;
            z-index: 2;
        }

        .slide .img-box:after {
            opacity: 0;
            background: linear-gradient( 180deg, #F44D00 0%, rgba(244,77,0,0) 100%);
        }

    .slide:hover .img-box:after {
        opacity: 1;
    }

    .slide:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 25%;
        background: linear-gradient( 180deg, rgba(16,38,59,0) 0%, #05284E 100%);
        z-index: 2;
    }

    .slide .img-box img {
        transform: scale(1);
        transition: all .3s ease-in-out;
    }

    .slide:hover .img-box img {
        transform: scale(1.05);
    }

    .slide .text-box {
        position: absolute;
        display: inline-block;
        transition: all .3s ease-in-out;
        padding: var(--size-24);
        left: 0;
        right: 0;
        bottom: -2.2em;
        z-index: 9;
    }

        .slide .text-box .more-link::after {
            display: none;
        }

    .slide:hover .text-box {
        bottom: 0;
        color: #fff;
    }

    .slide .text-box .icon {
        width: var(--size-48);
        height: var(--size-48);
        line-height: var(--size-48);
        border: var(--size-1) solid rgba(255, 255, 255, .2);
        border-radius: 50%;
        text-align: center;
        transition: all .3s ease-in-out;
    }

    .slide .text-box .title {
        margin-top: var(--size-9);
    }

    .slide .text-box .desc {
        margin-top: var(--size-6);
    }

    .slide .text-box .more {
        opacity: 0;
        overflow: hidden;
        transition: all .3s ease-in-out;
        margin-top: var(--size-15);
    }

    .slide:hover .text-box .more {
        opacity: 1;
    }

    .slide:hover .text-box .more-link:hover {
        color: #fff;
    }

    .slide:hover .text-box .icon {
        background-color: rgba(255, 255, 255, .2);
        /* color: var(--color-primary); */
    }
/* slide END */

/* inner-banner */
.inner-banner {
    background-image: url(../images/second-bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    min-height: 20vw;
    position: relative;
    padding-top: 7.29166667vw;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

    .inner-banner > * {
        position: relative;
        z-index: 2;
    }

/* breadcrumb */
.breadcrumb {
    padding: 0;
}

.layui-breadcrumb {
    color: var(--color-text-secondary-grey);
    font-size: inherit;
}

    .layui-breadcrumb > * {
        font-size: inherit;
    }

    .layui-breadcrumb a {
        color: inherit !important;
    }

    .layui-breadcrumb span[lay-separator] {
        color: inherit;
        font-family: Arial;
        margin: 0 var(--size-6);
    }

    .layui-breadcrumb a:hover {
        color: var(--color-primary) !important;
    }

    .layui-breadcrumb a cite {
        color: initial;
    }

.header_white .inner-banner .layui-breadcrumb {
    color: #fff;
}

    .header_white .inner-banner .layui-breadcrumb a:hover {
        color: #fff!important;
    }

.detail-inner-banner .breadcrumb {
    padding: var(--size-9) 0;
}

    .detail-inner-banner .breadcrumb .layui-breadcrumb {
        color: rgba(255, 255, 255, .9);
    }

        .detail-inner-banner .breadcrumb .layui-breadcrumb a cite {
            color: rgba(255, 255, 255, .9);
        }

@media screen and (max-width: 767px) {
    .detail-inner-banner .breadcrumb {
        display: none;
    }
}
/* breadcrumb END */

/* notice-item statr */
.notice-first {
    border-top: 1px solid var(--border-color-base);
}

.notice-item {
    display: flex;
    align-items: center;
    padding: var(--size-12) 0;
    border-bottom: 1px solid var(--border-color-base);
    transition: .5s;
    min-height: 5vw;
}

    .notice-item:hover {
        transform: translateY(-.65vw);
    }

    .notice-item .calendar-box {
        width: 4.9vw;
        min-width: 82px;
    }

        .notice-item .calendar-box .month {
            color: var(--color-text-month);
        }

        .notice-item .calendar-box .day {
            color: var(--color-text-day);
        }

    .notice-item .text-box {
        flex: 1;
    }

        .notice-item .text-box .title {
            line-height: 1.8;
            color: var(--color-text-menu);
        }

            .notice-item .text-box .title:hover {
                color: var(--color-text-notice);
            }

@media screen and (max-width: 567px) {
    .notice-item .calendar-box {
        min-width: 86px;
    }
}
/* notice-item END */

/*======== index_notice start ==========*/
.index_notice {
    transition: .5s;
    background: var(--bgcolor3);
    border-top: 5px solid var(--bgcolor2);
    min-height: 4.35vw;
    display: flex;
    align-items: center;
}

    .index_notice:hover {
        transform: translateY(-5px);
    }

    .index_notice .content {
        display: flex;
        align-items: center;
        justify-content: space-around;
        background: none;
        padding: 0;
    }

        .index_notice .content .datetime {
            background: var(--bgcolor);
            border-radius: var(--size-20);
            width: var(--size-110);
            line-height: 2;
            color: var(--color-white);
            display: flex;
            align-items: center;
            justify-content: space-around;
            margin-right: var(--size-12);
        }

        .index_notice .content .title {
            width: 80%;
            padding-left: var(--size-20);
            display: flex;
            align-items: center;
        }

            .index_notice .content .title a {
                color: var(--color-text-menu);
            }

                .index_notice .content .title a:hover {
                    color: var(--color-primary);
                }

@media screen and (max-width: 1199px) {
    .index_notice .content .datetime {
        width: 110px;
    }
}
/*======== index_notice end ==========*/

/*======== index_cjwh start ==========*/
.index_cjwh_day {
    color: var(--color-white);
    text-align: center;
}

.index_cjwh_yearly {
    color: var(--color-white);
    text-align: center;
}

.index_cjwh_list {
    line-height: 1.5;
    padding: var(--size-15);
    transition: .5s;
    background: var(--color-primary);
    display: flex;
    align-items: center;
}

    .index_cjwh_list:hover {
        transform: translateY(-5px);
    }

.a_index_cjwh {
    text-decoration: none;
    color: var(--color-white);
}

    .a_index_cjwh:hover {
        text-decoration: none;
        color: var(--color-white);
    }
/*======== index_cjwh end ==========*/

/* secondary-menu */
.secondary-menu-wrap {
    position: sticky;
    position: -webkit-sticky;
    transition: all .3s ease-in-out;
    top: var(--size-120);
    border: 1px solid var(--border-secondary);
    border-radius: var(--size-6);
    box-shadow: 0 0 5px #999;
}

    .secondary-menu-wrap .secondary-menu-title {
        padding: var(--size-20) var(--size-24);
        border-bottom: 1px solid var(--border-secondary);
        margin-bottom: var(--size-15);
        color: #fff;
        background: var(--color-primary);
        border-radius: var(--size-6) var(--size-6) 0 0;
    }
/* secondary-menu END */

/* secondary-menu */
.secondary-menu {
}

.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 .menu-item {
    display: flex;
    align-items: center;
    padding: 1.09375vw;
    border-bottom: 1px solid rgba(0, 0, 0, .1);
    transition: all .3s ease-in-out;
    color: var(--color-darkblue);
}

    .secondary-menu .menu-item em {
        font-style: normal;
    }

    .secondary-menu .menu-item .iconfont {
        opacity: 1;
        transition: all .3s ease-in-out;
        font-size: .9em;
        margin-right: .5vw;
        color: var(--color-darkblue);
    }

    .secondary-menu .menu-item.active,
    .secondary-menu .menu-item.active .iconfont {
        color: var(--color-orange);
    }

@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: 1.5625vw;
    border-bottom: 5px solid var(--color-darkblue);
    padding-bottom: 1vw;
}

.secondary-menu-title {
    color: var(--color-darkblue);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

    .secondary-menu-title em {
        font-style: normal;
    }

.secondary-menu-right + .mce-content-body {
    margin-top: -.78125vw;
    margin-bottom: 1.5625vw;
}

@media screen and (min-width: 768px) {
    .secondary-menu-title .icon-down,
    .secondary-menu-list {
        display: none !important;
    }
}

@media screen and (max-width: 1199px) {
    .secondary-menu-right {
        margin-bottom: 20px;
    }

        .secondary-menu-right + .mce-content-body {
            margin-top: -10px;
            margin-bottom: 20px;
        }
}

@media screen and (max-width: 767px) {
    .secondaryMenuTemp {
        height: 60px;
        display: none;
    }

    .secondary-menu-right {
        background-color: #fff;
        position: relative;
        transition: all .3s ease-in-out;
        transform: unset !important;
        display: block!important;
    }

        .secondary-menu-right .secondary-menu-title {
            padding: 10px 0;
            margin-bottom: 0;
            border-bottom: 1px solid transparent;
            cursor: pointer;
            height: 50px;
        }

        .secondary-menu-right.open .secondary-menu-title {
            border-bottom-color: var(--border-color);
        }

        .secondary-menu-right .secondary-menu-title .icon-down {
            transition: all .3s ease-in-out;
        }

        .secondary-menu-right.open .secondary-menu-title .icon-down {
            transform: rotate(180deg);
        }

    .secondary-menu-list {
        padding: 10px 0;
        display: none;
    }

    .secondary-menu-right.open .secondary-menu-list {
        display: block;
    }

    .secondary-menu-list .menu-item {
        display: block;
        border-bottom: 0;
        padding: 10px 0;
    }

        .secondary-menu-list .menu-item em {
            font-style: normal;
        }

        .secondary-menu-list .menu-item.active {
            color: var(--color-darkblue);
        }

    .secondary-menu-fixed .secondary-menu {
        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 .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;
    border-bottom: 1px solid var(--border-secondary);
    position: relative;
    transition: all .3s ease-in-out;
}

    .list .item > * {
        position: relative;
    }

    .list .item:hover {
        color: var(--color-darkblue);
    }

        .list .item:hover:before {
            width: 100%;
        }

    .list .item .right-box,
    .list .item .text-box {
        padding: 0.5875vw;
    }

    .list .item .text-box {
        flex: 1;
    }

    .list .item .title {
        line-height: 1.5;
        color: var(--color-text-secondary-grey);
    }

    .list .item .tags {
        color: var(--color-text-month);
    }

    .list .item:hover .title {
        color: var(--color-darkblue);
    }

    .list .item .right-box {
        display: flex;
        align-items: center;
        min-width: 5vw;
        font-family: 'Microsoft YaHei';
    }

    .list .item .time {
        position: relative;
        line-height: 1;
    }

.list .szdw {
    border: 2px solid var(--color-darkblue);
    position: relative;
    margin-bottom: 1.09375vw;
    transition: all .3s ease-in-out;
}

    .list .szdw .title {
        width: 100%;
        background-color: var(--color-darkblue);
        color: #fff;
        line-height: 3;
        padding-left: 3.125vw;
    }

    .list .szdw .content {
        display: flex;
        padding: 2rem;
    }

@media screen and (max-width: 1439px) {
    .list .item {
        margin-bottom: 15px;
    }
}

@media screen and (max-width: 1199px) {
    .list .item .right-box {
        min-width: 115px;
    }

    .list .item .right-box,
    .list .item .text-box {
        padding: 15px;
    }
}

@media screen and (max-width: 767px) {
    .list .item {
        display: block;
    }

        .list .item .right-box {
            padding-top: 0;
        }

        .list .item .text-box {
            padding-bottom: 12px;
        }
}

@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 {
            padding-bottom: .24rem;
        }
}
/* list END */

/* content_list */
.content_list {
    position: relative;
}

    .content_list .title {
        line-height: 1.5;
        color: var(--color-primary);
        padding: .5vw 5vw;
    }

    .content_list .datetime {
        line-height: 1.5;
        border-top: unset;
        border-bottom: solid 2px var(--color-plain);
        color: var(--color-text-secondary);
        padding: .5vw 0;
    }

        .content_list .datetime span {
            margin: 0 var(--size-12);
        }

    .content_list .content {
        padding: 1.12368vw 4vw;
        font-family: '宋体';
    }

        .content_list .content p {
            line-height: 1.5;
            text-align: justify;
        }

        .content_list .content .v_news_content p {
            text-indent: 2em;
        }

        .content_list .content p:not(:has(> img)) {
            text-indent: unset;
        }

        .content_list .content .v_news_content .vsbcontent_img {
            margin: var(--size-12) 0;
            display: flex;
            justify-content: center;
            align-items: center;
            text-indent: unset;
        }

@media screen and (max-width: 567px) {
    .content_list .content img {
        width: 90%;
        height: auto;
    }

    .content_list .datetime {
        padding: 1vw 0;
        border-top: solid 2px var(--color-plain);
        border-bottom: unset;
    }

        .content_list .datetime span {
            float: left;
            width: 100%;
        }
}
/* content_list END */

/*======== search start  ==========*/
.search {
    padding: 5px 100px 5px 20px;
    position: relative;
    line-height: 35px;
    border-radius: 30px;
    background: #f2f2f2;
}

    .search input[type="text"] {
        display: block;
        width: 100%;
        line-height: 25px;
        background: none;
        /*color: #fff;*/
        border: 0;
    }

        .search input[type="text"]::placeholder {
            color: #928b8b;
        }

    .search input[type="image"] {
        position: absolute;
        right: 10px;
        top: 10px;
        height: 15px;
    }
/*======== search end  ==========*/

/*======== index-title/more/en ========*/
.section_title_area {
    margin-bottom: 1vw;
    position: relative;
    z-index: 1;
}

    .section_title_area h2 {
        letter-spacing: 2px;
        color: var(--color-primary);
        text-transform: uppercase;
    }

.witr_back_title {
    position: absolute;
    top: -.65vw;
    z-index: -1;
}

    .witr_back_title h4 {
        color: rgba(7, 78, 155, 0.10);
        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;
    }

.more a {
    color: var(--color-white);
    background: var(--color-primary);
    border-radius: 10px;
    line-height: 1.5;
    padding: 3px 5px;
    z-index: 1;
}

    .more a:hover {
        background: var(--color-orange);
    }

.more_white a {
    background: var(--color-white);
    color: var(--color-primary);
    border-radius: 10px;
    line-height: 1.5;
    padding: 3px 5px;
    z-index: 1;
}

    .more_white a:hover {
        background: var(--color-primary);
        color: var(--color-white);
    }
/*======== index-title/more/en end  ==========*/

/*======== 师资队伍字母表 ========*/
.list ul li {
    display: inline-block;
    margin-right: var(--size-32);
}
/*======== 师资队伍字母表end ========*/
/* people-item */
.people-item {
    position: relative;
    display: block;
}

    .people-item:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        height: 50%;
        background: linear-gradient(to top, rgba(0, 0, 0, .85) 0%, rgba(0, 0, 0, 0) 100%);
        z-index: 2;
    }

    .people-item .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 130%;
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

        .people-item .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .people-item .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .people-item .text-box {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        color: #fff;
        padding: 2.1875vw;
        z-index: 3;
    }

        .people-item .text-box > * {
            position: relative;
        }

        .people-item .text-box:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            height: .46875vw;
            background-color: var(--color-primary);
            transition: all .3s ease-in-out;
        }

    .people-item:hover .text-box:before {
        height: 100% !important;
    }

    .people-item:hover .ala-tag {
        background-color: #fff;
        color: var(--color-text-secondary-grey);
    }

    .people-item .text-box .name {
        line-height: 1.5;
        border-left: 10px solid;
        border-color: #0c85d1;
        padding-left: var(--size-12);
    }

    .people-item:hover .text-box .name {
        color: var(--color-orange);
    }

    .people-item .text-box .ala-tag {
        margin-bottom: .46875vw;
    }

    .people-item .text-box .title {
        margin-top: .3125vw;
    }

    .people-item .text-box .info {
        margin-top: .9375vw;
    }

        .people-item .text-box .info .item {
            display: block;
        }

            .people-item .text-box .info .item + .item {
                margin-top: 2px;
            }

    .people-item.is-small .text-box {
        padding: 1.40625vw;
    }

        .people-item.is-small .text-box:before {
            height: .3125vw;
        }

@media screen and (max-width: 1200px) {
    .people-item .text-box .title {
        margin-top: 4px;
    }

    .people-item .text-box .ala-tag {
        margin-bottom: 6px;
    }

    .people-item .text-box .info {
        margin-top: 12px;
    }
}

@media screen and (max-width: 991px) {
    .people-item .text-box {
        padding: 20px;
    }

        .people-item .text-box:before {
            height: 5px;
        }

        .people-item .text-box .title,
        .people-item .text-box .info {
            font-size: 13px;
        }

    .people-item.is-small .text-box {
        padding: 15px;
    }

        .people-item.is-small .text-box:before {
            height: 3px;
        }
}

@media screen and (max-width: 567px) {
    .people-item .text-box {
        padding: .4rem;
    }

        .people-item .text-box:before {
            height: .1rem;
        }

        .people-item .text-box .title,
        .people-item .text-box .info {
            font-size: .26rem;
        }

    .people-item.is-small .text-box {
        padding: .3rem;
    }

        .people-item.is-small .text-box:before {
            height: .06rem;
        }
}

/* people-item END */

/* leader-list */
.leader-list .people-item {
    display: flex;
    flex-direction: column;
    height: 100%;
    max-width: 20vw;
    margin: 0 auto;
}

    .leader-list .people-item:after,
    .leader-list .people-item.is-small .text-box:before {
        content: unset;
    }

    .leader-list .people-item.is-small .text-box {
        position: static;
        color: var(--color-text-regular);
        border: 1px solid var(--border-color);
        border-top: 0;
        width: 100%;
        flex: 1;
        padding: 1.40625vw .9375vw;
    }

.leader-list .text-box .info {
    color: var(--color-text-secondary-grey);
}

.leader-list .people-item .text-box .info .item {
    line-height: 1.5;
}

    .leader-list .people-item .text-box .info .item + .item {
        margin-top: 4px;
    }

@media screen and (max-width: 1440px) {
    .leader-list .people-item {
        max-width: 260px;
    }
}

@media screen and (max-width: 991px) {
    .leader-list .people-item.is-small .text-box {
        padding: 15px;
    }

    .leader-list .people-item {
        max-width: 100%;
    }
}

@media screen and (max-width: 567px) {
    .leader-list .people-item.is-small .text-box {
        padding: .3rem;
    }
}
/* leader-list END */
