<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">    .section6 {
        background: #f3f1f1;
    }

    .Box6 {
        position: relative;
        width: 100%;
        z-index: 2;
        border: 1px solid #c2c1c1;
    }

    .Top6 {
        width: 100%;
        border-bottom: 1px solid #0f8979;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .List6 {
        display: flex;
    }

    .List6 a {
        width: 160px;
        height: 50px;
        border-right: 1px solid #c2c1c1;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #302d2d;
        font-size: 20px;
    }

    .List6 a:hover {
        color: #fff;
        background: var(--color);
    }

    .More6 {
        width: 65px;
        height: 25px;
        line-height: 25px;
        text-align: center;
        background: #e7730e;
        color: #fff;
        font-size: 14px;
        margin-right: 15px;
    }


    .item6 {
        border: 1px solid #c2c1c1;
        border-top: 0px;
        padding: 15px 30px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        grid-gap: 0 50px;
    }

    .img6 {
        grid-row: 1/4;
        width: 100%;
    }

    .item6 a {
        width: 100%;
        border-bottom: 1px solid #b7b7b7;
        display: flex;
        align-items: center;
        grid-gap: 15px;
        height: 50px;
    }

    .item6 a span {
        display: inline-block;
        width: 19px;
        color: var(--color);
        font-size: 16px;
    }

    .item6 a h1 {
        color: #302d2d;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }


    @media (max-width: 1200px) {
        .item6 {
            grid-template-columns: repeat(2, 1fr);
            grid-gap: 0 50px;
        }

        .img6 {
            grid-row: 1/3;
            width: 100%;
        }
    }

    @media (max-width: 720px) {
        .List6 a {
            width: 90px;
            height: 40px;
            font-size: 16px;
        }

        .item6 {
            padding: 15px 20px;
            grid-gap: 0 20px;
        }

        .item6 a h1 {
            font-size: 14px;
        }
    }

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

    }

    @media (max-width: 380px) {
        .List6 a {
            width: 75px;
            font-size: 14px;
        }
    }</pre></body></html>