/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2023-03-22)  
*/


@charset "utf-8";

:root {
    --color-primary: #72246C;
    --color-secondary: #D5CAC2;
    --color-third: #F6F1ED;
    ;
    --color-text-primary: #000;
    --color-text-regular: #303133;
    --color-text-secondary-grey: #606266;
    --color-text-secondary: #909399;
    --color-text-placeholder: #C0C4CC;

    --border-color-base: #DCDFE6;
    --border-color-light: #E4E7ED;
    --border-color-lighter: #EBEEF5;

    --bg-primary: #F8F9FB;
    --bg-grey: #f8f8f8;
}

/* 防止用户自定义背景颜色对网页的影响 */
html {
    color: var(--color-text-regular);
    background: #fff;
}

/* 内外边距重置 */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html,
body {
    font-family: sans-serif, Arial, "Microsoft Yahei", '微软雅黑';
    word-wrap: break-word;
    color: var(--color-text-regular);
    line-height: 1.7;
}

input,
select,
textarea {
    font-size: 100%;
}

div:focus {
    outline: none;
}

/* 去掉各Table  cell 的边距并让其边重合 */
table {
    border-collapse: collapse;
    border-spacing: 0;
}

/* IE bug fixed: th 不继承 text-align*/
th {
    text-align: inherit;
}

ol,
ul {
    list-style: none;
}

a,
a:visited,
a:focus,
a:hover {
    text-decoration: none;
    outline: none;
}

.clearB {
    clear: both;
}

.layui-btn {
    background: var(--color-primary);
}

.mt30 {
    margin-top: 40px;
}
@media screen and (max-width: 991px) {
    .mt30 {
        margin-top: 30px;
    }
}

.block img {
    width: 100%;
}

.text-center {
    text-align: center !important;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-justify {
    text-align: justify !important;
}

.layui-btn-lg {
    padding: 18px 100px;
    height: auto;
    line-height: 1;
}

@media screen and (max-width: 567px) {
    .layui-btn-lg {
        width: 100%;
    }
}

@media screen and (min-width:1400px) {
    .layui-container {
        width: 1230px;
    }
}

@media screen and (min-width:1400px) {
    .layui-container {
        width: 100%;
        padding: 0 6vw;
        max-width: 1500px;
    }
}

@media screen and (max-width: 767px) and (min-width:568px) {
    .layui-col-xsm6 {
        width: 50%;
    }
}

.iconfont {
    font-size: inherit;
}
.layui-col-space50 {
    margin: -25px;
}

.layui-col-space50>* {
    padding: 25px;
}
@media screen and (max-width:1199px) {
    .layui-col-space50 {
        margin: -15px;
    }

    .layui-col-space50>* {
        padding: 15px;
    }
}

/* header */

header {
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background-color: transparent;
    transition: all .2s ease-in-out;
}

header .logo_primary {
    display: block;
}

header .logo_white {
    display: none;
}

.site-mobile header,
header.header-fixed {
    /* background: var(--color-secondary); */
    background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

/* 
.site-mobile header .logo_primary,
header.header-fixed .logo_primary {
    display: none;
}

.site-mobile header .logo_white,
header.header-fixed .logo_white {
    display: block;
} */

header a {
    color: #fff;
    -webkit-transition: all .2s ease-in;
    -o-transition: all .2s ease-in;
    transition: all .2s ease-in;
}

header .logo img {
    height: 90px;
}

.header{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}
header .layui-container {
    height: 100%;
}

@media screen and (max-width: 767px) {
    header {
        height: 46px;
        transition: all .3s;
    }

    header .logo {
        transition: all .3s;
    }

    header .logo img {
        height: 32px;
        transition: all .3s;
    }

    .site-tree-mobile {
        padding: 14px 15px !important;
        transition: all .3s;
    }

    header.header-fixed {
        height: 60px;
    }

    header.header-fixed .logo img {
        height: 36px;
    }

    header.header-fixed .site-tree-mobile {
        padding: 21px 15px !important;
    }
}

@media screen and (min-width: 992px) {
    .layui-nav {
        padding: 0;
        z-index: 99;
        background: none;
        text-align: right;
        right: 0;
        padding-right: 150px;
    }

    .layui-nav .layui-this:after,
    .layui-nav-bar,
    .layui-nav-tree .layui-nav-itemed:after {
        background-color: #fff;
        height: 2px;
        transform: scaleX(.5);
    }

    .layui-nav ul {
        font-size: 0;
        display: table;
        width: 100%;
        table-layout: fixed;
        margin-bottom: 0;
    }

    .layui-nav li {
        display: table-cell;
        text-align: right;
    }

    .layui-nav li a {
        font-size: 16px;
        height: 40px;
        line-height: 40px;
        display: inline-block;
    }

    .layui-nav .layui-nav-item {
        margin: 0 12px;
    }

}

.layui-nav .layui-nav-item a {
    /* color: var(--color-text-regular); */
    color: rgba(255, 255, 255, .85);
    padding: 0;
}

.layui-nav .layui-nav-item a:hover,
.layui-nav .layui-this a {
    color: #fff;
}

header .button-box {
    position: absolute;
    right: 0px;
    top: 0;
    top: 50%;
    z-index: 99;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}

header .button-box .layui-btn {
    /* background: var(--color-primary);
    border: 1px solid var(--color-primary); */
    background: #fff;
    border: 1px solid #fff;
    line-height: 32px;
    height: 34px;
    color: var(--color-primary);
    /* font-weight: bold; */
    border-radius: 4px;
}
header .button-box .register {
    background: none;
    /* border: 1px solid var(--color-primary);
    color: var(--color-primary); */
    border: 1px solid #fff;
    color: #fff;
}
.layui-btn+.layui-btn{
    margin-left: 8px;
}

@media screen and (max-width: 1199px) and (min-width: 992px) {
    .layui-nav .layui-nav-item a {
        font-size: 15px;
    }

    .layui-nav .layui-nav-item {
        margin: 0 5px;
    }
}

.header-mobile {
    display: none;
}

@media screen and (max-width: 991px) {
    .layui-nav {
        /* background: var(--color-secondary); */
        background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
    }

    header {
        z-index: 999;
    }

    header .layui-nav {
        margin-left: -15px;
        margin-right: -15px;
        border-radius: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        position: relative;
        z-index: 999;
        display: none;
    }

    .site-mobile .layui-nav {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
    }

    .layui-nav .layui-this:after,
    .layui-nav-bar,
    .layui-nav-tree .layui-nav-itemed:after {
        content: none;
        background: rgba(114, 36, 108, .5);
        height: 1px;
    }

    .layui-nav .layui-nav-item {
        display: block;
        text-align: center;
    }

    .layui-nav .layui-nav-item a {
        padding: 0px 20px;
        border-bottom: 1px solid rgba(1, 34, 95, .1);
        font-size: 15px;
    }

    .layui-nav .layui-nav-item:nth-last-of-type(1) a {
        border-bottom: 0;
    }
    header .button-box{
        right: 45px;
    }
    header .button-box .layui-btn {
        height: 32px;
        line-height: 32px;
        font-weight: normal;
        padding: 0 10px;
        /* border: 0; */
        position: relative;
        /* margin: 0!important; */
    }
    /* header .button-box .layui-btn+.layui-btn:after{
        content: "";
        position: absolute;
        left: 0;
        width: 1px;
        height: 14px;
        background-color: var(--color-primary);
        opacity: .75;
        top: 50%;
        margin-top: -7px;
    } */

    .header-mobile {
        position: absolute;
        right: -15px;
        top: 0;
        width: 54px;
        height: 60px;
        display: block;
    }

    .site-tree-mobile {
        display: block !important;
        text-align: center;
        font-size: 18px;
        cursor: pointer;
        padding: 0 15px;
        color: #fff;
        position: absolute;
        z-index: 999;
        right: 0;
        top: 0px;
        bottom: 0;
        padding: 31px 15px;
        line-height: 1;
    }

    .site-tree-mobile .icon-reorder {
        display: block;
        width: 24px;
        height: 2px;
        background: #fff;
        margin-bottom: 6px;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }

    .site-tree-mobile .icon-reorder:last-child {
        margin-bottom: 0;
    }

    .site-mobile .site-tree-mobile .icon-reorder {
        margin: 0;
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(1) {
        margin-top: 10px;
        -webkit-transform: rotate(42deg);
        -ms-transform: rotate(42deg);
        -o-transform: rotate(42deg);
        transform: rotate(42deg);
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(3) {
        margin-top: -4px;
        -webkit-transform: rotate(-42deg);
        -ms-transform: rotate(-42deg);
        -o-transform: rotate(-42deg);
        transform: rotate(-42deg);
    }

    .site-mobile .site-tree-mobile .icon-reorder:nth-of-type(2) {
        opacity: 0;
    }

    .site-mobile .site-mobile-shade {
        content: '';
        position: fixed;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background-color: rgba(0, 0, 0, .85);
        z-index: 998;
        -webkit-transition: all .2s;
        -o-transition: all .2s;
        transition: all .2s;
    }
}

/* header END */

/*banner*/
.banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    /* max-height: 100vh; */
}

.banner img {
    height: 100%;
    width: 100%;
    max-height: 620px;
    min-height: 170px;
    object-fit: cover;
}

.banner .banner-bottom {
    position: absolute;
    left: 50%;
    bottom: 3vw;
    z-index: 9;
    color: #fff;
    text-align: center;
    display: block;
    width: 50px;
    margin-left: -25px;
}

.banner .img-down {
    margin-top: 20px;
    animation: MoveUpDown 1s ease-in-out infinite;
    position: relative;
    bottom: 0;
    font-size: 12px;
    width: 50px;
}

.banner .img-down .icon-box img {
    width: 20px;
    margin-bottom: 6px;
}

/* .banner .img-down .icon-box{
    width: 42px;
    height: 42px;
    border: 1px dashed rgba(255,255,255,.75);
    border-radius: 42px;
    overflow: hidden;
    color: #fff;
    line-height: 42px;
    text-align: center;
    margin: 0 auto 6px;
    font-weight: bold;
    font-size: 16px;
} */
@keyframes MoveUpDown {
    0% {
        bottom: 0px;
    }

    50% {
        bottom: -10px;
    }

    100% {
        bottom: 0px;
    }
}

@media screen and (max-width:767px) {
    .banner .banner-bottom {
        display: none;
    }
}

.banner-text {
    /*width: 100%;*/
    position: absolute;
    top: 0px;
    bottom: 0px;
    left: 0;
    right: 0;
    z-index: 5;

    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
    justify-content: center;
}

/*.banner-text .box{
    margin: 0 auto;
}*/
.banner-text .box .title {
    color: var(--color-primary);
    position: relative;
    line-height: 150%;
    margin-bottom: 20px;
    font-size: 60px;
}

.banner-text .box .desc {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: lighter;
}

.banner-text .box .title,
.banner-text .box .desc {
    text-shadow: 5px 5px 7px rgba(6, 4, 60, .4);
}

.banner-text .box .layui-btn {
    margin-top: 40px;
    padding: 0 50px;
    height: 50px;
    line-height: 50px;
}

.banner-text img {
    width: 600px;
}

@media screen and (max-width: 991px) {
    .banner-text .box .title {
        font-size: 52px;
    }

    .banner-text .box .desc {
        font-size: 22px;
    }

    .banner-text .box .layui-btn {
        margin-top: 30px;
    }
}

@media screen and (max-width: 767px) {
    .banner-text .box {
        width: 100%;
    }

    .banner-text .box .title {
        font-size: 32px;
    }

    .banner-text .box .title span {
        line-height: 1;
    }

    .banner-text .box .desc {
        font-size: 20px;
    }

    .banner-text img {
        width: 400px;
        max-width: 100%;
    }
}

/*@media screen and (max-width: 551px){
    .banner img{
        height: 200px;
        width: auto;
        max-width: 1000px;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
        margin-left: 50%;
    }
}*/

.inner-banner .banner-text .box .title {
    font-size: 40px;
}

@media screen and (max-width: 991px) {
    .inner-banner .banner-text .box .title {
        font-size: 36px;
    }
}

@media screen and (max-width: 991px) {
    .inner-banner .banner-text .box .title {
        font-size: 28px;
    }
}

/*banner-END*/

section {
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

/*block*/
.block {
    padding: 50px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
}

.block.grey {
    background-color: #F0F2F5;
}

.block.black {
    background-color: #29282D;
}

.block.bg {
    background-attachment: fixed;
}

.block.bg>* {
    position: relative;
    z-index: 9;
}

.block.bg:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, .65);
    z-index: 0;
}

.block.bg .container,
.block.color_white .container {
    z-index: 2;
    position: relative;
    color: #fff;
}

.color_white {
    color: #fff;
}

@media screen and (max-width:767px) {
    .block {
        padding: 40px 0;
    }
}

/*block END*/


/*index_title*/
.index_title {
    position: relative;
    margin-bottom: 20px;
    line-height: 1;
    color: var(--color-text-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.index_title h2 {
    font-size: 26px;
    position: relative;
    letter-spacing: 2px;
    display: inline-block;
    z-index: 2;
    font-weight: bold;
    color: #000000;
    background: linear-gradient(297deg, #71246B 0%, #000000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.bg .index_title,
.color_white .index_title {
    color: #fff;
}

.color_white .index_title h2:after,
.color_white .index_title h2:before {
    background-color: #fff;
}

.index_title .small_title {
    position: absolute;
    opacity: .08;
    font-size: 1.8em;
    top: -10px;
    z-index: 1;
}

@media screen and (max-width: 991px) {
    .index_title {
        margin-bottom: 20px;
    }

    .index_title h2 {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .index_title {
        margin-bottom: 20px;
    }

    .index_title h2 {
        font-size: 20px;
    }
}

/*index_title END*/

.page-content {
    font-size: 14px;
    color: var(--color-text-regular);
}
.page-content>*:first-child{
    margin-top: 0;
}
.page-content>*:last-child{
    margin-bottom: 0;
}
.page-content p {
    text-align: justify;
}

.page-content p,
.page-content li {
    /* line-height: 1.8; */
    margin-bottom: 12px;
}

.page-content li {
    padding-left: 5px;
}

.page-content ul,
.page-content ol {
    padding-left: 20px;
}

.page-content ul,
.page-content ul li {
    list-style: disc outside;
}

.page-content ol,
.page-content ol li {
    list-style: decimal outside;
}

.page-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 12px;
    color: var(--color-primary);
    margin-top: 20px;
}

.page-content>*:nth-of-type(1):not(h4) {
    margin-top: 0;
}

@media screen and (max-width: 767px) {
    .page-content {
        font-size: 14px;
    }
}

.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;
}

.row-flex.is-center {
    align-items: center;
}

#button-to-top {
    background: rgba(1, 34, 95, .85);
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 997;
    display: block;
    width: 45px;
    height: 45px;
    line-height: 45px;
    border-radius: 30px;
    text-align: center;
    font-size: 18px;
    color: #eee;
    transition: all .3s;
    -webkit-transition: all .3s;
    -moz-transition: all .3s;
}


.anchor {
    position: relative;
    display: block;
    padding-top: 80px;
    margin-top: -80px;
    z-index: -1;
}
@media screen and (max-width: 767px) {
    .anchor {
        padding-top: 60px;
        margin-top: -60px;
    }
}

/*footer*/
footer {
    background: var(--color-secondary);
    text-align: center;
}

footer,
footer a,
footer a:visited {
    color: var(--color-text-regular);
    font-size: 13px;
}

footer a:hover,
footer a:focus {
    color: var(--color-text-primary);
}


.footer-copyright {
    padding: 10px 0;
}


/* slide-door */
.slide-door {
    color: #fff;
    border-radius: 8px;
    overflow: hidden;
    background-color: var(--color-primary);
    display: block;
}
.slide-door:hover{
    color: #fff;
}
.slide-door:nth-of-type(6n+1) {
    background: var(--color-primary) linear-gradient(311deg, #FFED44 0%, #EDC500 20%, #D5873E 53%, #C85C38 87%, #C03533 100%);
}

.slide-door:nth-of-type(6n+2) {
    background: var(--color-primary) linear-gradient(274deg, #00CFFF 0%, #059DEA 20%, #097EDD 53%, #0B6AD4 94%, #0D56CB 100%);
}

.slide-door:nth-of-type(6n+3) {
    background: var(--color-primary) linear-gradient(234deg, #F7DC2C 0%, #8FCC6C 48%, #02B2A5 100%);
}

.slide-door:nth-of-type(6n+4) {
    background: var(--color-primary) linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
}

.slide-door:nth-of-type(6n+5) {
    background: linear-gradient(234deg, #6B9F4F 0%, #57954B 20%, #318142 53%, #006837 100%);
}

.slide-door:nth-of-type(6n+6) {
    background: linear-gradient(274deg, #852761 0%, #602E6E 53%, #1E3A86 100%);
}

.slide-door+.slide-door {
    margin-top: 10px;
}

.slide-door .accordion-title {
    padding: 18px 30px;
    padding-right: 50px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    margin: 0;
    position: relative;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
}

.slide-door .accordion-title:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 20px;
    width: 22px;
    height: 22px;
    background: url(../images/toggle-icon.svg) right center no-repeat;
    background-size: contain;
    transition: all .3s;
}
.slide-door.download-door .accordion-title:after {
    content: "\e66c";
    background: unset;
    font-family: "iconfont";
    font-size: 20px;
    line-height: 1;
}

.slide-door:not(.open):hover .accordion-title:after {
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    transform: rotate(90deg);
}

.slide-door.open .accordion-title:after {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
}
.slide-door.download-door:hover .accordion-title:after{
    -ms-transform: rotate(-90deg);
    transform: rotate(-90deg);
}

.slide-door .accordion-content {
    padding: 0 30px 20px;
    display: none;
    color: #fff;
}

/* .slide-door.open .accordion-content {
    display: block;
} */

.accordion-content p,
.accordion-content li {
    margin-bottom: 10px;
}

.accordion-content li {
    padding-left: 5px;
}

.accordion-content ul,
.accordion-content ol {
    padding-left: 20px;
}

.accordion-content ul,
.accordion-content ul li {
    list-style: disc outside;
}

.accordion-content ol,
.accordion-content ol li {
    list-style: decimal outside;
}

.slide-door .accordion-content>*:last-child {
    margin-bottom: 0;
}

.slide-door .accordion-title .num {
    font-weight: bold;
    color: var(--color-primary);
    position: relative;
    left: -5px;
    font-family: "Arial";
}

@media screen and (max-width: 767px) {
    .slide-door .accordion-title {
        font-size: 16px;
        padding: 15px;
        padding-right: 40px;
    }

    .slide-door .accordion-title:after {
        width: 18px;
        height: 18px;
        margin-top: -9px;
        right: 15px;
    }

    .slide-door .accordion-content {
        padding: 0 15px 15px;
    }
}

/* slide-door END */

/* swiper-pagination */
.swiper-pagination-bullets.swiper-pagination-horizontal {
    bottom: 0;
}

.swiper-pagination-bullet-active {
    width: 24px;
    border-radius: 4px;
    background-color: #F5B800;
}

/* swiper-pagination END */


/* overview */
.overview-img {
    max-width: 420px;
    display: block;
    margin: 0 auto;
}

/* overview END */

/*swiper-button*/
.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    margin-top: -24px;
    width: 36px;
    height: 36px;
    z-index: 997;
    background: none;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    background: var(--color-primary);
    border-radius: 50%;
    color: #fff;
    border: 1px solid var(--color-primary);
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    background: unset;
    color: var(--color-text-primary);
    border: 1px solid var(--color-primary);
    opacity: 1;
}

.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 14px;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
    color: var(--color-primary);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: var(--color-primary);
}

.swiper-button-prev .iconfont {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
}

.swiper-button-next .iconfont,
.swiper-button-prev .iconfont {
    font-size: 17px;
    font-weight: lighter;
    position: relative;
}

.swiper-button-next .iconfont {
    left: 0;
}

.swiper-button-next .iconfont {
    right: 0;
}

.swiper-button-prev {
    left: -50px;
}

.swiper-button-next {
    right: -50px;
}

.swiper-button-prev:hover .iconfont {
    animation: arrowLeft 1s ease;
    -webkit-animation: arrowLeft 1s ease;
}

.swiper-button-next:hover .iconfont {
    animation: arrowRight 1s ease;
    -webkit-animation: arrowRight 1s ease;
}

@-webkit-keyframes arrowRight {
    0% {
        opacity: 1;
        left: 0;
    }

    47% {
        opacity: 0;
        left: 10px;
    }

    53% {
        opacity: 0;
        left: -10px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes arrowRight {
    0% {
        opacity: 1;
        left: 0;
    }

    47% {
        opacity: 0;
        left: 10px;
    }

    53% {
        opacity: 0;
        left: -10px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@-webkit-keyframes arrowLeft {
    0% {
        opacity: 1;
        left: 0;
    }

    47% {
        opacity: 0;
        left: -10px;
    }

    53% {
        opacity: 0;
        left: 10px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

@keyframes arrowLeft {
    0% {
        opacity: 1;
        left: 0;
    }

    47% {
        opacity: 0;
        left: -10px;
    }

    53% {
        opacity: 0;
        left: 10px;
    }

    100% {
        opacity: 1;
        left: 0;
    }
}

/*swiper-button END*/
/* swiper-btn */
.swiper-btn .swiper-button-prev,
.swiper-btn .swiper-button-next {
    position: relative;
    left: unset;
    right: unset;
    top: unset;
    bottom: unset;
    margin: 0;
    font-weight: bold;
    transition: background .3s;
}

.swiper-btn .swiper-button-next {
    margin-left: 8px;
}

.swiper-btn {
    display: flex;
    align-items: center;
}

/* swiper-btn END */


table {
    table-layout: fixed;
    width: 100%;
    font-size: 14px;
    margin: 16px 0;
    line-height: 1.5;
}

table th,
table td {
    padding: 8px 16px;
}

/* table tr:nth-of-type(even) td{
    background-color: rgba(1,34,95,.05);
} */
table thead tr {
    background-color: rgba(1, 34, 95, 1);
    color: #fff;
}

table thead tr th {
    padding: 12px 20px;
}

@media screen and (max-width: 767px) {

    table th,
    table td {
        padding: 4px 2px;
        font-size: 12px;
    }

    table thead tr th {
        padding: 12px 8px;
    }
}

/* process-tab */

/*process-tab*/
.process-tab {
    padding-bottom: 0;
    font-size: 14px;
}

.process-tab .layui-tab-title {
    height: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -moz-box;
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.process-tab .layui-tab-title:before {
    content: "";
    position: absolute;
    left: 90px;
    right: 90px;
    top: 50px;
    border-bottom: 1px dashed rgba(255, 255, 255, .25);
}

.process-tab .layui-tab-title li {
    font-size: 17px;
    padding: 10px;
    text-align: center;
}

.process-tab .layui-tab-title {
    width: 100%;
    border-bottom: 0;
    text-align: center;
    color: #ccc;
}

.process-tab .layui-tab-title li .icon-box {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    margin: 0 auto;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
}

.process-tab .layui-tab-title li .icon-box>* {
    position: relative;
    z-index: 1;
}

.process-tab .layui-tab-title li .icon-box:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: var(--color-primary) linear-gradient(270deg, #B58444 0%, #FFBD6E 52%, #B18142 100%);
    opacity: 0;
    transition: all .3s;
    z-index: 0;
    border-radius: 50%;
}

.process-tab .layui-tab-title li.layui-this .icon-box:before,
.process-tab .layui-tab-title li:hover .icon-box:before {
    opacity: 1;
}

.process-tab .layui-tab-title li .icon-box img {
    width: 42px;
    height: 42px;
    object-fit: cover;
}

.process-tab .layui-tab-title li .unselect {
    display: block;
}

.process-tab .layui-tab-title li .selected {
    display: none;
}

.process-tab .layui-tab-title li.layui-this .selected {
    display: block;
}

.process-tab .layui-tab-title li.layui-this .unselect {
    display: none;
}

.process-tab .layui-tab-title li .icon-box:after {
    content: "";
    position: absolute;
    left: -10px;
    right: -10px;
    top: -10px;
    bottom: -10px;
    border: 1px dashed rgba(255, 255, 255, .5);
    border-radius: 50%;
}

.process-tab .layui-tab-title li.layui-this {
    color: #fff;
}

.process-tab .layui-tab-title li.layui-this .icon-box {
    border-color: rgba(255, 255, 255, 1);
}

.process-tab .layui-tab-brief>.layui-tab-more li.layui-this:after,
.process-tab .layui-tab-brief>.layui-tab-title .layui-this:after {
    content: none;
}

.process-tab .process-tab-title {
    font-size: 24px;
    margin-bottom: 30px;
    font-family: "Microsoft Yahei Light", "Microsoft Yahei", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
}

.process-tab .layui-tab-content {
    position: relative;
    background-position: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
    background-color: #fff;
    padding: 40px;
    color: var(--color-text-regular);
    margin-top: 20px;
}

.process-tab .layui-tab-content h4 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 20px;
    color: var(--color-primary);
}

.process-tab .layui-tab-bar {
    display: none;
}

@media screen and (max-width: 1199px) {
    .process-tab .layui-tab-title li {
        font-size: 14px;
    }

    .process-tab .layui-tab-title li .icon-box {
        width: 72px;
        height: 72px;
        line-height: 72px;
    }
}

@media screen and (max-width: 767px) {
    .process-tab .layui-tab-title:before {
        top: 33px;
        left: 16.66666%;
        right: 16.66666%;
    }

    .process-tab .layui-tab-title:after {
        content: "";
        position: absolute;
        top: 138px;
        left: 16.66666%;
        right: 16.66666%;
        border-bottom: 1px dashed rgba(255, 255, 255, .25);
    }

    .layui-tab-bar {
        height: 60px;
        line-height: 60px;
        display: none;
    }

    .process-tab .layui-tab-title {
        border-bottom: 0;
        margin-top: 0px;
    }

    .process-tab .layui-tab-title li {
        font-size: 13px;
        width: 33.333333%;
        padding: 5px;
    }

    .process-tab .layui-tab-title li .icon-box {
        width: 56px;
        height: 56px;
        font-size: 24px;
        line-height: 56px;
        margin-bottom: 0;
    }

    .process-tab .layui-tab-title li .icon-box:after {
        right: -5px;
        top: -5px;
        left: -5px;
        bottom: -5px;
    }

    .process-tab .layui-tab-title li .icon-box img {
        width: 32px;
        height: 32px;
    }

    .process-tab .layui-tab-content {
        margin: 40px 0;
    }

    .process-tab .process-tab-title {
        font-size: 20px;
        margin: 20px 0;
    }

    .process-tab .layui-tab-content {
        padding: 20px;
        margin-top: 10px;
    }

    .process-tab .layui-tab-content h4 {
        margin-bottom: 10px;
        text-align: center;
    }
}

/*process-tab END*/

/* overview-page */
.overview-page h4 {
    color: #fff;
    font-size: 15px;
    height: 40px;
    line-height: 34px;
    position: relative;
    padding-left: 20px;
    margin-top: 30px;
    overflow: hidden;
}

.overview-page h4:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 40px;
    right: 0;
    background: url(../images/type-bg.png) center left no-repeat;
    background-size: auto 100%;
    z-index: 1;
}

.overview-page h4>* {
    position: relative;
    z-index: 1;
}

.overview-page .img-box>*,
.overview-page .img-box {
    position: relative;
    z-index: 2;
}
.overview-page .img-box{
    padding: 0 10px;
    height: 100%;
}

.overview-page .img-box:after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0px;
    width: 65px;
    height: 80%;
    background: #D8D8D8 linear-gradient(4deg, #00CFFF 0%, #059DEA 20%, #097EDD 53%, #0B6AD4 94%, #0D56CB 100%);
    border-radius: 8px;
    z-index: 1;
}

.overview-page .img-box::before {
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    width: 65px;
    height: 80%;
    background: linear-gradient(234deg, #F7DC2C 0%, #8FCC6C 48%, #02B2A5 100%);
    border-radius: 8px;
    z-index: 1;
}

.overview-page .img-box .img {
    border-radius: 8px;
    overflow: hidden;
    position: absolute;
    left: 10px;
    right: 10px;
    top: 0;
    bottom: 0;
}
.overview-page .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width: 991px) {
    .overview-page .img-box .img{
        position: relative;
        left: unset;
        right: unset;
        top: unset;
        bottom: unset;
    }
}

/* overview-page END */

/* format-tab */
.format-tab {
    position: relative;
}

.layui-tab {
    margin-top: 0;
}

.layui-tab-title {
    border-bottom: 0;
    position: absolute;
    right: 0;
    top: -4px;
    left: unset;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin: 0 -5px;
}

.layui-tab-title li {
    border: 1px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 40px;
    margin: 0 5px;
    transition: all .3s ease-in-out;
    line-height: unset;
    padding: 6px 15px;
}

.layui-tab-title li.layui-this:after {
    content: unset;
}

.layui-tab-title li:hover,
.layui-tab-title li.layui-this {
    color: #fff;
    background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
    border-color: transparent;
}

.layui-tab-content {
    padding: 0;
}

@media screen and (max-width: 567px) {
    .layui-tab-title {
        position: static;
        margin: 0;
        justify-content: space-between;
    }

    .layui-tab-title li {
        /* padding: 6px 5px; */
        padding: 6px 0;
        text-align: center;
        flex: 1;
        margin: 0;
        border: unset;
        min-width: 60px;
        position: relative;
        flex: unset;
        color: var(--color-text-regular);
    }
    .layui-tab-title li:hover, 
    .layui-tab-title li.layui-this{
        background: unset;
        color: var(--color-primary);
    }
    .layui-tab-title li:hover:before, 
    .layui-tab-title li.layui-this:before{
        content: "";
        width: 40px;
        height: 2px;
        background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
        position: absolute;
        left: 50%;
        margin-left: -20px;
        top: unset;
        bottom: 0;
    }

    .layui-tab-content {
        padding-top: 20px;
    }
}

/* format-tab END */


.apply-btn {
    padding: 14px 36px;
    border: 1.5px solid var(--color-primary);
    color: var(--color-primary);
    border-radius: 50px;
    line-height: 1;
    margin-top: 20px;
    transition: all .3s ease-in-out;
}

.apply-btn:hover {
    background-color: var(--color-primary);
    color: #fff;
}




/* slide */
.slide {
    padding: 30px;
    height: 100%;
    background-color: var(--color-third);
    border-radius: 8px;
    overflow: hidden;
    position: relative;
    display: block;
    top: 0;
    overflow: hidden;
    transition: all .4s ease-in-out;
}

.slide>* {
    position: relative;
    z-index: 9;
}

.slide:after,
.slide:before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 100%;
    margin-top: -3px;
    transition: all .4s ease-in-out;
    z-index: 1;
}

.slide:after {
    background: url(../images/bg_slide.png) center center no-repeat;
    background-size: cover;
    z-index: 2;
    top: 0;
    margin-top: 0;
}

.slide:hover:before {
    top: 0;
    margin-top: 0;
}

.slide .title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 25px;
}

.slide .content {
    color: var(--color-text-secondary-grey);
}

.slide:hover {
    color: #fff;
}

.slide:hover .title {
    color: #fff;
    transition: all .4s ease-in-out;
}

.slide:hover .content {
    color: #eee;
    transition: all .4s ease-in-out;
}

.slide .content ol li {
    position: relative;
    padding-left: 2em;
    counter-increment: section;
}

.slide .content ol li:before {
    content: counters(section, ".") " )";
    position: absolute;
    left: 0;
    top: 0;
    display: inline-block;
    color: #CA9450;
    font-weight: bold;
    width: 2em;
}

.slide-list {
    margin-top: 40px;
}

@media screen and (max-width: 991px) {
    .slide .title {
        font-size: 18px;
    }
}

@media screen and (max-width: 767px) {
    .slide {
        padding: 20px;
    }

    .slide .title {
        font-size: 16px;
        margin-bottom: 15px;
    }
}

/* slide END */

/* message-swiper */
.message-swiper {
    position: relative;
    padding-bottom: 30px;
    overflow: hidden;
}

.message-swiper .swiper-container {
    overflow: hidden;
}

.message-swiper .swiper-slide {
    height: auto !important;
}

.message-swiper .slide {
    padding-bottom: 130px;
    height: 100%;
}

.message-swiper .swiper-slide:nth-of-type(6n+1) .slide:before {
    background: var(--color-primary) linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
}

.message-swiper .swiper-slide:nth-of-type(6n+4) .slide:before {
    background: var(--color-primary) linear-gradient(311deg, #FFED44 0%, #EDC500 20%, #D5873E 53%, #C85C38 87%, #C03533 100%);
}

.message-swiper .swiper-slide:nth-of-type(6n+2) .slide:before {
    background: var(--color-primary) linear-gradient(274deg, #00CFFF 0%, #059DEA 20%, #097EDD 53%, #0B6AD4 94%, #0D56CB 100%);
}

.message-swiper .swiper-slide:nth-of-type(6n+3) .slide:before {

    background: var(--color-primary) linear-gradient(234deg, #F7DC2C 0%, #8FCC6C 48%, #02B2A5 100%);
}
.message-swiper .swiper-slide:nth-of-type(6n+5) .slide:before {
    background: linear-gradient(234deg, #6B9F4F 0%, #57954B 20%, #318142 53%, #006837 100%);
}

.message-swiper .swiper-slide:nth-of-type(6n+6) .slide:before {
    background: linear-gradient(274deg, #852761 0%, #602E6E 53%, #1E3A86 100%);
}

.slide .quote {
    color: var(--color-primary);
    transition: all .4s ease-in-out;
    position: absolute;
    left: 30px;
    right: 30px;
    bottom: 30px;
}

.slide .quote .iconfont {
    font-size: 2.5em;
    opacity: .25;
    line-height: 1;
    position: absolute;
    right: 0;
    transform: rotateY(180deg);
    top: 0;
}

.slide:hover .quote {
    color: #fff;
}

.slide .quote .sign-wrap {
    display: flex;
    align-items: center;
    width: 100%;
    position: relative;
}

.slide .quote .sign-wrap .avatar-box img {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    overflow: hidden;
    object-fit: cover;
}

.slide .quote .sign-wrap .text-box {
    flex: 1;
    padding-left: 15px;
}

.slide .quote .message-name {
    font-size: 16px;
    font-weight: bold;
    /* margin-bottom: 2px; */
}

.slide .bottom {
    color: #666;
    transition: all .4s ease-in-out;
}

.slide:hover .bottom {
    color: #eee;
}
.message-swiper .content{
    height: 240px;
}
.message-swiper .content .mCustomScrollBox{
    margin-right: -30px;
    padding-right: 30px;
    max-width: unset;
}
.mCSB_inside > .mCSB_container{
    margin-right: 0;
}
.mCSB_scrollTools a + .mCSB_draggerContainer{
    margin: 0!important;
}
.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar{
    background-color: rgba(0, 0, 0, .15);
}
.mCSB_scrollTools .mCSB_draggerRail{
    background-color: unset;
}
@media screen and (max-width: 767px) {
    .slide .quote {
        left: 20px;
        right: 20px;
        bottom: 20px;
    }

    .message-swiper .swiper-button-prev {
        left: 0;
    }

    .message-swiper .swiper-button-next {
        right: 0;
    }

    .message-swiper .slide .title {
        height: 56px;
    }
    .message-swiper .content .mCustomScrollBox{
        margin-right: -20px;
        padding-right: 20px;
    }
}

/* message-swiper END */


/* about-block */
/* .about-block::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    width: 100%;
    max-height: 400px;
    background: url(../images/bg4.png) left bottom no-repeat;
    background-size: contain;
} */

/* about-block END */


/* logo-item */
.logo-item {
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 8px;
    overflow: hidden;
    padding: 5px 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    /* box-shadow: 20px 20px 83px 0px rgb(0 0 0 / 8%); */
    position: relative;
    top: 0;
    transition: all .3s ease-in-out;
    /* box-shadow: 10px 10px 15px 0px rgb(0 0 0 / 4%); */
}
.logo-item:hover{
    top: -2px;
    box-shadow: 20px 20px 23px 0px rgb(0 0 0 / 8%);
}

.logo-item img{
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
 }
/* @media screen and (min-width: 991px) {
    .logo-list .layui-col-md2 {
        width: 20%;
    }
} */
@media screen and (max-width: 767px){
    .logo-item{
        height: 60px;
        padding: 2px 6px;
    }
}
/* logo-item END */


/*gallery-item*/
.gallery {
    position: relative;
    overflow: hidden;
}

/*gallery-item*/
.gallery-item {
    position: relative;
    padding-left: 30px;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    padding-bottom: 30px;
    margin: 10px 0;
    padding-right: 20px;
    cursor: pointer;
    color: inherit;
    display: block;
}

.gallery-item:before {
    content: "";
    position: absolute;
    left: 15px;
    top: 8px;
    bottom: 20px;
    border-left: 1px solid var(--color-secondary);
}

.gallery-item:after {
    content: "";
    position: absolute;
    left: 35px;
    bottom: 0;
    border-bottom: 1px solid var(--color-secondary);
    right: 8px;
    width: auto;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.gallery-item.active:after {
    width: 0;
    right: auto;
}

.gallery-item .gallery-year {
    font-size: 24px;
    line-height: 1;
    margin-bottom: 20px;
    position: relative;
}

.gallery-item .gallery-year:before {
    content: "";
    position: absolute;
    left: -20px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.gallery-item .gallery-img .img-box {
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    overflow: hidden;
    position: relative;
    /* margin-bottom: 10px; */
}

.gallery-item .gallery-img .img-box .img {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.gallery-item .gallery-img .img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: all .3s ease-in-out;
}

.gallery-item .gallery-img .cover{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    font-size: 32px;
    color: #fff;
    background-color: rgba(114, 35, 108, .75);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease-in-out;
}
.gallery-item .gallery-img:hover .cover{
    opacity: 1;
}

.gallery-item .gallery-text {
    color: var(--color-text-regular);
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    line-height: 1.8;
    font-size: 16px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin-top: 10px;
}

.gallery-item .icon-circle {
    position: absolute;
    left: 8px;
    bottom: -8px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background-color: var(--color-secondary);
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
}

.gallery-item .toggle {
    position: absolute;
    bottom: 15px;
    right: 15px;
    color: var(--color-secondary);
    font-size: 20px;
}

.gallery-item.active .toggle {
    bottom: -10px;
}

.gallery-item.active .toggle .icon-plus:before {
    content: "\e8c3";
}

.gallery-item:hover .icon-circle,
.gallery-item:hover .gallery-year:before {
    background-color: var(--color-primary);
}

.gallery-item:hover:before {
    border-left-color: var(--color-primary);
}

.gallery-item:hover .gallery-year {
    color: var(--color-primary);
}

@media screen and (max-width: 1199px) {
    .gallery-item .gallery-year {
        font-size: 24px;
    }
}

@media screen and (max-width: 767px) {
    .gallery-item {
        padding-right: 0;
    }
}

/* gallery END */

/* schedule-swiper */
.schedule-swiper {
    width: 100%;
    height: 100%;
    position: relative;
    padding: 100px 0;
}

.schedule-swiper .layui-container {
    overflow: unset;
    position: unset;
}

.schedule-swiper .swiper-wrapper {
    align-items: stretch;
    position: relative;
}

.schedule-swiper .swiper-slide {
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    width: 160px;
}

.schedule-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.schedule-item .img-wrap {
    width: 100%;
    height: 0;
    padding-bottom: 100%;
    position: relative;
    z-index: 9;
    cursor: pointer;
}

.schedule-item .img-wrap .circle {
    position: absolute;
    left: 0;
    right: 0;
    height: 60.44px;
    width: 160px;
    background-image: url(../images/schedule-line-top.png);
    background-size: cover;
}

.schedule-item .img-wrap .img-box {
    position: absolute;
    left: 0px;
    top: 0px;
    right: 0px;
    bottom: 0px;
    border-radius: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.schedule-item .img-wrap .img-box .img {
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    color: #fff;
    font-size: 22px;
    font-weight: bold;
    border-radius: 100%;
    overflow: hidden;
    transition: all .3s ease-in-out;
    transform: scale(1);
    background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
}

.schedule-item:hover .img-wrap .img-box img {
    transform: scale(1.3);
}

.schedule-item .wrap {
    position: absolute;
    top: 140px;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
}

.schedule-item .dot {
    width: 20px;
    height: 20px;
    border: 1px solid var(--color-primary);
    border-radius: 32px;
    position: relative;
    background-color: #f5f5f5;
    margin: 0 auto;
}

.schedule-item .dot:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: var(--color-primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.schedule-item .dot:before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 100%;
    height: 60px;
    width: 1px;
    border-left: 1px dashed var(--color-primary);
    z-index: 0;
}

.schedule-item .text-wrap {
    position: relative;
    background-color: transparent;
    margin-top: 10px;
    transition: all .3s ease-in-out;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px;
    margin-left: -25px;
    margin-right: -25px;
    box-shadow: unset;
    border-radius: 4px;
    overflow: hidden;
}

.schedule-item .time {
    margin-bottom: 4px;
    font-size: 14px;
    color: var(--color-text-secondary);
}

.schedule-item .title {
    overflow: hidden;
    text-overflow: ellipsis;
    /* white-space: nowrap; */
    line-height: 1.5;
    font-size: 16px;
}


.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item {
    bottom: 19px;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .img-wrap .circle {
    bottom: 0;
    background-image: url(../images/schedule-line-bottom.png);
    background-size: 100%;
    opacity: .75;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item {
    flex-direction: column-reverse;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .wrap {
    top: unset;
    bottom: 140px;
    flex-direction: column-reverse;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .dot:before {
    bottom: unset;
    top: 100%;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .text-wrap {
    margin-top: unset;
    margin-bottom: 10px;
    flex-direction: column-reverse;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .text-wrap:before {
    top: unset;
    bottom: -12px;
    border-bottom-color: transparent;
    border-top-color: transparent;
}

.schedule-swiper .swiper-slide:nth-of-type(2n) .schedule-item .time {
    margin-bottom: 0;
    margin-top: 4px;
}

.schedule-swiper .swiper-slide:nth-of-type(2n+1) .schedule-item {
    top: 19px;
}

.schedule-swiper .swiper-slide:nth-of-type(2n+1) .schedule-item .img-wrap .circle {
    top: 0;
    background-image: url(../images/schedule-line-top.png);
    background-size: 100%;
    opacity: .75;
}

.schedule-swiper .swiper-slide:nth-of-type(6n+1) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+1) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(90deg, #672D89 0%, #702F85 20%, #883579 53%, #B03F67 94%, #B64164 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+1) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+1) .schedule-item .dot:before {
    border-color: var(--color-primary);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+2) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+2) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(360deg, #F7DC2C 0%, #8FCC6C 48%, #02B2A5 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+2) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+2) .schedule-item .dot:before {
    border-color: #02B2A5;
}

.schedule-swiper .swiper-slide:nth-of-type(6n+3) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+3) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(180deg, #00CFFF 0%, #059DEA 20%, #097EDD 53%, #0B6AD4 94%, #0D56CB 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+3) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+3) .schedule-item .dot:before {
    border-color: #00CFFF;
}

.schedule-swiper .swiper-slide:nth-of-type(6n+4) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+4) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(0deg, #FFED44 0%, #EDC500 20%, #D5873E 53%, #C85C38 94%, #C03533 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+4) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+4) .schedule-item .dot:before {
    border-color: #C85C38;
}

.schedule-swiper .swiper-slide:nth-of-type(6n+5) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+5) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(234deg, #6B9F4F 0%, #57954B 20%, #318142 53%, #006837 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+5) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+5) .schedule-item .dot:before {
    border-color: #6B9F4F;
}

.schedule-swiper .swiper-slide:nth-of-type(6n+6) .schedule-item .dot:after,
.schedule-swiper .swiper-slide:nth-of-type(6n+6) .schedule-item .img-wrap .img-box .img {
    background: linear-gradient(274deg, #852761 0%, #602E6E 53%, #1E3A86 100%);
}

.schedule-swiper .swiper-slide:nth-of-type(6n+6) .schedule-item .dot,
.schedule-swiper .swiper-slide:nth-of-type(6n+6) .schedule-item .dot:before {
    border-color: #602E6E;
}


.tip-text {
    margin-top: 20px;
    font-size: 12px;
    color: var(--color-text-secondary);
    /* text-align: right; */
}

/*schedule END*/

/* campus-photos */

.photo-player{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.photo-player .campus-photos{
    flex: 1;
}

.campus-photos{
    clear: both;
    overflow: hidden;
    padding-right: 16%;
    position: relative;
}
.campus-photos .album-swiper{
    flex: 1;
    overflow: hidden;
}
.campus-photos .album-thumb-swiper{
    width: 16%;
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
}
/* campus-photos END */
/* album-swiper */
.album-swiper{
    position: relative;
    margin-right: .5vw;
}

.album-swiper .album-item .img-box{
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    position: relative;
    background-color: var(--color-text-primary);
}
.album-swiper .album-item .img-box .img{
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}
.album-swiper .album-item .img-box video,
.album-swiper .album-item .img-box img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.album-swiper .album-item .img-box video{
    object-fit: contain;
}
.album-swiper .swiper-button-prev{
    left: 10px;
    background-color: unset!important;
    border: unset!important;
}
.album-swiper .swiper-button-next{
    right: 10px;
    background-color: unset!important;
    border: unset!important;
}
.album-swiper .swiper-button-prev:after,
.album-swiper .swiper-button-next:after{
    font-size: 32px;
}
.album-swiper .swiper-button-next.swiper-button-disabled, 
.album-swiper .swiper-button-prev.swiper-button-disabled{
    opacity: 0;
}
/* album-swiper END */

/* album-thumb-swiper */
.album-thumb-swiper{
    margin: -4px 0;
}
.album-thumb-swiper .swiper-container{
    padding: 0 4px;
    height: 100%;
}
.album-thumb-swiper .swiper-slide{
    height: 20%!important;
    padding: 4px 0;
    cursor: pointer;
    overflow: hidden;
    position: relative;
}
.album-thumb-swiper .swiper-slide:after{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    bottom: 4px;
    background-color: rgba(0, 0, 0, .5);
    transition: all .4s;
    z-index: 6;
}
.album-thumb-swiper img{
    transition: all .4s;
    transform: scale(1);
    width: 100%;
    height: 100%;
    object-fit: cover;
    vertical-align: middle;
    line-height: 1;
}
.album-thumb-swiper .swiper-slide-thumb-active img{
    transform: scale(1.05)
}
.album-thumb-swiper .swiper-slide-thumb-active:after{
    background-color: rgba(0, 0, 0,0);
}


/* icon-play */
.icon-play {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    opacity: 1;
    cursor: pointer;
    border: 1px solid rgba(255, 255, 255, .75);
    background-color: rgba(0, 0, 0, .5);
    z-index: 8;
}

.icon-play span {
    border: 6px solid transparent;
    border-left: 8px solid #fff;
    display: block;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -6px;
    margin-left: -3px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

.album-thumb-swiper .swiper-slide-thumb-active .icon-play,
.icon-play:hover {
    border-color: transparent;
    background-color: #72246C;
}

.album-thumb-swiper .swiper-slide-thumb-active .icon-play span,
.icon-play:hover span {
    border-left-color: #fff;
}
/* icon-play END */
@media screen and (max-width:767px) {
    .album-thumb-swiper{
        margin: -2px 0;
    }
    .album-thumb-swiper .swiper-slide{
        height: 25%!important;
        padding: 2px 0;
    }
    .album-thumb-swiper .swiper-slide:after{
        top: 2px;
        bottom: 2px;
    }
    .album-swiper .swiper-button-prev{
        left: 0px;
    }
    .album-swiper .swiper-button-next{
        right: 0px;
    }
    .album-swiper .swiper-button-prev:after,
    .album-swiper .swiper-button-next:after{
        font-size: 22px;
    }
}
/* album-thumb-swiper END */



/*.layui-layer*/
.layui-layer .layui-layer-setwin{
    top: 16px;
    right: 40px;
    z-index: 99;
}
.layui-layer .layui-layer-setwin .layui-layer-close2{
    top: 0px;
    right: 0px;
    background: none;
    position: relative;
    text-align: center;
    line-height: 44px;
    transition: all .5s;
    color: rgba(255,255,255,.85);
    width: 42px;
    height: 42px;
    border-radius: 24px;
    overflow: hidden;
    text-align: center;
    -webkit-transition: all .5s;
    -o-transition: all .5s;
    transition: all .5s;
    font-size: 24px;
}
.layui-layer .layui-layer-setwin .layui-layer-close2:after{
    content: "\e60b";
    font-family: 'iconfont';
}
.layui-layer .layui-layer-setwin .layui-layer-close2:hover{
    color: var(--color-primary);
}
@media screen and (max-width: 767.9px) {
    .layui-layer .layui-layer-setwin{
        top: 20px;
        right: 0px;
    }
    .layui-layer .layui-layer-setwin .layui-layer-close2{
        width: 36px;
        height: 36px;
        font-size: 18px;
        line-height: 36px;
    }
}
@media screen and (min-width: 992px) {
    .layui-layer-page .layui-layer-content{
        height: auto!important;
    }
}


/*layui-layer tc-video*/
.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%;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2{
    background: rgba(0,0,0,.25);
}
.layui-layer.tc-video .layui-layer-setwin{
    top: 10px;
    right: 10px;
    margin: 0;
}
.layui-layer.tc-video .layui-layer-setwin .layui-layer-close2:hover{
    background: var(--color-primary);
    color: #fff;
}
@media screen and (max-width: 767.9px) {
    .layui-layer.tc-video{
        background: none;
        height: 100vh!important;
        width: 100vw!important;
        max-height: 100vh;
        max-width: 100vw;
    }
}
/*layui-layer tc-video END*/


/* fixed-btn */
.fixed-btn{
    position: fixed;
    right: 0;
    bottom: 15vh;
    z-index: 999;
}
.fixed-btn .item{
    position: relative;
}
.fixed-btn .item+.item{
    margin-top: 3px;
}
.fixed-btn .item img{
    width: 90px;
    height: 90px;
    object-fit: contain;
    cursor: pointer;
}
.fixed-btn .item .text-box{
    position: absolute;
    right: 15px;
    bottom: 100%;
    margin-bottom: -10px;
    width: 130px;
    height: 98px;
    color: #fff;
    background: url(../images/fixed-box.png) center center no-repeat;
    background-size: contain;
    display: flex;
    align-items: center;
    justify-content: baseline;
    padding: 0 10px 10px;
    font-size: 13px;
    line-height: 1.6;
    display: none;
}
.fixed-btn:hover .item .text-box{
    display: flex;
}
@media screen and (max-width: 767px) {
    .fixed-btn{
        bottom: 40px;
    }
    .fixed-btn .item img{
        width: 72px;
        height: 72px;
    }
}
/* fixed-btn END */

#qrcode-img{
    padding: 30px 20px;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    /* font-family: "Nexa Regular"; */
    width: 320px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 100%;
}
#qrcode img{
    vertical-align: middle;
    display: block;
    line-height: 1;
    width: 200px;
    margin: 0 auto;
    margin-bottom: 12px;
}
.layui-layer{
    border-radius: 4px!important;
}