    @keyframes text {
        0% {
            transform: scale(1);
        }

        100% {
            transform: scale(1.3);
        }
    }

    /* 内页大图 */
    .Nybanner {
        margin-top: 100px;
        overflow: hidden;
        position: relative;
        width: 100%;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .Nybanner .banner {
        position: relative;
        width: 100%;
        object-fit: cover;
        opacity: 1;
    }

    .Nybanner .text {
        display: none;
    }


    @media screen and (max-width: 1200px) {
        .Nybanner {
            margin-top: 60px;
        }
    }

    @media screen and (max-width: 720px) {
        .Nybanner .banner {
            height: 50w;
        }
    }

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

    /* 面包屑样式 */
    .mbx {
        width: 100%;
        padding: 0 var(--w1600);
        padding-top: 15px;
        display: flex;
        align-items: center;
    }

    .mbx a {
        font-size: 18px;
        color: #787878;
    }

    .mbx a:last-child {
        color: #000;
    }

    @media screen and (max-width: 1200px) {
        .mbx a {
            font-size: 16px;
        }
    }

    @media screen and (max-width: 720px) {
        .mbx a {
            font-size: 14px;
        }
    }

    /* 页码 */
    .Post {
        border-top: 1px solid #e6e6e6;
        width: 100%;
        padding: 20px 0;
        display: flex;
        justify-content: space-between;
    }

    .Post a {
        max-width: 50%;
        color: #333;
        line-height: 1;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    @media (max-width: 720px) {
        .Post {
            display: flex;
            flex-wrap: wrap;
        }

        .Post a {
            width: 100%;
            max-width: 100%;
            margin: 5px 0;
        }
    }

    /* 框架结构 */
    body {
        background: #fff;
    }

    .NyBigBox {
        background: #fff;
        padding-top: 90px;
        padding-bottom: 140px;
        position: relative;
        z-index: 9;
        overflow: hidden;
    }

    @media (max-width: 1440px) {
        .NyBigBox {
            padding-bottom: 120px;
        }
    }

    @media (max-width: 1260px) {
        .NyBigBox {
            padding-top: 90px;
            padding-bottom: 90px;
        }
    }

    @media (max-width: 720px) {
        .NyBigBox {
            padding-top: 60px;
            padding-bottom: 60px;
        }
    }

    /* 定位 */
    .dian {
        position: relative;
        top: -100px;
    }

    @media (max-width: 640px) {
        .dian {
            position: relative;
            top: -60px;
        }
    }

    /* 新加代码 */
    .NyNavTitle {
        padding-top: 90px;
        padding-bottom: 45px;
        border-bottom: 1px solid #ccc;
    }

    .NyTitle {
        display: flex;
        flex-direction: column;
        align-items: center;
        grid-gap: 10px;
    }

    .NyTitle h1 {
        color: #000;
        font-size: 36px;
        font-weight: 700;
    }

    .NyTitle h2 {
        width: 450px;
        color: #000;
        font-size: 16px;
        text-align: center;
        background: url(/assets/images/lltb1.png) no-repeat center;
    }

    .NyTitle p {
        width: 100%;
        max-width: 900px;
        margin-top: 40px;
        color: #4F4F4F;
        text-align: center;
        font-size: 16px;
    }


    .NavList {
        margin-top: 60px;
        display: flex;
        justify-content: center;
        grid-gap: 30px;
    }

    .NavList a {
        color: #666666;
        font-size: 14px;
        background: #eee;
        text-align: center;
        width: 20%;
        height: 45px;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .NavList a.active {
        color: #fff;
        background: var(--color);
    }

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

    @media (max-width: 1200px) {
        .NavList {
            grid-gap: 15px;
        }

        .NavList a {
            width: 150px;
        }
    }

    @media (max-width: 720px) {
        .NyTitle h2 {
            width: 100%;
        }
    }