/* pc样式 */
@media screen and (min-width: 1024px){
    .content-title{
        border-bottom: 1px solid #d9dfea;
    }
    .content-title>h2{
        margin: 0.3rem 0;
        text-align: center;
        font-weight: 700;
        font-size: 30px;
        color: #333333;
    }
    .content-title-info{
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        font-size: 18px;
        color: #666666;
    }
    .content-title-info>span{
        margin-right: 0.3rem;
    }
    .content-text{
        padding: 20px 0;
        font-size: 18px;
        line-height: 30px;
    }

    .content-text p {
        font-size: 16px !important;
        line-height: 220% !important;
    }

    .content-text img {
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .content-sx{
        border-top: 0.01rem solid #d3d3d3;
        padding-top: 0.2rem;
        position: relative;
    }

    .content-sx>p {
        font-size: 18px;
        line-height: 0.4rem;
        color: var(--zt_color--);
    }
    .content-sx>p>a {
        color: #333333;
    }

    .fanhui {
        font-size: 18px;
        background-image: url(../icon/fanhui.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 20px auto;
        padding-left: 25px;
        color: var(--zt_color--);
        position: absolute;
        right: 0;
        bottom: 0;
        cursor: pointer;
    }

}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-title{
        border-bottom: 1px solid #d9dfea;
    }
    .content-title>h2{
        padding: 0 20px;
        margin: 20px 0;
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        color: #333333;
    }
    .content-title-info {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 20px;
        flex-wrap: wrap;
        font-size: 14px;
    }
    .content-title-info>span{
        margin-right: 10px;
    }
    .content-text{
        padding: 20px 0;
        font-size: 16px;
        line-height: 30px;
    }
  .content-text img {
            height: 100% !important;
        max-width: 100%;
        display: block;
        margin: 0 auto;
    }
    .content-sx{
        border-top: 1px solid #d3d3d3;
        padding-top: 20px;
        position: relative;
    }

    .content-sx img {
        max-width: 100%;
        display: block;
    }

    .content-sx>p {
        font-size: 16px;
        line-height: 30px;
        color: var(--zt_color--);
    }
    .content-sx>p>a {
        color: #333333;
    }

    .fanhui {
        font-size: 16px;
        background-image: url(../icon/fanhui.png);
        background-position: left center;
        background-repeat: no-repeat;
        background-size: 20px auto;
        padding-left: 25px;
        color: var(--zt_color--);
        position: absolute;
        right: 0;
        bottom: 0;
        cursor: pointer;
    }
}

@media screen and (max-width: 800px) {
    .content-title>h2 {
        font-size: 20px;
    }
    .content-sx>p {
        font-size: 14px;
        line-height: 24px;
    }
    .fanhui {
        font-size: 14px;
        background-size: 15px auto;
        padding-left: 20px;
    }
}