/* 全局样式 - 现代大气设计 */
:root {
    --primary-color: #2563eb;  /* 更深的蓝色 */
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --secondary-color: #64748b;
    --accent-color: #06b6d4;   /* 青蓝色点缀 */
    --success-color: #10b981;
    --warning-color: #f59e0b;
    --danger-color: #ef4444;
    --light-color: #f8fafc;
    --light-secondary: #f1f5f9;
    --dark-color: #0f172a;     /* 更深的深色 */
    --dark-secondary: #1e293b;
    --text-color: #1f2937;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border-color: #e5e7eb;
    --border-light: #f3f4f6;
    --white: #ffffff;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --border-radius: 0.5rem;
    --border-radius-lg: 0.75rem;
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-color);
    background-color: var(--white);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

@media (max-width: 640px) {
    .container {
        padding: 0 var(--spacing-md);
    }
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: #0056b3;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    position: relative;
    padding-bottom: var(--spacing-lg);
    letter-spacing: -0.025em;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-top: var(--spacing-md);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: var(--spacing-sm) var(--spacing-xl);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--border-radius);
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    font-weight: var(--font-weight-medium);
    font-size: var(--font-size-base);
    text-decoration: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: var(--white);
}

.btn:active {
    transform: translateY(0);
}

.btn-small {
    padding: var(--spacing-xs) var(--spacing-lg);
    font-size: var(--font-size-sm);
}

.btn-large {
    padding: var(--spacing-lg) var(--spacing-2xl);
    font-size: var(--font-size-lg);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.btn-outline::before {
    background: var(--primary-color);
    left: -100%;
    transition: left 0.3s ease;
}

.btn-outline:hover {
    color: var(--white);
    border-color: var(--primary-color);
}

.btn-outline:hover::before {
    left: 0;
}

.btn-white {
    background: var(--white);
    color: var(--primary-color);
    border: 1px solid var(--border-color);
}

.btn-white:hover {
    background: var(--light-color);
    color: var(--primary-dark);
}

/* 头部样式 - 现代玻璃效果 */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-lg) var(--spacing-lg);
}

.logo h1 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color); /* 改为纯色显示 */
    margin: 0;
    letter-spacing: -0.025em;
}

nav ul {
    display: flex;
    gap: var(--spacing-xl);
}

nav ul li a {
    color: var(--text-color);
    font-weight: var(--font-weight-medium);
    padding: var(--spacing-sm) 0;
    position: relative;
    transition: var(--transition);
    text-decoration: none;
}

nav ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: var(--transition);
    border-radius: 1px;
}

nav ul li a:hover::after,
nav ul li a.active::after {
    width: 100%;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

.mobile-menu-btn {
    display: none;
    font-size: var(--font-size-xl);
    cursor: pointer;
    color: var(--text-color);
    transition: var(--transition);
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
}

/* 英雄区域样式 - 大气的渐变背景 */
.hero {
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.9) 0%, 
        rgba(6, 182, 212, 0.8) 50%,
        rgba(16, 185, 129, 0.7) 100%
    ), url('https://images.unsplash.com/photo-1451187580459-43490279c0fa?ixlib=rb-4.0.3&auto=format&fit=crop&w=2072&q=80') no-repeat center center/cover;
    color: var(--white);
    padding: 8rem 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, 
        rgba(255, 255, 255, 0.1) 0%, 
        transparent 70%);
    pointer-events: none;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: clamp(var(--font-size-4xl), 5vw, var(--font-size-5xl));
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-lg);
    letter-spacing: -0.025em;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-content p {
    font-size: var(--font-size-xl);
    margin-bottom: var(--spacing-2xl);
    font-weight: var(--font-weight-light);
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* 特点区域样式 - 现代卡片设计 */
.features {
    padding: 6rem 0;
    background: linear-gradient(135deg, var(--light-color) 0%, var(--white) 100%);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 75% 75%, rgba(6, 182, 212, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.feature-item {
    text-align: center;
    padding: var(--spacing-2xl);
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: var(--transition);
}

.feature-item:hover::before {
    transform: scaleX(1);
}

.feature-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-item i {
    font-size: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--spacing-lg);
    display: block;
}

.feature-item h3 {
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
}

.feature-item p {
    color: var(--text-light);
    line-height: 1.6;
}

/* 产品展示区域样式 - 现代卡片设计 */
.product-showcase {
    padding: 6rem 0;
    background: var(--white);
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: var(--spacing-2xl);
}

.product-card {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    background: var(--white);
    border: 1px solid var(--border-light);
    position: relative;
    group: hover;
}

.product-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
}

.product-img {
    width: 100%;
    aspect-ratio: 4/3; /* 固定长宽比 4:3 */
    overflow: hidden;
    position: relative;
    background: linear-gradient(135deg, var(--light-color), var(--light-secondary));
    border-radius: var(--border-radius);
}

.product-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(37, 99, 235, 0.1) 0%, 
        rgba(6, 182, 212, 0.1) 100%);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-img::after {
    opacity: 1;
}

.product-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: var(--spacing-md);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light-color), var(--light-secondary));
    color: var(--text-light);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    border-radius: var(--border-radius-md);
}

.product-card:hover .product-img img {
    transform: scale(1.05);
}

.product-info {
    padding: var(--spacing-xl);
}

.product-info h3 {
    margin-bottom: var(--spacing-sm);
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    line-height: 1.4;
}

.product-info p {
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
}

.view-all {
    text-align: center;
    margin-top: var(--spacing-3xl);
}

/* 产品详情页面样式 */
.product-detail-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-2xl);
}

#detail-loading {
    text-align: center;
    padding: var(--spacing-3xl);
    color: var(--text-light);
}

.loading-spinner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
}

.loading-spinner i {
    color: var(--primary-color);
}

.loading-spinner p {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
}

.product-detail-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    margin-bottom: var(--spacing-3xl);
    align-items: start;
}

/* 产品图片轮播样式 */
.product-image-gallery {
    width: 100%;
}

.main-image-container {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    position: relative;
    margin-bottom: var(--spacing-md);
}

.image-carousel {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.carousel-images {
    width: 100%;
    height: 100%;
    position: relative;
    cursor: grab;
}

.carousel-images:active {
    cursor: grabbing;
}

.carousel-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.carousel-image.active {
    opacity: 1;
}

.carousel-image.sliding-left {
    transform: translateX(-100%);
}

.carousel-image.sliding-right {
    transform: translateX(100%);
}

/* 轮播控制按钮 */
.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    opacity: 0;
}

.image-carousel:hover .carousel-btn {
    opacity: 1;
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    transform: translateY(-50%) scale(1.1);
}

.prev-btn {
    left: 10px;
}

.next-btn {
    right: 10px;
}

/* 轮播指示器 */
.carousel-indicators {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.indicator {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active,
.indicator:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: scale(1.2);
}

/* 缩略图列表 */
.thumbnail-list {
    display: flex;
    gap: var(--spacing-sm);
    overflow-x: auto;
    padding: var(--spacing-xs) 0;
    scrollbar-width: thin;
    scrollbar-color: var(--border-color) transparent;
}

.thumbnail-list::-webkit-scrollbar {
    height: 4px;
}

.thumbnail-list::-webkit-scrollbar-track {
    background: transparent;
}

.thumbnail-list::-webkit-scrollbar-thumb {
    background: var(--border-color);
    border-radius: 2px;
}

.thumbnail {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: var(--border-radius);
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.thumbnail:hover {
    border-color: var(--primary-light);
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: var(--primary-color);
    box-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
}

/* 遗留兼容性样式 */
.product-main-image {
    width: 100%;
    aspect-ratio: 4/3;
    background: var(--light-color);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.product-main-info {
    padding: var(--spacing-xl) 0;
}

.product-title {
    font-size: var(--font-size-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    line-height: 1.2;
}

.product-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--border-radius);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: var(--spacing-lg);
}

.product-actions {
    display: flex;
    gap: var(--spacing-md);
    margin-top: var(--spacing-xl);
}

.contact-btn {
    flex: 1;
    max-width: 200px;
}

.product-description {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.product-description h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-light);
}

.product-description h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-top: var(--spacing-xl);
    margin-bottom: var(--spacing-md);
}

.product-description p {
    color: var(--text-color);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* 富文本内容样式 */
.rich-text-content {
    color: var(--text-color);
    line-height: 1.8;
}

.rich-text-content h1,
.rich-text-content h2,
.rich-text-content h3,
.rich-text-content h4,
.rich-text-content h5,
.rich-text-content h6 {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    margin-top: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
}

.rich-text-content h1 {
    font-size: var(--font-size-3xl);
}

.rich-text-content h2 {
    font-size: var(--font-size-2xl);
}

.rich-text-content h3 {
    font-size: var(--font-size-xl);
}

.rich-text-content p {
    margin-bottom: var(--spacing-md);
    color: var(--text-color);
}

.rich-text-content ul,
.rich-text-content ol {
    margin: var(--spacing-md) 0;
    padding-left: var(--spacing-xl);
}

.rich-text-content li {
    margin-bottom: var(--spacing-xs);
    color: var(--text-color);
}

.rich-text-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--border-radius);
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow);
}

.rich-text-content blockquote {
    background: var(--light-secondary);
    border-left: 4px solid var(--primary-color);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    border-radius: var(--border-radius);
    font-style: italic;
    color: var(--text-light);
}

.rich-text-content table {
    width: 100%;
    border-collapse: collapse;
    margin: var(--spacing-lg) 0;
    box-shadow: var(--shadow);
    border-radius: var(--border-radius);
    overflow: hidden;
}

.rich-text-content table th,
.rich-text-content table td {
    padding: var(--spacing-sm) var(--spacing-md);
    text-align: left;
    border-bottom: 1px solid var(--border-light);
}

.rich-text-content table th {
    background: var(--light-secondary);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
}

.rich-text-content strong,
.rich-text-content b {
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
}

.rich-text-content em,
.rich-text-content i {
    font-style: italic;
    color: var(--text-light);
}

.rich-text-content a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.rich-text-content a:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.long-description {
    background: var(--light-secondary);
    padding: var(--spacing-lg);
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    margin-bottom: var(--spacing-md);
    line-height: 1.8;
}

.features-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.features-list li {
    position: relative;
    padding: var(--spacing-sm) 0 var(--spacing-sm) var(--spacing-xl);
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.features-list li:before {
    content: '✓';
    position: absolute;
    left: 0;
    top: var(--spacing-sm);
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-bold);
}

.features-list li:last-child {
    border-bottom: none;
}

.product-specifications {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.product-specifications h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-light);
}

.product-parameters {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: var(--spacing-2xl);
    margin-bottom: var(--spacing-2xl);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.product-parameters h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-lg);
    padding-bottom: var(--spacing-sm);
    border-bottom: 2px solid var(--border-light);
}

.spec-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.spec-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.spec-list li:last-child {
    border-bottom: none;
}

.spec-list li strong {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    min-width: 120px;
}

.param-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.param-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--spacing-md) 0;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-color);
}

.param-list li:last-child {
    border-bottom: none;
}

.param-list li strong {
    color: var(--dark-color);
    font-weight: var(--font-weight-semibold);
    min-width: 120px;
}

.related-products {
    margin-top: var(--spacing-3xl);
}

.related-products h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-xl);
    text-align: center;
}

.related-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-xl);
}

.related-product-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition);
}

.related-product-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.related-product-image {
    width: 100%;
    aspect-ratio: 4/3; /* 统一长宽比 4:3 */
    background: var(--light-color);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: var(--border-radius);
}

.related-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: var(--transition);
    padding: var(--spacing-sm);
}

.related-product-card:hover .related-product-image img {
    transform: scale(1.05);
}

.related-product-info {
    padding: var(--spacing-lg);
}

.related-product-info h4 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-color);
    margin-bottom: var(--spacing-sm);
    line-height: 1.4;
}

.related-product-info p {
    color: var(--text-light);
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-md);
    line-height: 1.5;
}

/* 产品未找到页面样式 */
.product-not-found {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
}

.error-icon {
    opacity: 0.8;
}

.action-buttons {
    display: flex;
    gap: var(--spacing-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .product-detail-header {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
    }
    
    .product-title {
        font-size: var(--font-size-3xl);
    }
    
    .product-actions {
        flex-direction: column;
    }
    
    .contact-btn {
        max-width: none;
    }
    
    .related-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: var(--spacing-md);
    }
    
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .action-buttons .btn {
        min-width: 200px;
    }
    
    /* 移动端轮播优化 */
    .thumbnail-list {
        gap: var(--spacing-xs);
    }
    
    .thumbnail {
        width: 60px;
        height: 45px;
    }
    
    .carousel-btn {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
    
    .prev-btn {
        left: 5px;
    }
    
    .next-btn {
        right: 5px;
    }
    
    .carousel-indicators {
        bottom: 10px;
    }
    
    .indicator {
        width: 8px;
        height: 8px;
    }
}