#newsDetail {
    padding: 50px 0;
}

@media only screen and (max-width: 767px) {
    #newsDetail {
        padding: 20px 0;
    }

    .box h1 {
        margin: 15px 0 25px;
        font-size: 20px;
        /* 手机端标题允许换行，避免超长标题被截断 */
        white-space: normal;
    }

    #newsDetail .content {
        line-height: 26px;
    }
}

#newsDetail .box {
    background: #ffffff;
    padding: 20px 10px 50px;
}

.box h1 {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    margin: 25px 0 50px;
    font-weight: 600;
    text-align: center;
    font-size: 25px;
    color: #303133;

}

.box .info {
    padding: 15px 0;
    border-bottom: 1px dashed #e2e2e2;
    display: flex;
    flex-wrap: wrap;
}

.info .author {
    font-size: 14px;
    color: #f56c6c;
    text-align: center;
}

.info .time {
    font-size: 14px;
    color: #000000;
    text-align: center;
}

#newsDetail .content {
    padding: 10px 5px;
    line-height: 30px;
}

#newsDetail .content img {
    max-width: 100%;
    display: block;
    margin: 0 auto;
}