/* ========== 行业详情页特有样式 ========== */

/* 适用产品标签列表 - 与指令页一致 */
.scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}
.scope-tag {
    display: inline-block;
    padding: 6px 14px;
    background: #f0f7ff;
    border: 1px solid #d0e3ff;
    border-radius: 20px;
    font-size: 13px;
    color: #0070f3;
    text-decoration: none;
    transition: all 0.2s ease;
}
.scope-tag:hover {
    background: #0070f3;
    color: white;
    border-color: #0070f3;
}

/* 行业概述 */
/* 首行缩进已在 detail-common.css 中统一设置 */

.product-overview-plain strong {
    color: #1a1a1a;
    font-weight: 600;
}

/* 认证策略卡片样式 - 参考费用预估模块 */
.strategy-card {
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 80px, #ffffff 100%);
    border: 1px solid #e2e4e8;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding: 24px 28px;
}

/* 合规文件卡片 - 与产品页 cert-docs-wrapper 一致 */
.compliance-card {
    margin: 0;
    background: linear-gradient(180deg, #f0f7ff 0%, #ffffff 80px, #ffffff 100%);
    border: 1px solid #E8ECF0;
    border-radius: 14px;
    padding: 24px;
    overflow: hidden;
}
.compliance-card ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.compliance-card li,
.compliance-card ul li {
    font-size: 14px;
    color: #4b5563;
    padding: 8px 0 8px 24px;
    position: relative;
    line-height: 1.6;
    list-style: none !important;
    list-style-type: none !important;
}
.compliance-card li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #0070f3;
    font-weight: bold;
    font-size: 16px;
}
.compliance-card li p {
    margin: 0;
}

/* 认证策略建议 - 不首行缩进 */
.strategy-content p {
    margin: 0 0 14px 0;
    line-height: 1.8;
    color: #374151;
    font-size: 15px;
    text-indent: 0;
}
.strategy-content p:last-child {
    margin-bottom: 0;
}
.strategy-content strong {
    color: #1a1a1a;
    font-weight: 600;
}
/* 有序列表样式 - 改为蓝色圆点 */
.strategy-content ol {
    margin: 16px 0;
    padding-left: 24px;
    color: #374151;
    font-size: 15px;
    line-height: 1.8;
    list-style: none !important;
}
.strategy-content ol li {
    margin-bottom: 10px;
    padding-left: 24px;
    position: relative;
    list-style: none !important;
}
.strategy-content ol li::before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #0070f3;
    font-weight: bold;
    font-size: 16px;
}
.strategy-content ol li::marker {
    display: none;
}
.strategy-content ol li p {
    margin: 0;
    display: inline;
}

/* 新闻分区 - 使用 style.css 中的公共样式 */
/* 此处不需要重复定义，style.css 已有完整样式 */

/* 主体内容宽度统一 */
.w1600 {
    max-width: 1400px !important;
    width: 100% !important;
}

/* 行业概述中的链接 */
.product-overview-plain a {
    color: #0070f3;
    text-decoration: none;
}
.product-overview-plain a:hover {
    text-decoration: underline;
}

/* 响应式 */
@media (max-width: 768px) {
    .news-section {
        grid-template-columns: 1fr;
    }
    .info-card {
        padding: 16px;
    }
    .module-header h2 {
        font-size: 18px;
    }
}
