@charset "utf-8";
/* banner */
.banner-box{
    display: flex;
    margin-top: 46px;
    width: 480px;
    justify-content: space-around;
    align-items: center;
}

.banner-box .code{
    display: flex;
    flex-flow: column;
    align-items: center;
}
.banner-box .code img{
    width: 178px;
    height: 178px;
    border:15px solid #FF8F58;
    border-radius: 10px;
    display: block;
}
.banner-box .code span{
    font-size: 20px;
    color:#fff;
    margin-top: 16px;
    display: block;
    justify-content: space-between;
}

.banner-box .download{
    display: flex;
    flex-flow: column;
    align-items:center;
    height: 195px;
}
.banner-box .download .download-btn{
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 222px;
    background: rgba(255,255,255,.15);
    border-radius: 2px;
    height: 60px;
}
.banner-box .download .download-btn:nth-of-type(2){
    margin-top: 40px;
}

.banner-box .download .download-btn img{
    width: 35px;
    height: 40px;
}

.banner-box .download .download-btn span{
    line-height: 40px;
    color:#fff;
    font-size:24px;
}

/* 图片动效 */
.img-box{
    position:relative
}

.tag,.tag1,.tag2,.tag3,.tag4{
    width: 66px;
    height: 66px;
    position:absolute;
}

.main-box:nth-of-type(2),
.main-box:nth-of-type(4){
    height: 620px;
}

.main-box:nth-of-type(3),
.main-box:nth-of-type(5){
    height: 600px;
}

.main-box:nth-of-type(1) .tag1{
    left:40px;
    top:95px;
}

.main-box:nth-of-type(1) .tag2{
    left:156px;
    top:-53px
}

.main-box:nth-of-type(1) .tag3{
    left:325px;
    top:-106px;
}

.main-box:nth-of-type(1) .tag4{
    left:464px;
    top:-11px;
}

.main-box:nth-of-type(1) .item .text{
    width: 307px;
    height: 211px;
}

.main-box:nth-of-type(1) .item .img-box{
    width: 578px;
    height: 423px;
    margin-top: 145px;
}

.main-box:nth-of-type(1) .item .img{
    width: 578px;
    height: 423px;
}
.main-box:nth-of-type(2) .item .img{
    width: 594px;
    height: 345px;
}
.main-box:nth-of-type(3) .item .img{
    width: 596px;
    height: 345px;
}
.main-box:nth-of-type(3) .item .img{
    width: 596px;
    height: 405px;
}
.main-box:nth-of-type(4) .item .img{
    width: 596px;
    height: 374px;
}
.main-box:nth-of-type(5) .item .img{
    width: 594px;
    height: 344px;
}

.main-box:nth-of-type(2) .tag1{
    left:32px;
    top:-25px;
}

.main-box:nth-of-type(2) .tag2{
    left:170px;
    top:-126px
}

.main-box:nth-of-type(2) .tag3{
    left:325px;
    top:-126px;
}

.main-box:nth-of-type(2) .tag4{
    left:430px;
    top:-66px;
}

.main-box:nth-of-type(2) .item .img-box{
    width: 578px;
    height: 423px;
    margin-top: 185px;
}

.main-box:nth-of-type(3) .tag1{
    left:32px;
    top:-25px;
}

.main-box:nth-of-type(3) .tag2{
    left:208px;
    top:-118px
}

.main-box:nth-of-type(3) .tag3{
    left:463px;
    top:-28px;
}

.main-box:nth-of-type(3) .item .img-box{
    width: 420px;
    height: 423px;
    margin-top: 185px;
}

.main-box:nth-of-type(4) .tag1{
    left:33px;
    top:-23px;
}

.main-box:nth-of-type(4) .tag2{
    left:149px;
    top:-156px
}

.main-box:nth-of-type(4) .tag3{
    left:358px;
    top:-140px;
}

.main-box:nth-of-type(4) .tag4{
    left:489px;
    top:-37px;
}

.main-box:nth-of-type(4) .item .img-box{
    width: 600px;
    height: 423px;
    margin-top: 185px;
}

.main-box:nth-of-type(5) .tag1{
    left:57px;
    top:-19px;
}

.main-box:nth-of-type(5) .tag2{
    left:205px;
    top:-122px
}

.main-box:nth-of-type(5) .tag3{
    left:446px;
    top:-74px;
}

.main-box:nth-of-type(5) .item .img-box{
    width: 500px;
    height: 423px;
    margin-top: 185px;
}

.main{
    overflow:hidden
}
/* 图片里的点 */
.dot{
    display: block;
    width: 8px;
    height: 8px;
    background: rgba(255,101,48,.5);
    border-radius: 50%;
    position: absolute;
    left:20px;
    top:85px;
}

.dot i{
    background-color: #FF6530;
    width: 4px;
    height: 4px;
    position: absolute;
    left:2px;
    top:2px;
    border-radius: 50%;
    display: block;
}

/* 图片动效 */

.tag1 .tag,
.tag3 .tag{
    animation:ghostUpdown 1s ease-in-out infinite alternate;
	-webkit-animation:ghostUpdown 1s ease-in-out infinite alternate;
}

.tag2 .tag,
.tag4 .tag{
    animation:ghostUp 1s ease-in-out infinite alternate;
	-webkit-animation:ghostUp 1s ease-in-out infinite alternate;
}

@keyframes ghostUpdown{
    from{margin-top:0px;}
    to{margin-top:-20px;}
}
@-webkit-keyframes ghostUpdown{
    from{margin-top:0px;}
    to{margin-top:-20px;}
}

@keyframes ghostUp{
    from{margin-top:-20px;}
    to{margin-top:0px;}
}
@-webkit-keyframes ghostUp{
    from{margin-top:-20px;}
    to{margin-top:0px;}
}

.empty{
    width: 100%;
    height: 660px;
    text-align: center;
}

.empty>div{
    margin-top: 300px;
    flex-flow: column;
    display: flex;
    justify-content: center;
    align-items: center;
}

.empty img{
    width: 151px;
    height: 93px;
    margin-bottom: 20px;
}

.empty span{
    font-size: 16px;
    color:#333;
}

.orange-dot{
    background-color: #FA6029;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    display: inline-block;
    vertical-align: middle;
    line-height: 36px;
    margin-right: 3px;
    margin-top:-5px
}

.item-left{
    width: 520px;
}

.main .main-box:nth-of-type(2n) .item-left{
    margin-left: 600px;
}

.main{
    position: relative;
    margin-top: 3px;
}

.pc-download{
    position: absolute;
    width: 100%;
    height: 80px;
    background-color: #FFF5F1;;
}

.main .main-box:nth-of-type(2n){
    background-color: #F8F8F8;
}

.main .main-box:nth-of-type(2n+1){
    background-color: #fff;
}

.pc-download .wrapper{
    display: flex;
    justify-content: space-between;
    width: 950px;
    align-items: center;
    height: 80px;
}

.main .item,
.ipad-main .item{
    background-repeat: no-repeat;
    background-size: 100%;
    background-position-y: 30px;
}

.main .main-box:nth-of-type(1) .item{
    background-image: url('../assets/product/map_bg.png');
}

.main .main-box:nth-of-type(2) .item{
    background-image: url('../assets/product/zhibiao_bg.png');
}

.main .main-box:nth-of-type(3) .item{
    background-image: url('../assets/product/ai_bg.png');
}

.main .main-box:nth-of-type(4) .item{
    background-image: url('../assets/product/zhangting_bg.png');
}

.pc-ul{
    margin-top: 11px;
}

.pc-ul li{
    line-height: 36px;
    color:#666;
    font-size: 18px;
}

.empty-dot{
    text-indent: 12px;
}

.tab-item{
    padding-bottom: 50px;
}

.tab-item>img{
    width: 885px;
    height: 475px;
}