    @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;
    }

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

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

    /* 面包屑样式 */
    .mbx {
        width: 100%;
        padding: 15px var(--container);
        background-color: rgb(242, 242, 242);
        display: flex;
        align-items: center;
        grid-gap: 5px;
    }

    .mbx i {
        color: var(--color);
    }

    .mbx a {
        font-size: 16px;
        color: #333;
    }

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


    @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;
        }
    }

    /* 分类 */
    .NavList {
        width: 100%;
        margin: 45px 0;
        display: flex;
        flex-wrap: wrap;
    }

    .NavList a {
        width: 100%;
        max-width: 280px;
        padding: 10px;
        font-size: 18px;
        text-align: center;
        font-weight: bold;
        transition: all .5s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .NavList a:hover {
        color: #F0F0F0;
        background: var(--color);
    }



    @media (max-width: 1200px) {
        .NavList a {
            max-width: 210px;
        }
    }

    @media (max-width: 720px) {
        .NavList {
            margin: 15px 0;
        }

        .NavList a {
            max-width: 150px;
            font-size: 16px;
        }
    }

    /* 新加代码 */
    .NyTitle {
        display: flex;
        align-items: baseline;
        grid-gap: 15px;
        position: relative;
        z-index: 2;
        margin-bottom: 45px;
    }

    .NyTitle h1 {
        font-size: 36px;
        font-weight: bold;
        color: var(--color);
    }

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

    .NyTitle img {
        position: absolute;
        transform: translateY(-25%);
        z-index: -1;
    }


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

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

        .NyTitle img {
            max-width: 100%;
        }
    }