    /* Section2 */
    .section2 {
        padding: 0;
    }

    .Top2 {
        border-top: 12px solid var(--color);
        border-bottom: 1px solid #D9D9D9;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 60px var(--container);
    }

    /* 分类样式 */
    .List2 {
        display: flex;
        justify-content: space-between;
        grid-gap: 30px;
    }

    .List2 a {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        grid-gap: 10px;
        color: #000;
        font-size: 16px;
        position: relative;
        text-align: center;
    }

    .List2 a:first-child {
        color: var(--color);
        font-weight: bold;
        font-size: 30px;
        width: 100px;
    }

    .List2 a .iocn2 {
        display: block;
    }

    .List2 a.on::after {
        content: '';
        width: 30px;
        height: 30px;
        border-radius: 50%;
        opacity: 0.25;
        background: var(--color);
        position: absolute;
        top: 30px;
        right: 10px;
    }

    .List2 a.on:first-child {
        color: #fff;
    }

    .List2 a.on:first-child::after {
        content: '';
        width: 100px;
        height: 100px;
        border-radius: 50%;
        opacity: 1;
        background: var(--color);
        position: absolute;
        z-index: -1;
        top: auto;
        right: auto;
    }

    /* 内容样式 */
    .Box2 {
        display: block;
        position: relative;
        width: 100%;
        z-index: 2;
    }

    .slide-container {
        display: flex;
        transition: transform 0.5s ease;
        align-items: center;
    }

    .item2 {
        min-width: 100%;
        display: flex;
        justify-content: center;
    }

    .lt2 {
        width: 50%;
    }

    .lt2 img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }


    .rt2 {
        width: 50%;
        padding-top: 60px;
        padding-bottom: 90px;
        padding-left: 75px;
        padding-right: var(--container);
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        grid-gap: 45px;
    }

    .rt2 h1 {
        font-size: 40px;
        font-weight: bold;
        color: #2D2D2D;
        line-height: 1;
    }

    .rt2 .img2 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 20px;
    }

    .rt2 .img2 span {
        background: rgba(217, 217, 217, 0.10);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        grid-gap: 10px;
        padding: 30px 15px;
        color: #000;
        font-size: 16px;
        transition: 0.5s;
    }

    .rt2 .img2 span:hover {
        background: var(--color);
        color: #fff;
    }

    .rt2 .img2 span img {
        width: 70px;
        height: 70px;
        object-fit: contain;
        transition: 0.5s;
    }

    .rt2 .img2 span:hover img {
        filter: invert(1);
    }

    /* 按钮 */
    .prev2,
    .next2 {
        width: 56px;
        height: 56px;
        border-radius: 50%;
        border: 1px solid #000;
        opacity: 0.15;
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        right: calc(75px + var(--container));
        bottom: 90px;
        cursor: pointer;
    }

    .prev2 i,
    .next2 i {
        color: #000;
        font-size: 24px;
    }

    .next2 {
        right: var(--container);
        background: var(--color);
        border: 0px;
    }

    .next2 i {
        color: #fff;
    }


    @media (max-width: 1440px) {
        .List2 a img {
            width: 90px;
            height: 90px;
            object-fit: contain;
        }

        .List2 a {
            font-size: 14px;
        }

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

        .rt2 .img2 span img {
            width: 60px;
            height: 60px;
        }

        .rt2 .img2 span {
            font-size: 14px;
        }
    }

    @media (max-width: 1200px) {
        .Top2 {
            flex-wrap: wrap;
            grid-gap: 30px;
        }

        .List2 {
            width: 100%;
            justify-content: space-between;
        }

        .List2 a:first-child {
            font-size: 24px;
            width: 90px;
        }

        .List2 a.on:first-child::after {
            width: 90px;
            height: 90px;
        }

        .rt2 {
            width: 50%;
            padding-top: 30px;
            padding-bottom: 30px;
            padding-left: 30px;
            padding-right: var(--container);
            grid-gap: 15px;
        }

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

        .rt2 .img2 span img {
            width: 45px;
            height: 45px;
        }

        .prev2,
        .next2 {
            bottom: 30px;
        }
    }

    @media (max-width: 900px) {
        .List2 a img {
            width: 50px;
            height: 50px;
            object-fit: contain;
        }

        .List2 a:first-child {
            font-size: 18px;
            width: 60px;
        }

        .List2 a.on:first-child::after {
            width: 60px;
            height: 60px;
        }

        .item2 {
            display: flex;
            justify-content: center;
            flex-direction: column-reverse;
        }

        .lt2 {
            width: 100%;
        }

        .rt2 {
            width: 100%;
            padding: 30px var(--container);
        }

        .prev2 {
            right: auto;
            left: var(--container);
        }
    }

    @media (max-width: 600px) {
        .Top2 {
            padding-bottom: 30px;
        }

        .List2 {
            display: grid;
            justify-items: center;
            grid-gap: 10px;
            grid-template-columns: repeat(4, 1fr);
        }

        .prev2,
        .next2 {
            width: 46px;
            height: 46px;
            bottom: 15px;
        }

        .rt2 .img2 span {
            padding: 15px;
            font-size: 12px;
        }

        .rt2 .img2 span img {
            width: 30px;
            height: 30px;
        }
    }

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