/* Content Layout 组件样式 */
/* 文件名：content-layout.css */

/* ===== 基础样式 ===== */
.content-layout {

    margin: 0 auto;
    padding: 0 20px;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    min-height: 100vh;
    position: relative;
}

.content-layout::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
}

/* ===== 加载和错误状态 ===== */
.content-layout--loading {
    opacity: 0.7;
}

.content-layout__loading {
    text-align: center;
    padding: 4rem 2rem;
    color: #94a3b8;
}

.content-layout__loading-spinner {
    border: 3px solid #334155;
    border-top: 3px solid #60a5fa;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin: 0 auto 1.5rem;
}

.content-layout__error {
    text-align: center;
    padding: 4rem 2rem;
    color: #ef4444;
}

.content-layout__retry {
    background: #ef4444;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    cursor: pointer;
    margin-top: 1rem;
    transition: background 0.3s ease;
}

.content-layout__retry:hover {
    background: #dc2626;
}

/* ===== 通用内容区域 ===== */
.content-layout__content {

    padding: 2rem 0;      /* 上下内边距为2rem，左右内边距为0 */
}



.content-header {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 1.5rem;
    border: 1px solid #334155;
}

.content-header--post {
    grid-template-columns: 1fr;
}

.content-header__image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #374151;
}

.content-header__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.content-header__image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #9ca3af;
    font-size: 4rem;
}

.content-header__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-breadcrumb {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.content-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    line-height: 1.2;
}

.content-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.content-brand {
    background: rgba(96, 165, 250, 0.2);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.content-type {
    background: rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.content-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.rating-stars {
    color: #f59e0b;
    font-size: 1.25rem;
}

.rating-text {
    color: #94a3b8;
    font-weight: 600;
}

.recommend-count {
    color: #10b981;
    font-weight: 600;
}

.content-price {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}

.content-actions {
    display: flex;
    gap: 1rem;
}

.btn {
    padding: 0.875rem 1.75rem;
    border: none;
    border-radius: 0.75rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    font-size: 0.875rem;
}

.btn-primary {
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.3);
}

.btn-secondary {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    border: 1px solid rgba(96, 165, 250, 0.3);
}

.btn-secondary:hover {
    background: rgba(96, 165, 250, 0.2);
}

.btn-outline {
    background: transparent;
    color: #64748b;
    border: 2px solid #e2e8f0;
}

.btn-outline:hover {
    border-color: #3b82f6;
    color: #3b82f6;
}

/* ===== 内容区块 ===== */
.content-section {
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 1.5rem;
    border: 1px solid #334155;
    padding: 2rem;
    margin-bottom: 2rem;
}

.content-section--post {
    background: transparent;
    border: none;
    padding: 0;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 0 0 1.5rem 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.view-all-link {
    color: #60a5fa;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: #4f46e5;
}

/* ===== 产品详情特定样式 ===== */

/* 参数网格 */
.params-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.param-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.param-icon {
    color: #60a5fa;
    font-size: 1.5rem;
    width: 40px;
    text-align: center;
}

.param-info {
    display: flex;
    flex-direction: column;
}

.param-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 0.25rem;
}

.param-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* 成分列表 */
.ingredients-list {
    color: #94a3b8;
    line-height: 1.6;
}

/* 购买信息 */
.purchase-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.75rem;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.purchase-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(16, 185, 129, 0.3);
}

/* ===== 评测报告详情特定样式 ===== */

/* 报告头部 */
.report-user {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.user-info {
    flex: 1;
}

.user-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.user-age, .user-condition, .report-date {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.report-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(245, 158, 11, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(245, 158, 11, 0.2);
}

.stat-value {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: #f59e0b;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

/* 关联产品 */
.related-product {
    max-width: 300px;
}

.product-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 1rem;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.product-card img {
    width: 60px;
    height: 60px;
    border-radius: 0.5rem;
    object-fit: cover;
}

.product-info h3 {
    font-size: 1rem;
    color: #f1f5f9;
    margin: 0 0 0.25rem 0;
}

.product-brand {
    color: #60a5fa;
    font-size: 0.875rem;
    font-weight: 600;
}

/* 体验网格 */
.experience-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.experience-item h4 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.1rem;
}

.experience-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 0.5rem;
}

.detail-label {
    color: #94a3b8;
    font-weight: 600;
}

.detail-value {
    color: #f1f5f9;
    font-weight: 600;
}

/* 感受网格 */
.feelings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.feeling-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 0.75rem;
    border: 1px solid rgba(96, 165, 250, 0.1);
}

.feeling-label {
    color: #94a3b8;
    font-weight: 600;
}

.feeling-value {
    color: #f1f5f9;
    font-weight: 600;
}

/* 评分网格 */
.ratings-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 400px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.rating-label {
    color: #94a3b8;
    font-weight: 600;
    min-width: 100px;
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #334155;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-value {
    color: #f1f5f9;
    font-weight: 700;
    min-width: 40px;
    text-align: right;
}

/* 总结内容 */
.conclusion-content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.recommendation, .repurchase {
    padding: 1rem;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 0.75rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.recommendation strong, .repurchase strong {
    color: #10b981;
}

.summary {
    color: #94a3b8;
    line-height: 1.6;
    padding: 1rem;
    background: rgba(96, 165, 250, 0.05);
    border-radius: 0.75rem;
}

/* ===== 专业评测详情特定样式 ===== */

.review-header {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 2rem;
    align-items: center;
}

.review-image {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    background: #374151;
    height: 200px;
}

.review-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #9ca3af;
    font-size: 3rem;
}

.review-meta {
    display: flex;
    gap: 1rem;
    margin: 1rem 0;
}

.review-author, .review-date {
    background: rgba(139, 92, 246, 0.1);
    color: #8b5cf6;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.review-rating {
    margin: 1.5rem 0;
}

.overall-rating {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.overall-rating .rating-label {
    color: #94a3b8;
    font-weight: 600;
}

.overall-rating .rating-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #f59e0b;
}

.review-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.review-stat {
    text-align: center;
    padding: 1.5rem;
    background: rgba(139, 92, 246, 0.1);
    border-radius: 1rem;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.review-stat-value {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: #8b5cf6;
    margin-bottom: 0.5rem;
}

.review-stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.review-summary, .review-content {
    color: #94a3b8;
    line-height: 1.7;
    font-size: 1.1rem;
}

.pros-cons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.pros, .cons {
    padding: 1.5rem;
    border-radius: 1rem;
}

.pros {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.cons {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.pros h3, .cons h3 {
    color: #f1f5f9;
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
}

.pros ul, .cons ul {
    color: #94a3b8;
    padding-left: 1.25rem;
    margin: 0;
}

.pros li, .cons li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.final-verdict {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    padding: 1.5rem;
    border-radius: 1rem;
    color: #f1f5f9;
    line-height: 1.6;
    font-size: 1.1rem;
}

/* ===== 普通文章详情特定样式 ===== */

.post-header {
    text-align: center;
}

.post-breadcrumb {
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
}

.post-author, .post-date, .post-category {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
}

.post-featured-image {
    max-width: 600px;
    margin: 2rem auto;
    border-radius: 1rem;
    overflow: hidden;
    background: #374151;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.post-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    color: #9ca3af;
    font-size: 3rem;
}

.post-content {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 1.125rem;
}

.post-content h1, .post-content h2, .post-content h3, .post-content h4 {
    color: #f1f5f9;
    margin: 2rem 0 1rem 0;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin: 1.5rem 0;
}

.post-content blockquote {
    border-left: 4px solid #60a5fa;
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    color: #94a3b8;
    font-style: italic;
}

.post-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.375rem 0.75rem;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 600;
}

/* ===== 404错误页面样式 ===== */
.error-page {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
}

.error-content {
    max-width: 600px;
    width: 100%;
}

.error-icon {
    font-size: 4rem;
    color: #f59e0b;
    margin-bottom: 1.5rem;
}

.error-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 1rem;
}

.error-message {
    font-size: 1.125rem;
    color: #94a3b8;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.error-suggestions {
    background: #1e293b;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    text-align: left;
}

.error-suggestions h3 {
    color: #f1f5f9;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
}

.error-suggestions ul {
    color: #94a3b8;
    padding-left: 1.25rem;
    margin: 0;
}

.error-suggestions li {
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

.error-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

/* ===== 动画 ===== */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ===== 响应式设计 ===== */
@media (max-width: 1024px) {
    .content-header {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .content-header__image-placeholder {
        height: 200px;
    }
    
    .content-title {
        font-size: 2rem;
    }
    
    .review-header {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .review-image {
        height: 150px;
        max-width: 300px;
        margin: 0 auto;
    }
    
    .pros-cons {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-layout {
        padding: 0 1rem;
    }
    
    .content-header {
        padding: 1.5rem;
    }
    
    .content-section {
        padding: 1.5rem;
    }
    
    .params-grid {
        grid-template-columns: 1fr;
    }
    
    .report-stats {
        grid-template-columns: 1fr;
    }
    
    .content-actions {
        flex-direction: column;
    }
    
    .btn {
        justify-content: center;
    }
    
    .experience-grid {
        grid-template-columns: 1fr;
    }
    
    .feelings-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .review-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .post-meta {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .error-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .review-stats-grid {
        grid-template-columns: 1fr;
    }
    
    .content-title {
        font-size: 1.75rem;
    }
    
    .error-title {
        font-size: 2rem;
    }
}


/* ===== 评测结论样式 ===== */
.review-conclusion {
    margin-top: 2rem;
}



.final-verdict {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.15), rgba(251, 191, 36, 0.1));
    border: 2px solid rgba(245, 158, 11, 0.3);
    padding: 2rem;
    border-radius: 1rem;
    color: #f1f5f9;
    line-height: 1.8;
    font-size: 1.1rem;
    margin-top: 2rem;
    position: relative;
}

.final-verdict::before {
    content: "💎 最终结论";
    display: block;
    font-weight: 800;
    color: #f59e0b;
    font-size: 1.2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid rgba(245, 158, 11, 0.3);
    padding-bottom: 0.5rem;
}


/* 响应式调整 */
@media (max-width: 768px) {
    .final-verdict {
        padding: 1.25rem;
        font-size: 1rem;
    }
    
    .review-conclusion {
        margin-top: 1.5rem;
    }
}


/* ===== 文章内容样式优化 ===== */
.post-content {
    color: #e2e8f0;
    line-height: 1.8;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto;
}

/* 标题样式 */
.post-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f1f5f9;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #334155;
}

.post-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #f1f5f9;
    margin: 2.5rem 0 1.25rem 0;
}

.post-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 2rem 0 1rem 0;
}

.post-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9;
    margin: 1.5rem 0 0.75rem 0;
}

/* 段落样式 */
.post-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* 链接样式 */
.post-content a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.post-content a:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

/* 图片样式 */
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    border: 1px solid #334155;
}

/* 引用样式 */
.post-content blockquote {
    border-left: 4px solid #60a5fa;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: linear-gradient(145deg, #1e293b, #0f172a);
    border-radius: 0 0.75rem 0.75rem 0;
    border: 1px solid #334155;
    font-style: italic;
    color: #94a3b8;
}

.post-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
}

/* 列表样式 */
.post-content ul, .post-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.post-content li {
    margin-bottom: 0.75rem;
    color: #e2e8f0;
}

.post-content ul li {
    list-style-type: disc;
}

.post-content ol li {
    list-style-type: decimal;
}

/* 代码样式 */
.post-content code {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.post-content pre {
    background: #0f172a;
    border: 1px solid #334155;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.post-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #e2e8f0;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 表格样式 */
.post-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: #1e293b;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
}

.post-content th {
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #334155;
}

.post-content td {
    padding: 1rem;
    border-bottom: 1px solid #334155;
    color: #e2e8f0;
}

.post-content tr:last-child td {
    border-bottom: none;
}

.post-content tr:nth-child(even) {
    background: rgba(96, 165, 250, 0.05);
}

/* 强调文本 */
.post-content strong {
    color: #f1f5f9;
    font-weight: 700;
}

.post-content em {
    color: #94a3b8;
    font-style: italic;
}

/* 分割线 */
.post-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    margin: 3rem 0;
    border-radius: 1px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .post-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .post-content h1 {
        font-size: 1.875rem;
        margin: 2rem 0 1rem 0;
    }
    
    .post-content h2 {
        font-size: 1.5rem;
    }
    
    .post-content h3 {
        font-size: 1.25rem;
    }
    
    .post-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .post-content pre {
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .post-content table {
        font-size: 0.875rem;
    }
    
    .post-content th,
    .post-content td {
        padding: 0.75rem 0.5rem;
    }
}

/* 文章特色图片样式优化 */
.post-featured-image {
    max-width: 800px;
    margin: 3rem auto;
    border-radius: 1rem;
    overflow: hidden;
    background: #1e293b;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border: 1px solid #334155;
}

.post-featured-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.post-featured-image:hover img {
    transform: scale(1.02);
}

/* 文章元信息样式优化 */
.post-meta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 2rem 0 3rem 0;
    flex-wrap: wrap;
}

.post-author, .post-date, .post-category {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.2), rgba(79, 70, 229, 0.2));
    color: #60a5fa;
    padding: 0.75rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.post-author:hover, .post-date:hover, .post-category:hover {
    background: linear-gradient(135deg, rgba(96, 165, 250, 0.3), rgba(79, 70, 229, 0.3));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(96, 165, 250, 0.2);
}


/* ===== 专业评测内容文章样式 ===== */
.review-content {
    color: #374151;
    line-height: 1.8;
    font-size: 1.125rem;
    max-width: 100%;
}

/* 标题样式 */
.review-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #1e293b;
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #e2e8f0;
}

.review-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin: 2.5rem 0 1.25rem 0;
}

.review-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin: 2rem 0 1rem 0;
}

.review-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin: 1.5rem 0 0.75rem 0;
}

/* 段落样式 */
.review-content p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

/* 链接样式 */
.review-content a {
    color: #60a5fa;
    text-decoration: none;
    border-bottom: 1px solid rgba(96, 165, 250, 0.3);
    transition: all 0.3s ease;
}

.review-content a:hover {
    color: #4f46e5;
    border-bottom-color: #4f46e5;
}

/* 图片样式 */
.review-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.75rem;
    margin: 2rem 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
}

/* 引用样式 */
.review-content blockquote {
    border-left: 4px solid #60a5fa;
    padding: 1.5rem 2rem;
    margin: 2rem 0;
    background: #f8fafc;
    border-radius: 0 0.75rem 0.75rem 0;
    border: 1px solid #e2e8f0;
    font-style: italic;
    color: #64748b;
}

.review-content blockquote p {
    margin: 0;
    font-size: 1.1rem;
}

/* 列表样式 */
.review-content ul, 
.review-content ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.review-content li {
    margin-bottom: 0.75rem;
    color: #374151;
}

.review-content ul li {
    list-style-type: disc;
}

.review-content ol li {
    list-style-type: decimal;
}

/* 代码样式 */
.review-content code {
    background: rgba(96, 165, 250, 0.1);
    color: #60a5fa;
    padding: 0.2rem 0.5rem;
    border-radius: 0.375rem;
    font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
    font-size: 0.875rem;
    border: 1px solid rgba(96, 165, 250, 0.2);
}

.review-content pre {
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    border-radius: 0.75rem;
    padding: 1.5rem;
    margin: 2rem 0;
    overflow-x: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-content pre code {
    background: none;
    border: none;
    padding: 0;
    color: #374151;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* 表格样式 */
.review-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: white;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.review-content th {
    background: linear-gradient(135deg, #60a5fa, #4f46e5);
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.review-content td {
    padding: 1rem;
    border-bottom: 1px solid #e2e8f0;
    color: #374151;
}

.review-content tr:last-child td {
    border-bottom: none;
}

.review-content tr:nth-child(even) {
    background: rgba(96, 165, 250, 0.05);
}

/* 强调文本 */
.review-content strong {
    color: #1e293b;
    font-weight: 700;
}

.review-content em {
    color: #64748b;
    font-style: italic;
}

/* 分割线 */
.review-content hr {
    border: none;
    height: 2px;
    background: linear-gradient(90deg, transparent, #60a5fa, transparent);
    margin: 3rem 0;
    border-radius: 1px;
}

/* 响应式调整 */
@media (max-width: 768px) {
    .review-content {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .review-content h1 {
        font-size: 1.875rem;
        margin: 2rem 0 1rem 0;
    }
    
    .review-content h2 {
        font-size: 1.5rem;
    }
    
    .review-content h3 {
        font-size: 1.25rem;
    }
    
    .review-content blockquote {
        padding: 1rem 1.5rem;
        margin: 1.5rem 0;
    }
    
    .review-content pre {
        padding: 1rem;
        margin: 1.5rem 0;
    }
}

/* ===== 专业评测内容文章样式 ===== */
.review-content {
    color: #e2e8f0; /* 改为浅灰色 */
    line-height: 1.8;
    font-size: 1.125rem;
    max-width: 100%;
}

/* 标题样式 */
.review-content h1 {
    font-size: 2.25rem;
    font-weight: 800;
    color: #f1f5f9; /* 改为浅色 */
    margin: 3rem 0 1.5rem 0;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #475569; /* 改为深色边框 */
}

.review-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #f1f5f9; /* 改为浅色 */
    margin: 2.5rem 0 1.25rem 0;
}

.review-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9; /* 改为浅色 */
    margin: 2rem 0 1rem 0;
}

.review-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f1f5f9; /* 改为浅色 */
    margin: 1.5rem 0 0.75rem 0;
}

/* 列表项颜色 */
.review-content li {
    margin-bottom: 0.75rem;
    color: #e2e8f0; /* 改为浅色 */
}

/* 代码颜色 */
.review-content pre code {
    color: #e2e8f0; /* 改为浅色 */
}

/* 表格颜色 */
.review-content td {
    color: #e2e8f0; /* 改为浅色 */
}

/* 强调文本 */
.review-content strong {
    color: #f1f5f9; /* 改为浅色 */
}

/* 引用样式背景 */
.review-content blockquote {
    background: #1e293b; /* 改为深色背景 */
    border: 1px solid #475569; /* 改为深色边框 */
    color: #94a3b8; /* 改为浅灰色 */
}


/* ===== 修复专业评测内容文字颜色 ===== */
.review-content {
    color: #e2e8f0 !important;
}

.review-content h1,
.review-content h2,
.review-content h3,
.review-content h4 {
    color: #f1f5f9 !important;
}

.review-content p,
.review-content li {
    color: #e2e8f0 !important;
}

.review-content strong {
    color: #f1f5f9 !important;
}