.main-img{margin-top: 90px;}
.main-img img{
    width:100%;
    object-fit: cover;
    max-height:600px;
}
/* 主体内容核心样式 - 避免被固定元素遮挡 */
.main-content {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 15px;
    /* 避开固定头部（header高度约80px） */

    /* PC端底部无浮动导航，预留基础底部间距 */
    margin-bottom: 40px;
    /* 文本排版优化 */
    line-height: 1.8;
    font-size: 1rem;
    color: #333;
}

/* 主体文本样式优化 */
.main-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
    letter-spacing: 0.5px;
}

.main-content img{width:100%}
/* 移动端适配（底部有浮动导航，增加底部间距） */
@media (max-width: 768px) {
    .main-content {

        padding: 1.5rem 15px;
        font-size: 0.95rem;
    }

    .main-content p {
        margin-bottom: 1.2rem;
    }
}

/* 大屏适配 */
@media (min-width: 1200px) {
    .main-content {
        padding: 3rem 0;
    }
}