.new-title{
    width: 100%;
    height: 150px;
    background-color: #192857;
}
.new-content{
    width: 1200px;
    margin: 100px auto 100px;
}
.new-content h5{
    font-size: 35px;
    text-align: center;
    color: #000;
    margin-bottom: 20px;
}

.new-content h6{
    font-size: 15px;
    color: #999;
    margin-bottom: 20px;
    text-align: center;
}

.new-content p{
    font-size: 16px;
    line-height: 35px;
    text-align: justify;
    color: #000;
}
/* 手机端自适应 */
@media screen and (max-width: 768px) {
    .new-title{
        width: 100%;
        height: 0px;
        background-color: #192857;
    }
    .new-content {
        width: 90%; /* 宽度改为百分比，适应屏幕 */
        margin: 50px auto 50px;
        padding: 0 10px; /* 适当内边距 */
    }

    .new-content h5 {
        font-size: 24px;
        text-align: left;
        margin-bottom: 15px;
    }

    .new-content h6 {
        font-size: 12px;
        margin-bottom: 15px;
    }

    .new-content p {
        font-size: 14px;
        line-height: 24px;
    }
}