.local {
    display: flex;
    align-items: center;
    width: 1200px;
    margin: 30px auto;
}

a {
    color: #000;
    text-decoration: none;
}

.container {
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.left {
    width: 770px;
    padding: 0 15px;
    box-sizing: border-box;
}

h1.newstitle {
    font-size: 30px;
    font-weight: normal;
    line-height: 45px;
    margin: 20px 0;
}

h2.secondtitle {
    margin-bottom: 15px;
    line-height: 30px;
    font-size: 22px;
    color: #999;
}

.attr {
    margin-bottom: 20px;
    color: #999;
    font-size: 12px;
}

.attr span {
    margin-right: 10px;
}

.source a {
    color: #999;
    font-size: 12px;
}

.content {
    font-size: 16px;
    line-height: 180%;
    text-indent: 2em;
    margin-bottom: 15px;
    color: #333333;
}

.share {
    display: flex;
    align-items: center;
    margin-top: 70px;
}

.wechat {
    position: relative;
    margin-right: 10px;
    cursor: pointer;
}

div#qrcode {
    z-index: 999;
    position: absolute;
    top: 40px;
    left: -37px;
    width: 100px;
    height: 100px;
    border: 15px solid #fff;
    border-radius: 7px;
    box-shadow: 0 2px 8px #999;
    overflow: hidden;
    visibility: hidden;
    transition: .3s;
    opacity: 0;
    background: #fff;
}

.wechat:hover #qrcode {
    opacity: 1;
    visibility: visible;
    transform: translateY(2%);
}

.right {
    width: 370px;
}

.footer .container {
    flex-direction: column;
    margin-top: 100px;
}

@media screen and (max-width: 750px) {
    html {
        font-size: 312.5%
    }

    body {
        padding-top: 1.5rem;
        min-width: 100%;
        font: .36rem/130% "Microsoft YaHei",
            sans-serif;
    }













    .topNav {
        width: 100%;
        box-shadow: 0 5px 9px rgba(0, 0, 0, .08);
        position: fixed;
        left: 0;
        top: 0;
        box-sizing: border-box;
        padding: 0 .3rem;
        background: #fff;
        z-index: 999;
        display: flex;
        align-items: center;
        justify-content: space-between;
        height: 1.2rem
    }

    .topNav_logo1 {
        width: .48rem
    }

    .topNav_logo2 {
        width: 1.42rem
    }

    .topNav_menu {
        width: .4rem;
        height: .4rem;
        position: relative;
        display: flex;
        flex-direction: column;
        justify-content: space-around;
        padding: .2rem;
        border-radius: .08rem;
        box-sizing: content-box;
    }

    .topNav_menu span {
        width: 100%;
        height: .06rem;
        background: #666;
        border-radius: .03rem;
        transition: .3s;
        transform-origin: 100% 0
    }

    .topNav_menu.active {
        background: #e8eaef
    }

    .topNav_menu.active span:nth-child(2) {
        opacity: 0
    }

    .topNav_menu.active span:nth-child(1) {
        transform: translate(-0.06rem, -0.01rem) rotate(-45deg)
    }

    .topNav_menu.active span:nth-child(3) {
        transform: translate(-0.01rem, 0.01rem) rotate(45deg)
    }

    .pushNav {
        background: #f6f6f6;
        width: 100vw;
        height: 100vh;
        box-sizing: border-box;
        padding: 1.6rem .3rem 1rem;
        position: fixed;
        left: 0;
        top: -120%;
        transition: .3s;
        z-index: 100;
        overflow-y: scroll;
        overflow-x: auto
    }

    .pushNav::after {
        content: none;
    }

    .pushNav.show {
        top: 0
    }

    .pushNav h2 {
        font-weight: normal;
        font-size: .3rem;
        color: #666;
        padding: 0 0 .4rem
    }

    .languages ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        text-align: center;
        column-gap: .25rem;
        row-gap: .4rem;
        width: 100%;
        visibility: visible;
    }

    .languages li {
        line-height: .8rem;
        background: #fff;
        border-radius: .1rem;
        opacity: 1;
        padding: 0;
        position: relative;
    }

    .languages li a {
        font-size: 0.36rem;
    }

    .channel p {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: .25rem;
        padding-bottom: .4rem;
        margin-bottom: .3rem;
        border-bottom: 1px solid #ddd
    }

    .channel p:nth-child(11) {
        border-bottom: none
    }

    .channel p a {
        display: inline-block;
        line-height: .8rem;
        text-align: center;
        background: #fff;
        border-radius: .1rem;
        font-size: 0.36rem;
    }

    .form {
        margin-bottom: .5rem;
        background: #fff;
        overflow: hidden;
        padding: .35rem;
        border-radius: .1rem;
        display: flex;
        justify-content: space-between
    }

    .form #kw {
        width: 100%;
        box-sizing: border-box;
        outline: none
    }

    .form #button-addon {
        width: .4rem;
        height: .4rem;
        background: url(../img/search.png) no-repeat 0 0/100% 100%;
        outline: none
    }

    .m_gotop {
        width: .8rem;
        height: .8rem;
        background: #0146ae;
        border-radius: 50%;
        margin: .1rem 0;
        position: fixed;
        right: .3rem;
        bottom: 2.5rem;
        overflow: hidden;
        box-shadow: 1px 2px 2px rgba(0, 0, 0, .4);
        transition: .7s cubic-bezier(0.68, -0.4, 0.27, 1.34) .2s;
        transform: translateX(300%);
        z-index: 999
    }

    .m_gotop a {
        display: block;
        width: 100%;
        height: 100%;
        border-radius: 50%
    }

    .m_gotop a::before {
        content: "";
        width: .15rem;
        height: .15rem;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -25%) rotate(-45deg)
    }

    .m_gotop.m_gotop_cur {
        transform: translateX(0)
    }

    .m_footer {
        display: block;
        background: #0146ae;
        padding: .3rem .3rem .7rem;
        font-size: .3rem;
        color: #fff;
        line-height: 1em;
        text-align: center
    }

    .m_footer .ft1 {
        padding-bottom: .35rem;
        display: flex;
        justify-content: center;
        gap: .8rem
    }

    .m_footer .ft1 div {
        display: flex;
        align-items: center
    }

    .m_footer .ft1 div:nth-child(1) img {
        width: .46rem
    }

    .m_footer .ft1 div:nth-child(2) img {
        width: .3rem
    }

    .m_footer .ft1 div img {
        margin-right: .15rem
    }

    .m_footer p {
        padding-top: .35rem;
        border-top: .01rem solid rgba(255, 255, 255, .2)
    }

    #ciic_wza {
        display: none !important;
    }

    .local {
        display: none;
        width: 100%;
        font-size: .34rem;
        color: #999;
        padding: 0.2rem 0.24rem .4rem;
        margin: 0;
    }

    .container {
        width: 100%;
        padding: 0 0.24rem;
        box-sizing: border-box;
    }

    .left {
        width: 100%;
        padding: 0;
    }

    .right {
        display: none;
    }

    .local a:first-child {
        display: none;
    }

    .local a {
        color: #999;
        margin: 0 .25rem;
    }

    .local a:nth-child(2) {
        margin-left: 0;
    }

    h1.newstitle {
        font-size: .48rem;
        line-height: .6rem;
        margin: 0 0 .28rem;
        font-weight: bold;
    }

    .attr {
        font-size: .26rem;
        line-height: .28rem;
        padding-bottom: .25rem;
        margin-bottom: .2rem;
        border-bottom: 1px solid #eee;
    }

    .attr span:nth-child(n+3) {
        display: none;
    }

    .content {
        font-size: .34rem;
        margin: 0;
    }

    .content p {
        margin-bottom: .5rem;
        line-height: .69rem;
    }

    .footer.ifrBox,
    .share {
        display: none;
    }
}