.main-hidden {
    overflow: hidden;
}

/* menu-toggle */
.menu-toggle {
    cursor: pointer;
    display: flex;
    align-items: center;
    color: var(--color-white);
    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-white);
            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-white);
        -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);
}

.header {
    position: relative;
    z-index: 99;
}

/**首页顶部菜单在大图上**/
.header_white:not(.header-fixed) header {
    position: absolute;
    background: linear-gradient(rgba(155, 0, 7), rgba(0, 0, 0, 0));
}

    .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: var(--color-white);
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

header .logo img {
    height: 3.191875vw;
    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: 5.29166667vw;
        /* padding-right: 0!important; */
    }

    .header .layui-container-second {
        height: 6vw;
    }

    .header .header-right {
        /* flex: 1; */
        padding-left: var(--size-15);
        display: flex;
        flex-direction: column;
        /*justify-content: space-between;*/
        justify-content: center;
        height: 100%;
    }

    .header .search-toggle {
        position: relative;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: var(--size-20);
        width: var(--size-36);
        height: var(--size-36);
        border-radius: 50%;
        background-color: rgba(255, 255, 255, .2);
        color: var(--color-white);
        cursor: pointer;
        transition: all .3s ease-in-out;
    }

        .header .search-toggle:hover {
            background-color: var(--color-orange);
        }

        .header .search-toggle .layui-input {
            background-color: rgba(255, 255, 255, .1);
            min-width: 18vw;
            border-radius: var(--size-4);
            height: var(--size-48);
            line-height: var(--size-48);
            color: var(--color-white);
            padding-right: var(--size-48);
            border-radius: var(--size-48);
        }

            .header .search-toggle .layui-input::placeholder {
                color: rgba(255, 255, 255, .25);
            }

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: var(--color-white);
            display: flex;
            align-items: center;
            background: var(--color-orange);
            line-height: 2;
            /* opacity: .7; */
        }

        /* header .secondary-nav .layui-nav .layui-nav-item>a:hover {
    opacity: 1;
} */

        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;
}

.show-menu header,
.header-fixed header {
    position: fixed;
    left: 0;
    right: 0;
    /* top: -100%;
    opacity: 0; */
    top: 0;
    box-shadow: 0 0 10px rgb(0 0 0 / 15%);
    background: var(--color-primary)!important;
    -webkit-transition: top .3s;
    -o-transition: top .3s;
    transition: top .3s;
    z-index: 9999;
}

.header-fixed header {
    top: -100%;
    opacity: 0;
}

    .show-menu header:after,
    .header-fixed header:after {
        content: unset!important;
    }

.header-fixed.header-show header {
    position: fixed;
    top: 0;
    opacity: 1;
}

@media screen and (min-width: 992px) {
    .header-fixed header {
        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 header {
        position: fixed;
        top: 0;
        opacity: 1;
    }
}

@media screen and (max-width: 1440px) {
    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: 1440px) {
    .headerTemp,
    .header .layui-container {
        height: 105px;
    }

    .header .layui-container-second {
        height: 90px;
    }
}

@media screen and (max-width: 1199px) {
    .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); */
    }
}

@media screen and (max-width: 767px) {
    .hide-mobile {
        display: none!important;
    }

    header .secondary-nav .layui-nav .layui-nav-item.hide-mobile + .layui-nav-item:after {
        content: unset;
    }
}

@media screen and (max-width: 1440px) {
    .header .search-toggle {
        width: 32px;
        height: 32px;
    }
}

@media screen and (max-width: 567px) {
    .header .search-toggle {
        width: .64rem;
        height: .64rem;
    }
}

/* header-nav */
.header-nav {
    display: flex;
    align-items: center;
    /*margin-bottom: 1vw;*/
}

    .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: 1200px) {
    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-18);
            color: var(--color-white);
            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 > a > span {
        position: relative;
        z-index: 2;
    }

    .header-nav .layui-nav .layui-nav-item > a:after {
        content: "";
        position: absolute;
        left: .9vw;
        right: .9vw;
        bottom: 0;
        height: var(--size-4);
        background: var(--color-orange);
        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 {
        top: 100%;
        left: 0;
        border: 0;
        border-radius: 0;
        box-shadow: 0 20px 20px rgba(0,0,0,.2);
        background-color: var(--color-primary);
        padding: 1.125vw;
        white-space: normal;
        line-height: 1.5;
        color: var(--color-white);
        min-width: 16vw;
    }

        .header-nav .layui-nav-child .submenu-list {
            position: relative;
            /* height: 100%; */
        }

        .header-nav .layui-nav-child .submenu-item .second-column,
        .header-nav .layui-nav-child .submenu-item .first-column {
            /*width: 50%;*/
            padding: 0 .821875vw;
        }

        .header-nav .layui-nav-child .submenu-item .toggle-btn {
            border-bottom: 1px solid rgba(0, 0, 0, .1);
            cursor: pointer;
        }

            .header-nav .layui-nav-child .submenu-item .toggle-btn > a {
                padding: .625vw 0;
                color: inherit;
                flex: 1;
            }

            .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 a,
        .header-nav .layui-nav-child .submenu-item .first-column:hover .toggle-btn a {
            color: var(--color-orange);
        }

        .header-nav .layui-nav-child .submenu-item.active .second-column {
            opacity: 1;
            z-index: 1;
        }

        .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;
                /*font-weight: bold;*/
            }

            .header-nav .layui-nav-child .submenu-item .toggle-btn .iconfont {
                transform: scale(.8);
                display: flex;
                align-items: center;
                padding-left: 1.25vw;
            }

        .header-nav .layui-nav-child .submenu-item.active .toggle-btn,
        .header-nav .layui-nav-child .submenu-item .first-column:hover .toggle-btn {
            color: var(--color-primary);
        }
}

@media screen and (max-width: 1199px) {
    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 (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;
    overflow: hidden;
    background: var(--color-white) 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: var(--color-white) 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: var(--color-white) 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: var(--color-white);
    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 */

/* 搜索弹窗 */
.search-box {
    display: none;
}

.layui-layer.tc-search {
    border-radius: 0;
    background: unset;
    box-shadow: none;
    padding-top: 134px;
    background: var(--color-white);
}

    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 2000px);
        left: calc(50% - 2000px);
        top: -3403px;
        width: 4000px;
        height: 4000px;
        position: absolute;
        display: block;
        content: " ";
        background: url(../../images/bg-search.png) center bottom no-repeat;
        background-size: 15%;
        z-index: 0;
    }

    /*.layui-layer.tc-search:after {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        bottom: 50px;
        height: 69px;
        background: url(../images/search-bg.png) right bottom no-repeat;
        background-size: cover;
        opacity: .75;
    }*/

    .layui-layer.tc-search .layui-layer-content {
        padding: 0px;
    }

    .layui-layer.tc-search .container {
        max-width: 800px;
        margin: 0 auto;
        margin-top: 8%;
    }

    .layui-layer.tc-search .input-box {
        padding: 6px;
        position: relative;
        margin-bottom: 30px;
    }

    .layui-layer.tc-search .layui-input {
        height: 50px;
        border-radius: 30px;
        border: 0;
        padding: 10px 70px 10px 26px;
        background: rgba(0,0,0,.075);
        position: relative;
        z-index: 2;
    }

        .layui-layer.tc-search .layui-input + .bg {
            position: absolute;
            left: 0px;
            right: 0px;
            top: 0px;
            bottom: 0px;
            border-radius: 50px;
            background: rgba(255,255,255,.25);
            opacity: 0;
            z-index: 1;
            -webkit-transition: all .3s;
            -o-transition: all .3s;
            transition: all .3s;
        }

        .layui-layer.tc-search .layui-input:focus + .bg {
            opacity: 1;
        }

    .layui-layer.tc-search .form-submit {
        margin-top: 10px;
        position: absolute;
        right: 8px;
        width: 70px;
        height: 50px;
        line-height: 50px;
        background: none;
        outline: none;
        top: 8px;
        margin-top: 0;
        border: 0;
        font-size: 22px;
        cursor: pointer;
        z-index: 3;
        color: var(--color-orange);
    }

        .layui-layer.tc-search .form-submit:hover {
            color: var(--color-orange);
        }

    .layui-layer.tc-search .popular-search {
        text-align: center;
    }

        .layui-layer.tc-search .popular-search .title {
            font-weight: bold;
            position: relative;
            padding-left: 18px;
            display: inline-block;
            margin: 0 auto 10px;
            color: var(--color-primary);
        }

            .layui-layer.tc-search .popular-search .title:after {
                content: "";
                position: absolute;
                left: 0px;
                top: 50%;
                margin-top: -4px;
                height: 7px;
                width: 7px;
                background: var(--color-primary);
                border-radius: 5px;
            }

        .layui-layer.tc-search .popular-search ul {
            text-align: center;
            margin: 0 -15px;
        }

            .layui-layer.tc-search .popular-search ul li {
                list-style: none;
                padding: 8px 15px;
                display: inline-block;
            }

                .layui-layer.tc-search .popular-search ul li a {
                    color: var(--color-text-secondary);
                }

                    .layui-layer.tc-search .popular-search ul li a:hover {
                        color: var(--color-primary);
                        text-decoration: underline;
                    }

@media screen and (max-width: 1600px) {
    .layui-layer.tc-search:after {
        height: 60px;
    }
}

@media screen and (max-width: 991px) {
    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 1500px);
        left: calc(50% - 1500px);
        top: -2403px;
        width: 3000px;
        height: 3000px;
    }
}

@media screen and (max-width: 767px) {
    .layui-layer.tc-search:after {
        height: 45px;
        background: url(../images/search-bg.png) right 5% bottom no-repeat;
        background-size: cover;
    }

    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 1000px);
        left: calc(50% - 1000px);
        top: -1403px;
        width: 2000px;
        height: 2000px;
    }

    .layui-layer.tc-search .layui-layer-setwin {
        top: 20px;
        right: 0px;
    }

    .layui-layer.tc-search .layui-form-item {
        margin-bottom: 5px;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }

    .layui-layer.tc-search .popular-search ul {
        margin: 0 -10px;
    }

        .layui-layer.tc-search .popular-search ul li {
            padding: 6px 10px;
        }
}

@media screen and (min-width: 1600px) {
    .layui-layer.tc-search:before {
        left: -webkit-calc(50% - 2000px);
        left: calc(50% - 2000px);
        top: -3260px;
        width: 4000px;
        height: 4000px;
    }
}
/* 搜索弹窗 END */
/*弹窗动画*/
.layer-anim-01 {
    -webkit-animation-name: slideInDown !important;
    animation-name: slideInDown !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

@-webkit-keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInDown {
    0% {
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
        visibility: visible;
    }

    100% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.layui-layer.tc-fullpage.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}

@-webkit-keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes slideOutUp {
    0% {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    100% {
        visibility: hidden;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}
/*弹窗动画 END*/

/* search-layer */
/*弹窗动画*/
.layui-layer.tc-search.layer-anim-close {
    -webkit-animation-name: slideOutUp !important;
    animation-name: slideOutUp !important;
    -webkit-animation-duration: .6s !important;
    animation-duration: .6s !important;
}
/*弹窗动画 END*/
.layui-layer.tc-search {
    left: 0!important;
    right: 0!important;
    width: unset!important;
    /* background-color: unset!important; */
}

    .layui-layer.tc-search .layui-layer-content {
        height: 100%!important;
    }

    .layui-layer.tc-search .search-container {
        display: flex;
        flex-direction: column;
        height: 100%;
        overflow: hidden;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        width: 2.5vw;
        height: 2.5vw;
        line-height: 2.5vw;
        background: var(--color-primary);
        color: var(--color-white);
        right: 3.125vw;
        top: 1.25417vw;
    }

.search-layer {
    height: 100%;
}

.search-container .search-head,
.search-container .search-body {
    width: 100%;
}

.search-container .search-head {
    font-weight: bold;
    color: var(--color-white);
    background-color: var(--color-white);
    line-height: 1;
    position: relative;
    height: 5.20833vw;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

    .search-container .search-head .logo img {
        height: 3.375vw;
    }

.search-container .search-body {
    flex: 1;
    background-color: rgb(232 239 241 / 90%);
    padding: 2.5vw 0;
    position: relative;
}

    .search-container .search-body > * {
        position: relative;
        z-index: 1;
    }
    /* .search-container .search-body:before{
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 55%;
    height: 75%;
    background: url(../images/bg-search.png) left top no-repeat;
    background-size: contain;
    z-index: 0;
} */
    .search-container .search-body:after {
        content: "";
        position: absolute;
        top: 0;
        right: 0;
        bottom: 3.125vw;
        width: 100%;
        background: url(../images/bg-search-1.png) bottom no-repeat;
        background-size: 100%;
        z-index: 0;
    }

    .search-container .search-body .layui-form .type-radio-group {
        margin-bottom: var(--size-4);
        display: flex;
        align-items: center;
    }

    .search-container .search-body .layui-form .item + .item {
        margin-left: var(--size-4);
    }

    .search-container .search-body .layui-form .layui-form-radio {
        margin: 0;
        padding: 0 var(--size-24);
        display: block;
        color: inherit;
        line-height: 1.2;
        text-align: center;
        background-color: var(--color-white);
        font-size: inherit;
        height: 3.4658333vw;
        line-height: 3.4658333vw;
        min-width: 6vw;
    }

        .search-container .search-body .layui-form .layui-form-radio i {
            display: none;
        }

        .search-container .search-body .layui-form .layui-form-radio > * {
            font-size: inherit;
            color: inherit!important;
        }

        .search-container .search-body .layui-form .layui-form-radio:hover {
            color: inherit;
        }

    .search-container .search-body .layui-form .layui-form-radioed {
        background: var(--color-primary);
        color: var(--color-white)!important;
    }


    .search-container .search-body .layui-form {
        max-width: 60%;
        margin: 0 auto;
        padding-bottom: 3.25vw;
    }

        .search-container .search-body .layui-form .layui-input {
            background-color: var(--color-white);
        }

        .search-container .search-body .layui-form .layui-form-select {
            margin-right: .3125vw;
        }

@media screen and (max-width: 1439px) {
    .search-container .search-head {
        height: 75px;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        width: 36px;
        height: 36px;
        line-height: 36px;
        top: 19.5px;
    }

    .search-container .search-head .logo img {
        height: 40px;
    }

    .search-container .search-body {
        padding: 36px 0;
    }

        .search-container .search-body .layui-form .layui-form-select {
            margin-right: 4.5px;
        }

        .search-container .search-body .layui-form .layui-form-radio {
            height: 50px;
            line-height: 50px;
        }
}

@media screen and (max-width: 1199px) {
    .search-container .search-body:after {
        border-bottom-width: 1px;
        background-size: 200px;
    }

    .search-container .search-body .layui-form {
        max-width: 720px;
    }
}

@media screen and (max-width: 991px) {
    .search-container .search-body:after {
        border-bottom-width: 1px;
        background-size: 200px;
    }

    .search-container .search-head {
        height: 82px;
    }
}

@media screen and (max-width: 767px) {
    .search-container .search-body:before {
        width: 85%;
        height: 75%;
    }

    .search-container .search-body .layui-form .item {
        flex: 1;
    }
}

@media screen and (max-width: 567px) {
    .search-container .search-head .logo img {
        height: .64rem;
    }

    .layui-layer.tc-search .layui-layer-setwin .layui-layer-close2 {
        right: .32rem;
    }

    .search-container .search-body .layui-form > .ala-flex {
        display: block;
    }

    .search-container .search-body .layui-form .layui-form-select {
        margin-right: 0;
        margin-bottom: 5px;
    }

    .search-container .search-body .layui-form .layui-btn {
        margin-top: 5px;
        justify-content: center;
    }
}
/* search-layer END */

/*swiper-button*/
.ala-swiper .swiper-button-prev,
.ala-swiper .swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -.9375vw;
    width: 1.875vw;
    height: 1.875vw;
    z-index: 90;
    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: var(--color-plain);
}

.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;
}


@media screen and (max-width: 1439px) {
    .ala-swiper .swiper-button-prev,
    .ala-swiper .swiper-button-next {
        width: 27px;
        height: 27px;
        margin-top: -13.5px;
    }
}*/
.ala-swiper.is-white .swiper-pagination-bullet {
    background-color: var(--color-plain);
}

.ala-swiper .swiper-pagination-bullet-active {
    background-color: var(--color-orange)!important;
}

    .ala-swiper .swiper-pagination-bullet-active::after {
        background-color: var(--color-orange) !important;
    }
/*.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 var(--color-plain);
    }

    .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: var(--color-white);
        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: var(--color-white)!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: var(--color-white);
    }

        .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: var(--color-white);
    }

        .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: 100vh;
    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: var(--color-white);
        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: var(--color-white);
    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%;
    }

/*.ui-loop {
    position: absolute;
    left: 0;
    top: 0;
    width: 6.25vw;
    height: 6.25vw;
    cursor: pointer;
}

    .ui-loop .iconfont {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%,-50%);
        color: var(--color-white);
    }

    .ui-loop.pause .icon-pause:before {
        content: "\e65a";
    }

.path-loop {
    fill: none;
    stroke: var(--color-primary);
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
}

.path-loop-bg {
    fill: none;
    stroke: var(--color-primary);
    stroke-miterlimit: 10;
    stroke-width: var(--size-1);
    opacity: 0.1;
}*/

.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: var(--color-white);
        }

        .banner .banner-swiper-button .swiper-button-prev:hover {
            background-color: var(--color-white);
        }

            .banner .banner-swiper-button .swiper-button-prev:hover:after {
                color: var(--color-primary);
            }

    .banner .banner-swiper-button .swiper-button-next {
        background: var(--color-white)!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: var(--color-white);
    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: 991px) {
    .banner {
        height: 60vw;
    }

        .banner .slide-down {
            display: none;
        }
}
/*banner END*/

/*home-banner-wrap*/
.home-banner-wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: var(--size-60);
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    color: var(--color-white);
    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 {
        line-height: 1.1;
        font-weight: 600;
        text-shadow: 0px 2px 4px rgba(0,0,0,0.5);
        width: 70%;
    }

        .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: var(--color-white);
        }

@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: var(--color-white);
        }

.color_white {
    color: var(--color-white);
}

@media screen and (max-width:991px) {
    .block {
        padding: 50px 0;
    }

        .block.small-block {
            padding: 40px 0;
        }
}
/*block 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;*/ /*小写转大写*/
        font-weight: 600;
    }

    .section_title_area .more a {
        color: var(--color-white);
        background: var(--color-orange);
        border-radius: 15px;
        padding: var(--size-4) var(--size-12);
        z-index: 1;
        font-weight: 300;
        transition: all .3s ease-in-out;
    }

        .section_title_area .more a:hover {
            background: var(--color-plain);
        }
/*======== index-title/more/en 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 var(--color-white);
}

@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;
    }
}

/* notice */
.notice-block {
    background: url(../../images/notice-bg.png) no-repeat right bottom var(--bg-grey);
    background-size: contain;
}

/* notice-card */
.home-events {
    padding: var(--size-18) 0;
}

.notice-card {
    display: block;
    height: 100%;
    padding: var(--size-40) var(--size-32) var(--size-120);
    background-color: var(--color-white);
    background-image: url(../../images/logo-bg.png);
    background-repeat: no-repeat;
    background-position: bottom right;
    background-size: 45%;
    color: inherit;
    transition: all .2s ease-in-out;
    position: relative;
    overflow: hidden;
}

    .notice-card > * {
        position: relative;
    }

    .notice-card:before {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        bottom: 0;
        width: 0;
        background-color: var(--color-plain);
        background-image: url(../../images/notice-right-bg.png);
        background-repeat: no-repeat;
        background-position: right bottom;
        background-size: contain;
        transition: all .3s ease-in-out;
    }

    .notice-card:hover:before {
        width: 100%;
    }

    .notice-card .text-box .time {
        padding-bottom: var(--size-18);
        margin-bottom: var(--size-24);
        border-bottom: var(--size-1) solid var(--border-color-base);
    }

    .notice-card:hover {
        color: var(--color-white);
        background-color: var(--color-primary);
    }
/* notice-card END */

/* notice-item */
.notice-list .first_item {
    border-top: 1px solid var(--border-color);
}

.notice-list .last_item {
    border-bottom: 1px solid var(--border-color);
}

.notice-list .right_border {
    border-right: 1px solid var(--border-color);
}

.notice-list .notice-item {
    display: flex;
    align-items: center;
    padding: var(--size-18) 0;
    transition: .5s;
    min-height: 6vw;
}

.notice-item:hover {
    transform: translateY(-.65vw);
}

.notice-item .calendar-box {
    width: 4.9vw;
    min-width: 82px;
    margin-right: var(--size-30);
}

    .notice-item .calendar-box .month {
        background-color: var(--color-primary);
        color: var(--color-white);
        padding: 0 var(--size-9);
        line-height: 1.5em;
        text-align: center;
    }

    .notice-item .calendar-box .day {
        text-align: center;
        padding: var(--size-9) var(--size-4);
        background-color: var(--color-white);
        color: var(--color-text-primary);
    }

    .notice-item .calendar-box .day2 {
        text-align: center;
        color: var(--color-text-secondary);
        font-weight: 700;
    }

.notice-item .text-box {
    flex: 1;
}

    .notice-item .text-box .title {
        /*font-family: 'PoppinsMedium';*/
        line-height: 1.8;
    }

.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 */
/* notice END */

/* gzdt */
.news-block {
    background: url(../../images/gzdt-bg.png) no-repeat left bottom var(--color-white);
    background-size: contain;
}

/* 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: 80%;
            z-index: 1;
            padding-bottom: unset;
        }

            .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: 20%;
            z-index: 1;
        }

            .news-swiper .news-item .text-box .time {
                margin: var(--size-24) var(--size-24) var(--size-12);
                color: var(--color-white);
            }

            .news-swiper .news-item .text-box .title {
                margin: var(--size-12) var(--size-24);
                color: var(--color-white);
            }

        .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: var(--color-white);
            bottom: 0;
            display: flex;
            align-items: center;
            justify-content: center;
        }*/

        .news-swiper .swiper-box .swiper-pagination-bullet {
            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;
            background-color: unset;
        }

    .news-swiper .swiper-button-prev,
    .news-swiper .swiper-button-next {
        border: 0 !important;
    }

    .news-swiper .swiper-button-prev {
        left: 0;
    }

    .news-swiper .swiper-button-next {
        right: 0;
    }

.news-list-wrap {
    /*border-top: .3125vw solid var(--border-color);*/
}

    .news-list-wrap .news-hightlight {
        position: relative;
        padding: .825vw 0;
    }

        .news-list-wrap .news-hightlight:after,
        .news-list-wrap .news-hightlight:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 1px;
            background-color: #D3DBDA;
            width: 100%;
            z-index: 1;
        }

        .news-list-wrap .news-hightlight:after {
            width: 0;
            background-color: var(--color-primary);
            transition: all .3s ease-in-out;
        }

        .news-list-wrap .news-hightlight:hover {
            transform: translateY(-.65vw);
        }

            .news-list-wrap .news-hightlight:hover:after {
                width: 100%;
            }

        .news-list-wrap .news-hightlight .title {
            line-height: 2;
            transition: all .3s ease-in-out;
            overflow: hidden;
            flex: 1;
        }

            .news-list-wrap .news-hightlight .title .text {
                overflow: hidden;
                text-overflow: ellipsis;
                display: -webkit-box;
                -webkit-line-clamp: 2;
                -webkit-box-orient: vertical;
                line-height: 1.8;
            }

        .news-list-wrap .news-hightlight:hover .title {
            color: var(--color-primary);
            /* text-decoration: underline; */
        }

        .news-list-wrap .news-hightlight .time {
            display: flex;
            align-items: center;
            padding-bottom: .625vw;
            color: var(--color-orange);
        }

        .news-list-wrap .news-hightlight .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;
                }

@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;
        }
}

@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 .news-item .text-box .time {
            margin: var(--size-12) var(--size-24);
        }

    .news-swiper {
        padding-bottom: 20px;
    }

        .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-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);
        }

    .swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
        bottom: var(--swiper-pagination-bottom,40px);
    }
}

@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;
    }
}
/* home-news END */
/* gzdt END*/

/* ztjj */
.ztjj {
    padding: var(--size-18) 0;
}

    .ztjj .link {
        display: block;
        padding: var(--size-72) 0;
        transition: all .5s ease-in-out;
        position: relative;
        text-align: center;
        font-weight: 600;
    }

    .ztjj .link-1 {
        background: url(../../images/ztjj-bg-1.png) no-repeat center bottom;
        background-size: cover;
        color: var(--color-primary);
    }

    .ztjj .link-2 {
        background: url(../../images/ztjj-bg-2.png) no-repeat center bottom;
        background-size: cover;
        color: var(--color-orange);
    }

    .ztjj .link-3 {
        background: url(../../images/ztjj-bg-3.png) no-repeat center bottom;
        background-size: cover;
        color: var(--color-primary);
    }

    .ztjj .link:hover {
        transform: translateY(-.65vw);
    }
/* ztjj END*/

/* ryzl */
.ryzl-block {
    background: url(../../images/ryzl-bg.png) center bottom no-repeat;
    background-size: contain;
}

.ryzl-more a {
    padding: 10px 0;
    margin: 0 0 0 var(--size-36);
    cursor: pointer;
    transition: .5s;
    color: var(--color-primary);
    font-weight: 500;
    transition: .5s;
}

    .ryzl-more a:hover {
        color: var(--color-orange);
    }

@media screen and (max-width: 1066px) {
    .section_title_area {
        flex-wrap: wrap;
    }

    .ryzl-more a {
        margin: 0 var(--size-18) 0 0;
    }
}

/* 栏目切换 css */
.portfolio_nav {
    padding-bottom: .5vw;
}

    .portfolio_nav span {
        letter-spacing: 2px;
        color: var(--color-primary);
        font-weight: 600;
    }

    .portfolio_nav ul {
        list-style: none;
        margin: 0;
        padding: 0;
    }

        .portfolio_nav ul li {
            display: inline-block;
            padding: 10px 0;
            margin: 0 var(--size-30) var(--size-12);
            cursor: pointer;
            transition: .5s;
            color: var(--color-primary);
        }

            .portfolio_nav ul li.current_menu_item,
            .portfolio_nav ul li:hover {
                border-bottom: 5px solid var(--color-orange);
            }
/* portfolio_nav END*/

.ryzl-swiper {
    padding: 0 var(--size-60) var(--size-60);
    position: relative;
}

    .ryzl-swiper .ala-swiper .swiper-pagination {
        bottom: -var(--size-72);
    }

    .ryzl-swiper .swiper-button-prev {
        position: absolute;
        left: 0;
        top: 50%;
        margin-top: -var(--size-72);
        transform: translateY(-50%);
        background: var(--color-primary);
        color: var(--color-white);
    }

    .ryzl-swiper .swiper-button-next {
        position: absolute;
        right: 0;
        top: 50%;
        margin-top: -var(--size-72);
        transform: translateY(-50%);
        background: var(--color-primary);
        color: var(--color-white);
    }

    .ryzl-swiper .swiper-slide {
        height: unset;
    }

    .ryzl-swiper .ryzl-item {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        background-color: #fff;
        border: 1px solid var(--border-color-base);
        border-top: 0;
        padding: var(--size-40) var(--size-36);
        transition: all .3s ease-in-out;
        position: relative;
        height: 100%;
    }

        .ryzl-swiper .ryzl-item:hover {
            transform: translateY(-.25vw);
        }

        .ryzl-swiper .ryzl-item:before {
            content: "";
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            height: .3125vw;
            background-color: var(--color-primary);
        }

        .ryzl-swiper .ryzl-item > * {
            display: block;
            width: 100%;
        }

        .ryzl-swiper .ryzl-item .title {
            transition: .5s;
            line-height: 1.5;
            color: var(--color-primary);
        }

        .ryzl-swiper .ryzl-item .desc {
            padding-top: var(--size-24);
            margin-bottom: var(--size-24);
            color: var(--color-text-primary);
            line-height: 1.8;
        }

        .ryzl-swiper .ryzl-item .img {
            padding-top: var(--size-24);
            border-top: 1px solid var(--border-color);
        }

            .ryzl-swiper .ryzl-item .img img {
                width: 100%;
                max-height: 13vw;
            }

@media screen and (max-width: 1439px) {
    .ryzl-swiper {
        padding: 0 45px;
    }

        .ryzl-swiper .ryzl-item {
            padding: 30px 27px;
        }
}

@media screen and (max-width: 1199px) {
    .ryzl-swiper .ryzl-item .img {
        margin-top: 15px;
        padding-top: 15px;
    }
}

@media screen and (max-width: 991px) {
    .ryzl-swiper {
        padding-bottom: 20px;
    }

        .ryzl-swiper .ala-swiper .swiper-pagination {
            bottom: -26px;
        }

        .ryzl-swiper .ryzl-item .img {
            margin-top: 15px;
            padding-top: 15px;
        }

        .ryzl-swiper .ryzl-item:before {
            height: 3px;
        }
}

@media screen and (max-width: 767px) {
    .ryzl-swiper {
        padding-left: 0;
        padding-right: 0;
    }

        .ryzl-swiper .swiper-btn {
            display: none;
        }

        .ryzl-swiper .ryzl-item .img img {
            max-height: 210px;
        }
}
/* ryzl END*/

/* xzfu */
.xzfu-list {
    border-top: var(--size-12) solid var(--color-plain);
    padding: var(--size-24) 0;
}

    .xzfu-list .content {
        line-height: 1;
        border-bottom: var(--size-2) solid var(--border-color);
        padding: var(--size-12) 0;
        min-height: var(--size-110);
    }

        .xzfu-list .content a {
            line-height: 2;
            transition: .5s;
        }

            .xzfu-list .content a:hover {
                transform: translateY(-5px);
            }

        .xzfu-list .content p {
            padding: var(--size-6) 0 var(--size-12);
        }

            .xzfu-list .content p span {
                background: var(--color-orange);
                color: var(--color-white);
                border-radius: var(--size-12);
                padding: var(--size-4);
            }
/* xzfu END*/

/* lxwm */
.lxwm {
    background: var(--color-plain) url(../../images/lxwm-bg.png) no-repeat bottom right;
    background-size: 20%;
    color: var(--color-white);
    padding: var(--size-45);
    line-height: 2;
}
/* lxwm END*/

/*footer*/
footer {
    position: relative;
    overflow: hidden;
    background: url(../../images/footer-bg.png);
    background-size: cover;
    color: rgba(255, 255, 255, .75);
}

.footer-top {
    padding: var(--size-80) 0;
    overflow: hidden;
}

.footer-content {
    padding-left: var(--size-18);
    line-height: 2;
    letter-spacing: 1px;
}

.footer-link {
    text-align: right;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    transition: all .6s;
}

    .footer-link a {
        line-height: 2;
        color: rgba(255, 255, 255, .75);
        cursor: pointer;
        display: flex;
        align-items: center;
        padding: 0 var(--size-18);
        transition: all .6s;
    }

        .footer-link a:hover {
            color: var(--color-orange);
        }

.footer-link-2 a {
    display: flex;
    align-items: center;
    justify-content: space-around;
    color: rgba(255, 255, 255, .75);
    padding: var(--size-4) 0;
}

@media screen and (max-width: 850px) {
    .footer-hide-mobile {
        display: none;
    }
}

@media screen and (min-width: 850px) {
    .footer-hide-computer {
        display: none;
    }
}
/* footer END */


/*layui-layer tc-video*/
.layui-layer .layui-layer-setwin {
    top: 0px;
    right: 0px;
    margin-right: 0px;
    z-index: 99999;
}

    .layui-layer .layui-layer-setwin .layui-layer-close2 {
        top: .9375vw;
        right: .9375vw;
        background: none;
        position: relative;
        text-align: center;
        line-height: 3.125vw;
        transition: all .3s;
        width: 3.125vw;
        height: 3.125vw;
        overflow: hidden;
        text-align: center;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        font-size: 1.25vw;
        border: 0;
        background: rgba(255, 255, 255, .25);
        padding: 0;
    }

        .layui-layer .layui-layer-setwin .layui-layer-close2:after {
            content: "\e60b";
            font-family: 'iconfont';
            font-weight: bold;
            color: #fff;
        }

        .layui-layer .layui-layer-setwin .layui-layer-close2:before {
            content: unset;
        }

        .layui-layer .layui-layer-setwin .layui-layer-close2:hover {
            background: var(--color-orange);
            color: #fff;
        }

.layui-layer.tc-video {
    background: none;
    max-height: 95vh;
    max-width: 95vw;
}

    .layui-layer.tc-video .video-player {
        height: 100%;
    }

    .layui-layer.tc-video .video-js {
        width: 100%;
        height: 100%;
    }

@media screen and (max-width: 1399px) {
    .layui-layer .layui-layer-setwin .layui-layer-close2 {
        width: 45px;
        height: 45px;
        line-height: 45px;
        top: 10px;
        right: 10px;
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .layui-layer.tc-video {
        background: none;
        height: 100vh !important;
        width: 100vw !important;
        max-height: 100vh;
        max-width: 100vw;
    }
}

/*layui-layer tc-video END*/

/* inner-banner breadcrumb*/
.inner-banner {
    background-color: var(--color-plain);
}

.breadcrumb {
    padding: .5vw 0 1vw;
}

.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.jpg) center center;
    background-size: cover;
    color: #fff;
    height: 18vw;
}

    .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.has-noImg,*/
    .inner-banner.has-border {
        height: 20vw;
    }

    .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.has-noImg,*/
    .inner-banner.has-border {
        height: 25vw;
    }

    /*.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.has-noImg,*/
    .inner-banner.has-border {
        height: 30vw;
    }

    .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;
    }
}

@media screen and (max-width: 426px) {
    /*.inner-banner.has-noImg,*/
    .inner-banner.has-border {
        height: 35vw;
    }
}

@-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 */

/* category-nav */
.category-block {
    margin-top: -40px;
    width: 100%;
    /* overflow: hidden; */
}

    .category-block .category-nav {
        min-height: 4.8645vw;
        position: relative;
        display: flex;
        justify-content: center;
    }

        .category-block .category-nav .swiper-slide + .swiper-slide {
            margin-left: 0;
        }

    .category-block .category-swiper {
        background: #FFFFFF;
        box-shadow: 0px 10px 16px 0px rgb(224 226 228 / 28%);
        max-width: 100%;
        /* overflow: hidden; */
        position: relative;
    }

        .category-block .category-swiper .swiper-button-next,
        .category-block .category-swiper .swiper-button-prev {
            top: 0;
            bottom: 0;
            margin: auto;
            background-color: #fff;
            height: 35px;
            width: 35px;
            border-radius: 50%;
            position: absolute;
            border: none;
            box-shadow: 0 0 10px rgb(0 0 0 / 15%);
        }

        .category-block .category-swiper .swiper-button-next {
            right: -50px;
        }

        .category-block .category-swiper .swiper-button-prev {
            left: -50px;
        }

            .category-block .category-swiper .swiper-button-next::before,
            .category-block .category-swiper .swiper-button-prev::before {
                opacity: 0;
            }

            .category-block .category-swiper .swiper-button-next:after,
            .category-block .category-swiper .swiper-button-prev:after {
                color: #000;
                font-size: 20px;
                position: absolute;
                left: 50%;
                top: 50%;
                transform: translate(-50%, -50%);
                color: var(--color-primary);
            }

            .category-block .category-swiper .swiper-button-prev:after {
                content: "\e608";
                font-family: "iconfont";
            }

        .category-block .category-swiper .swiper-button-next:after {
            content: "\e607";
            font-family: "iconfont";
        }

.category-swiper .swiper-button-next.swiper-button-disabled,
.category-swiper .swiper-button-prev.swiper-button-disabled {
    opacity: 0;
}

.category-swiper .swiper-container,
.category-swiper .swiper-wrapper {
    width: 100%;
    height: 100%;
    box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.1);
}

.category-swiper .swiper-slide {
    width: auto;
    position: relative;
    cursor: pointer;
    height: 100%;
    background: #fff;
    color: var(--color-primary);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    line-height: 1.3;
}

    .category-swiper .swiper-slide + .swiper-slide::before {
        content: "";
        position: absolute;
        left: 0px;
        top: 30px;
        bottom: 30px;
        width: 1px;
        background: var(--color-four);
        opacity: .15;
    }


.category-block .category-nav .item {
    flex: 1;
    height: 100%;
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 3.75vw;
    cursor: pointer;
    position: relative;
    z-index: 2;
    min-width: 120px;
}

    .category-block .category-nav .item.more-item {
        padding: 0 24px;
    }

.category-block .category-nav .num {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    z-index: 1;
    line-height: 1;
    opacity: 0;
    font-family: 'PoppinsRegular';
    text-align: center;
}

.category-block .category-nav .swiper-slide:hover,
.category-block .category-nav .swiper-slide.active {
    background: var(--color-primary);
    color: #fff;
}

.category-nav .swiper-slide:hover .num,
.category-nav .swiper-slide.active .num {
    opacity: .1;
}

@media screen and (max-width: 1199px) {
    .category-block {
        margin-top: -35px;
    }

        .category-block .category-nav {
            height: 70px;
            font-size: 15px;
        }

            .category-block .category-nav .item span {
                font-size: 65px;
            }
}

@media screen and (max-width: 767px) {
    .category-block {
        margin-top: 0;
    }

        .category-block .category-nav {
            height: 70px;
            font-size: 14px;
            background: #fff;
        }

        .category-block .layui-container {
            padding: 0;
        }

        .category-block .category-nav .item a {
            min-width: 120px;
        }
}

@media screen and (max-width: 772px) {
    .category-block .category-swiper .swiper-button-prev {
        left: 0;
    }

    .category-block .category-swiper .swiper-button-next {
        right: 0;
    }

    /*.category-block .category-swiper .swiper-button-next,
    .category-block .category-swiper .swiper-button-prev {
        border-radius: 0;
        height: 100%;
        background-color: transparent;
        box-shadow: none;
        opacity: .75;
    }

        .category-block .category-swiper .swiper-button-next:after,
        .category-block .category-swiper .swiper-button-prev:after {
            color: #000;
        }*/
}

.mzdp-container {
    margin-bottom: 3.75vw;
}

.dbrw-block {
    padding: 0 !important;
}

@media screen and (max-width:772px) {
    .mzdp-container {
        margin-bottom: 20px;
    }
}
/* category-nav END*/

/* post-list */
.post-list {
    position: relative;
    overflow: hidden;
}

    .post-list.has-border {
        padding-top: 3.75vw;
        border-top: .3125vw solid var(--color-primary);
    }

@media screen and (max-width: 991px) {
    .post-list.has-border {
        padding-top: 50px;
        border-top-width: 3px;
    }
}

@media screen and (max-width: 767px) {
    .post-list.has-border {
        padding-top: 30px;
    }
}

.post-list .layui-col-xs12:before,
.post-list .layui-col-xs12:after {
    content: "";
    position: absolute;
}

.post-list .layui-col-xs12:after {
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background-color: var(--border-color);
}

.post-list .layui-col-xs12:before {
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    background-color: var(--border-color);
}

@media screen and (min-width: 992px) {
    .post-list .layui-col-xs12:after {
        top: 2.5vw;
        bottom: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+1):after {
        content: unset;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+1):before {
        left: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(3n+3):before {
        right: 2.5vw;
    }
}

@media screen and (max-width: 991px) and (min-width: 768px) {
    .post-list .layui-col-xs12:after {
        top: 2.5vw;
        bottom: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+1):after {
        content: unset;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+1):before {
        left: 2.5vw;
    }

    .post-list .layui-col-xs12:nth-of-type(2n+2):before {
        right: 2.5vw;
    }
}

@media screen and (max-width: 767px) {
    .post-list .layui-col-xs12 {
        padding-bottom: 30px;
    }

        .post-list .layui-col-xs12 + .layui-col-xs12 {
            padding-top: 30px;
        }

        .post-list .layui-col-xs12:after {
            content: unset;
        }

        .post-list .layui-col-xs12:before {
            left: 15px;
        }

        .post-list .layui-col-xs12:before {
            right: 15px;
        }
}
/* post-list END */

/*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:hover .img-box img {
            transform: scale(1.2);
        }

    .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*/

/*more-btn*/
.more-btn {
    display: inline-flex!important;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 6.25vw;
    height: 6.25vw;
    border-radius: 50%;
    text-align: center;
    color: #fff;
    background: var(--color-primary);
    overflow: hidden;
    position: relative;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    white-space: nowrap;
    vertical-align: middle;
    margin-top: 1.5625vw;
    font-weight: normal;
    transform: rotate(-20deg);
    transition: all .3s ease-in-out;
    padding: 0!important;
}

    .more-btn:hover {
        transform: rotate(0);
        color: #fff;
    }

    .more-btn.btn-secondary {
        background-color: var(--color-primary);
    }

@media screen and (max-width: 1199px) {
    .more-btn {
        width: 75px;
        height: 75px;
        /* line-height: 75px; */
        font-size: 12px!important;
        margin-top: 20px;
    }
}
/*more-btn END*/

/* list-item */
.list-item {
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    background-color: var(--bg-grey);
    transition: all .3s ease-in-out;
}

    .list-item:hover {
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
        background-color: #fff;
    }

        .list-item:hover .text-box .title {
            color: var(--color-primary);
        }

    .list-item .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 56.29%;
        position: relative;
        overflow: hidden;
    }

    .list-item.has-padding {
        padding: 1.5875vw;
        background-color: var(--bg-grey);
        box-shadow: unset;
        transition: all .3s ease-in-out;
        position: relative;
    }

@media screen and (max-width:567px) {
    .list-item.has-padding {
        padding: 20px;
    }
}

.ala-line {
    height: .20833vw;
    background: var(--color-primary);
}

.list-item.has-padding .ala-line {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    transition: all .3s ease-in-out;
    opacity: 1;
}

.list-item.has-padding:after,
.list-item.has-padding:before {
    content: unset;
}

.list-item:hover {
    background-color: #fff;
    box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    overflow: visible;
}

.list-item.has-padding .ala-tag {
    position: relative;
    overflow: hidden;
    /* color: #fff; */
}

    .list-item.has-padding .ala-tag > * {
        position: relative;
    }

    .list-item.has-padding .ala-tag:before {
        content: "";
        position: absolute;
        left: 0;
        right: 0;
        top: 0;
        bottom: 0;
        /* background: var(--color-primary); */
        /* opacity: 0; */
        transition: all .3s ease-in-out;
        z-index: 0;
    }

/* .list-item.has-padding:hover .ala-tag{
    color: #fff;
}
.list-item.has-padding:hover .ala-tag:before{
    opacity: 1;
} */

.list-item.project-item {
    background: var(--bg-grey);
    /*url(../../images/bg-search.png) right bottom no-repeat background-size: 9.75vw;*/
}

    .list-item.project-item .title {
        height: 100%;
        overflow: hidden;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .list-item.project-item:hover {
        background-color: #fff;
        box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.1);
    }

.bottom-date {
    display: flex;
    position: relative;
    margin-top: 2.083333vw;
    color: var(--color-text-secondary);
    font-family: 'PoppinsRegular';
}

    .bottom-date .time {
        /* margin-left: 30px; */
        font-family: 'PoppinsRegular';
    }

    .bottom-date .type {
        margin-left: 1.04167vw;
    }

    .bottom-date .iconfont {
        margin-right: .25vw;
    }

.list-item .bottom-date .iconfont {
    color: var(--color-primary);
}

.list-item.media-item {
    background-color: var(--bg-grey);
}

@media screen and (max-width:768px) {
    .list-item.project-item {
        background-size: 18.75vw;
    }
}

@media screen and (max-width:564px) {
    .list-item.project-item {
        background-size: 35%;
    }
}

/* list-item END */

/* content_list */
.content_list {
    position: relative;
}

    .content_list .title {
        color: var(--color-primary);
        line-height: 2;
    }

    .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 5.5vw;
    }

        .content_list .content p {
            line-height: 2;
            text-align: justify;
        }

        .content_list .content .table {
            border-top: 1px solid var(--border-color);
            border-right: 1px solid var(--border-color);
        }

            .content_list .content .table thead {
                background: var(--color-primary);
                color: #fff;
            }

            .content_list .content .table th,
            .content_list .content .table td {
                padding: .9375vw .3125vw;
                border-bottom: 1px solid var(--border-color);
                border-left: 1px solid var(--border-color);
                vertical-align: middle;
                text-align: center;
                font-weight: normal;
            }

@media screen and (max-width: 567px) {
    .content_list .content img {
        width: 100%;
        height: auto;
    }
}

.content_list .img-box {
    width: 160px;
    position: relative;
    height: 160px;
    overflow: hidden;
}

@media screen and (max-width:992px) {
    .content_list .img-box {
        display: none;
    }
}
/* content_list END */


/* staff-item */
.staff-list {
    padding: 1.12368vw 5.5vw;
}

.staff-item {
    display: flex;
    background-color: var(--bg-primary);
    border-top: 0.3125vw solid var(--color-primary);
    padding: 2.8125vw;
    margin-bottom: 2.34375vw;
    box-shadow: unset;
    transition: all .3s ease-in-out;
}

    /*.staff-item:hover {
        background-color: #fff;
        box-shadow: 2px 4px 18px 2px #CCCCCC;
    }*/

    .staff-item .staff-img {
        width: 25.625vw;
    }

        .staff-item .staff-img .img-box {
            position: relative;
            width: 100%;
            height: 0;
            padding-bottom: 70%;
            overflow: hidden;
        }

            .staff-item .staff-img .img-box .img {
                position: absolute;
                left: 0;
                right: 0;
                top: 0;
                bottom: 0;
            }

            .staff-item .staff-img .img-box img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }

    .staff-item .staff-container {
        margin-left: 2.65625vw;
        flex: 1;
    }

        .staff-item .staff-container .staff-content {
            flex: 1;
        }

        .staff-item .staff-container .name {
            line-height: 2;
            color: var(--color-primary);
        }

        .staff-item .staff-container .title {
            margin: .46875vw 0;
            line-height: 2;
        }

        .staff-item .staff-container .content {
            margin-top: .875vw;
            line-height: 2;
        }

        .staff-item .staff-container .staff-info {
            padding-left: 2.5vw;
            margin-left: 2.5vw;
            border-left: 1px solid var(--border-color);
            width: 15.625vw;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            justify-content: center;
            box-sizing: content-box;
        }

            .staff-item .staff-container .staff-info .item + .item {
                margin-top: .625vw;
            }

            .staff-item .staff-container .staff-info .iconfont {
                width: 1.875vw;
                height: 1.875vw;
                line-height: 1.875vw;
                border-radius: 50%;
                background-color: var(--color-primary);
                color: #fff;
                margin-right: .9375vw;
                text-align: center;
            }

            .staff-item .staff-container .staff-info span {
                flex: 1;
                word-break: break-all;
                line-height: 1.2;
            }

@media screen and (max-width: 1440px) {
    .staff-item .staff-container .staff-info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }
}

@media screen and (max-width: 1199px) {
    .staff-item .staff-container {
        display: block;
    }

        .staff-item .staff-container .staff-info {
            width: 100%;
            padding-left: 0;
            margin-left: 0;
            border-left: 0;
            padding-top: 2.5vw;
            margin-top: 2.5vw;
            border-top: 1px solid var(--border-color);
        }
}

@media screen and (max-width: 991px) {
    .staff-item {
        border-top-width: 3px;
        margin-bottom: 12px;
    }

        .staff-item .staff-container .title,
        .staff-item .staff-container .staff-info .item + .item {
            margin-top: 6px;
        }

        .staff-item .staff-container .staff-info {
            padding-top: 24px;
            margin-top: 24px;
        }
}

@media screen and (max-width: 767px) {
    .staff-item {
        padding: 20px;
    }

        .staff-item .staff-container .content {
            margin-top: 15px;
        }
}

@media screen and (max-width: 567px) {
    .staff-item {
        padding: .4rem;
        display: block;
    }

        .staff-item .staff-img {
            width: 100%;
        }

        .staff-item .staff-container {
            margin-left: 0;
            margin-top: .4rem;
        }

            .staff-item .staff-container .content {
                margin-top: .3rem;
            }

            .staff-item .staff-container .staff-info {
                padding-top: .4rem;
                margin-top: .4rem;
            }

                .staff-item .staff-container .staff-info .iconfont {
                    margin-right: .16rem;
                    width: .54rem;
                    height: .54rem;
                    line-height: .54rem;
                    font-size: .3rem;
                }
}
/* staff-item END */

/* people-detail */
.people-detail .people-img {
    /*position: sticky;
    position: -webkit-sticky;
    top: 10px;
    transition: all .3s ease-in-out;*/
    width: 15vw;
}

    /*.header-fixed.menu-show .people-detail .people-img {
    top: calc(4.21875vw + 10px);
}*/

    .people-detail .people-img .img-box {
        width: 100%;
        height: 0;
        padding-bottom: 130%;
        position: relative;
        overflow: hidden;
        z-index: 0;
    }

        .people-detail .people-img .img-box .img {
            position: absolute;
            left: 0;
            right: 0;
            top: 0;
            bottom: 0;
        }

        .people-detail .people-img .img-box img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

.people-detail .people-container {
    /*background-color: var(--bg-primary);
    padding: 3.125vw;
    border-top: var(--size-12) solid var(--color-primary);*/
    margin-left: 2.65625vw;
    flex: 1;
}

.people-detail .people-top .name {
    line-height: 1.2;
}

.people-detail .people-top .title {
    margin-top: .9375vw;
}

.people-detail .people-top .info {
    margin-top: 1.25vw;
}

    .people-detail .people-top .info .item + .item {
        margin-top: .625vw;
    }

    .people-detail .people-top .info .iconfont {
        width: 1.875vw;
        height: 1.875vw;
        line-height: 1.875vw;
        border-radius: 50%;
        background-color: var(--color-primary);
        color: #fff;
        margin-right: .9375vw;
        text-align: center;
    }

    .people-detail .people-top .info span {
        flex: 1;
        word-break: break-all;
        line-height: 1.2;
    }

.people-detail .people-content {
    margin-top: 3.125vw;
    padding-top: 3.125vw;
    border-top: 1px solid #C2CFCD;
}

    .people-detail .people-content .content-title {
        position: relative;
        line-height: 1.3;
        margin-bottom: .9375vw;
    }

        .people-detail .people-content .content-title > * {
            position: relative;
        }

        .people-detail .people-content .content-title:before {
            content: "";
            position: absolute;
            left: 0;
            bottom: 0;
            height: 0.33333em;
            width: 2.5em;
            background: var(--color-primary);
            opacity: .5;
            z-index: 0;
        }

.people-detail .people-container + .mce-content-body {
    margin-top: 1.5625vw;
}

@media screen and (max-width: 1439px) {
    .people-detail .people-top .info .iconfont {
        width: 27px;
        height: 27px;
        line-height: 27px;
    }

    .header-fixed.menu-show .people-detail .people-img {
        top: 70px;
    }
}

@media screen and (max-width: 1199px) {
    .people-detail .people-content .content-title {
        margin-bottom: 12px;
    }

    .people-detail .people-container + .mce-content-body {
        margin-top: 18px;
    }
}

@media screen and (max-width: 991px) {
    .people-detail .people-container {
        padding: 30px;
    }

    .people-detail .people-top .title {
        margin-top: 10px;
    }

    .people-detail .people-top .info {
        margin-top: 12px;
    }

        .people-detail .people-top .info .item + .item {
            margin-top: 6px;
        }

    .people-detail .people-content {
        margin-top: 30px;
        padding-top: 30px;
    }

    .people-detail .people-top .info .iconfont {
        margin-right: 12px;
        font-size: 15px;
    }

    .people-detail .people-top .info span {
        flex: 1;
    }

    .header-fixed.menu-show .people-detail .people-img {
        top: 92px;
    }
}

@media screen and (max-width: 567px) {
    .people-detail .people-container {
        padding: .4rem;
    }

    .people-detail .people-content {
        margin-top: .4rem;
        padding-top: .4rem;
    }

    .people-detail .people-top .info .iconfont {
        margin-right: .16rem;
        width: .54rem;
        height: .54rem;
        line-height: .54rem;
        font-size: .3rem;
    }
}
/* people-detail END */

/* 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;
    }

@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 */

.jgzfpj {
    position: fixed;
    top: 45%;
    right: 0;
    cursor: pointer;
    opacity: 0;
    transform: scale(0);
    color: var(--color-white);
    padding: var(--size-12) var(--size-24);
    background: url(../../images/jgzfpj.png) no-repeat left top;
    background-size: cover;
    transform-origin: right center;
    z-index: 91;
}

    .jgzfpj.showdiv {
        opacity: 1;
        transform: none;
        transition: .5s;
    }

        .jgzfpj.showdiv:hover {
            transform: translateY(-.65vw);
        }
