.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;
}
.tab-wrapper {
    width: 100%;
    height: 560px;
    display: flex;
    margin-top: 32px;
}
.tab-wrapper .tab-nav {
    width: 188px;
    margin-right: 16px;
    border-radius: 4px;
    height: 520px;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 10px;
}
.tab-wrapper .tab-nav .tab-nav-item{
    width: 168px;
    height: 64px;
    padding: 12px 16px;
    margin: 8px 0;
    display: flex;
    cursor: pointer;
}
.tab-wrapper .tab-nav .tab-nav-item.active, .tab-wrapper .tab-nav .tab-nav-item:hover{
    border-radius: 4px;
    background: #F8F9FB;
    box-shadow: 0px 0px 8px 0px rgba(40, 95, 177, 0.20);
}
.tab-wrapper .tab-nav .tab-nav-item img{
    width: 40px;
    height: 40px;
    margin-right: 16px;
}
.tab-wrapper .tab-nav .tab-nav-item h4{
    font-size: 16px;
    line-height: 40px;
}
.tab-wrapper .tab-content {
    flex: 1;
    height: 488px;
}
.tab-wrapper .tab-content img{
    width: 100%;
    height: 100%;
}
.feature-list {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.feature-list .feature-item {
    width: 327px;
    padding: 16px;
    align-items: center;
    display: flex;
}
.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;
}
.feature-list .feature-item .feature-item-txt h4{
    color: #909399;
    font-size: 14px;
}
@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;
    }
}

