/* 响应式容器 */
@media (min-width: 1200px) {
    .container {
        max-width: 1170px;
    }
}

/* 响应式样式 */
@media (max-width: 1199px) {
    .container {
        max-width: 960px;
    }
    
    .banner {
        margin-top: 110px;
    }
    
    .swiper-container {
        height: 450px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .banner {
        margin-top: 100px;
    }
    
    .swiper-container {
        height: 400px;
    }
    
    .slide-text {
        bottom: 60px;
        left: 60px;
    }
    
    .slide-text h2 {
        font-size: 28px;
    }
    
    .slide-text p {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .banner {
        margin-top: 60px; /* 减小顶部间距，因为移除了蓝色导航条 */
    }
    
    .swiper-container {
        height: 300px;
        width: 100% !important; /* 确保移动端也是100%宽度 */
    }
    
    .swiper-slide {
        width: 100% !important; /* 确保移动端幻灯片100%宽度 */
    }
    
    .swiper-slide img {
        width: 100% !important; /* 确保移动端图片100%宽度 */
    }
    
    .slide-text {
        bottom: 30px;
        left: 30px;
        max-width: 80%;
    }
    
    .slide-text h2 {
        font-size: 22px;
        margin-bottom: 10px;
    }
    
    .slide-text p {
        font-size: 14px;
    }
    
    .section-title h2 {
        font-size: 26px;
    }

    /* --- 全局文本样式 (移动端) --- */
    /* 字体继承自 PC 的 body */

    h1 { 
        font-size: 48px !important;
        text-align: center !important;
        font-weight: bold !important; 
        margin: 0.5em auto !important; 
        /* 颜色由各区域覆盖 */
    }

    h2 { /* 章节主标题 */
        font-size: 28px !important;
        text-align: center !important;
        font-weight: bold !important; 
        margin: 0.6em auto !important; 
        /* 颜色由各区域覆盖 */
    }

    h3 { /* 英文副标题 */
        font-size: 18px !important;
        text-align: center !important;
        font-weight: normal !important; 
        margin: 0.8em auto !important; 
         /* 颜色由各区域覆盖 */
    }

    h4 { /* 次级标题 */
        font-size: 28px !important;
        text-align: center !important;
        font-weight: bold !important; 
        margin: 1em auto !important; 
        /* 颜色由各区域覆盖 */
    }
    
    /* 全局正文 P - 定义基础样式 */
    p { 
        font-size: 14px !important;
        line-height: 1.8 !important;
        margin-bottom: 15px !important; 
        /* 其他样式如对齐、缩进、padding 由更具体的选择器定义 */
    }

    /* 需要特殊处理的正文段落 (对齐、缩进、padding) */
    .content p, /* 假设 content.css 或类似结构使用 .content 包裹 */
    .article-content p, /* 假设文章详情页 */
    .lawyer-text-cell p:not(h1 + h2):not(h2 + p):not(h3 + p), 
    .lawyer-text-cell h3 + p,
    .lawyer-scroll + .lawyer-text-cell p,
    .about-text-content p 
    {
        text-indent: 2em !important;  
        text-align: justify !important; 
        padding-left: 10px !important; 
        padding-right: 10px !important; 
        margin-right: 0 !important; 
        box-sizing: border-box !important; 
        width: 100% !important; 
        display: block !important; 
    }
    /* 最后一个 P 的间距 */
    .content p:last-of-type,
    .article-content p:last-of-type,
    .lawyer-text-cell p:last-of-type,
    .lawyer-scroll + .lawyer-text-cell p:last-of-type,
    .about-text-content p:last-of-type
    {
         margin-bottom: 0 !important; 
    }

     /* 通用容器 */
    .container {
        padding-left: 15px !important; 
        padding-right: 15px !important;
        width: auto !important; 
        box-sizing: border-box !important;
    }
     /* 通用区块 */
     section,
    .section-common {
        padding: 40px 0 !important; 
    }
    
    /* ... 其他全局响应式基础样式 ... */
} 