.six-list {
    padding: 80px 0 40px;
}
.bricks {
    margin: 0 auto;
    padding: 0 54px;
    width: 1280px;
}
.title {
    font-size: 48px;
    text-align: center;
    font-weight: 400;
    color: #141e31;
    line-height: 59px;
    margin-bottom: 50px;
}
.title2 {
    font-size: 20px;
    text-align: center;
    font-weight: 400;
    color: #141e31;
    line-height: 59px;
    margin-bottom: 50px;
}
.six-list .list-box {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin-bottom: 32px;
}

.six-list .list-box .list-box-cube {
    align-items: center;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 10px 0px #7EB2FF33;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 380px;
    height: 158px;
    margin-right: 32px;
    padding: 30px 16px;
}
.six-list .list-box .list-box-cube:last-of-type {
    margin-right: 0;
}
.six-list .list-box .list-box-cube img {
    width: 62px;
    height: 62px;
    margin-bottom: 16px;
}
.six-list .list-box .list-box-cube h4 {
    font-size: 14px;
}
.feature-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.feature-list .feature-item {
    width: 160px;
    align-items: center;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.feature-list .feature-item .feature-item-img {
    width: 60px;
    height: 60px;
    margin-right: 16px;
}
.feature-list .feature-item .feature-item-txt h3{
    color: #303133;
    font-size: 18px;
    line-height: 40px;
}
.feature-list .feature-item .feature-item-txt h4{
    color: #909399;
    font-size: 14px;
}
@-webkit-keyframes auto-roll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}

@keyframes auto-roll {
    0% {
        -webkit-transform: translateX(0);
        transform: translateX(0)
    }
    to {
        -webkit-transform: translateX(-50%);
        transform: translateX(-50%)
    }
}
.case-list {
    margin-top: 32px;
}
.case-list .list-box {
    display: flex;
    width: fit-content;
    flex-wrap: nowrap;
    animation: auto-roll 50s linear infinite;
    animation-fill-mode: backwards;
    margin: 32px 0;
}
.case-list .list-box .case-item {
    width: 432px;
    font-size: 16px;
    text-align: center;
    /*padding: 20px 28px 18px 48px;*/
    margin-right: 32px;
    text-align: center;
    /*background: hsla(0, 0%, 100%, .8);*/
    /*box-shadow: 0 4px 16px 0 rgba(20, 30, 49, .11);*/
    /*border-radius: 8px;*/
    position: relative
}
.case-list .list-box .case-item h4{
    width: 100%;
    height: 22px;
    position: absolute;
    bottom: 0;
    line-height: 22px;
    background: rgba(0, 0, 0, 0.5);
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    color: #ffffff;
    text-align: center;
    font-size: 16px;
    font-weight: 500;
}
.case-list .list-box:hover {
    -webkit-animation-play-state: paused;
    animation-play-state: paused
}
.swiper-slide {
    width: 600px!important;
    height: 288px;
}
.swiper-pagination {
    width: 100%;
    height: 28px;
    background: #dfdfdf;
}
.swiper-pagination-bullets {
    bottom: 0 !important;
}
.swiper-pagination-bullet {
    background: #5e6d82;
    border-radius: 0;
    height: 4px;
    margin: 0 6px;
    /* opacity: .5; */
    position: relative;
    width: 24px;
    transform: translateY(12px);
}
.swiper-pagination-bullet-active {
    background: #0066ff;
}
@media screen and (max-width: 1280px) {
    .bricks {
        width: 100%;
    }
    .six-list .list-box .list-box-cube {
        height: auto;
    }
    /*.title {*/
    /*    font-size: 24px;*/
    /*}*/
    /*.title2 {*/
    /*    font-size: 14px;*/
    /*}*/
}
@media screen and (max-width: 1200px) {
    .title {
        font-size: 40px;
    }
    .title2 {
        font-size: 18px;
    }
}

@media screen and (max-width: 450px) {
    .six-list .list-box {
        flex-wrap: wrap;
        margin-bottom: 0;
    }
    .six-list .list-box .list-box-cube {
        cursor: inherit;
        margin-bottom: 12px;
        margin-right: 0;
        max-height: 96px;
        width: 100%;
        flex-direction: row;
    }
    .six-list .list-box .list-box-cube img {
        width: 62px;
        height: 62px;
        margin-bottom: 0;
        margin-right: 16px;
    }
}