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

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

    /* 内页大图 */
    .Nybanner {
        overflow: hidden;
        position: relative;
        width: 100%;
        height: 80px;
        background: #e5e5e5;

    }

    .Nybanner .text {
        display: none;
    }

    .Nybanner .banner {
        display: none;
    }

    @media screen and (max-width: 1200px) {
        .Nybanner {
            height: 75px;
        }
    }


    /* 面包屑样式 */
    .mbx {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: flex-end;
    }

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

    .mbx a:last-child {
        color: var(--color);
    }

    @media screen and (max-width: 1200px) {
        .mbx {
            justify-content: flex-start;
        }
    }

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

    .Post a {
        padding: 0px 20px;
        border-radius: 6px;
        border: 1px solid #e4eaec;
        color: #76838f;
        max-width: 40%;
        height: 50px;
        line-height: 50px;
        font-size: 16px;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
        transition: 0.5s;
    }

    .Post a:hover {
        border: 1px solid var(--color);
        color: var(--color);
    }

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

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

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

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

    .TextIndent p {
        font-size: 16px;
        line-height: 2.5;
        text-indent: 32px;
        color: #4d4d4d;
    }

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

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

    /* 新加代码 */
    .header.on {
        top: 0px !important;
    }

    @media (max-width: 1200px) {
        .header {
            background: #000 !important;
        }
    }

    .NyTitle {
        padding: 90px 0 60px;
    }

    .NyTitle h1 {
        color: var(--color);
        font-size: 40px;
        margin-bottom: 20px;
        text-align: center;
    }

    .NyTitle span {
        display: block;
        height: 4px;
        width: 75px;
        background: var(--color);
        margin: 0 auto;
    }

    .NyTitle p {
        text-align: center;
        width: 100%;
        font-size: 16px;
        color: #777;
        margin-bottom: 20px;
    }


    @media (max-width: 1200px) {
        .NyTitle {
            padding: 60px 0 30px;
        }

        .NyTitle h1 {
            font-size: 28px;
        }
    }


    .LeftRight {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        align-items: flex-start;
    }

    .LeftRight .NyLeft {
        width: calc(100% - 230px);
        background: #fff;
        border-radius: 6px;
    }

    .LeftRight .NyRight {
        width: 200px;
        padding: 20px;
        background: #fff;
        border-radius: 6px;
    }

    .NyRight .Ss {
        margin-bottom: 30px;
        display: flex;
    }

    .NyRight .searchInput {
        width: calc(100% - 40px);
        height: 36px;
        padding: 6px 15px;
        background: #f1f1f1;
        outline: none;
        font-size: 13px;
    }

    .NyRight .subButn {
        width: 40px;
        height: 36px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: url(/assets/img/search_2.png) no-repeat center;
        background-size: 16px;
        background-color: var(--color);
    }

    .LeftRight .NyRight .title {
        background: var(--color);
        width: 100%;
        height: 40px;
        border-radius: 4px;
        font-size: 16px;
        color: #fff;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .LeftRight .NyRight .NavList {
        margin: 10px 0 30px;
    }

    .LeftRight .NyRight a {
        width: 100%;
        color: #777;
        line-height: 40px;
        border-bottom: solid 1px #f2f2f2;
        overflow: hidden;
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 1;
    }

    .LeftRight .NyRight a:hover {
        color: var(--color);
    }

    @media (max-width: 1200px) {
        .LeftRight .NyLeft {
            width: 100%;
        }

        .LeftRight .NyRight {
            display: none;
        }
    }