.banner {
    background-image: url('../images/compliance/banner.jpg');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}
.banner .banner-main {
    max-width: 1400px;
    height: 450px;
    width: 73%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* 板块一 */
 .block1 .block-main {
    margin: 170px auto;
    width: 1200px;
    display: flex;
    gap: 50px;
}
 .block1 .block-main .left {
    margin-top: -25px;
    position: relative;
    width: 40%;
 }
 .block1 .block-main .left .title {
    font-weight: 800;
    font-size: 48px;
    padding-bottom: 30px;
    position: relative;
}
.block1 .block-main .left .title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 4px;
    background: #2FAA6F;
}
.block1 .block-main .left .text {
    margin-top: 20px;
    line-height: 2;
}
.block1 .block-main .left .button-box {
    margin-top: 50px;
}
.block1 .block-main .left .button-box .cell {
    width: 260px;
    height: 72px;
    border-radius: 35px;
    border: 2px solid #23A667;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 24px;
    color: #2FAA6F;
    transition: .3s;
    margin-top: 20px;
}
.block1 .block-main .left .button-box .cell:hover {
    color: #fff;
    background-color: #2FAA6F;
}


.block1 .block-main .right {
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 70%;
}
.block1 .block-main .right.section-visible {
    opacity: 1;
    transform: translateX(0px);
}
.block1 .block-main .right img{
    width: 100%;
    object-fit: contain;
}

main > .block2 {
    background-color: #FBFAFA;
    padding-top: 114px;
    padding-bottom: 180px;
}
.block2 .block-main {
    width: 1200px;
    margin: 0 auto;
}
.block2 .block-main .tabs {
    display: flex;
    margin-top: 70px;
    justify-content: space-between;
    flex-wrap: wrap;
}
.block2 .block-main .tabs .item {
    height: 66px;
    border-bottom: solid 1px #E5E5E5;
    font-size: 18px;
    /*width: 25%;*/
    cursor: pointer;
    font-weight: bold;
    font-size: 24px;
    color: #666666;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: max-content;
    padding: 0 10px;
}
.block2 .block-main .tabs .item.active {
    color: #2FAA6F;
    border-bottom: solid 1px #2FAA6F;
}
.block2 .block-main .tabs-content {
    margin-top: 44px;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
}
.block2 .block-main .tabs-content .left .name {
    font-weight: bold;
    font-size: 22px;
}
.block2 .block-main .tabs-content .left .introduction {
    margin-top: 20px;
    font-size: 16px;
    line-height: 22px;
    width: 95%;
    color: #666666;
}
.block2 .block-main .tabs-content .right {
    width: 40%;
    height: 200px;
    flex-shrink: 0;
}
.block2 .block-main .tabs-content .right img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
}
.block2 .block-main .tabs-content .right .bg {
    width: 580px;
    height: 300px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    background-position: center center;
    border-radius: 10px;
    transition: 0.3s;
}
.block2 .block-main .tabs-content .right .bg:hover {
    background-size: 110% 110%;
}
.block2 .block-main .tabs-content .right img {
    max-width: 100%;
}
@media screen and (max-width: 1200px) {
    .banner .banner-main {
        max-width: auto
    }
    .block1 .block-main {
        width: 95%;
    }
    .block1 .block-main .left .title {
        font-size: 2.6rem;
    }
    .block2 .button-box .cell {
        font-size: 1.4rem;
        width: 180px;
        aspect-ratio: 260 / 72;
        height: auto;
    }
    .block2 .block-main {
        width: 95%;
    }
    .block2 .block-main .tabs .item {
        font-size: 1.4rem;
    }
    .block2 .block-main .tabs-content .right .bg {
        width: 400px;
        aspect-ratio: 580 / 300;
        height: auto;
    }
}

@media screen and (max-width: 768px) {
    
    .block1 .block-main .left .button-box .cell {
        width: 150px;
        font-size: 1.2rem;
    }
    .block1 .block-main {
        flex-direction: column;
        margin: 80px auto;
    }
    .block1 .block-main .left {
        width: 100%;
    }
    .block1 .block-main .right {
        width: 100%;
    }
    .block2 .block-main .tabs .item {
        font-size: 1.2rem;
    }
    main > .block2 {
        padding-top: 80px;
        padding-bottom: 100px;
    }
    .block2 .block-main .tabs-content {
        flex-direction: column;
        gap: 30px;
        margin-top: 20px;
    }
    .block2 .block-main .tabs-content .right .bg {
        width: 100%;
    }
    .block2 .block-main .tabs-content .right {
        width: 100%;
    }
}

