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

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

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

    .NyBigBox {
        background: #fff;
        padding-top: 120px;
        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;
        }
    }

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

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

    .Nybanner .text {
        position: absolute;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0px var(--container);
        padding-top: 100px;
    }

    .Nybanner .text h1 {
        font-weight: 700;
        font-size: 48px;
        text-align: center;
        color: #FFFFFF;
        opacity: 0.9;
    }

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

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

        .Nybanner .text {
            padding-top: 0px;
        }

        .Nybanner .text h1 {
            font-size: 38px;
        }
    }

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

        .Nybanner .text h1 {
            font-size: 28px;
        }
    }


    /* 面包屑样式 */
    .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;
        }
    }

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

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

    /* 新加代码 */
    .NyTitle h1 {
        font-weight: 700;
        font-size: 42px;
        color: #000000;
    }

    .NyTitle h2 {
        font-weight: 700;
        font-size: 22px;
        color: #000000;
    }

    @media (max-width: 1200px) {
        .NyTitle h1 {
            font-size: 36px;
        }

        .NyTitle h2 {
            font-size: 18px;
        }
    }

    @media (max-width: 720px) {
        .NyTitle h1 {
            font-size: 28px;
        }

        .NyTitle h2 {
            font-size: 16px;
        }
    }

    .NyMore {
        position: relative;
        width: 200px;
        height: 60px;
        border: 1px solid rgba(50, 50, 50, 0.5);
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .NyMore img {
        position: absolute;
        right: 20px;
    }

    @media (max-width: 1200px) {
        .NyMore {
            width: 150px;
            height: 45px;
        }
    }

    @media (max-width: 720px) {
        .NyMore {
            display: flex;
            align-items: center;
            justify-content: space-evenly;
        }

        .NyMore img {
            position: relative;
            right: unset;
        }
    }

    /* 新加 */
    .header.on {
        background: #fff;
    }