    @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 {
        position: absolute;
        z-index: 3;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding-top: 130px;
        padding-left: var(--w1600);
        padding-right: var(--w1600);
    }

    .Nybanner .text h1 {
        margin-bottom: 15px;
        font-weight: 700;
        font-size: 48px;
        line-height: 1.5;
        color: #FFF;
    }

    .Nybanner .text p {
        width: 100%;
        max-width: 400px;
        font-weight: 700;
        font-size: 20px;
        line-height: 1.5;
        color: #FFF;
    }

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

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

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

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

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

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

    .mbx i {
        margin-right: 5px;
    }

    .mbx a {
        font-size: 14px;
        color: #6c757d;
    }

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



    /* 页码 */
    .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: 90px;
        position: relative;
        z-index: 9;
        overflow: hidden;
    }

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


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

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

    /* 新加代码 */
    .NyTitle {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .NyTitle h1 {
        font-weight: bold;
        color: #000;
        font-size: 42px;
        color: #252525;
    }

    .NyTitle span {
        display: block;
        width: 50px;
        height: 2px;
        background: var(--color2);
        margin: 0 auto;
        margin-top: 15px;
    }


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

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

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