/* Section2 */
.section2 {
    display: block;
    background: rgba(246, 246, 246, 0.30);
}

.List2 {
    margin-top: 45px;
    margin-bottom: 90px;
    width: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 30px;
}

.List2 li {
    padding-bottom: 20px;
    width: 100%;
    border-bottom: 1px solid #000;
    color: #000;
    font-size: 20px;
    display: flex;
    align-items: center;
    grid-gap: 15px;
    cursor: pointer;
}

.List2 li.on {
    color: var(--color);
    border-bottom: 1px solid var(--color);
}

.List2 li img {
    max-width: 45px;
    max-height: 45px;
    object-fit: contain;
    filter: brightness(0);
}

.List2 li.on img {
    filter: brightness(1);
}

.Box2 {
    position: relative;
    width: 100%;
    z-index: 2;
    overflow: hidden;
}
.Box2-wrapper {
    display: flex;
    width: 100%;
    transition: transform 0.4s ease;
}
.item2 {
    width: 100%;
    flex-shrink: 0;
    display: none;
    justify-content: space-between;
}
.item2.on {
    display: flex;
}

.text2 {
    width: 45%;
    display: flex;
    flex-direction: column;
    grid-gap: 30px;
}

.text2 h1 {
    color: #000;
    font-size: 40px;
}

.text2 p {
    color: rgba(0, 0, 0, 0.80);
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
}

.img2 {
    width: 42%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img2 .anniu2 {
    position: absolute;
    z-index: 2;
    cursor: pointer;
}

.cover2 {
    width: 100%;
}

.video2 {
    width: 100%;
}

@media (max-width: 1200px) {
    .List2 {
        margin-top: 30px;
        margin-bottom: 30px;
        grid-gap: 15px;
    }

    .List2 li img {
        max-width: 40px;
        max-height: 40px;
    }

    .List2 li {
        padding-bottom: 15px;
        font-size: 16px;
        grid-gap: 10px;
    }

    .text2 {
        grid-gap: 15px;
    }

    .text2 h1 {
        font-size: 32px;
    }

    .img2 {
        width: 50%;
    }
}

@media (max-width: 900px) {
    .List2 {
        grid-template-columns: repeat(3, 1fr);
    }

    .item2 {
        flex-wrap: wrap;
        grid-gap: 30px;
    }

    .text2 {
        width: 100%;
        grid-gap: 0px;
    }

    .img2 {
        width: 100%;
    }
}

@media (max-width: 600px) {
    .List2 {
        grid-template-columns: repeat(2, 1fr);
    }

    .List2 li img {
        max-width: 30px;
        max-height: 30px;
    }

    .text2 h1 {
        font-size: 24px;
    }

    .text2 p {
        font-size: 14px;
        margin-bottom: 15px;
    }
}

@media (max-width: 380px) {}
