.feature {
    background-color: #FFFFFF;
    padding-top: 106px;
}
.feature .title {
    font-size: 40px;
    text-align: center;
    font-weight: normal;
    color: #333333;
    line-height: 40px;
    height: 40px;
    margin-bottom: 20px;
}
.feature .subTitle {
    font-size: 18px;
    line-height: 18px;
    height: 18px;
    text-align: center;
    font-weight: normal;
    margin-bottom: 34px;
    color: #666666;
}
.feature .content {
    width: 100%;
    padding-top: 120px;
    min-height: 616px;
}
.feature .content .view {
    display: flex;
    justify-content: space-between;
}
.feature .bg {
    background: #f8f8ff;
}
.feature .content .img-box {
    width: 56%;
    height: 374px;
    position: relative;
    perspective: 1000px;
}

.img-item {
    user-select: none;
    width: 580px;
    height: 374px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: 0;
    transition: .8s;
    opacity: 0;
}

.img-item img {
    width: 100%;
    height: 100%;
}

.cur-img {
    width: normal;
    z-index: 100;
    opacity: 1;
}

.pre-img {
    transform: translateX(-120px) rotateY(0deg) scale(0.8);
    z-index: 9;
    opacity: 0.5;
    left: 66px
}

.next-img {
    transform: translateX(120px) rotateY(0deg) scale(0.8);
    z-index: 9;
    opacity: 0.5;
    right: 92px;
}
.feature .content .text {
    width: 41%;
    padding-top: 18px;
}
.feature .content .text .text-title {
    font-size: 32px;
    height: 32px;
    line-height: 32px;
    margin-bottom: 42px;
    font-weight: 700;
    color: #333333;
    text-align: left;
}
.feature .content .text .list {
    padding-bottom: 16px;
}


.feature .content .text .list .item {
    align-items: center;
    font-size: 16px;
    height: 16px;
    line-height: 16px;
    margin-bottom: 24px;
    font-weight: normal;
    color: #666666;
    display:flex;
}



.feature .content .text .list .item .dot {
    width: 8px;
    height: 8px;
    padding: 4px;
    border-radius: 8px;
    margin-right: 13px;
    background-color: #0084fd;
}


.feature .content .text .list .item span {
    line-height: 18px;
}


.feature .content .text .more {
    width: 160px;
    height: 46px;
    line-height: 46px;
    text-align: center;
    color: #FFFFFF!important;
    background: #0084fd;
    border-radius: 3px;
}


@media screen and (max-width: 1200px) {
    .feature .content .container .img-box{
        width: 655px;
        overflow: hidden;
    }
    .feature .content .container .img-box .next-img{
        cursor: pointer;
        top: 10px;
    }
    .feature .content .container .img-box .pre-img{
        cursor: pointer;
        top: 10px;
    }
}

@media screen and (max-width: 992px) {
    .feature{
        padding-top: 60px;
    }
    .feature .title{
        font-size: 18px;
        font-weight: bold;
        color: #282D31;
        height: 22px;
        line-height: 22px;
        margin-bottom: 12px;
    }
    .feature .subTitle{
        height: 16px;
        font-size: 14px;
        font-weight: normal;
        color: #666666;
        line-height: 16px;
        margin-bottom: 0;
    }
    .feature .content{
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .feature .content .view{
        flex-direction: column;
        align-items: center;
       padding-left: 40px;
    }
    .feature .content .text{
        padding-top: 10px;
        width: 723px;
        padding-left: 80px;
    }
    .feature .bg .text{
       margin-bottom: 0;
        order: 6 !important;
    }
    .feature .content .text .text-title{
        font-size: 18px;
        margin-bottom: 18px;
    }
    .feature .content .text .list .item{
        font-size: 12px;
        line-height: 14px;
        height: auto;
        margin-bottom: 12px;
    }
    .feature .content .text .list .item .dot{
        margin-right: 10px;
    }
    .feature .content .text .more{
        height: 34px;
        line-height: 34px;
        padding: 0 30px;
        font-size: 13px;
        width: 116px;
    }
}

@media screen and (max-width: 768px) {

    .feature .content{
        padding-top: 20px;
        padding-bottom: 40px;
    }
    .feature .content .view{
        flex-direction: column;
        align-items: center;
        padding: 0 0px;
    }
    .feature .content .text{
        width:90%;
        padding-left: 0;
    }
    .feature .content .container .img-box{
        width:90%;
        margin-bottom: 10px;
    }
    .feature .content .container .img-box .cur-img {
        width: 90%;
        zoom: 0.8;
    }

    .pre-img {
        transform: translateX(-120px) rotateY(0deg) scale(0.7);
    }

    .next-img {
        transform: translateX(120px) rotateY(0deg) scale(0.7);
    }
}

@media screen and (max-width: 560px) {

    .feature .content .img-box {
        height: 45vw;
    }
    
    .feature .content .img-box {
        width: 100%;
        height: 55vw;
    }
    
    .feature .content .img-box  .img-item{
        height: 55vw;
        width:100%;
    }
    
    .feature .content {
         min-height: auto;
    }
    
    .feature .content .container .img-box .img-item img {
        height: auto;
    }
    
}


