/* 容器和list保持一致 */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 0 auto;
}

/* ========== 内页Banner 完全照搬原版list.css ========== */
.inner-banner {
    width: 100%;
    height: auto;
    padding-top: 13.5%;
    position: relative;
    overflow: hidden;
}
.inner-banner img {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.inner-banner-text {
    position: absolute;
    left: calc((100% - 1240px) / 2);
    width: 90%;
    max-width: 1240px;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
}
.inner-banner-text h1 {
    font-size: 48px;
    margin-bottom: 8px;
    font-weight: normal;
}
.inner-banner-text p {
    font-size: 18px;
    opacity: 0.9;
}

/* ===================== 面包屑导航 ===================== */
.weizhi {
    padding: 15px 0;
    background: #f8f8f8;
    font-size: 14px;
    color: #666;
}

/* ===================== 新闻文章主体卡片 ===================== */
.article-wrap {
    background: #ffffff;
    padding: 45px 50px;
    margin: 35px auto;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

/* 文章标题 */
.article-title {
    font-size: 26px;
    font-weight: bold;
    text-align: center;
    color: #111;
    margin-bottom: 16px;
    line-height: 1.4;
}

/* 发布日期 */
.article-meta {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 35px;
}

/* ===================== 新闻正文内容排版 ===================== */
.article-content {
    font-size: 16px;
    line-height: 1.9;
    color: #333333;
    text-align: justify;
}
/* 二级标题 左侧蓝色竖线 */
.article-content h2 {
    font-size: 24px;
    font-weight: 500;
    margin: 40px 0 16px;
    padding-left: 14px;
    border-left: 5px solid #0058cc;
    color: #222;
}
/* 三级标题 */
.article-content h3 {
    font-size: 20px;
    margin: 30px 0 12px;
    color: #222;
}
/* PC端：首行缩进2字符 */
.article-content p {
    text-indent: 2em;
    margin-bottom: 14px;
    line-height: 1.85;
}
.article-content img {
    display: block;
    margin: 30px auto;
    max-width: 75%;
    border-radius: 6px;
}

/* ===================== 上下篇公共样式 ===================== */
.article-page {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #eeeeee;
}
.prev-item {
    text-align: left;
}
.next-item {
    text-align: right;
}
.article-page a {
    font-size: 15px;
    color: #444;
}
.article-page a:hover {
    color: #0066cc;
}

/* ===================== 相关阅读两栏布局 ===================== */
.relative-news {
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid #eee;
}
.relative-news h3 {
    font-size: 18px;
    margin-bottom: 22px;
    color: #222;
}
.news-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 30px;
}
.news-grid a {
    font-size: 16px;
    color: #444;
    white-space: normal;
    line-height: 1.7;
    display: block;
}
.news-grid a:hover {
    color: #0066cc;
}

/*====================业务详情页面【最新修改完整版】====================*/
.inner-section.service-detail {
    padding: 0 0 40px 0;
    margin-top: -60px;
    position: relative;
    z-index: 10;
}
.service-detail .detail-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
    background: #fff;
    padding: 40px;
    border: 1px solid #ddd;
    border-radius: 8px;
}
.detail-left {
    width: 500px;
    flex-shrink: 0;
}
.detail-left img {
    width: 100%;
    display: block;
}
.detail-right {
    flex: 1;
}
.detail-title {
    font-size: 28px;
    color: #222;
    margin-bottom: 15px;
    font-weight: 700;
}
.check-item {
    font-size: 16px;
    color: #333;
    margin: 8px 0;
    line-height: 1.6;
}
.team-introduce {
    margin: 25px 0 12px;
    font-size: 17px;
    font-weight: 600;
    color: #222;
}
/*h2标题 无红框*/
.detail-content h2 {
    font-size: 20px;
    font-weight: bold;
    margin: 32px 0 16px;
    line-height: 1;
}
.detail-content p {
    text-indent: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    margin-bottom: 12px;
}
.detail-content ol {
    padding-left: 24px;
    margin: 12px 0 18px;
}
.detail-content ol li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 9px;
    color: #444;
}
.detail-content ul {
    padding-left: 22px;
    margin: 10px 0;
}
.detail-content ul li {
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 8px;
}

/* ===================== 移动端全局自适应 ===================== */
@media screen and (max-width: 768px) {
    .inner-banner {
        padding-top: 28%;
    }
    .inner-banner-text {
        left: 5%;
    }
    .inner-banner-text h1 {
        font-size: 32px;
    }
    /*新闻页保持原样不变*/
    .article-wrap {
        padding: 25px 18px;
        margin: 20px auto;
    }
    .article-title {
        font-size: 20px;
    }
    .article-content img {
        max-width: 100%;
    }
    .article-content p {
        text-indent: 0;
        text-align: justify;
    }
    .article-page {
        flex-direction: column;
        gap: 8px;
        align-items: flex-start;
    }
    .next-item {
        text-align: left;
    }
    .news-grid {
        grid-template-columns: 1fr;
    }

    /*业务页手机端样式同步保留*/
    .inner-section.service-detail {
        margin-top: -15px;
    }
    .service-detail .detail-row {
        flex-direction: column;
        padding: 20px;
        gap: 25px;
    }
    .detail-left {
        width: 100%;
    }
    .detail-title {
        font-size: 24px;
    }
    .detail-content p {
        text-indent: 0;
    }
}