@media screen and (min-width:1001px) {

    .phone_footer {
        display: none;
    }

    html,
    body {
        min-width: 1442px;
    }
}



/* 顶部导航栏区 */

/* 动画 */

@keyframes move_left {
    from {
        opacity: 0;
        transform: translate(-200px, -70px);
    }

    to {
        opacity: 1;
        transform: translate(-140px, -20px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 100%, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.rotate-img {
    transform: rotate(180deg);
}

.parentNav i img {
    transition: transform 0.2s ease;
}

.no-border-bottom {
    border-bottom: none !important;
}




/* 菜单下拉动画 */
/* 动画 */



/* 展开菜单主体样式开始 */
.main-wrapper {
    padding-left: 300px;
}

.aside-nav {
    max-width: 1000px;
    position: fixed;
    top: 91px;
    bottom: 0;
    /* height: calc(100vh); */
    width: 100%;
    background-color: #7C2E1E;
    color: #fff;
    display: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    padding: 0 30px;
    overflow: auto;
}


/* 导航标题 */
.nav-title a {
    color: #fff;
    display: flex;
}

.nav-title ul {
    flex: 1;
    display: flex;
}

.nav-title ul li a {
    border-right: 1px solid #e0e0e0;
    font-size: 18px;
}

.nav-title ul li:last-child a {
    border-right: 0;
}

.aside-nav .nav-title {
    height: 40px;
    line-height: 70px;
    margin-top: 20px;
}

/* 导航列表 */
/* 父导航 */

.parentNav i {
    padding-right: 10px;
}

.parentNav i img {
    width: 20px;
    opacity: 0.3;
}

.aside-nav .nav-list .parentNav {
    height: 70px;
    line-height: 70px;
    padding: 0 2px;
    font-size: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    display: block;
    text-align: left !important;
}


.aside-nav .nav-list .parentNav:hover,
.aside-nav .nav-list .phone_item.active .parentNav {
    background-color: #7C2E1E;
}

.aside-nav .nav-list .parentNav i {
    font-size: 20px;
}

.aside-nav .nav-list .parentNav i:last-child {
    float: right;
}

/* 子导航 */
.aside-nav .nav-list .phone_item.active .subNav {
    display: block;
}


.aside-nav .nav-list .subNav {
    display: none;
}

.aside-nav .nav-list .subNav li a {
    color: #fff;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
    height: 40px;
    line-height: 40px;
    padding-left: 20px;
}

.aside-nav .nav-list .subNav li a:hover {
    background-color: #7C2E1E;
}

.nav-top {
    display: flex;
    line-height: 35px;
    bottom: 0;
}

.nav-top a {
    height: 30px;
    padding: 0px 20px;
}

/* 展开菜单主体样式结束 */


/* 小于1000px的手机样式 */
@media screen and (max-width:1000px) {

    html,
    body {
        min-width: 328px;
    }

    .s4-left ul li a>p {
        margin-left: 0 !important;
        width: 100%;
    }

    .o-slider--item img {
        object-fit: cover;
        object-position: center center;
        width: 100% !important;
    }

    .s1-right ul li span:hover {
        background: #7C2E1E;
    }

    .s4-rtext1 li a:hover {
        color: #7C2E1E;
    }

    .max_news {
        overflow: hidden;
    }

    .fadeInUp {
        animation-name: fadeInUp;
    }

    .swiper-wrapper {
        max-width: 1000px;
    }

    body {
        overflow-x: hidden;
        position: relative !important;
        background-color: #e0e0e019;
    }

    /* 顶部导航栏样式开始 */
    .top_nav {
        display: none;
    }

    .banner {
        position: relative;
        padding-top: 70px;
        height: 500px;
    }

    .red_top {
        width: 100%;
        height: 92px;
        background: #7C2E1E;
        position: absolute;
        z-index: 1002;
    }

    .phone_top_left_logo {
        margin-left: 32px;
        margin-top: 14px;
    }

    .phone_top_left_logo a img {
        /* 宽度每次减小16的倍数 */
        width: 272px;
        /* 高度每次减小3.95的倍数 */
        height: 67.15px;
    }

    /* 右边按钮样式开始 */

    .menu-wrapper {
        position: absolute;
        top: 0px;
        right: 5px;
        width: 50px;
        height: 50px;
        cursor: pointer;
        /* margin: 20px 20px; */
        margin: 20px;
        z-index: 666;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 48px;
        height: 5px;
    }

    .menu {
        position: relative;
        transform: translateY(25px);
        background: rgb(255, 255, 255);
        transition: all 0ms 300ms;
    }

    .menu.animate {
        background: rgba(255, 255, 255, 0);
    }

    .menu:before {
        content: "";
        position: absolute;
        left: 0;
        bottom: 12.5px;
        background: rgb(255, 255, 255);
        transition: bottom 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu:after {
        content: "";
        position: absolute;
        left: 0;
        top: 12.5px;
        background: rgb(255, 255, 255);
        transition: top 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu.animate:after {
        top: 0;
        transform: rotate(45deg);
        transition: top 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    .menu.animate:before {
        bottom: 0;
        transform: rotate(-45deg);
        transition: bottom 300ms cubic-bezier(0.23, 1, 0.32, 1), transform 300ms 300ms cubic-bezier(0.23, 1, 0.32, 1);
    }

    /* 导航栏按钮样式结束 */


    /* 顶部导航栏样式结束 */


    /* 二级页面样式开始 */
    .bj {
        padding-top: 50px;
    }

    .bj img {
        object-fit: contain;
        object-position: top;
    }

    /* 二级页面样式结束 */

    .ztgg-title h2 {
        font-size: 40px;
        color: #fff;
    }

    .ztgg-title h6 {
        font-size: 24px;
    }

    .gray_box {
        position: absolute;
        height: 80px;
        width: 330px;
        background-color: #7C2E1E;
        z-index: -1;
        transform: translate(-140px, -20px);
        animation-name: move_left;
        animation-duration: 1s;
    }

    .box {
        background: none !important;
        /* width: 900px !important; */
    }

    .xzzz {
        width: 800px;
        height: 500px;
        box-shadow: 10px 60px 0px #7C2E1E,
            10px 20px 0px #7C2E1E,
            -10px 60px 0px #7C2E1E,
            -10px 20px 0px #7C2E1E;
    }

    .s1-left-tit a {
        font-size: 24px;
        transform: translateY(-10px);
    }

    .w-newsList1 .adSN_page {
        left: 60%;
        top: 80%;
    }

    .s1-left {
        width: auto;
    }

    .swiper-container-horizontal>.swiper-pagination-bullets,
    .swiper-pagination-custom,
    .swiper-pagination-fraction {
        display: none;
    }

    .s1-right {
        width: 850px !important;
        margin-right: 0 !important;
        float: left !important;
        margin-top: 80px;
    }

    .s4-r-date {
        margin-right: 16px;
    }

    .cylj-main {
        margin-bottom: 0;
        margin-top: 25px;
    }

    .ztgg_left {
        float: none;
        width: 100%;
    }

    .ztgg_right {
        /* float: none; */
        width: 100%;
    }

    .fw_left {
        width: 100%;
    }

    .ztgg-title {
        margin-top: 60px;
    }

    .ztgg-title-gd {
        display: flex;
        margin-right: 0;
        justify-content: flex-end;
    }

    .zt-main li {
        width: 100%;
    }

    .ztgg-main ul li {
        width: 50%;
    }

    .s4-left ul li {
        height: auto;
        min-height: 210px;
    }

    .bit-list08 li {
        margin-bottom: 10px;
    }

    .o-slider-textWrap {
        bottom: 30px;
    }

    .news .ztgg-title {
        margin-top: 60px;
    }

    .s4-ldate {
        background: #7C2E1E;
    }

    .s2-date {
        background: #7C2E1E;
    }

    .s1-left-tit {
        width: 95% !important;
    }

    .s4-left ul li {
        margin-bottom: 30px;
    }

    .s4-ldate {
        top: -20px;
        width: 63px;
        height: 70px;
        text-align: center;
    }

    .s4-ldate span {
        border-top: 1px solid #d6d6d6;
        color: rgb(233, 230, 230);
        font-size: 12px;
        line-height: 24px;
        height: 24px;
        display: inline-block;
    }

    .ztgg-box {
        /* height: 240px; */
        position: relative;
        box-shadow: 1px 3px 5px #d6d6d6,
            -1px 3px 5px #d6d6d6;
    }

    .ztgg-box::after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 90%;
        height: 3px;
        background-color: #7C2E1E;
        transform: translateX(-50%);
    }

    .s4-left ul li {
        position: relative;
        box-shadow: 1px 0px 4px #d6d6d6,
            -1px 0px 4px #d6d6d6;
    }

    .s4-left ul li::after {
        content: '';
        display: block;
        position: absolute;
        left: 50%;
        bottom: 0;
        width: 95%;
        height: 5px;
        background-color: #7C2E1E;
        transform: translateX(-50%);
    }

    .ztgg_right {
        margin-bottom: -35px;
    }

    .bit-list06 {
        padding: 5px 0 16px;
    }

    .s4-rtext1 {
        margin: 0;
    }

    .news {
        flex-shrink: 0;
    }

    .loaderWrap {
        background: none;
    }

    .bottom-nav-box {
        height: 10px;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        position: relative;
        z-index: 10;
        transform: translateY(-30px);
    }

    .bottom-nav {
        width: auto;
        height: 80px;
    }

    .bottom-nav a {
        font-size: 28px;
        color: #fff;
        white-space: normal;
        word-break: break-word;
    }

    .bottom-nav span {
        width: 81px;
        height: 80px;
        display: flex;
        float: left;
        justify-content: center;
        align-items: center;
        line-height: 1;
        text-align: center;
        margin-left: -1px;
    }

    .bottom-nav span:nth-child(odd) {
        background-color: #68281A;
    }

    .bottom-nav span:nth-child(even) {
        background-color: #7C2E1E;
    }

    .xinlang111 {
        margin-top: -106px;
    }

    .o-sliderContainer {
        background-color: rgb(251, 251, 251);
    }

    .video {
        transform: translateY(0px) !important;
    }

    .parentNav_other {
        height: 70px;
        line-height: 70px;
        padding: 0 2px;
        font-size: 20px;
        cursor: pointer;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        display: block;
        text-align: left !important;
    }

    .parentNav_other a {
        color: #fff;
        display: inline-block;
        width: 100%;
        box-sizing: border-box;
        height: 40px;
        line-height: 40px;
    }

    .s4-left ul li:hover .s4-ltit h3 {
        color: #7C2E1E;
    }

}

/* 768px */
@media screen and (max-width:768px) {
    .phone_top_left_logo {
        margin-left: 24px;
        margin-top: 12px;
    }

    .phone_top_left_logo a img {
        width: 240px;
        height: 59.25px;
    }

    .red_top {
        height: 84px;
    }

    .menu-wrapper {
        margin: 16px 16px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 46px;
        height: 4px;
    }

    .aside-nav {
        top: 82px !important;
    }

    .bottom-nav span {
        width: 76px;
        height: 75px;
    }

    .bottom-nav span a {
        font-size: 26px;
    }

    .nav-top {
        line-height: 26px;
    }

    .nav-top a {
        padding: 0 18px;
        height: 26px;
    }

    .aside-nav .nav-list .parentNav {
        font-size: 18px;
        height: 60px;
        line-height: 60px;
    }

    .parentNav_other {
        font-size: 18px;
        height: 60px;
        line-height: 60px;
    }

    .bit-list08 li .iconfont {
        width: 60px;
        height: 60px;
        line-height: 65px;
        font-size: 35px;
    }

    .s1-left-tit a {
        font-size: 22px;
    }

    .xzzz {
        box-shadow: 10px 55px 0px #7C2E1E,
            10px 20px 0px #7C2E1E,
            -10px 55px 0px #7C2E1E,
            -10px 20px 0px #7C2E1E;
    }

    .s1-left-tit {
        line-height: 76px !important;
    }

    .s1-right ul li a {
        width: 76% !important;
    }

    @keyframes move_left {
        from {
            opacity: 0;
            transform: translate(-200px, -70px);
        }

        to {
            opacity: 1;
            transform: translate(-140px, -18px);
        }
    }

    .gray_box {
        width: 300px;
        height: 75px;
        transform: translate(-140px, -18px);
    }

    .ztgg-title h2 {
        font-size: 33px;
    }

    .ztgg-title h6 {
        font-size: 22px;
    }

    .nav-title ul li a {
        font-size: 16px;
        padding: 0 16px;
    }

    .o-slider-textWrap {
        bottom: 30px;
    }

    .s4-ltit h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        overflow: hidden;
        text-overflow: ellipsis;
        height: 64px;
        line-height: 30px;
        white-space: normal;
        max-height: 60px;
    }
}

/* 718px */
@media screen and (max-width:718px) {
    .phone_top_left_logo a img {
        width: 224px;
        height: 55.3px;
    }

    .red_top {
        height: 76px;
    }

    .menu-wrapper {
        margin: 12px 12px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 42px;
        height: 3px;
    }

    .aside-nav {
        top: 75px !important;
    }

    .bottom-nav span {
        width: 69px;
        height: 68px;
    }

    .bottom-nav span a {
        font-size: 24px;
    }

    .s1-right ul li a {
        width: 70% !important;
    }

    .s1-left-tit a {
        font-size: 20px;
    }

    .nav-title ul li a {
        padding: 0 14px;
    }

    .o-slider-textWrap {
        bottom: 24px;
    }

    .ztgg-box {
        height: 190px;
    }
}

/* 668px */
@media screen and (max-width:668px) {
    .phone_top_left_logo {
        margin-top: 11px;
    }

    .red_top {
        height: 72px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 40px;
    }

    .aside-nav {
        top: 71px !important;
    }

    .bottom-nav span {
        width: 65px;
        height: 64px;
    }

    .bottom-nav span a {
        font-size: 22px;
    }

    .s1-right ul li a {
        width: 66% !important;
    }

    @keyframes move_left {
        from {
            opacity: 0;
            transform: translate(-200px, -70px);
        }

        to {
            opacity: 1;
            transform: translate(-140px, -16px);
        }
    }

    .gray_box {
        width: 290px;
        height: 70px;
        transform: translate(-140px, -16px);
    }

    .ztgg-title h2 {
        font-size: 30px;
    }

    .ztgg-title h6 {
        font-size: 21px;
        line-height: 29px;
    }

    .ztgg-title-gd {
        width: 170px !important;
    }

    .s1-left-tit a {
        font-size: 18px;
    }

    .xzzz {
        box-shadow: 10px 50px 0px #7C2E1E,
            10px 20px 0px #7C2E1E,
            -10px 50px 0px #7C2E1E,
            -10px 20px 0px #7C2E1E;
    }

    .s1-left-tit {
        line-height: 70px !important;
    }

    .nav-title ul li a {
        font-size: 14px;
        padding: 0 12px;
    }

    .news .ztgg-title {
        margin-top: 30px;
    }

    .s4-ltit h3 {
        padding-left: 75px;
    }

    .nav-top a {
        height: 25px;
    }

    .nav-top {
        line-height: 25px;
    }

    .news_main {
        margin-top: -10px;
    }
}

/* 588px */
@media screen and (max-width:588px) {
    .phone_top_left_logo {
        margin-left: 20px;
    }

    .phone_top_left_logo a img {
        width: 208px;
        height: 49.375px;
    }

    .red_top {
        height: 70px;
    }

    .menu-wrapper {
        margin: 8px 8px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 38px;
    }

    .aside-nav {
        top: 69px !important;
    }

    .bottom-nav span {
        width: 62px;
        height: 61px;
    }

    .bottom-nav span a {
        font-size: 21px;
    }

    .gray_box {
        width: 270px;
    }

    .ztgg-title h2 {
        font-size: 27px;
    }

    .ztgg-title h6 {
        font-size: 22px;
    }

    @keyframes move_left {
        from {
            opacity: 0;
            transform: translate(-200px, -70px);
        }

        to {
            opacity: 1;
            transform: translate(-140px, -10px);
        }
    }

    .gray_box {
        height: 60px;
        transform: translate(-140px, -10px);
    }

    .ztgg-title-gd {
        width: 150px !important;
    }

    .o-slider-title {
        font-size: 1.2rem;
    }

    .o-slider-subTitle {
        font-size: 1.1rem;
    }

    .s2-date {
        left: 20px;
        width: 60px;
        height: 65px;
    }

    .s4-ldate {
        width: 60px;
        height: 65px;
    }

    .s2-date p,
    .s4-ldate p {
        font-size: 22px;
    }

    .s2-date+h3+p {
        display: none;
    }

    .ztgg-box a h3 {
        display: -webkit-box;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 4;
        overflow: hidden;
        text-overflow: ellipsis;
        padding-left: 5px;
        padding-top: 55px;
        height: 180px;
        font-size: 20px;
        line-height: 30px;
    }


    .ztgg-main ul li {
        padding: 0px 10px;
    }

    .bit-list08 li .iconfont {
        width: 50px;
        height: 50px;
        line-height: 55px;
        font-size: 30px;
    }

    .cylj-main {
        margin-top: 15px;
    }

    .fw_left .ztgg-title {
        margin-top: 40px;
    }

    .ztgg-box {
        height: 200px;
    }

    .news .ztgg-title {
        margin-top: 20px;
    }

    .news_main {
        margin-top: -20px;
    }
}

/* 538px */
@media screen and (max-width:538px) {
    .phone_top_left_logo a img {
        width: 192px;
        height: 45.425px;
    }

    .red_top {
        height: 66px;
    }

    .menu-wrapper {
        right: 0px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 36px;
        height: 2px;
    }

    .menu:before {
        bottom: 10px;
    }

    .menu:after {
        top: 10px
    }

    .aside-nav {
        top: 65px !important;
    }

    .bottom-nav span {
        width: 56px;
        height: 55px;
    }

    .bottom-nav span a {
        font-size: 19px;
    }

    .gray_box {
        width: 260px;
    }

    .ztgg-title h2 {
        font-size: 23px;
    }

    .ztgg-title h6 {
        font-size: 17px;
        line-height: 25px;
    }

    .ztgg-title-gd img {
        height: 28px;
        width: 28px;
    }

    .ztgg-title-gd {
        width: 140px !important;
    }

    .banner {
        padding-top: 60px;
    }

    .o-slider-title {
        font-size: 1.1rem;
        margin: 0;
    }

    .o-slider-subTitle {
        font-size: 1rem;
    }

    .ztgg-box a h3 {
        font-size: 18px;
    }

    .s4-ltit h3 {
        font-size: 20px;
    }

    .nav-title ul li a {
        font-size: 14px;
        padding: 0 8px;
    }

    .aside-nav .nav-list .parentNav {
        font-size: 17px;
    }

    .parentNav_other {
        font-size: 17px;
    }

    .cylj-main {
        margin-left: 20px;
    }

    .parentNav i img {
        width: 18px;
    }


    .bottom-nav-box {
        transform: translateY(-25px);
    }
}

/* 488px */
@media screen and (max-width:488px) {
    .phone_top_left_logo {
        margin-left: 16px;
        margin-top: 9px;
    }

    .phone_top_left_logo a img {
        width: 176px;
        height: 41.475px;
    }

    .red_top {
        height: 58px;
    }

    .menu-wrapper {
        width: 44px;
        margin: 4px 0px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 28px;
    }

    .menu:before {
        bottom: 8px;
    }

    .menu:after {
        top: 8px
    }

    .aside-nav {
        top: 56px !important;
    }

    .bottom-nav span {
        width: 51px;
        height: 50px;
    }

    .bottom-nav span a {
        font-size: 18px;
    }

    .s1-right ul li a {
        width: 62% !important;
    }

    .s1-left-tit a {
        font-size: 16px;
    }

    .xzzz {
        box-shadow: 10px 45px 0px #7C2E1E,
            10px 20px 0px #7C2E1E,
            -10px 45px 0px #7C2E1E,
            -10px 20px 0px #7C2E1E;
    }

    .s1-left-tit {
        line-height: 68px !important;
    }

    .banner {
        padding-top: 58px;
    }

    .s4-ltit h3 {
        font-size: 18px;
    }

    .cylj-main {
        margin-left: 18px;
    }

    .ztgg-box {
        height: 240px;
    }

    .ztgg-box a h3 {
        -webkit-line-clamp: 5;
        height: 210px;
    }

    .nav-title ul li a {
        font-size: 12px;
    }

    .nav-top a {
        height: 22px;
    }

    .nav-top {
        line-height: 22px;
    }

    .aside-nav .nav-title {
        height: 28px;
    }

    .aside-nav {
        padding: 0 20px;
    }

    .s4-ldate {
        left: -10px;
    }

    .s4-ltit h3 {
        padding-left: 65px;
    }
}

/* 438px */
@media screen and (max-width:438px) {
    .bottom-nav span {
        width: 40px;
        height: 39px;
    }

    .bottom-nav span a {
        font-size: 14px;
    }

    .s1-right ul li a {
        width: 60% !important;
    }

    .s1-left-tit a {
        font-size: 15px;
    }

    .s1-right {
        margin-top: 60px;
    }

    .bit-list08 li .iconfont {
        width: 45px;
        height: 45px;
        line-height: 50px;
        font-size: 25px;
    }

    .fpx16 {
        font-size: 12px;
    }

    .s4-ltit h3 {
        font-size: 16px;
        padding-left: 65px;
    }

    .s4-ldate {
        left: -10px;
    }

    .cylj-main {
        margin-left: 14px;
    }

    .ztgg-box a h3 {
        font-size: 17px;
    }

    .nav-title ul li a {
        font-size: 12px;
        padding: 0 5px;
    }

    .aside-nav {
        padding: 0 15px;
    }

    .bottom-nav-box {
        transform: translateY(-20px);
    }

    .o-slider-textWrap {
        bottom: 10px;
    }

    .bottom-nav {
        height: 70px;
    }

    .gray_box {
        width: 250px;
    }
}

/* 378px */
@media screen and (max-width:378px) {
    .phone_top_left_logo a img {
        width: 160px;
        height: 37.525px;
    }

    .red_top {
        height: 54px;
    }

    .menu-wrapper {
        margin: 2px 0px;
    }

    .aside-nav {
        top: 52px !important;
    }

    .bottom-nav span {
        width: 38px;
        height: 37px;
    }

    .bottom-nav span a {
        font-size: 13px;
    }

    .s1-left-tit a {
        font-size: 14px;
    }

    .s1-left-tit a {
        font-size: 13px;
    }

    .xzzz {
        box-shadow: 10px 38px 0px #7C2E1E,
            10px 20px 0px #7C2E1E,
            -10px 38px 0px #7C2E1E,
            -10px 20px 0px #7C2E1E;
    }

    .s1-left-tit {
        line-height: 62px !important;
    }

    .s1-right {
        margin-top: 50px;
        margin-bottom: -30px;
        height: 570px;
    }

    .s4-rtext1 li a {
        font-size: 14px !important;
    }

    .s1-right ul li span {
        font-size: 12px !important;
        line-height: 45px !important;
        transition: line-height 0.2s ease;
    }

    .s1-right ul li span:hover {
        line-height: 38px !important;
    }


    @keyframes move_left {
        from {
            opacity: 0;
            transform: translate(-200px, -70px);
        }

        to {
            opacity: 1;
            transform: translate(-140px, -6px);
        }
    }

    .ztgg-title h2 {
        font-size: 21px;
    }

    .ztgg-title h6 {
        font-size: 15px;
        line-height: 20px;
    }

    .ztgg-title-gd {
        width: 130px !important;
    }

    .gray_box {
        width: 240px;
        height: 50px;
        transform: translate(-140px, -6px);
    }

    .banner {
        padding-top: 52px;
    }

    .bit-list08 {
        margin: 0 -45px;
        padding-right: 10px;
    }

    .cylj-main {
        margin-top: 5px;
        margin-left: 40px;
        width: 80%;
    }

    .bit-list06 {
        padding: 0 0 16px;
    }

    .ztgg-box a h3 {
        height: 210px;
        font-size: 16px;
    }

    .bit-list08 li>a {
        margin: 0 5px;
    }

    .bit-list08 li .iconfont {
        width: 40px;
        height: 40px;
        line-height: 40px;
        font-size: 20px;
    }

    .fpx16 {
        font-size: 11px;
    }

    .bit-list08 li {
        margin-bottom: 15px;
    }

    .parentNav i img {
        width: 15px;
    }

    .news .ztgg-title {
        margin-top: 10px;
    }

    .nav-title ul li a {
        padding: 0 4px;
    }

    .news_main {
        margin-top: -30px;
    }

    .ztgg-title-gd img {
        width: 20px;
        height: 20px;
    }

    .s2-date {
        left: 15px;
        width: 55px;
        height: 60px;
    }

    .s2-date p,
    .s4-ldate p {
        font-size: 19px;
    }

    .s2-date p {
        line-height: 33px;
    }

    .s2-date span {
        line-height: 24px;
    }

    .s4-ldate {
        width: 55px;
        height: 65px;
    }

    .s4-ltit h3 {
        padding-left: 60px;
    }

    .s4-left ul li a>p {
        font-size: 14px;
    }

    .s2-date span,
    .s4-ldate span {
        font-size: 11px;
    }

    .s4-ldate p {
        line-height: 35px;
    }

    .s4-ldate span {
        line-height: 28px;
    }


}

/* 328px */
@media screen and (max-width:328px) {
    .phone_top_left_logo {
        margin-left: 12px;
        margin-top: 8px;
    }

    .phone_top_left_logo a img {
        width: 144px;
        height: 33.575px;
    }

    .red_top {
        height: 50px;
    }

    .menu-wrapper {
        width: 36px;
        margin: 0px;
    }

    .menu,
    .menu:after,
    .menu:before {
        width: 24px;
    }

    .menu:before {
        bottom: 6px;
    }

    .menu:after {
        top: 6px
    }

    .aside-nav {
        top: 49px !important;
    }

    .bottom-nav span {
        width: 34px;
        height: 33px;
    }

    .bottom-nav span a {
        font-size: 12px;
    }

    .banner {
        padding-top: 50px;
    }

    .bottom-nav-box {
        transform: translateY(-32px);
    }
}