/* pc样式 */
@media screen and (min-width: 1024px){
        .content-title>h2 {
        margin: 0.3rem 0;
        text-align: center;
        font-weight: 700;
        font-size: 30px;
        color: #333333;
    }
}

/* 移动端样式 */
@media screen and (max-width: 1024px) {
    .content-title>h2 {
        padding: 0 20px;
        margin: 20px 0;
        text-align: center;
        font-weight: 700;
        font-size: 24px;
        color: #333333;
    }
}