/* banner */

.banner{
    /* width: 100%; */
    /* height: 100%; */
    /* margin: 0 auto; */
    /* height: auto;
    background-position: center;
    background-repeat: no-repeat;
    background-size: 40%; */
    /* position: relative; */
}
.swiper-container{
    width: 100%;
    /* height: 100%; */
    /* margin-left: auto;
    margin-right: auto; */
    /* list-style: none; */
}
.swiper-container .swiper-pagination{
    /* bottom: 20px !important; */
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active{
    background-color: #fff;
}

/* 数据展示 */

.data-display{
    display: flex;
    width: 1024px;
    margin: auto;
    padding: 20px 0;
    font-size: 16px;
    color: #333;
}
.data-display span{
    flex: 1;
    text-align: center;
}
.data-blue{
    font-weight: bold;
    font-size: 32px;
    color: #00b0ff;
}

/* 系统介绍 */

.system-wrap{
    width: 100%;
    height: 500px;
    background: #1d2087;
    background-position: center;
    background-repeat: no-repeat;
    padding: 30px 0;
}
.system-wrap .system{
    width: 1024px;    
    height: 500px;
    margin: auto;
    opacity: 0;
    background: url('../img/system.png');
    background-position: right;
    background-repeat: no-repeat;
    background-size: 70%;
}
.antAos{
    animation: system 2s forwards .2s;
}
.system-wrap .text{
    display: inline-block;
    padding-top: 60px;
}
@keyframes system{
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.system-introduce{
    width: 1024px;
    margin: auto;
    /* margin-top: 30px; */
    padding: 60px 0;
    font-size: 36px;
    font-weight: bold;
    color: #1d2087;
    text-align: center;
}
.system-introduce .imgwrap{
    display: flex;
    margin-top: 50px;
}
.system-introduce span{
    display: inline-block;
    flex: 1;
}
.antAos-one{
    opacity: 0;
    animation: moveup 1.5s ease .3s forwards;
}
.antAos-two{
    opacity: 0;
    animation: moveup 1.5s ease .7s forwards;
}
.antAos-three{
    opacity: 0;
    animation: moveup 1.5s ease 1.1s forwards;
}
.antAos-four{
    opacity: 0;
    animation: moveup 1.5s ease 1.5s forwards;
}
@keyframes moveup{
    0% {
        opacity: 0;
        /* transform: scale(0,0); */
        transform: translateY(70px);
    }
    100% {
        opacity: 1;
        /* transform: scale(1,1); */
        transform: translateY(0);
    }
}
.system-introduce .introduce{
    padding: 60px 0;
    font-family: "黑体";
    font-size: 28px;
    /* color: #1d2087; */
    /* text-align: center; */
}

.system-content{
    width: 100%;
    height: 500px;
    background: #1d2087;
    background-position: center;
    background-repeat: no-repeat;
}
.system-content img{
    position: absolute;
    left: 50%;
    transform: translate(-50%,0);
    padding: 60px;
}
.system-content .content-img{
    position: relative;
    bottom: 0;
    width: 100%;
    height: 500px;
    background: url('../img/content-bg.png');
    background-size: 90%;
    background-position: 50% 50%;
    animation: twinkle 3s ease-in infinite;
}
@keyframes twinkle{
    0% {
        opacity: 0;
    }
    25% {
        opacity: 1;
    }
    50% {
        opacity: .5;
    }
    100% {
        opacity: 0;
    }
}

.system-function{
    display: flex;
    align-items: center;
    width: 1024px;
    height: 500px;
    background: url('../img/introduct.png') 100% 50%;
    background-repeat: no-repeat;
    margin: 50px auto;
    /* margin-top: 600px; */
    /* margin-bottom: 100px; */
    font-size: 36px;
    font-weight: bold;
    color: #333;
}

/* 行业动态 */

.customer{
    background: #e9f6fc;
    padding: 50px 0;
    text-align: center;
}
.customer>p{
    font-size: 32px;
    color: #333;
    padding-bottom: 25px;
}
.swiper-container2{
    width: 1024px;
    margin: 0 auto;
    padding-bottom: 35px;
    position: relative;
    overflow: hidden;
    /* list-style: none; */
    padding: 0;
    /* z-index: 1; */
}
.swiper-button-next, .swiper-button-prev{
    top: 40% !important;
}
.swiper-container2 .swiper-pagination{
    bottom: 30px !important;
}
.swiper-slide p{
    margin: 15px 10%;
    padding: 0;
    width: 80%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 14px;
    color: #333;
}

/* 关于 */

.about{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 40px;
    width: 100%;
    height: 360px;
    background: #2a2d8d;
    background-image: url('../img/about-bg.png');
    background-position: 50% 100%;
    background-repeat: no-repeat;
    padding: 30px 0;
    font-size: 40px;
    color: white;
    line-height: 32px;
}
.about p:last-child{
    font-size: 20px;
}

.wrapper{
    max-width: 1100px;
    margin: 30px auto;
}
.wrapper .title{
    font-size: 28px;
    color: #333;
    /* text-align: center; */
    line-height: 40px;
    padding: 30px 0;
}
.content-wrap{
    display: flex;
    gap: 30px;
}
.content-wrap .content-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    /* justify-content: center; */
}
.content-wrap .content-left .introduce-wrap{
    margin-bottom: 28px;
    color: #333;
    font-size: 18px;
    line-height: 18px;
}
.content-wrap .content-left .introduce{
    margin-top: 10px;
    font-size: 14px;
    color: #999;
}
.content-wrap .content-right{
    width: 615px;
}
.content-wrap .content-left .btn{
    font-size: 14px;
    padding: 10px 42px;
    margin-right: 15px;
    border-radius: 2px;
}
.content-wrap .content-left .blue{
    background-color: #38f;
    color: #fff;
}
.content-wrap .content-left .line{
    border: 1px solid #38f;
    color: #38f;
    padding: 9px 41px;
}