.section {
    padding: 208px 0 122px;
    position: relative;
}

.section .sq_box1 {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: -1;
}

.section .sq_box1 .sq {
    content: "";
    width: 100%;
    height: 820px;
    left: 0;
    top: 0;
    background: linear-gradient(180deg, #DBE7CD 0%, #FFFFFF 100%);
    position: sticky;
    top: 0;
}

.section .top {
    padding: 0 0 0 172px;
    position: relative;
}

.section .top .people {
    width: 495px;
    position: absolute;
    right: 156px;
    top: -30px;
}

.section .top .people img {
    display: block;
    width: 100%;
}

.section .top .back {
    display: flex;
    align-items: center;
    gap: 16px;
    width: fit-content;
}

.section .top .back .iconfont {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: #87b22e;
    border: 4px solid #87b22e;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #FFFFFF;
    transform: rotate(180deg);
    transition: 0.6s;
}

.section .top .back p {
    font-weight: 400;
    font-size: 16px;
    color: #87b22e;
}

.section .top .back:hover .iconfont {
    transform: rotate(180deg) scale(0.8);
    background: unset;
    color: #87B22E;
}

.section .top .title {
    font-weight: bold;
    font-size: 42px;
    margin: 42px 0 5px;
    color: #87b22e;
}

.section .top .des {
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
    color: #1a1a1a;
}

.section .box {
    width: 100%;
    padding: 57px 30px 70px;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(32px);
    margin: 69px 0 0;
    border-radius: 66px;
}

.section .box .list {
    display: flex;
    flex-wrap: wrap;
    gap: 30px 33px;
}

.section .box .list .item {
    width: 350px;
    height: 420px;
    border-radius: 12px;
    background: #fbfbfb;
    padding: 56px 0 0;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.section .box .list .item .item_shadow {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: absolute;
    top: 0;
    left: 0;
    padding: 60px 39px 66px;
    background: linear-gradient(180deg, #DBE7CD 0%, #FFFFFF 100%);
    border-radius: 12px;
    opacity: 0;
    transition: 0.6s;
}

.section .box .list .item .item_shadow .item_bottom .h5 {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.section .box .list .item .item_shadow .item_bottom .labels {
    display: flex;
    gap: 18px;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.section .box .list .item .item_shadow .item_bottom .labels .label {
    width: 38px;
    height: 38px;
    transition: 0.6s;
}

.section .box .list .item .item_shadow .item_bottom .labels .label img {
    display: block;
    width: 100%;
    height: 100%;
}

.section .box .list .item .item_shadow .item_bottom .labels .label:hover {
    transform: scale(1.1);
}

.section .box .list .item .item_shadow .item_top .h5 {
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 13px;
    color: #1a1a1a;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.section .box .list .item .item_shadow .item_top .p {
    font-weight: 400;
    font-size: 16px;
    color: #1a1a1a;
    -webkit-line-clamp: 3;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: 0.6s;
}

.section .box .list .item .img {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
    height: 270px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
    transition: 1s;
}

.section .box .list .item .img img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    transition: 1s;
}

.section .box .list .item .item_name {
    font-weight: bold;
    font-size: 18px;
    text-align: center;
    margin: 37px 0 0;
    transition: 0.6s;
}

.section .box .list .item:hover .item_name {
    opacity: 0;
}

.section .box .list .item:hover .item_shadow {
    opacity: 1;
}

.section .box .list .item:hover .item_shadow .item_top .h5 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}

.section .box .list .item:hover .item_shadow .item_top .p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.5s;
}

.section .box .list .item:hover .item_shadow .item_bottom .h5 {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.section .box .list .item:hover .item_shadow .item_bottom .labels {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.section .box .list .item:hover .img {
    transform: translate(98px, 107px);
}

.section .box .list .item:hover .img img {
    transform: scale(0.5);
}

.page {
    margin: 73px 0 0;
}

@media screen and (max-width: 1919px) {
    .section {
        padding: 10.8333333333vw 0px 6.3541666667vw;
    }

    .section .sq_box1 .sq {
        height: 42.7083333333vw;
    }

    .section .top {
        padding: 0px 0px 0px 8.9583333333vw;
    }

    .section .top .people {
        width: 25.78125vw;
        right: 8.125vw;
        top: -1.5625vw;
    }

    .section .top .back {
        gap: 0.8333333333vw;
    }

    .section .top .back .iconfont {
        width: 2.8645833333vw;
        height: 2.8645833333vw;
        border: 0.2083333333vw solid rgb(135, 178, 46);
        font-size: 0.7291666667vw;
    }

    .section .top .back p {
        font-size: 0.8333333333vw;
    }

    .section .top .title {
        font-size: 2.1875vw;
        margin: 2.1875vw 0px 0.2604166667vw;
    }

    .section .top .des {
        font-size: 0.8333333333vw;
        line-height: 1.25vw;
    }

    .section .box {
        padding: 2.96875vw 1.5625vw 3.6458333333vw;
        box-shadow: rgba(0, 0, 0, 0.04) 0px 0px 1.875vw 0px;
        backdrop-filter: blur(1.6666666667vw);
        margin: 3.59375vw 0px 0px;
        border-radius: 3.4375vw;
    }

    .section .box .list {
        gap: 1.5625vw 1.71875vw;
    }

    .section .box .list .item {
        width: 18.2291666667vw;
        height: 21.875vw;
        border-radius: 0.625vw;
        padding: 2.9166666667vw 0px 0px;
    }

    .section .box .list .item .item_shadow {
        padding: 3.125vw 2.03125vw 3.4375vw;
        border-radius: 0.625vw;
    }

    .section .box .list .item .item_shadow .item_bottom .h5 {
        font-size: 0.9375vw;
        margin-bottom: 0.78125vw;
        transform: translateY(1.0416666667vw);
    }

    .section .box .list .item .item_shadow .item_bottom .labels {
        gap: 0.9375vw;
        transform: translateY(1.0416666667vw);
    }

    .section .box .list .item .item_shadow .item_bottom .labels .label {
        width: 1.9791666667vw;
        height: 1.9791666667vw;
    }

    .section .box .list .item .item_shadow .item_top .h5 {
        font-size: 1.25vw;
        margin-bottom: 0.6770833333vw;
        transform: translateY(1.0416666667vw);
    }

    .section .box .list .item .item_shadow .item_top .p {
        font-size: 0.8333333333vw;
        transform: translateY(1.0416666667vw);
    }

    .section .box .list .item .img {
        width: 8.3333333333vw;
        height: 14.0625vw;
    }

    .section .box .list .item .item_name {
        font-size: 0.9375vw;
        margin: 1.9270833333vw 0px 0px;
    }

    .section .box .list .item:hover .img {
        transform: translate(5.1041666667vw, 5.5729166667vw);
    }

    .page {
        margin: 3.8020833333vw 0px 0px;
    }
}

@media screen and (max-width: 768px) {
    .section {
        padding: 100px 0 60px;
    }
    .section .top {
        padding: 0;
        margin-bottom: 30px;
    }
    .section .top .back {
        gap: 8px;
    }
    .section .top .back .iconfont {
        width: 32px;
        height: 32px;
        font-size: 12px;
    }
    .section .top .back p {
        font-size: 15px;
    }
    .section .top .title {
        font-size: 20px;
        margin: 15px 0 8px;
    }
    .section .top .text {
        font-size: 15px;
    }
    .section .box {
        box-shadow: 0px 0px 36px 0px rgba(0, 0, 0, 0.04);
        padding: 20px;
        border-radius: 12px;
    }
    .section .top .people {
        width: 150px;
        top: 43px;
        right: 0;
    }
    .section .box .list {
        gap: 20px;
    }
    .section .box .list .item {
        width: 100%;
        height: 300px;
        padding: 30px 20px;
        border-radius: 10px;
    }
    .section .box .list .item .img {
        width: 60%;
        height: 150px;
        margin: 0 0 0 auto;
        transform: translateY(80px) !important;
        display: flex;
        justify-content: flex-end;
    }
    .section .box .list .item .item_name {
        font-size: 16px;
        margin: 20px 0 0;
        display: none;
    }
    .section .box .list .item .item_shadow {
        opacity: 1;
        padding: 30px 20px;
    }
    .section .box .list .item .item_shadow .item_top .p {
        font-size: 14px;
        opacity: 1;
        transform: unset;
    }
    .section .box .list .item .item_shadow .item_top .h5 {
        font-size: 16px;
        opacity: 1;
        transform: unset;
        margin-bottom: 10px;
    }
    .section .box .list .item .item_shadow .item_bottom .h5 {
        opacity: 1;
        font-size: 15px;
        margin-bottom: 8px;
        transform: unset;
    }

    .section .box .list .item .item_shadow .item_bottom .labels {
        opacity: 1;
        transform: unset;
        gap: 8px;
    }
    .section .box .list .item .item_shadow .item_bottom .labels .label {
        width: 24px;
        height: 24px;
    }
}
