/* 详情页样式 */

/* 面包屑导航 */
.breadcrumb {
    margin-bottom: 1.5rem;
    color: #718096;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #2c5282;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 0.5rem;
}

/* 详情头部 */
.detail-header {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.detail-header .header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.detail-header .info {
    flex: 1;
}

.detail-header .badges {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.detail-header .code-badge {
    background: #ebf8ff;
    color: #2b6cb0;
    padding: 0.4rem 1rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
}

.detail-header .force-badge {
    background: #fff5f5;
    color: #c53030;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* 详情页状态徽章 - 继承基础样式并调整大小 */
.detail-header .status-badge {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
}

.detail-header .type-badge {
    background: #e2e8f0;
    color: #4a5568;
    padding: 0.3rem 1rem;
    border-radius: 4px;
    font-size: 0.85rem;
}

.detail-header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 0.5rem;
    line-height: 1.4;
}

.detail-header h2 {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 400;
    font-style: italic;
}

.detail-header .meta-row {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.detail-header .meta-item {
    color: #718096;
    font-size: 0.9rem;
}

.detail-header .meta-item strong {
    color: #2c5282;
}

/* 信息卡片网格 */
.info-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

/* 信息卡片 */
.info-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.info-card h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.info-card h2 i {
    color: #4299e1;
}

.info-card .info-grid {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-card .info-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-card .info-label {
    color: #718096;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.info-card .info-value {
    color: #2c5282;
    font-size: 0.9rem;
    text-align: right;
}

.info-card .info-value.status-active {
    color: #48bb78;
    font-weight: 600;
}

.info-card .info-value.status-replaced {
    color: #e53e3e;
    font-weight: 600;
}

.info-card .content-text {
    color: #4a5568;
    line-height: 1.8;
    font-size: 0.9rem;
}

/* 信息区域 */
.info-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.info-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.info-section .info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.info-section .info-row {
    display: flex;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.info-section .info-label {
    color: #718096;
    width: 180px;
    flex-shrink: 0;
}

.info-section .info-value {
    color: #2c5282;
}

.info-section .info-value.status-active {
    color: #48bb78;
    font-weight: 600;
}

.info-section .info-value.status-replaced {
    color: #e53e3e;
    font-weight: 600;
}

.info-section .info-value strong {
    color: #2c5282;
}

/* 内容区域 */
.content-section {
    background: white;
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.content-section h2 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e2e8f0;
}

.content-section p {
    color: #4a5568;
    line-height: 1.8;
}

.content-section .sub-section {
    margin-bottom: 1rem;
}

.content-section .sub-section h3 {
    font-size: 1rem;
    font-weight: 600;
    color: #4a5568;
    margin-bottom: 0.5rem;
}

.content-section .meta-row {
    display: flex;
    gap: 2rem;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e2e8f0;
}

.content-section .meta-item {
    color: #718096;
}

.content-section .meta-item strong {
    color: #2c5282;
}

/* 引用标准 */
.ref-standards {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.ref-item {
    background: #ebf8ff;
    color: #2b6cb0;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    font-size: 0.9rem;
}

/* 内容文本 */
.content-text {
    color: #4a5568;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .info-cards {
        grid-template-columns: 1fr;
    }
    
    .info-section .info-grid {
        grid-template-columns: 1fr;
    }
}
.detail-header .detail-service-us{
    font-size: 14px;
    display: inline-block;
    max-width:600px;
    color: #f24949;
    font-weight: bold;
}
.detail-header .detail-service-us a{
    color: #f24949;
}
