/* 永盛隆商贸（深圳）有限公司 - 网站样式 */
/* ==================== 设计系统 ==================== */

/* 基础重置 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* CSS变量 - 设计系统 */
:root {
    /* 主色调 */
    --primary-color: #0f2744;
    --primary-light: #1a365d;
    --secondary-color: #f5b716;
    --secondary-light: #f4c430;
    --accent-color: #2563eb;
    
    /* 文字颜色 */
    --text-primary: #1a202c;
    --text-secondary: #4a5568;
    --text-muted: #718096;
    --text-white: #ffffff;
    
    /* 背景颜色 */
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --bg-gray: #f1f5f9;
    --bg-dark: #0f2744;
    
    /* 边框 */
    --border-color: #e2e8f0;
    --border-light: #edf2f7;
    
    /* 阴影 - 更精致的层次 */
    --shadow-xs: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-sm: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
    --shadow-md: 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);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* 圆角 */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* 间距系统 - 8px基础 */
    --space-1: 4px;
    --space-2: 8px;
    --space-3: 12px;
    --space-4: 16px;
    --space-5: 20px;
    --space-6: 24px;
    --space-8: 32px;
    --space-10: 40px;
    --space-12: 48px;
    --space-16: 64px;
    --space-20: 80px;
    
    /* 字体大小 */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    
    /* 行高 */
    --leading-tight: 1.25;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* 过渡 */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
}

/* 全局样式 */
html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    color: var(--text-primary);
    background-color: var(--bg-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, li {
    list-style: none;
}

/* 定器 */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-6);
}

@media (max-width: 768px) {
    .container {
        padding: 0 var(--space-4);
    }
}

/* 区块间距 */
.section-padding {
    padding: var(--space-20) 0;
}

@media (max-width: 768px) {
    .section-padding {
        padding: var(--space-16) 0;
    }
}

/* 统一的标题样式 */
.section-title {
    text-align: center;
    margin-bottom: var(--space-12);
}

.section-title h2 {
    font-size: var(--text-4xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: var(--space-4);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
}

@media (max-width: 768px) {
    .section-title h2 {
        font-size: var(--text-3xl);
    }
}

.section-title p {
    font-size: var(--text-lg);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
    line-height: var(--leading-relaxed);
}

/* 按钮样式 - 精致现代 */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2);
    padding: var(--space-4) var(--space-8);
    background-color: var(--secondary-color);
    color: var(--text-white);
    font-weight: 600;
    font-size: var(--text-base);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
    letter-spacing: 0.01em;
}

.btn:hover {
    background-color: #e6a800;
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn:active {
    transform: translateY(0);
    box-shadow: var(--shadow-sm);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
}

.btn-outline:hover {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

.btn-lg {
    padding: var(--space-5) var(--space-10);
    font-size: var(--text-lg);
}

.btn-sm {
    padding: var(--space-3) var(--space-5);
    font-size: var(--text-sm);
}

/* ==================== 顶部信息栏 ==================== */
.top-bar {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-3) 0;
    font-size: var(--text-sm);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-info {
    display: flex;
    gap: var(--space-8);
}

.top-bar-info span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
}

.top-bar-info i {
    color: var(--secondary-color);
    font-size: var(--text-sm);
}

.top-bar-right {
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ==================== 导航栏 ==================== */
.header {
    background-color: var(--bg-white);
    box-shadow: var(--shadow-sm);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--space-4);
}

.logo img {
    height: 48px;
    width: auto;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-text .company-name {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--primary-color);
    line-height: var(--leading-tight);
    letter-spacing: 0.01em;
}

.logo-text .company-slogan {
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-top: var(--space-1);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.nav-menu {
    display: flex;
    gap: var(--space-10);
    align-items: center;
}

.nav-menu li {
    list-style: none;
}

.nav-menu a {
    font-size: var(--text-base);
    font-weight: 500;
    color: var(--text-secondary);
    position: relative;
    padding: var(--space-2) 0;
    letter-spacing: 0.01em;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--secondary-color);
    border-radius: var(--radius-full);
    transition: width var(--transition-base);
}

.nav-menu a:hover,
.nav-menu li.active a {
    color: var(--primary-color);
}

.nav-menu a:hover::after,
.nav-menu li.active a::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: var(--space-2);
    border: none;
    background: transparent;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2.5px;
    background-color: var(--primary-color);
    border-radius: var(--radius-full);
    transition: var(--transition-base);
}

/* ==================== Banner轮播 ==================== */
.banner {
    position: relative;
    height: 360px;
    overflow: hidden;
}

/* 平板端适配 */
@media (max-width: 992px) {
    .banner {
        height: 320px;
    }
}

/* 手机端适配 */
@media (max-width: 768px) {
    .banner {
        height: 260px;
    }
}

/* 小屏手机适配 */
@media (max-width: 480px) {
    .banner {
        height: 220px;
    }
}

.banner-slider {
    position: relative;
    height: 100%;
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 800ms ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.active {
    opacity: 1;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(15, 39, 68, 0.88) 0%, rgba(15, 39, 68, 0.65) 100%);
}

.banner-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--text-white);
    z-index: 10;
    width: 90%;
    max-width: 700px;
    padding: 0 var(--space-4);
}

.banner-content h1 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-3);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

/* 平板端字体 */
@media (max-width: 992px) {
    .banner-content h1 {
        font-size: var(--text-2xl);
        margin-bottom: var(--space-2);
    }
}

/* 手机端字体 */
@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 1.5rem;
        margin-bottom: var(--space-2);
    }
}

/* 小屏手机字体 */
@media (max-width: 480px) {
    .banner-content h1 {
        font-size: 1.25rem;
        margin-bottom: var(--space-1);
    }
}

.banner-content p {
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    opacity: 0.95;
    line-height: var(--leading-relaxed);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* 平板端描述文字 */
@media (max-width: 992px) {
    .banner-content p {
        font-size: var(--text-sm);
        margin-bottom: var(--space-3);
    }
}

/* 手机端描述文字 */
@media (max-width: 768px) {
    .banner-content p {
        font-size: 0.9rem;
        margin-bottom: var(--space-3);
        line-height: 1.5;
    }
}

/* 小屏手机描述文字 */
@media (max-width: 480px) {
    .banner-content p {
        font-size: 0.85rem;
        margin-bottom: var(--space-2);
    }
}

/* banner内按钮样式 */
.banner-content .btn {
    padding: var(--space-3) var(--space-6);
    font-size: var(--text-base);
}

/* 平板端按钮 */
@media (max-width: 992px) {
    .banner-content .btn {
        padding: var(--space-2) var(--space-5);
        font-size: var(--text-sm);
    }
}

/* 手机端按钮 */
@media (max-width: 768px) {
    .banner-content .btn {
        padding: var(--space-2) var(--space-4);
        font-size: 0.85rem;
    }
}

/* 小屏手机按钮 */
@media (max-width: 480px) {
    .banner-content .btn {
        padding: var(--space-1) var(--space-3);
        font-size: 0.8rem;
    }
}

.banner-dots {
    position: absolute;
    bottom: var(--space-4);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: var(--space-2);
    z-index: 20;
}

/* 手机端指示器位置调整 */
@media (max-width: 768px) {
    .banner-dots {
        bottom: var(--space-3);
        gap: var(--space-1);
    }
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
}

/* 手机端小点 */
@media (max-width: 768px) {
    .banner-dot {
        width: 8px;
        height: 8px;
    }
}

.banner-dot.active {
    background-color: var(--secondary-color);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.2);
}

.banner-dot:hover {
    background-color: rgba(255, 255, 255, 0.7);
}

.banner-arrows {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 var(--space-4);
    z-index: 20;
}

@media (max-width: 992px) {
    .banner-arrows {
        padding: 0 var(--space-2);
    }
}

@media (max-width: 768px) {
    .banner-arrows {
        display: none;
    }
}

.banner-arrow {
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    color: var(--text-white);
    font-size: var(--text-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* 平板端箭头大小 */
@media (max-width: 992px) {
    .banner-arrow {
        width: 40px;
        height: 40px;
        font-size: var(--text-base);
    }
}

.banner-arrow:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    transform: scale(1.1);
}

/* ==================== 首页产品分类 ==================== */
.product-categories {
    background-color: var(--bg-light);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-8);
}

.category-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.category-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.category-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(0,0,0,0.4));
    opacity: 0;
    transition: opacity var(--transition-base);
}

.category-card:hover .category-image::after {
    opacity: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.category-card:hover .category-image img {
    transform: scale(1.08);
}

.category-content {
    padding: var(--space-6);
}

.category-content h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.category-content p {
    color: var(--text-muted);
    font-size: var(--text-base);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.category-brands {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
    margin-bottom: var(--space-4);
}

.brand-tag {
    background-color: var(--bg-light);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    border: 1px solid var(--border-light);
}

.category-link {
    color: var(--accent-color);
    font-weight: 600;
    font-size: var(--text-base);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.category-link:hover {
    color: var(--primary-color);
    gap: var(--space-3);
}

.category-link i {
    transition: transform var(--transition-base);
}

.category-link:hover i {
    transform: translateX(4px);
}

/* ==================== 公司优势 ==================== */
.advantages {
    background-color: var(--bg-white);
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.advantage-card {
    text-align: center;
    padding: 40px 25px;
    border-radius: 10px;
    background-color: var(--bg-light);
    transition: var(--transition-base);
}

.advantage-card:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 2rem;
    color: #ffffff;
}

.advantage-card:hover .advantage-icon {
    background-color: #ffffff;
    color: var(--secondary-color);
}

.advantage-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.advantage-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.advantage-card:hover p {
    color: rgba(255, 255, 255, 0.8);
}

/* ==================== 关于我们首页展示 ==================== */
.about-section {
    background-color: var(--bg-light);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.about-text h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 30px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 10px;
}

.about-feature i {
    color: var(--secondary-color);
    font-size: 1.2rem;
}

/* ==================== 合作品牌展示 ==================== */
.brands-section {
    background-color: var(--bg-white);
    padding: 60px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

.brand-item {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    transition: var(--transition-base);
    border: 2px solid transparent;
}

.brand-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-5px);
}

.brand-item img {
    max-height: 60px;
    margin: 0 auto;
    object-fit: contain;
}

.brand-item h4 {
    margin-top: 10px;
    font-size: 0.9rem;
    color: var(--text-primary);
}

/* ==================== 页脚 ==================== */
.footer {
    background-color: var(--primary-color);
    color: var(--text-white);
    padding: var(--space-16) 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-10);
    margin-bottom: var(--space-10);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
}

.footer-about .logo {
    margin-bottom: var(--space-5);
}

.footer-about .logo img {
    height: 44px;
    
}

.footer-about p {
    color: rgba(255, 255, 255, 0.75);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-5);
    font-size: var(--text-base);
}

.footer-title {
    font-size: var(--text-lg);
    font-weight: 600;
    margin-bottom: var(--space-6);
    
    color: var(--secondary-color);
    letter-spacing: 0.02em;
}

.footer-links li {
    margin-bottom: var(--space-3);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-base);
    display: inline-block;
    transition: all var(--transition-base);
}

.footer-links a:hover {
    color: var(--secondary-color);
    transform: translateX(4px);
}

.footer-contact p {
    display: flex;
    align-items: flex-start;
    gap: var(--space-3);
    margin-bottom: var(--space-4);
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-base);
}

.footer-contact i {
    color: var(--secondary-color);
    margin-top: 4px;
    font-size: var(--text-base);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--space-6) 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: var(--text-sm);
}

.footer-bottom a {
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition-base);
}

.footer-bottom a:hover {
    color: var(--secondary-color);
}

/* ==================== 产品页面样式 ==================== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
    color: #fff;
    text-align: center;
}

.page-header h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.products-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 12px 30px;
    background-color: var(--bg-light);
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    transition: var(--transition-base);
    text-decoration: none;
}

.tab-btn.active,
.tab-btn:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

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

@media (max-width: 576px) {
    .products-grid {
        grid-template-columns: 1fr;
    }
}

.product-card {
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    height: 400px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-light);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: var(--border-color);
}

.product-image {
    height: 180px;
    background-color: var(--bg-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 500ms ease;
}

.product-card:hover .product-image img {
    transform: scale(1.08);
}

.product-info {
    padding: var(--space-5);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.product-info h3 {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-2);
    line-height: var(--leading-snug);
}

.product-info h3 a {
    color: var(--primary-color);
}

.product-info h3 a:hover {
    color: var(--accent-color);
}

.product-info p {
    color: var(--text-muted);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-3);
    flex: 1;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.product-meta {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: var(--space-3);
    border-top: 1px solid var(--border-light);
}

.product-brand {
    display: inline-block;
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: var(--space-1) var(--space-3);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-price {
    font-size: var(--text-lg);
    font-weight: 700;
    color: var(--secondary-color);
}

.product-stock {
    font-size: var(--text-sm);
    color: #059669;
    display: flex;
    align-items: center;
    gap: var(--space-2);
    font-weight: 500;
}

.product-stock i {
    font-size: var(--text-base);
}

/* ==================== 产品详情页 view_product ==================== */
.product-detail-section {
    padding-top: var(--space-12);
}

.page-header--banner {
    padding: 0;
    background: transparent;
    line-height: 0;
    overflow: hidden;
}

.page-header-banner-img {
    width: 100%;
    height: auto;
    max-height: 280px;
    object-fit: cover;
    display: block;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.05fr);
    gap: var(--space-10);
    align-items: start;
}

.product-detail-gallery {
    position: sticky;
    top: 96px;
}

.product-detail-main-figure {
    margin: 0 auto;
    width: 100%;
    max-width: 560px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    background: var(--bg-gray);
    border: 1px solid var(--border-light);
    aspect-ratio: 1 / 1;
}

.product-detail-main-figure img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    background: var(--bg-white);
}

@media (max-width: 992px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: var(--space-8);
    }

    .product-detail-gallery {
        position: static;
    }

    .product-detail-main-figure {
        max-width: 100%;
        aspect-ratio: 4 / 3;
        max-height: 420px;
    }

    .product-detail-main-figure img {
        object-fit: cover;
    }

    .product-detail-spec {
        grid-template-columns: 1fr;
        gap: var(--space-2);
    }

    .product-detail-spec dt {
        color: var(--text-muted);
        font-size: var(--text-xs);
        text-transform: none;
    }
}

.product-detail-info {
    min-width: 0;
}

.product-detail-brand {
    display: inline-block;
    margin-bottom: var(--space-3);
    background-color: var(--secondary-color);
    color: var(--text-white);
    padding: var(--space-1) var(--space-4);
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-detail-title {
    font-size: clamp(1.35rem, 2.5vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--space-6);
    line-height: var(--leading-tight);
}

.product-detail-specs {
    margin: 0 0 var(--space-6);
    padding: 0;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    background: var(--bg-white);
    overflow: hidden;
}

.product-detail-spec {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: var(--space-4);
    padding: var(--space-4) var(--space-5);
    border-bottom: 1px solid var(--border-light);
    align-items: start;
}

.product-detail-spec:last-child {
    border-bottom: none;
}

.product-detail-spec dt {
    margin: 0;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--text-secondary);
    line-height: 1.5;
}

.product-detail-spec dd {
    margin: 0;
    font-size: var(--text-base);
    color: var(--text-primary);
    line-height: 1.65;
    word-break: break-word;
}

.product-detail-price {
    font-weight: 700;
    color: var(--secondary-color);
    font-size: var(--text-lg);
}

.product-detail-spec--models dt {
    padding-top: 2px;
}

.product-detail-models {
    font-size: var(--text-sm);
    color: var(--text-secondary);
    line-height: 1.75;
    white-space: pre-wrap;
    background: var(--bg-light);
    padding: var(--space-3) var(--space-4);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    max-height: 280px;
    overflow-y: auto;
}

.product-detail-meta-list {
    background: var(--bg-light);
    padding: var(--space-5);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-6);
    border: 1px solid var(--border-light);
}

.product-detail-meta-row {
    display: flex;
    align-items: center;
    gap: var(--space-3);
    margin-bottom: var(--space-3);
    font-size: var(--text-base);
    color: var(--text-primary);
}

.product-detail-meta-row:last-child {
    margin-bottom: 0;
}

.product-detail-meta-row i {
    color: var(--secondary-color);
    font-size: var(--text-lg);
    flex-shrink: 0;
}

.product-detail-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-4);
}

.product-detail-body {
    margin-top: var(--space-16);
    padding-top: var(--space-10);
    border-top: 1px solid var(--border-light);
}

.product-detail-body-title {
    font-size: var(--text-2xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--space-6);
    padding-bottom: var(--space-3);
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.product-detail-content {
    color: var(--text-secondary);
    line-height: 1.85;
    font-size: var(--text-base);
}

.product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.product-detail-related {
    border-top: 1px solid var(--border-light);
    background: var(--bg-light);
}

.product-detail-related .section-title {
    margin-bottom: var(--space-8);
}

/* ==================== 文章详情页 view_article ==================== */
.article-page-intro {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-light);
    padding: var(--space-10) 0 var(--space-8);
}

.article-page-intro-inner {
    max-width: 900px;
    margin: 0 auto;
}

.article-breadcrumb {
    font-size: var(--text-sm);
    color: var(--text-muted);
    margin-bottom: var(--space-4);
    line-height: var(--leading-relaxed);
}

.article-breadcrumb a {
    color: var(--accent-color);
}

.article-breadcrumb a:hover {
    color: var(--primary-color);
}

.article-page-title {
    font-size: clamp(1.35rem, 3vw, 2rem);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--space-5);
    line-height: var(--leading-tight);
    letter-spacing: -0.02em;
}

.article-page-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: var(--space-2) var(--space-6);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.article-page-meta-item {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
}

.article-page-meta-item i {
    color: var(--secondary-color);
    font-size: var(--text-base);
}

.article-detail-section {
    padding-top: var(--space-10);
    background: var(--bg-light);
}

.article-detail-inner {
    max-width: 900px;
    margin: 0 auto;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-sm);
    padding: var(--space-8) var(--space-8) var(--space-10);
}

.article-detail-content {
    color: var(--text-secondary);
    font-size: var(--text-base);
    line-height: 1.85;
    word-break: break-word;
}

.article-detail-content > *:first-child {
    margin-top: 0;
}

.article-detail-content p {
    margin-bottom: var(--space-4);
}

.article-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-md);
}

.article-detail-leadimg {
    margin: 0 0 var(--space-8);
    text-align: center;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-gray);
}

.article-detail-leadimg img {
    display: block;
    width: 100%;
    max-height: 420px;
    object-fit: contain;
    margin: 0 auto;
}

.article-detail-tags {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-light);
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: var(--space-3) var(--space-4);
}

.article-detail-tags-label {
    flex-shrink: 0;
    font-weight: 600;
    color: var(--primary-color);
    font-size: var(--text-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    padding-top: 4px;
}

.article-detail-tags-label i {
    color: var(--secondary-color);
}

.article-detail-tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.article-detail-tag {
    display: inline-block;
    padding: var(--space-1) var(--space-4);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-full);
    font-size: var(--text-sm);
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.article-detail-tag:hover {
    background: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-white);
}

.article-detail-prenext {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-light);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-4);
}

.article-detail-prenext-item {
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    padding: var(--space-4) var(--space-5);
    min-width: 0;
}

.article-detail-prenext-item--next {
    text-align: right;
}

.article-detail-prenext-label {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-muted);
    margin-bottom: var(--space-2);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.article-detail-prenext-link {
    display: block;
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-color);
    line-height: var(--leading-snug);
    transition: color var(--transition-base);
}

.article-detail-prenext-link:hover {
    color: var(--accent-color);
}

.article-detail-prenext-empty {
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.article-detail-related {
    margin-top: var(--space-10);
    padding-top: var(--space-6);
    border-top: 1px solid var(--border-light);
}

.article-detail-related-title {
    font-size: var(--text-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 var(--space-5);
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.article-detail-related-title i {
    color: var(--secondary-color);
}

.article-detail-related-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-3);
}

.article-detail-related-empty {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.article-detail-related-card {
    display: flex;
    gap: var(--space-4);
    padding: var(--space-4);
    background: var(--bg-light);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    align-items: stretch;
}

.article-detail-related-card:hover {
    border-color: var(--secondary-color);
    box-shadow: var(--shadow-md);
}

.article-detail-related-thumb {
    flex: 0 0 120px;
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--bg-gray);
}

.article-detail-related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.article-detail-related-text {
    min-width: 0;
    flex: 1;
}

.article-detail-related-card-title {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 var(--space-2);
    line-height: var(--leading-snug);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-detail-related-card:hover .article-detail-related-card-title {
    color: var(--accent-color);
}

.article-detail-related-card-desc {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--text-muted);
    line-height: var(--leading-relaxed);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (max-width: 768px) {
    .article-detail-inner {
        padding: var(--space-5) var(--space-4) var(--space-8);
    }

    .article-detail-prenext {
        grid-template-columns: 1fr;
    }

    .article-detail-prenext-item--next {
        text-align: left;
    }

    .article-detail-related-card {
        flex-direction: column;
    }

    .article-detail-related-thumb {
        width: 100%;
        flex: 0 0 auto;
        height: 180px;
    }
}

@media (max-width: 576px) {
    .page-header-banner-img {
        max-height: 160px;
    }

    .product-detail-models {
        max-height: 220px;
    }

    .product-detail-actions {
        flex-direction: column;
    }

    .product-detail-actions .btn {
        width: 100%;
        justify-content: center;
    }
}

/* ==================== 关于我们页面 ==================== */
.about-hero {
    background-color: var(--bg-light);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 3px;
    background-color: var(--secondary-color);
}

.timeline-item {
    position: relative;
    padding-bottom: 30px;
    padding-left: 30px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 5px;
    width: 15px;
    height: 15px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    border: 3px solid var(--bg-white);
    box-shadow: 0 0 0 3px var(--secondary-color);
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.timeline-content h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.value-card {
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: var(--shadow-sm);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* ==================== 联系我们页面 ==================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-card {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--secondary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.3rem;
}

.contact-info-item h4 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.contact-info-item p {
    color: var(--text-muted);
}

.contact-form {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 1rem;
    transition: var(--transition-base);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--accent-color);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

.map-section {
    margin-top: 60px;
}

.map-container {
    height: 400px;
    background-color: var(--bg-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
}

/* ==================== 新闻中心样式 ==================== */
.news-grid {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
}

.news-sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
    display: flex;
    flex-direction: column;
    gap: var(--space-5);
}

/* 新闻侧栏独立卡片，避免复用首页 .category-card 导致错位与 hover 位移 */
.news-sidebar-widget {
    background-color: var(--bg-white);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    padding: var(--space-5);
}

.news-sidebar-title {
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin: 0 0 var(--space-4);
    padding-bottom: var(--space-3);
    border-bottom: 1px solid var(--border-light);
    line-height: var(--leading-snug);
}

.news-sidebar-tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-2);
}

.news-categories {
    margin-top: 0;
}

.news-categories li {
    margin-bottom: 5px;
}

.news-categories a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    color: var(--text-primary);
    border-radius: 5px;
    transition: var(--transition-base);
}

.news-categories a:hover,
.news-categories a.active {
    background-color: var(--secondary-color);
    color: #ffffff;
}

.news-categories i {
    width: 20px;
    text-align: center;
}

.section-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--secondary-color);
    display: inline-block;
}

.news-item {
    display: flex;
    gap: var(--space-5);
    padding: var(--space-6);
    background-color: var(--bg-white);
    border-radius: var(--radius-lg);
    margin-bottom: var(--space-5);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-base);
    border: 1px solid var(--border-light);
    align-items: flex-start;
}

/* 新闻列表封面图 */
.news-item-thumb {
    flex: 0 0 220px;
    width: 220px;
    height: 147px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background-color: var(--bg-gray);
    box-shadow: var(--shadow-xs);
    display: block;
    flex-shrink: 0;
}

.news-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-base);
}

.news-item:hover .news-item-thumb img {
    transform: scale(1.06);
}

.news-item-thumb-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 147px;
    background: linear-gradient(145deg, var(--bg-light) 0%, var(--border-light) 100%);
    color: var(--text-muted);
    font-size: 2.25rem;
}

.news-item:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--border-color);
}

.news-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    height: 72px;
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-light) 100%);
    border-radius: var(--radius-md);
    color: var(--text-white);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
}

.news-date .day {
    font-size: var(--text-2xl);
    font-weight: 700;
    line-height: 1;
}

.news-date .month {
    font-size: var(--text-xs);
    font-weight: 500;
    margin-top: var(--space-1);
    letter-spacing: 0.05em;
    opacity: 0.95;
}

.news-body {
    flex: 1;
    min-width: 0;
}

.news-body h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-3);
    line-height: var(--leading-snug);
}

.news-body h3 a {
    color: var(--primary-color);
    transition: color var(--transition-base);
}

.news-body h3 a:hover {
    color: var(--accent-color);
}

.news-excerpt {
    color: var(--text-muted);
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: var(--space-6);
    font-size: var(--text-sm);
    color: var(--text-muted);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: var(--space-2);
}

.read-more {
    color: var(--accent-color);
    font-weight: 600;
    margin-left: auto;
    display: inline-flex;
    align-items: center;
    gap: var(--space-2);
    transition: all var(--transition-base);
}

.read-more:hover {
    color: var(--primary-color);
    gap: var(--space-3);
}

.read-more i {
    font-size: var(--text-sm);
    transition: transform var(--transition-base);
}

.read-more:hover i {
    transform: translateX(4px);
}

/* 首页新闻展示 */
.news-section-home {
    background-color: var(--bg-light);
}

.news-list-home {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.news-card-home {
    background-color: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition-base);
}

.news-card-home:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.news-card-home .news-content {
    padding: 25px;
}

.news-card-home .news-date-small {
    display: inline-block;
    background-color: var(--secondary-color);
    color: #ffffff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.news-card-home h3 {
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1.4;
}

.news-card-home h3 a {
    color: var(--primary-color);
}

.news-card-home h3 a:hover {
    color: var(--accent-color);
}

.news-card-home p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.6;
}

.view-all-news {
    text-align: center;
    margin-top: 40px;
}

/* ==================== 为什么选择我们 - 图文排版 ==================== */
.why-choose-section {
    background-color: var(--bg-white);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
}

.why-choose-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

.why-choose-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

.why-choose-image:hover img {
    transform: scale(1.05);
}

.why-choose-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26, 54, 93, 0.1) 0%, rgba(201, 162, 39, 0.1) 100%);
    z-index: 1;
}

.why-choose-content {
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.why-choose-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.why-choose-content h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    border-radius: 2px;
}

.why-choose-content > p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.why-choose-list {
    display: grid;
    gap: 25px;
}

.why-choose-item {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 10px;
    transition: var(--transition-base);
    border-left: 4px solid var(--secondary-color);
}

.why-choose-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-sm);
    background-color: var(--bg-white);
}

.why-choose-item-icon {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #ffffff;
    font-size: 1.5rem;
}

.why-choose-item-text h3 {
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.why-choose-item-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==================== 分页 ==================== */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--space-2);
    margin-top: var(--space-10);
    padding-top: var(--space-8);
    border-top: 1px solid var(--border-light);
}

.pagination a,
.pagination span {
    min-width: 44px;
    padding: var(--space-2) var(--space-4);
    border-radius: var(--radius-md);
    font-weight: 500;
    transition: all var(--transition-base);
}

.pagination a {
    background-color: var(--bg-light);
    color: var(--text-primary);
}

.pagination a:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.pagination .current {
    background-color: var(--secondary-color);
    color: var(--text-white);
}

/* ==================== 订阅区 ==================== */
.news-subscribe-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    color: var(--text-white);
    padding: var(--space-20) 0;
    text-align: center;
}

.news-subscribe-section h2 {
    font-size: var(--text-3xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
    color: var(--text-white);
}

.news-subscribe-section p {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: var(--space-8);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.subscribe-form-wrapper {
    max-width: 520px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    gap: var(--space-3);
}

.subscribe-input {
    flex: 1;
    padding: var(--space-4) var(--space-5);
    border: none;
    border-radius: var(--radius-md);
    font-size: var(--text-base);
    background-color: rgba(255, 255, 255, 0.95);
    color: var(--text-primary);
    transition: all var(--transition-base);
}

.subscribe-input:focus {
    outline: none;
    background-color: var(--text-white);
    box-shadow: 0 0 0 3px rgba(245, 183, 22, 0.3);
}

.subscribe-input::placeholder {
    color: var(--text-muted);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 992px) {
    .about-content,
    .contact-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .section-title h2 {
        font-size: var(--text-3xl);
    }
    
    .news-grid {
        grid-template-columns: 1fr;
    }
    
    .news-sidebar {
        position: static;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: var(--bg-white);
        flex-direction: column;
        padding: var(--space-8);
        transition: left var(--transition-base);
        box-shadow: var(--shadow-xl);
        gap: var(--space-6);
        z-index: 999;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu a {
        font-size: var(--text-lg);
        padding: var(--space-3) 0;
    }

    .section-padding {
        padding: var(--space-16) 0;
    }

    .section-title h2 {
        font-size: var(--text-2xl);
    }

    .section-title {
        margin-bottom: var(--space-8);
    }

    .about-features {
        grid-template-columns: 1fr;
    }
    
    .why-choose-item {
        flex-direction: column;
        text-align: center;
    }
    
    .why-choose-item-icon {
        margin: 0 auto;
    }
    
    .categories-grid {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .product-card {
        height: auto;
        min-height: 380px;
    }
    
    .why-choose-image {
        min-height: 350px;
    }
    
    .news-subscribe-section {
        padding: var(--space-16) 0;
    }
    
    .news-subscribe-section h2 {
        font-size: var(--text-2xl);
    }
    
    .subscribe-form {
        flex-direction: column;
    }
    
    .subscribe-input {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .section-padding {
        padding: var(--space-12) 0;
    }

    .btn {
        padding: var(--space-3) var(--space-6);
        font-size: var(--text-sm);
    }
    
    .container {
        padding: 0 var(--space-4);
    }
    
    .news-item {
        flex-direction: column;
    }
    
    .news-item-thumb {
        width: 100%;
        max-width: 100%;
        flex: 0 0 auto;
        height: 200px;
    }
    
    .news-item-thumb-placeholder {
        min-height: 200px;
    }
    
    .news-date {
        flex-direction: row;
        width: 100%;
        height: auto;
        padding: var(--space-3);
        gap: var(--space-2);
    }
    
    .news-date .day {
        font-size: var(--text-lg);
    }
    
    .news-meta {
        flex-wrap: wrap;
    }
    
    .news-meta .read-more {
        margin-left: 0;
        width: 100%;
        margin-top: var(--space-3);
    }
}

/* ==================== 动画效果 ==================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fadeInUp {
    animation: fadeInUp 0.6s ease forwards;
}

/* ==================== SEO优化隐藏 ==================== */
.seo-keywords {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
