.section2 .wrap {
    padding: 0 0 100px;
    width: calc(1600px + 4.375rem);
    margin: 0 auto;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
    max-width: 100%;
}

.section2 .wrap .top {
    display: flex;
    justify-content: center;
    gap: 300px;
}

.section2 .wrap .top .item .img {
    display: flex;
    align-items: center;
    height: 250px;
    align-items: center;
    justify-content: center;
    /* background: linear-gradient(60deg, #171310, #2C231A); */
    overflow: hidden;
}

.section2 .wrap .top .item .img img {
    transition: transform .2s ease-in-out;
}

.section2 .wrap .top .item:hover .img img {
    transform: scale(1.1);
}

.section2 .wrap .top .item .text {
    text-align: center;
    margin-top: 10px;
}

.section2 .wrap .bottom {
    /* display: flex;
    flex-wrap: wrap;
    justify-content: center; */
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 80px 20px;
    margin-top: 100px;
}

.section2 .wrap .bottom .item .img {
    overflow: hidden;
}

.section2 .wrap .bottom .item .text {
    margin-top: 10px;
}

.section2 .wrap .bottom .item:hover .img img {
    transform: scale(1.1);
}

.section2 .wrap .bottom .item .img img {
    width: 100%;
    transition: transform .2s ease-in-out;
}


.section3 .wrap {
    padding: 100px 0;
    width: calc(1600px + 4.375rem);
    margin: 0 auto;
    padding-left: 2.1875rem;
    padding-right: 2.1875rem;
    max-width: 100%;
}

.section3 .wrap .list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 2%;
}

.section3 .wrap .list .item {
    width: 32%;
}

.section3 .wrap .list .item:hover .img img {
    transform: scale(1.1);
}

.section3 .wrap .list .item:nth-child(5n) {
    width: 66%;
}

.section3 .wrap .list .item .img {
    overflow: hidden;
    width: 100%;
    /* height: 320px; */
    height: auto;
}

.section3 .wrap .list .item .img img {
    width: 100%;
    transition: transform .2s ease-in-out;
}

.section3 .wrap .list .item .text {
    padding: 10px 0;
    font-size: 20px;
}

/* .hotspot .popper{
    display: none !important;
} */
/* .section4 .wrap{
    width: 1600px;
    margin: 0 auto;
}
.section4 .wrap .top{
    height: 500px;
    overflow: hidden;
}
.section4 .wrap .top img{
    width: 100%;
    height: 100%;
}
.section4 .wrap .bottom{
    display: flex;
    justify-content: space-between;
}
.section4 .wrap .bottom .left{
    width: 1200px;
    border-radius: 10px;
    border: 1px solid #fff;
    padding: 40px;
    box-shadow: 0px 10px 19.11px 1.89px rgba(255, 255, 255, 0.2);
}
.section4 .wrap .bottom .left .title h3{
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    margin: 10px 0 40px;
    text-align: center;
    position: relative;
}
.section4 .wrap .bottom .left .main p{
    font-size: 16px;
    color: #ddd;
    line-height: 28px;
    margin: 4px 0 14px;
}
.section4 .wrap .bottom .left .main p img{
    width: 100%;
    margin: 50px 0;
}
.section4 .wrap .bottom .right{
    width: 340px;
    position: sticky;
    height: fit-content;
    top: 100px;
    padding: 20px 15px;    
    border-radius: 10px;
    border: 1px solid #fff;
}
.section4 .wrap .bottom .right .title h3{
    font-size: 28px;
    font-weight: 700;
}
.section4 .wrap .bottom .right .main{
    margin-top: 20px;
}
.section4 .wrap .bottom .right .main .list .item:not(:last-child){
    margin-bottom: 10px;
}
.section4 .wrap .bottom .right .main .list .item .key{
    font-size: 18px;
    color: #fff;
    margin-bottom: 5px;
}
.section4 .wrap .bottom .right .main .list .item .value{
    width: 100%;
    border-radius: 5px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.section4 .wrap .bottom .right .main .list .item .value textarea,
.section4 .wrap .bottom .right .main .list .item .value input{
    width: 100%;
    background-color: transparent;
    color: #fff;
    border: none !important;
    outline: none !important;
    padding-left: 10px;
}
.section4 .wrap .bottom .right .main .list .item .value textarea{
    height: 120px;
}
.section4 .wrap .bottom .right .main button{
    margin-top: 20px;
    width: 148px;
    height: 48px;
    border: none;
    border-radius: 5px;
    color: #fff;
    font-size: 18px;
    border: 1px solid #fff;
    background-color: transparent;
    transition: all .6s;
}
.section4 .wrap .bottom .right .main button:hover{
    background-color: #fff;
    color: #111;
    transform: translateX(20px);
} */

@media screen and (max-width: 1680px) {
    .section3 .wrap .list .item .text {
        font-size: 18px;
    }

    .section3 .wrap .list {
        gap: 20px 2%;
    }

    .section2 .wrap .top {
        gap: 150px
    }

    .section2 .wrap .bottom {
        grid-gap: 40px 20px;
    }
}

@media screen and (max-width: 1024px) {
    .content-block+.content-block {
        margin-top: 3.5rem;
    }

    .section3 .wrap .list {
        grid-gap: 20px;
        justify-content: space-between;
    }

    .section3 .wrap .list .item {
        width: calc(50% - 10px);
    }

    .section3 .wrap .list .item:nth-child(5n) {
        width: 100%;
    }

    .section3 .wrap {
        padding-bottom: 50px;
    }

    .section2 .wrap .top {
        grid-gap: 2%;
    }

    .section2 .wrap .top .item {
        width: 49%;
    }

    .section2 .wrap .top .item .img {
        height: auto;
    }

    .section2 .wrap .top .item .img img {
        width: 100%;
    }

    .section2 .wrap .top .item:hover .img img {
        transform: scale(1.1);
    }

    .section2 .wrap .bottom {
        grid-gap: 20px;
    }

    .section2 .wrap .bottom {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }
.section3 .wrap .list .item:hover .img img{
    transform: scale(1);
}
}

@media screen and (max-width: 767px) {
    .section3 .wrap .list {
        grid-gap: 10px;
    }

    .section3 .wrap .list .item {
        width: 100%;
    }

    .section3 .wrap {
        padding-left: 1.5625rem;
        padding-right: 1.5625rem;
        padding-top: 50px;
    }

    .section2 .wrap {
        padding-left: 1.5625rem;
        padding-right: 1.5625rem;
        padding-bottom: 50px;
    }

    .section2 .wrap .bottom {
        grid-gap: 10px;
        grid-template-columns: repeat(1, 1fr);
    }
    .section2 .wrap .top{
        flex-direction: column;
    }
.section2 .wrap .top .item{
    width: 100%;
}

}