/* ==================== 详情页面专属样式（新闻详情、产品详情） ==================== */

/* ==================== 详情页面公共样式 ==================== */
.detail-page {
    padding: 40px 0 80px;
}

.breadcrumb {
    margin-bottom: 30px;
    color: #666;
}

.breadcrumb a {
    color: #6B2D8B;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

.detail-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(107, 45, 139, 0.1);
}

.detail-image {
    height: 400px;
    border-radius: 8px;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #6B2D8B 0%, #00A896 100%);
}

.detail-content h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.detail-meta {
    display: flex;
    gap: 20px;
    color: #666;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.detail-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #666;
}

.detail-nav {
    margin-top: 30px;
}

/* ==================== 产品详情专属样式 ==================== */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(107, 45, 139, 0.1);
}

.product-detail-image {
    height: 400px;
    border-radius: 8px;
    background: linear-gradient(135deg, #6B2D8B 0%, #00A896 100%);
}

.product-category {
    display: inline-block;
    padding: 5px 15px;
    background: #f7f4fa;
    color: #6B2D8B;
    border-radius: 20px;
    font-size: 0.875rem;
    margin-bottom: 15px;
}

.product-detail-info h1 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.product-description {
    color: #666;
    margin-bottom: 30px;
    font-size: 1.1rem;
}

.product-price {
    margin-bottom: 30px;
}

.price-label {
    color: #666;
}

.price-value {
    font-size: 2rem;
    font-weight: 700;
    color: #6B2D8B;
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* ==================== 产品详细介绍区域 ==================== */
.product-detail-content {
    margin-top: 40px;
}

.product-detail-content .section-title {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 30px;
    color: #2d2d2d;
    position: relative;
}

.product-detail-content .section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(135deg, #6B2D8B 0%, #00A896 100%);
    margin: 15px auto 0;
    border-radius: 2px;
}

.product-detail-content .detail-content {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(107, 45, 139, 0.1);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 768px) {
    .product-detail {
        grid-template-columns: 1fr;
    }

    .product-actions {
        flex-direction: column;
    }

    .detail-image {
        height: 250px;
    }

    .product-detail-image {
        height: 250px;
    }
}
