.reveal {
    width: 100%;
    height: 480px;
    position: relative;
}

.reveal img {
    width: 100%;
    height: 100%;
}

.reveal .revealBox {
    position: absolute;
    right: 0;
    left: 0;
    top: 122px;
    margin: auto;
    text-align: center;
    color: #fff;
}

.reveal .revealBox h1 {
    color: #fff;
    font-size: 59px;
    font-weight: bolder;

}

.reveal .revealBox p {
    font-size: 24px;
}

.tabs {
    width: 100%;
    height: 80px;
    padding: 0 288px;
}

.tabs .list {
    border-bottom: 1px solid #d3d3d3;
    padding: 0;
    margin: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    color: #2f2f2f;
    line-height: 80px;
    text-align: center;
}

.tabs .list .items {
    width: calc(80% / 7);
    height: calc(100% - 2px);
    cursor: pointer;
    flex: 1;
}

.tabs .list .items a {
    color: #2f2f2f;
    display: inline-block;
    width: 100%;
    height: 100%;
}

.tabs .list .items:hover {
    color: #3570f6;
    border-bottom: 2px solid #3570f6;
}

.active {
    color: #3570f6;
    border-bottom: 2px solid #3570f6;
}

.tabsTitle {
    width: 100%;
}

.tab {
    width: 1200px;
    margin: 0 auto;
}

.tab .content {
    padding: 22px 0;
    margin-bottom: 72px;
}

.tab p {
    font-size: 14px;
    line-height: 34px;
    color: #292929;
    font-weight: normal;
    margin-bottom: 46px;
}

.tab img {
    width: 100%;
    height: 274px;
    margin-bottom: 86px;
    object-fit: scale-down;
}

.tab .config {
    line-height: 104px;
    font-size: 16px;
    font-weight: 700;
    color: #2d8cc5;
    text-align: center;
}

.tab .config span {
    padding: 10px;
    border-bottom: 1px solid #0e7ba2;
}


/* 文字带背景样式 */
.backLine {
    color: #424242;
    font-size: 30px;
    font-weight: 500;
    line-height: 84px;
    text-align: center;
    position: relative;
    padding-top: 66px;
    margin-bottom: 0;
}

.backLine span {
    position: relative;
    padding: 8px;
    z-index: 5;
}

.backLine::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    /* top: 0; */
    bottom: 16px;
    width: 422px;
    margin: auto;
    height: 20px;
    background: #e6eefe;
    z-index: -1;
    border-radius: 10px;
}

/* 文字带背景样式 */
@media (max-width: 767px) {
    .tabs {
        padding: 0;
        height: 40px;
    }

    .tabs .list {
        line-height: 40px;
    }

    .tabs .list .items {
        flex: 1;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }

    .tab {
         
        width: 100%;
    }

    .backLine {
        padding-top: 0;
    }

    .tab p {
        margin-bottom: 0;
        padding: 0 8px;
    }

    .tab img {
        margin-bottom: 0;
        object-fit: contain;
    }
}