/*
*@Description: 
*@Author:      hanli 
*@Update:      hanli(2022-05-10)  
*/


@charset "utf-8";

:root{
    --color-primary: #0A37D8;
    --color-secondary: #6604EE;
    --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: #F5F8FF;
}

/* 防止用户自定义背景颜色对网页的影响 */
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.6;
}

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);
}
.block img{
    max-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%;
    }
}
@media screen and (max-width: 767px) {
    .layui-container{
        width: 100%;
    }
}
.layui-col-space60{
    margin: -30px;
}
.layui-col-space60>*{
    padding: 30px;
}
@media screen and (max-width: 1199px) {
    .layui-col-space60{
        margin: -15px;
    }
    .layui-col-space60>*{
        padding: 15px;
    }
}
.iconfont{
    font-size: inherit;
}
.flex{
    display: flex;
}
.flex.is-center{
    align-items: center;
}
.flex.is-between{
    justify-content: space-between;
}
/* header */

header{
    height: 80px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all .3s ease-in-out;
    background: none;
}
.site-mobile header,
header.header-fixed{
    background-image: linear-gradient(to right, #0A37D8,#6604EE);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}
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: 50px;
}

header .layui-container{
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
@media screen and (max-width: 767px) {
    header {
        height: 80px;
        transition: all .3s;
    }
    header .logo{
        transition: all .3s;
    }
    header .logo img{
        height: 36px;
        transition: all .3s;
    }
    .site-tree-mobile{
        padding: 29px 15px!important;
        transition: all .3s;
    }
    header.header-fixed{
        height: 80px;
    }
    header.header-fixed .logo img{
        height: 36px;
    }
    header.header-fixed .site-tree-mobile{
        padding: 31px 15px!important;
    }
}
@media screen and (min-width: 992px) {
    .layui-nav {
        /* position: absolute;
        top: 10px;
        right: 0px;
        left: 200px; */
        padding: 0;
        z-index: 99;
        background: none;
        text-align: right;
    }
    .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 15px;
    }
    .layui-nav .layui-nav-item a{
        color: #eee;
        padding: 0;
    }
    .layui-nav .layui-nav-item a:hover, .layui-nav .layui-this a{
        color: #fff;
    }
}
header .button-box{
    position: absolute;
    right: 15px;
    top: 0;
    top: 21px;
}
header .button-box .layui-btn{
    background: #fff;
    margin-left: 10px;
    border: 1px solid #fff;
    line-height: 36px;
    color: var(--color-primary);
    font-weight: bold;
}
header .button-box .login{
    background: none;
    border: 1px solid #fff;
    color: #fff;
}
@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-image: linear-gradient(to right, #0A37D8,#6604EE);
    }
    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(255,255,255,.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 .layui-btn{
        display: none;
    }

    .header-mobile{
        position: absolute;
        right: 0;
        top: 0;
        width: 54px;
        height: 80px;
        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;
    height: 41.666666vw;
    max-height: 100vh;
}
.banner img{
    max-height: 100%;
    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;
    }
}

/*swiper-button*/
.swiper-button-prev,
.swiper-button-next{
    position: absolute;
    top: 50%;
    margin-top: -25px;
    width: 50px;
    height: 50px;
    z-index: 999;
    border-radius: 25px;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}
.swiper-button-prev{
    background: url(../images/icon_arrow_left.png) center center no-repeat;
    background-size: 40px;
    left: 20px;
}
.swiper-button-next{
    background: url(../images/icon_arrow_right.png) center center no-repeat;
    background-size: 40px;
    right: 20px;
}
.swiper-button-prev:after,
.swiper-button-next:after{
    content: none;
}
@media screen and (max-width: 767px) {
    .swiper-button-prev,
    .swiper-button-next{
        width: 40px;
        height: 40px;
        background-size: 40px;
        margin-top: -20px;
        background-size: 20px;
    }
    .swiper-button-prev{
        left: 0;
    }
    .swiper-button-next{
        right: 0;
    }
}
/*swiper-button END*/

.banner-text{
    /*width: 100%;*/
    position: absolute;
    top: 60px;
    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;
}
/*.banner-text .box{
    margin: 0 auto;
}*/
.banner-text .box{
    width: 42%;
}
.banner-text .box .title{
    color: #fff;
    position: relative;
    line-height: 1.3;
    font-size: 40px;
    letter-spacing: 2px;
}
.banner-text .box .layui-btn{
    margin-top: 40px;
    padding: 0 50px;
    height: 50px;
    line-height: 50px;
    background-color: #fff;
    color: var(--color-secondary);
}
.banner-text img{
    width: 600px;
}
@media screen and (max-width: 991px){
    .banner{
        min-height: 420px;
    }
    .banner-text .box{
        width: 55%;
    }
    .banner-text .box .title{
        font-size: 36px;
    }
    .banner-text .box .desc{
        font-size: 22px;
    }
    .banner-text .box .layui-btn{
        margin-top: 30px;
    }
}
@media screen and (max-width: 767px){
    .banner{
        min-height: 240px;
    }
    .banner-text{
        top: 30px;
    }
    .banner-text .box .title{
        font-size: 20px;
        line-height: 1.5;
    }
    .banner-text .box .title span{
        line-height: 1;
    }
    .banner-text .box .desc{
        font-size: 20px;
    }
    .banner-text img{
        width: 400px;
        max-width: 100%;
    }
    .banner-text .box .layui-btn{
        display: none;
    }
}
/*@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%;
    }
}*/

/*banner-END*/

/*block*/
.block{
    padding: 80px 0;
    position: relative;
    overflow: hidden;
    width: 100%;
    position: relative;
    background-position: left center;
    background-repeat: no-repeat;
    background-size: contain;
}
.block.grey{
    background-color: var(--bg-grey);
}
.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: 50px 0;
    }
}
/*block END*/


/*index_title*/
.index_title{
    position: relative;
    margin-bottom: 50px;
    line-height: 1.5;
    color: var(--color-text-primary);
}
.index_title h2{
    font-size: 32px;
    position: relative;
    letter-spacing: 2px;
    display: inline-block;
    z-index: 2;
    padding-bottom: 12px;
}
.index_title h2>*{
    position: relative;
}
.index_title h2:after{
    content: "";
    position: absolute;
    bottom: 0;
    width: 50px;
    height: 4px;
    left: 50%;
    background: #D8D8D8 linear-gradient(158deg, #62DAE9 0%, #6223FB 100%);
    border-radius: 6px;
    margin-left: -25px;
}
.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: 767px) {
    .index_title{
        margin-bottom: 30px;
    }
    .index_title h2{
        font-size: 20px;
    }
}
/*index_title END*/

.page-content{
    font-size: 15px;
    color: var(--color-text-regular);
}
.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; 
}


/*footer*/
footer{
    background: linear-gradient(130deg, #0A37D8 0%, #6604EE 100%);
}
footer,footer a,footer a:visited{
    color: #eee;
    font-size: 13px;
}
footer a:hover,
footer a:focus{
    color: #fff;
}
.footer-top{
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer-top img{
    max-width: 100%;
}
.footer-top .footer-logo img{
    max-height: 40px;
}

footer .title{
    margin-bottom: 15px;
    font-size: 18px;
    color: #e0e0e0;
}
.footer-top p{
    margin-bottom: 5px;
}

.footer-top ul,
.footer-top ul li{
    list-style: none;
    padding-left: 0;
    margin: 0;
}
.footer-top .footer-link{
    margin: 10px -8px;
}
.footer-top .footer-link li{
    line-height: 1.5;
    position: relative;
    display: inline-block;
    padding: 8px;
}
.footer-top .footer-link li a{
    display: block;
    margin-bottom: 10px;
}

.footer-qrcode {
    width: 100%;
    font-size: 12px;
    display: flex;
    align-items: center;
}
.footer-qrcode .qrcode-item{
    display: inline-block;
    text-align: center;
}
.footer-qrcode .qrcode-item+.qrcode-item{
    margin-left: 10px;
}
.footer-qrcode .qrcode-box{
    width: 120px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 6px;
}
.footer-qrcode img{
    width: 100%;
}
@media screen and (max-width: 767px) {
    .footer-top,.footer-qrcode{
        text-align: center;
        justify-content: center;
        width: 100%;
    }
    .footer-qrcode .qrcode-item{
        margin: 0;
        text-align: center;
    }
    .footer-qrcode .qrcode-box{
        width: 100px;
        height: 100px;
        margin: 0 auto;
    }
    .footer-qrcode .qrcode-item p{
        font-size: 12px;
        margin-top: 5px;
    }
}


.footer-copyright{
    padding: 15px 0;
    border-top: 1px solid rgba(255,255,255,.15);
}


/* slide-door */
.slide-door{
    margin-bottom: 1px;
    border-bottom: 1px solid #eaeaea;
}
.slide-door .accordion-title{
    padding: 20px 0;
    padding-right: 36px;
    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: "\f067";
    position: absolute;
    top: 50%;
    margin-top: -10px;
    right: 0;
    content: '';
    width: 20px;
    height: 20px;
    background: url(../images/toggle-grey.svg) right center no-repeat;
    transition: all .3s;
}
.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 .accordion-content{
    padding: 0 0 20px 30px;
    display: none;
    color: #4d4d4f;
}
.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;
	}
	.slide-door .accordion-title:after{
		width: 18px;
		height: 18px;
		margin-top: -9px;
	}
    .slide-door .accordion-content{
        padding-left: 0;
    }
}
/* slide-door END */

/* swiper-pagination */
.swiper-pagination-bullet{
    background-color: unset;
    border: 1.5px solid var(--color-secondary);
    opacity: 1;
}
.swiper-pagination-bullets.swiper-pagination-horizontal{
    bottom: 0;
}
.swiper-pagination-bullet-active{
    border-radius: 4px;
    background-color: var(--color-secondary);
}
/* swiper-pagination 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-color: transparent;
    color: var(--color-text-primary);
    opacity: 1;
}
.swiper-button-prev:hover,
.swiper-button-next:hover{
    background: var(--color-primary);
}
.swiper-button-next:after, 
.swiper-button-prev:after{
    content: unset;
}
.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:before,
.swiper-button-next:before{
    content: "";
    position: absolute;
    left: -5px;
    right: -5px;
    bottom: -5px;
    top: -5px;
    border: 1px dashed rgba(1,34,95,.5);
    border-radius: 50%;
    transition: all 1s linear;
    transform: rotate(0deg);
}
.swiper-button-prev:hover:before,
.swiper-button-next:hover:before{
    border-color: rgba(1,34,95,1);
    transform: rotate(180deg);
}
.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: 16px;
}
.swiper-btn{
    display: flex;
    align-items: center;
}
/* swiper-btn END */




/* slide */
.slide{
    padding: 2.5vw;
    height: calc(100% - 2.5vw);
    position: relative;
    display: block;
    top: 0;
    transition: all .4s ease-in-out;
    margin-top: 2.5vw;
}
.slide>*{
    position: relative;
    z-index: 2;
}
.slide:before{
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(150,186,255,0.89) 0%, rgba(255,255,255,0) 100%);
    opacity: 0.35;
    border: 1px solid rgba(98, 35, 251, .2);
    /* border-image: linear-gradient(155deg, rgba(98, 35, 251, 1), rgba(99, 219, 233, 1)) 1 1; */
    border-radius: 5px;
    overflow: hidden;
}
.slide .icon{
    position: absolute;
    right: 1.5vw;
    top: -2.5vw;
}
.slide .icon img{
    height: 6.5vw;
}
.slide .title{
    font-size: 15px;
    font-weight: bold;
    color:var(--color-text-primary);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 1px solid;
    border-image: linear-gradient(45deg, rgba(98, 211, 233, .5), rgba(97, 54, 249, .25)) 1 1;
}
.slide .content{
    color: var(--color-text-secondary);
}
.slide-list{
    margin-top: 40px;
}

@media screen and (max-width: 991px) {
    /* .slide{
        height: calc(100% - 30px);
    } */
    .slide .title{
        font-size: 18px;
    }
    .slide .icon{
        top: -30px;
        right: 15px;
    }
    .slide .icon img{
        height: 80px;
    }
}
@media screen and (max-width: 767px) {
    .slide{
        padding: 20px;
    }
    .slide .title{
        font-size: 16px;
        margin-bottom: 15px;
    }
}
/* slide END */


/* overview-page */
.overview-page .page-content ul{
    padding-left: 0;
}
.overview-page .page-content ul li{
    list-style: none;
    padding-left: 30px;
    position: relative;
    background: url(../images/icon_checked.png) left top 3px no-repeat;
    background-size: 18px;
    font-size: 16px;
    color: var(--color-text-primary);
}
.overview-page .page-content ul li+li{
    margin-top: 20px;
}

.overview-page .img{
    position: relative;
}
.overview-page .img .item{
    position: absolute;
    margin-left: -27px;
    margin-top: -27px;
    width: 54px;
    height: 54px;
    font-size: 12px;
    text-align: center;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}
.overview-page .img .item.is-top{
    align-items: flex-start;
}
.overview-page .img .item .dot{
    position: absolute;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%,-50%);
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 7px;
    height: 7px;
    cursor: pointer;
    border-radius: 50%;
    display: inline-block;
    background-color: var(--color-secondary);
}
.overview-page .img .item .dot:before {
    content: '';
    position: absolute;
    left: 2px;
    right: 2px;
    top: 2px;
    bottom: 2px;
    background-color: rgba(98, 46, 250, .7);
    border-radius: 50%;
    opacity: 0;
    z-index: 1;
}
.overview-page .img .item .dot:before{
    -webkit-animation: warn-1 1.23s ease-in-out 0s infinite;
    animation: warn-1 1.23s ease-in-out 0s infinite;
}
@media screen and (max-width: 767px) {
    .overview-page .img .item{
        width: 48px;
        height: 40px;
        font-size: 10px;
        margin-top: -20px;
        margin-left: -24px;
    }
    .overview-page .page-content ul li{
        font-size: inherit;
    }
}
@-webkit-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}
@-moz-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}
@-ms-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}
@-o-keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}
@keyframes warn-1{
    0%{
        opacity: 1;
        left: 2px;
        right: 2px;
        top: 2px;
        bottom: 2px;
    }
    90%{
        opacity: 0;
        left: -10px;
        right: -10px;
        top: -10px;
        bottom: -10px;
    }
}

/* overview-page END */

/* scene-list */
.scene-list{
    position: relative;
    overflow: hidden;
}
.scene-list .bg-img{
    position: absolute;
    left: 35%;
    right: 35%;
    top: 0;
    bottom: 0;
}
.scene-list .bg-img img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.scene-list .item .title{
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 15px;
    border-bottom: 1px solid rgba(151, 151, 151, .3);
    display: inline-flex;
    align-items: center;
    font-size: 15px;
    color: var(--color-text-primary);
    font-weight: bold;
}
.scene-list .item .title .text{
    margin-left: 10px;
}
.scene-list .item .title .icon img{
    width: 32px;
}
.scene-list .item .title .text{
    padding: 0 10px;
}
.scene-list .item .content{
    color: var(--color-text-secondary-grey);
}
@media screen and (min-width: 768px) {
    .scene-list .item{
        margin: 20px 0;
    }
    .scene-list .item.reverse{
        text-align: right;
    }
    .scene-list .item.reverse .title{
        flex-direction: row-reverse;
    }
    .scene-list .item.reverse .text{
        margin-left: 0;
        margin-right: 10px;
    }
}
@media screen and (max-width: 767px) {
    .scene-list .bg-img{
        display: none!important;
    }
}
/* scene-list END */

/* case-swiper */
.case-swiper{
    padding-bottom: 40px;
    overflow: hidden;
}
/* case-swiper END */

/* logo-item */
.logo-item{
    background-color: #fff;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    top: 0;
    display: block;
    transition: all .3s ease-in-out 0s;
}
.logo-item:hover{
    top: -5px;
}
@media screen and (min-width: 1400px) {
    .logo-list .layui-col-lg2{
        width: 20%;
    }
}
.logo-list .row-flex{
    justify-content: center;
}
/* logo-item END */

/* work-list */
.work-list .item .title{
    margin-bottom: 0;
    padding: 8px 20px;
    border-radius: 43px;
    overflow: hidden;
    background-image:  linear-gradient(to right, #fff, #fff),
    linear-gradient(155deg, rgba(67, 0, 229, 0.09), rgba(99, 219, 233, 0.35));
    border: 1px solid transparent;
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    font-weight: normal;
}
@media screen and (min-width: 767px) {
    .work-list .item{
        margin: 30px 0;
    }
    .work-list .layui-col-xs12{
        position: relative;
        z-index: 8;
    }
    .work-list .layui-col-xs12:nth-of-type(2){
        z-index: 7;
    }
    .work-list .layui-col-xs12:nth-of-type(1) .item{
        margin-right: -7%;
    }
    .work-list .layui-col-xs12:nth-of-type(1) .item:nth-of-type(1),
    .work-list .layui-col-xs12:nth-of-type(1) .item:nth-of-type(4){
        margin-right: -20%;
    }

    
    .work-list .layui-col-xs12:nth-of-type(3) .item{
        margin-left: -7%;
    }
    .work-list .layui-col-xs12:nth-of-type(3) .item:nth-of-type(1),
    .work-list .layui-col-xs12:nth-of-type(3) .item:nth-of-type(4){
        margin-left: -20%;
    }
    
}
@media screen and (min-width: 1200px) {
    .work-list .item{
        margin: 40px 0;
    }
}
@media screen and (min-width: 768px) and (max-width: 991px) {
    .work-list .item{
        margin: 20px 0;
    }
    .work-list .item .title{
        padding: 8px;
        font-size: 13px;
    }
    .work-list .item .title .text{
        padding: 0;
    }
    
    .work-list .layui-col-xs12:nth-of-type(1) .item{
        margin-right: -9%;
    }
    .work-list .layui-col-xs12:nth-of-type(1) .item:nth-of-type(1),
    .work-list .layui-col-xs12:nth-of-type(1) .item:nth-of-type(4){
        margin-right: -30%;
    }

    .work-list .layui-col-xs12:nth-of-type(3) .item{
        margin-left: -9%;
    }
    .work-list .layui-col-xs12:nth-of-type(3) .item:nth-of-type(1),
    .work-list .layui-col-xs12:nth-of-type(3) .item:nth-of-type(4){
        margin-left: -30%;
    }
}
@media screen and (max-width: 767px) {
    .work-list .layui-col-xs12:nth-of-type(2){
        display: none;
    }
    .work-list .item .title{
        width: 100%;
    }
    .work-list .item{
        margin-top: 20px;
    }
}
/* work-list END */

/* tool-list */
.tool-list{
    display: flex;
    border-radius: 5px;
    border: 1px solid transparent;
    background-image: linear-gradient(to right,#fff,#fff),
    linear-gradient(155deg, rgba(98, 35, 251, .5), rgba(99, 219, 233, .35));
    background-clip: padding-box, border-box;
    background-origin: padding-box, border-box;
    height: 560px;
}
.tool-list .swiper-container,
.tool-list .swiper-swiper{
    height: 100%;
}
.tool-nav-swiper {
    width: 25%;
    background: #F7FAFF;
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
    overflow: hidden;
}
.tool-nav-swiper .swiper-slide{
    flex: 1;
    transition: all .3s ease-in-out;
    cursor: pointer;
}
.tool-nav-swiper .tool-nav-item{
    padding: 10px 30px;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    flex-direction: column;
}
.tool-nav-swiper .tool-nav-item .title{
    font-size: 15px;
    font-weight: bold;
}
.tool-nav-swiper .tool-nav-item .desc{
    color: var(--color-text-secondary);
    font-size: 13px;
    margin-top: 5px;
    display: none;
}
.tool-nav-swiper .swiper-slide.swiper-slide-thumb-active {
    flex: 2;
}
.tool-nav-swiper .swiper-slide.swiper-slide-thumb-active .tool-nav-item{
    background-color: #E8EFFF;
}
.tool-nav-swiper .swiper-slide.swiper-slide-thumb-active .desc{
    display: block;
}

.tool-content-swiper{
    flex: 1;
    overflow: hidden;
    padding: 10px;
}
.tool-content-swiper .tool-content-item{
    height: 100%;
}
.tool-content-swiper img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
@media screen and (max-width: 991px) {
    .tool-list{
        display: block;
        height: unset;
    }
    .tool-nav-swiper{
        width: 100%;
        border-bottom-left-radius: 0;
        border-top-right-radius: 5px;
    }
    .tool-nav-swiper .swiper-slide.swiper-slide-thumb-active .desc{
        display: none;
    }
    .tool-nav-swiper .tool-nav-item{
        padding: 10px 15px;
    }
}
/* tool-list END */