.home-maintitle{
    position: relative;
    width: 100%;
    height: 550px;
    display:flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    color:#fff;
    text-align:center;

}
.home-maintitle-top{
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 3%;
    text-align: center;
    font-size:24px;
    /* width:50%; */
    margin:0 auto 50px;
}
.home-maintitle-top p:first-of-type{
    font-size:50px;
    margin:20px;
}
.home-maintitle-top p span{
    color:#FFCE70;
}
.home-maintitle-bottom button{
    height:40px;
    width:100px;
    border-radius:40px;
    border:none;
    color:#fff;
    font-size:16px;
    outline: none;
    margin-bottom:10px;
    background:#78A9FF;
    cursor: pointer;
}
.home-maintitle-bottom button:first-of-type{
    background:#ffc534;
    color:#fff;
    margin-right:20px;
}


.solution-box{
    padding: 70px 0 70px 0;
    position: relative;
    overflow: hidden;
    background-image: url("../image/grid.png");
    background-position: bottom;
    background-repeat: no-repeat;
    background-color:#f7f7fc;

    /* height: 480px; */
}

.solution-list{
    height:300px;
    position: relative;
    margin-top:50px;
    display:flex;
    justify-content: space-between;
}
.solution{
    height:100%;
    padding:0 15px;
    box-sizing: border-box;
    width:15%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size:12px;
    box-shadow:0px 10px 15px rgba(3,0,91,0.15);
    border-radius:10px;
    background: #fff;
    transition:all .5s linear;
    position: relative;
    bottom:0;
}



.solution:nth-of-type(odd){
    bottom:-130px;
}
.solution::before{
    content:"";
    display: inline-block;
    width: 15px;
    height:15px;
    position: absolute;
    bottom:-7px;
    transform: rotateZ(45deg);
    background:#fff;

}



.solution>img{
    width:60px;
    height:60px;
}
.solution>p{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.solution strong{
    margin:20px 0 10px 0;
    font-size:18px;
}
.path{
    width:100%;

    margin-top:30px
}


body{
    color:#333;
}

.index-box3 .appList{
    height:60px;
    display: flex;
    width:60%;
    margin:50px auto;
    justify-content: space-between;
    align-items: center;

}
.appList li{
    width:100px;
    height:30px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius:30px;
    cursor: pointer;
}
.appList li img{
    width:20px;
    height:20px;
    border-radius:50%;
    margin-right:10px
}
.checked{
    background:#E6EFFF;
    color:#4a74fd
}


.app-detail>li{
    display: flex;
    justify-content: space-between;
    width: 80%;
    margin:0 auto;
    overflow: hidden;
    font-size: 16px;
}
.app-detail li p{
    display: flex;
    flex-direction: column;
    text-align: left;
    font-size:24px;
    position: relative;
    margin-bottom:40px;
}
.app-detail li>.detail-left{
    width:400px;
    text-align: left;
}
.detail-left>span{
    font-size:24px;
    color:#78A9FF;
}
.detail-left>div{
    background-size:auto 100%;
    background-repeat: no-repeat;
}
.detail-left>div>span{
    font-size:24px;
    position: relative;
    margin-bottom:40px;
    display: block;
}
.detail-left>div>span::after{
    content:"";
    position: absolute;
    display: inline-block;
    bottom:-20px;
    left:0;
    width:50px;
    height:2px;
    background:#4a74fd;
}


.detail-left ul{
    margin-bottom:30px;
}
.detail-left ul li{
    text-align: left;
    line-height:40px;
    color:#8895a8;
}
.detail-left ul li::before{
    content:"";
    display: inline-block;
    width:5px;
    height:5px;
    border-radius:50%;
    background:rgba(104,125,159,1);
    vertical-align: middle;
    margin-right: 5px;
}
.app-detail li:nth-of-type(1) .detail-left>div{
    background-image: url("../image/1@2x.png");

}
.app-detail li:nth-of-type(2) .detail-left>div{
    background-image: url("../image/2@2x.png");

}
.app-detail li:nth-of-type(3) .detail-left>div{
    background-image: url("../image/3@2x.png");
    
}
.app-detail li:nth-of-type(4) .detail-left>div{
    background-image: url("../image/4@2x.png");
}
.app-detail li:nth-of-type(odd) .detail-left{
    position: relative;
    animation:ltr .8s ease-out;
}
.app-detail li:nth-of-type(even) .detail-left{
    position: relative;
    animation:rtl .8s ease-out;
}
.app-detail li:nth-of-type(odd) .detail-right{
    position: relative;
    animation:rtl .8s ease-out;
}
.app-detail li:nth-of-type(even) .detail-right{
    position: relative;
    animation:ltr .8s ease-out;
}

.toDetail{
    width:150px;
    padding:5px 10px;
    height:40px;
    color:#78A9FF;
    border:1px solid #78A9FF;
    border-radius: 40px;
}
.toDetail:hover{
    color:#fff;
    background-color: #78A9FF;
}

@keyframes rtl{
    0%{
        right:-200px
    }
    100%{
        right:0;
    }
}
@keyframes ltr{
    0%{
        left:-200px
    }
    100%{
        left:0;
    }
}



.profession{
    
    height:120px;
    width:80%;
    margin:50px auto;
    display: flex;
}
.profession li{
    flex:1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color:#777;
}
.profession li img{
    margin-bottom:30px;
}
.cooperate{
    float: left;
    width: 100%;
    padding:  0px 0;
    background:#fff
}


.home-app{
    padding:50px 0;
}

.home-app:nth-of-type(odd){
    background:#F7F7FC;

}
.home-app .cont1{
    width:1200px;
    margin:0 auto;
}

.home-app .index-title{
    font-size:32px;
    text-align:center;
}
.home-app .app-btn{
    margin-top:50px;
    /* display:flex; */
    /* justify-content: space-between; */
}
.home-app .app-btn .to-login{
    height:36px;
    line-height:36px;
    text-align:center;
    width:120px;
    border-radius:30px;
    background:#FFC534;
    color:#fff;
    font-size:16px;
    display:inline-block;
    margin-right:50px;
}
.home-app .app-btn .to-detail{
    height:36px;
    line-height:36px;
    text-align:center;
    width:120px;
    border-radius:30px;
    background:#78A9FF;
    color:#fff;
    font-size:16px;
    display:inline-block;
}

.app-task,.app-batch,.app-scan,.app-code,.app-distribution{
    display:flex;
    justify-content: space-between;
    height:700px;
    margin-top:50px;
    align-items:center;
    padding:0 50px;
}
.app-batch,.app-code{
    padding:0;
}


.app-task .desc-pic,
.app-batch .desc-pic,
.app-scan .desc-pic,
.app-code .desc-pic,
.app-distribution .desc-pic{
    position:relative;
    width:500px;
    margin-left:30px;
}


.app-batch .desc-pic{
    width:600px;
}


.app-task .desc-pic img,
.app-batch .desc-pic img,
.app-scan .desc-pic img,
.app-code .desc-pic img,
.app-distribution .desc-pic img{
    position: absolute;
}

.desc-text{
    width:400px;
}
.desc-text .app-name{
    color:#78A9FF;
    font-size:30px;
    margin:20px 0;
    font-weight:bolder;
}

.desc-text .app-desc{
    line-height:30px;
    font-weight:bolder;
    font-size:16px;
}

.desc-text .func {
    margin-top:30px;
    color:#333333;

}
.desc-text .func li{
    line-height:40px;
    color:#8995A8;
    display:flex;
    align-items: baseline;
}

.desc-text .func li::before{
    content:"";
    width:10px;
    height:10px;
    border-radius:10px;
    /* margin-top:50%; */
    /* transform:translateY(-50%); */
    background:#8995A8;
    margin-right:20px;
    display:inline-block;
}
@keyframes scanner{
    0%{
        top:0px;
    }
    100%{
        top:400px;
    }
}





.index-box1{
    /* height:400px; */
    height:auto;
    background:unset;
}
.index-box1 .swiper-slide{
    background-size:100% 100%;
    position:relative;
}

.index-box1 .swiper-slide .descript{
    position:absolute;
    left:23%;
    top:50%;
    transform:translateY(-50%);
    color:#fff;
}

.swiper-slide .descript strong{
    font-size:38px;
}
.swiper-slide .descript p{
    font-size: 14px;
    margin:10px 0;
}


@media screen and (min-width:1920px){
    .swiper-slide .descript strong{
        font-size:50px;
    }
    .swiper-slide .descript p{
        font-size:20px;
    }
}


.index-box1 .swiper-slide img{
    width:100%;
}
.index-box1 .swiper-slide a{

    display:inline-block;

    color:#fff;
    background:#78a9ff;
    margin-top:30px;
    width:100px;
    height:40px;
    /* border:1px solid red; */
    border-radius:3px;
    text-align:center;
    line-height:40px;
    font-weight:500;
}



.index-box1 .swiper-slide.banner1 .descript{
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    text-align:center;
}
.index-box1 .swiper-slide.banner1 .descript i{
    font-style:normal;
    color:#FFC534;
}

.index-box1 .swiper-slide.banner1 .descript>p{
    margin:20px auto 40px;
    font-size:16px;
    font-weight:bold;
}

.index-box1 .swiper-slide.banner1 .descript>div{
    text-align: center;
}

.index-box1 .swiper-slide.banner1 .descript>div a{
    width:100px;
    height:36px;
    line-height:36px;
    border:none;
    outline:none;
    margin:0 20px;
    border-radius:36px;
    cursor:pointer;
}
.index-box1 .swiper-slide.banner1 .descript>div a:first-of-type{
    background:#FFC534;
    color:#fff;
}
.index-box1 .swiper-slide.banner1 .descript>div a:last-of-type{
    background:#fff;
    color:#409eff;
}













.consult{
    z-index:100;
}

.index-box1 .swiper-button-prev{
    background-image:url("../image/左侧滑.svg");
    width:30px;
    height:30px;
    background-size:100% 100%;
    opacity: 0;
    left:30px;
}

.index-box1 .swiper-button-next{
    background-image:url("../image/右侧滑.svg");
    width:30px;
    height:30px;
    background-size:100% 100%;
    opacity: 0;
    right:30px;
}

.index-box1:hover .swiper-button-prev,.index-box1:hover .swiper-button-next{
    opacity: 0.8;
}

.index-box1 .swiper-button-prev:hover,.index-box1 .swiper-button-next:hover{
    opacity:1;
}

