* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    background-color: #f8f6f1;
    color: #2a2a2a;
    font-size: 14px;
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-wrap: break-word;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s;
}

ul, li {
    list-style: none;
}

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

:root {
    --primary-green: #1a5c3e;
    --dark-green: #0d3d28;
    --deep-green: #082818;
    --jade-green: #2d7a52;
    --light-jade: #3d9968;
    --gold: #c9a96e;
    --gold-light: #d4bc8a;
    --gold-dark: #a68b4b;
    --gold-deep: #8b7355;
    --text-dark: #2a2a2a;
    --text-gray: #666;
    --text-light: #999;
    --bg-white: #fff;
    --bg-cream: #f8f6f1;
    --bg-gray: #f5f2eb;
    --border-color: #e8e4db;
    --shadow-sm: 0 2px 10px rgba(26, 92, 62, 0.06);
    --shadow-md: 0 5px 20px rgba(26, 92, 62, 0.1);
    --shadow-lg: 0 15px 40px rgba(26, 92, 62, 0.15);
}

/* Header */
.header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.header-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    position: relative;
}

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

.logo-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.logo-text {
    font-size: 26px;
    font-weight: 600;
    color: var(--primary-green);
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 2px;
    letter-spacing: 1px;
}

.search-box {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    max-width: 400px;
    width: 100%;
    display: flex;
    border: 2px solid var(--primary-green);
    border-radius: 25px;
    overflow: hidden;
}

.search-box input {
    flex: 1;
    padding: 10px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-box button {
    padding: 10px 25px;
    background: var(--primary-green);
    border: none;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
    border-radius: 0 23px 23px 0;
    transition: background 0.3s;
}

.search-box button:hover {
    background: var(--dark-green);
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    width: 24px;
    height: 24px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
}

.phone-number {
    color: var(--primary-green);
    font-size: 18px;
    font-weight: bold;
}

.header-actions {
    display: flex;
    gap: 15px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--text-gray);
    font-size: 13px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 20px;
    background: var(--bg-gray);
    transition: all 0.3s;
}

.header-action:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Navigation */
.nav {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    padding: 0 20px;
}

.nav-list {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-item a {
    display: block;
    padding: 16px 36px;
    color: var(--text-dark);
    font-size: 15px;
    position: relative;
    white-space: nowrap;
    transition: all 0.3s;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 500;
}

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

.nav-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-item a:hover::after,
.nav-item.active a::after {
    width: 40px;
}

.nav-more {
    padding: 15px 20px;
    color: var(--text-light);
    font-size: 13px;
}

/* Breadcrumb */
.breadcrumb {
    background: var(--bg-white);
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
}

.breadcrumb-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--text-gray);
}

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

.breadcrumb span {
    margin: 0 8px;
}

/* Hero */
.hero {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 60px 20px;
    text-align: center;
}

.hero h1 {
    font-size: 36px;
    color: var(--gold);
    margin-bottom: 15px;
}

.hero p {
    font-size: 16px;
    color: rgba(255,255,255,0.9);
    max-width: 600px;
    margin: 0 auto;
}

.about-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
}

.about-sidebar {
    width: 250px;
    flex-shrink: 0;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-sidebar .sidebar-title {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: #f5c842;
    font-size: 18px;
    font-weight: bold;
    padding: 18px 25px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.sidebar-menu {
    list-style: none;
    padding: 10px 0;
    margin: 0;
}

.sidebar-menu li {
    margin: 0;
}

.sidebar-menu a {
    display: block;
    padding: 14px 25px;
    color: #444;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.sidebar-menu a:hover {
    color: var(--primary-green);
    background: rgba(30, 108, 68, 0.05);
    border-left-color: var(--primary-green);
}

.sidebar-menu a.active {
    color: var(--primary-green);
    background: rgba(30, 108, 68, 0.08);
    border-left-color: var(--primary-green);
    font-weight: bold;
}

.about-content-area {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    overflow: hidden;
}

.about-page-title {
    padding: 0 30px;
    border-bottom: 2px solid var(--border-color);
    position: relative;
}

.title-tag {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    color: #f5c842;
    font-size: 18px;
    font-weight: bold;
    border-radius: 6px 6px 0 0;
}

.about-article {
    padding: 30px;
    font-size: 15px;
    line-height: 2;
    color: #333;
}

.about-article h2.article-heading {
    font-size: 24px;
    color: var(--dark-green);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.about-article h3 {
    font-size: 18px;
    color: var(--dark-green);
    margin: 30px 0 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.about-article p {
    margin-bottom: 20px;
    text-align: justify;
}

.about-article strong {
    color: var(--primary-green);
}

.article-img {
    margin: 30px 0;
    text-align: center;
}

.article-img img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.about-article .about-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(30, 108, 68, 0.05), rgba(30, 108, 68, 0.1));
    border-radius: 12px;
}

.about-article .about-stat {
    text-align: center;
}

.about-article .about-stat-num {
    font-size: 36px;
    font-weight: bold;
    color: var(--primary-green);
    margin-bottom: 8px;
}

.about-article .about-stat-num span {
    font-size: 22px;
}

.about-article .about-stat-label {
    font-size: 14px;
    color: #666;
}

.about-article ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.about-article ul li {
    margin-bottom: 10px;
}

.job-item {
    padding: 20px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--primary-green);
}

.job-title {
    font-size: 18px;
    color: var(--dark-green);
    margin-bottom: 10px;
}

.job-info {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}

.job-salary,
.job-location {
    font-size: 13px;
    padding: 4px 12px;
    background: #fff;
    border-radius: 15px;
    border: 1px solid var(--border-color);
}

.job-salary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.job-desc {
    font-size: 14px;
    color: #555;
}

.contact-item {
    display: flex;
    gap: 15px;
    padding: 15px;
    background: #fafafa;
    border-radius: 8px;
    margin-bottom: 12px;
    align-items: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    flex-shrink: 0;
}

.contact-detail p {
    font-size: 14px;
    color: #444;
    margin-bottom: 3px;
}

.contact-detail p:last-child {
    margin-bottom: 0;
}

.sitemap-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.sitemap-section h3 {
    font-size: 16px;
    color: var(--dark-green);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border-color);
}

.sitemap-section ul {
    list-style: none;
    padding: 0;
}

.sitemap-section li {
    margin-bottom: 8px;
}

.sitemap-section a {
    font-size: 14px;
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.sitemap-section a:hover {
    color: var(--primary-green);
}

.verify-list {
    list-style: none;
    padding: 0;
}

.verify-list li {
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    font-size: 15px;
    color: #444;
}

.verify-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 18px;
    width: 6px;
    height: 6px;
    background: var(--primary-green);
    border-radius: 50%;
}

@media (max-width: 900px) {
    .about-layout {
        flex-direction: column;
    }
    
    .about-sidebar {
        width: 100%;
    }
    
    .sitemap-list {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-article .about-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .about-banner-top img {
        height: 150px;
    }
    
    .about-article {
        padding: 20px;
    }
    
    .about-page-title {
        padding: 0 20px;
    }
    
    .title-tag {
        padding: 10px 20px;
        font-size: 16px;
    }
    
    .sitemap-list {
        grid-template-columns: 1fr;
    }
}

/* Page Title */
.page-title {
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
    padding: 40px 20px;
    text-align: center;
}

.page-title h1 {
    font-size: 32px;
    color: var(--gold);
    margin-bottom: 10px;
}

.page-title p {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
}

/* Main Content */
.main-content,
.main-layout {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

/* Section */
.section {
    padding: 70px 20px;
    background: var(--bg-cream);
}

.section-new {
    background: var(--bg-white);
}

.section-zhenpin {
    background: var(--bg-cream);
}

.section-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
}

.section-header-center {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.section-eyebrow {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 6px;
    margin-bottom: 12px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.section-eyebrow-left {
    text-align: left;
}

.section-eyebrow-gold {
    color: var(--gold);
}

.section-title {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-dark);
    position: relative;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 2px;
}

.section-title-large {
    font-size: 32px;
}

.section-subtitle {
    font-size: 14px;
    color: var(--text-gray);
    margin-top: 8px;
    letter-spacing: 2px;
}

.section-more {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 14px;
    padding: 10px 24px;
    border: 1px solid var(--border-color);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 1px;
}

.section-more-elegant {
    border: none;
    border-bottom: 1px solid transparent;
    padding: 8px 0;
    background: transparent;
}

.section-more-elegant:hover {
    color: var(--primary-green);
    border-bottom-color: var(--gold);
}

.section-more-arrow {
    transition: transform 0.3s;
    font-size: 12px;
}

.section-more-elegant:hover .section-more-arrow {
    transform: translateX(5px);
}

.section-more-center {
    margin-top: 10px;
}

/* Banner */
.banner-section {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-green) 50%, var(--primary-green) 100%);
    padding: 80px 20px 100px;
    position: relative;
    overflow: hidden;
}

.banner-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(201, 169, 110, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(45, 122, 82, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.banner-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
    animation: bgPatternDrift 30s linear infinite;
}

@keyframes bgPatternDrift {
    0% { background-position: 0 0; }
    100% { background-position: 60px 60px; }
}

/* Banner Glow Effects */
.banner-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

.banner-glow-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.25) 0%, transparent 70%);
    top: -100px;
    right: 10%;
    animation: glowFloat1 8s ease-in-out infinite;
}

.banner-glow-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(45, 122, 82, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation: glowFloat2 10s ease-in-out infinite;
}

.banner-glow-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.15) 0%, transparent 70%);
    top: 40%;
    left: 40%;
    animation: glowFloat3 12s ease-in-out infinite;
}

@keyframes glowFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    50% { transform: translate(-30px, 40px) scale(1.15); opacity: 1; }
}

@keyframes glowFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(40px, -30px) scale(1.2); opacity: 0.9; }
}

@keyframes glowFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    33% { transform: translate(20px, -20px) scale(1.1); opacity: 0.7; }
    66% { transform: translate(-15px, 25px) scale(0.95); opacity: 0.6; }
}

/* Banner Particles */
.banner-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
    z-index: 1;
}

.particle {
    position: absolute;
    background: radial-gradient(circle, rgba(212, 188, 138, 0.9) 0%, rgba(201, 169, 110, 0.5) 40%, transparent 70%);
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(201, 169, 110, 0.6),
                0 0 20px rgba(201, 169, 110, 0.3);
}

.particle::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 30%;
    height: 30%;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
}

.particle-1 { width: 6px; height: 6px; top: 15%; left: 8%; animation: particleFloat1 15s ease-in-out infinite; }
.particle-2 { width: 8px; height: 8px; top: 25%; left: 20%; animation: particleFloat2 18s ease-in-out infinite; }
.particle-3 { width: 4px; height: 4px; top: 60%; left: 10%; animation: particleFloat3 12s ease-in-out infinite; }
.particle-4 { width: 10px; height: 10px; top: 75%; left: 25%; animation: particleFloat4 20s ease-in-out infinite; }
.particle-5 { width: 5px; height: 5px; top: 10%; left: 45%; animation: particleFloat5 16s ease-in-out infinite; }
.particle-6 { width: 7px; height: 7px; top: 45%; left: 35%; animation: particleFloat6 14s ease-in-out infinite; }
.particle-7 { width: 3px; height: 3px; top: 85%; left: 50%; animation: particleFloat7 11s ease-in-out infinite; }
.particle-8 { width: 9px; height: 9px; top: 20%; left: 65%; animation: particleFloat8 17s ease-in-out infinite; }
.particle-9 { width: 6px; height: 6px; top: 55%; left: 70%; animation: particleFloat9 19s ease-in-out infinite; }
.particle-10 { width: 5px; height: 5px; top: 70%; left: 85%; animation: particleFloat10 13s ease-in-out infinite; }
.particle-11 { width: 8px; height: 8px; top: 35%; left: 90%; animation: particleFloat11 21s ease-in-out infinite; }
.particle-12 { width: 4px; height: 4px; top: 80%; left: 75%; animation: particleFloat12 15s ease-in-out infinite; }
.particle-13 { width: 7px; height: 7px; top: 5%; left: 55%; animation: particleFloat13 16s ease-in-out infinite; }
.particle-14 { width: 5px; height: 5px; top: 50%; left: 3%; animation: particleFloat14 14s ease-in-out infinite; }
.particle-15 { width: 6px; height: 6px; top: 90%; left: 15%; animation: particleFloat15 18s ease-in-out infinite; }

@keyframes particleFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(30px, -40px) scale(1.2); opacity: 1; }
    50% { transform: translate(60px, 20px) scale(0.8); opacity: 0.7; }
    75% { transform: translate(20px, 50px) scale(1.1); opacity: 0.9; }
}

@keyframes particleFloat2 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(-40px, 30px) scale(0.9); opacity: 0.5; }
    66% { transform: translate(20px, 60px) scale(1.3); opacity: 1; }
}

@keyframes particleFloat3 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(50px, -30px) scale(1.4); opacity: 1; }
}

@keyframes particleFloat4 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(-20px, -50px) scale(0.7); opacity: 0.5; }
    50% { transform: translate(-60px, -20px) scale(1.2); opacity: 0.9; }
    75% { transform: translate(-30px, 30px) scale(1); opacity: 0.7; }
}

@keyframes particleFloat5 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(30px, 40px) scale(1.3); opacity: 1; }
}

@keyframes particleFloat6 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    30% { transform: translate(40px, -20px) scale(1.1); opacity: 0.9; }
    60% { transform: translate(-20px, -50px) scale(0.8); opacity: 0.5; }
}

@keyframes particleFloat7 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(-40px, -60px) scale(1.5); opacity: 1; }
}

@keyframes particleFloat8 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.8; }
    25% { transform: translate(-30px, 40px) scale(0.9); opacity: 0.6; }
    50% { transform: translate(-10px, 70px) scale(1.2); opacity: 0.9; }
    75% { transform: translate(30px, 30px) scale(0.7); opacity: 0.5; }
}

@keyframes particleFloat9 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    33% { transform: translate(-50px, -20px) scale(1.2); opacity: 0.8; }
    66% { transform: translate(-20px, 30px) scale(0.9); opacity: 0.7; }
}

@keyframes particleFloat10 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    50% { transform: translate(-60px, -40px) scale(1.1); opacity: 1; }
}

@keyframes particleFloat11 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    25% { transform: translate(-20px, 30px) scale(0.8); opacity: 0.4; }
    50% { transform: translate(-50px, 60px) scale(1.3); opacity: 0.9; }
    75% { transform: translate(-30px, 20px) scale(1); opacity: 0.7; }
}

@keyframes particleFloat12 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    50% { transform: translate(30px, -50px) scale(1.4); opacity: 1; }
}

@keyframes particleFloat13 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.7; }
    33% { transform: translate(20px, 30px) scale(1.1); opacity: 0.9; }
    66% { transform: translate(-10px, 50px) scale(0.9); opacity: 0.6; }
}

@keyframes particleFloat14 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.6; }
    50% { transform: translate(40px, 20px) scale(1.3); opacity: 1; }
}

@keyframes particleFloat15 {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.5; }
    25% { transform: translate(20px, -40px) scale(1.2); opacity: 0.8; }
    50% { transform: translate(50px, -20px) scale(0.8); opacity: 0.6; }
    75% { transform: translate(30px, -60px) scale(1.1); opacity: 0.9; }
}

.banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.banner-content {
    flex: 1;
    color: #fff;
    animation: fadeInLeft 1s ease-out;
}

.banner-eyebrow {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.banner-line {
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.banner-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.banner-eyebrow-text {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.banner-title {
    margin-bottom: 25px;
    line-height: 1.2;
}

.banner-title-main {
    display: block;
    font-size: 56px;
    font-weight: 700;
    color: var(--gold);
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 8px;
    margin-bottom: 10px;
    text-shadow: 0 2px 20px rgba(201, 169, 110, 0.3);
}

.banner-title-sub {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 8px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.banner-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    line-height: 2;
    font-weight: 300;
}

.banner-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
}

.banner-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 42px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 2px;
}

.banner-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
    color: var(--deep-green);
    box-shadow: 0 4px 20px rgba(201, 169, 110, 0.4);
}

.banner-btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.banner-btn-primary:hover::before {
    left: 100%;
}

.banner-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.5);
}

.banner-btn-arrow {
    transition: transform 0.3s;
}

.banner-btn-primary:hover .banner-btn-arrow {
    transform: translateX(5px);
}

.banner-btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
}

.banner-btn-secondary:hover {
    background: rgba(201, 169, 110, 0.1);
    transform: translateY(-3px);
}

.banner-stats {
    display: flex;
    align-items: center;
    gap: 30px;
}

.banner-stat {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.banner-stat-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--gold);
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    line-height: 1;
}

.banner-stat-label {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 1px;
}

.banner-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 169, 110, 0.3);
}

.banner-image-wrap {
    width: 480px;
    height: 560px;
    position: relative;
    flex-shrink: 0;
    animation: fadeInRight 1s ease-out 0.2s both;
}

.banner-image-frame {
    display: none;
}

.banner-image-frame::before,
.banner-image-frame::after {
    display: none;
}

.banner-image-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
}

.banner-image-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
}

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

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

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.05);
    transition: opacity 1s ease-in-out, transform 1.5s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-slide.banner-slide-active {
    opacity: 1;
    transform: scale(1);
}

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

.banner-slide-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.banner-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}

.banner-dot.banner-dot-active {
    background: var(--gold);
    width: 28px;
    border-radius: 4px;
}

.banner-image-decoration {
    position: absolute;
    pointer-events: none;
}

.banner-deco-1 {
    display: none;
}

.banner-deco-2 {
    display: none;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Service Bar */
.service-bar {
    background: var(--bg-white);
    padding: 30px 20px;
    border-bottom: 1px solid var(--border-color);
}

.footer .service-bar {
    border-bottom: none;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 35px 20px;
    background: transparent;
}

.service-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 15px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    border-radius: 2px;
    background: var(--bg-cream);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: 1px solid transparent;
    flex: 1;
    justify-content: center;
}

.service-item:hover {
    background: var(--primary-green);
    color: #fff;
    border-color: var(--gold);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.footer .service-item:hover {
    background: rgba(201, 169, 110, 0.1);
    border-color: var(--gold);
}

.service-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 16px;
    transition: all 0.3s;
    flex-shrink: 0;
}

.service-item:hover .service-icon {
    background: var(--gold);
    color: var(--dark-green);
    transform: scale(1.1);
}

.service-text {
    font-size: 14px;
    font-weight: 500;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 1px;
    white-space: nowrap;
}

.footer .service-item {
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.8);
}

.footer .service-icon {
    background: var(--gold);
    color: var(--dark-green);
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: var(--bg-white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 1px solid var(--border-color);
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.product-card:hover::before {
    transform: scaleX(1);
}

.product-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f5f2eb, #ebe8df);
    display: block;
}

.product-img-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(26, 92, 62, 0.1) 100%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
    transition: opacity 0.5s;
}

.product-card:hover .product-img-wrap::after {
    opacity: 1;
}

.product-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.product-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-green);
    padding: 6px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 3;
    letter-spacing: 1px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    box-shadow: 0 2px 10px rgba(201, 169, 110, 0.3);
}

.product-badge.award {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: #fff;
}

.product-info {
    padding: 22px 20px;
}

.product-title {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 500;
    transition: color 0.3s;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    min-height: 48px;
}

.product-title:hover {
    color: var(--primary-green);
}

.product-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.product-id {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.5px;
}

.product-date {
    font-size: 12px;
    color: var(--text-light);
}

.product-btn {
    display: inline-block;
    padding: 10px 25px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 8px;
    font-size: 13px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    width: 100%;
    text-align: center;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.product-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;
}

.product-btn:hover {
    background: var(--dark-green);
}

.product-btn:hover::before {
    left: 100%;
}

/* Award Section */
.award-section {
    background: linear-gradient(135deg, var(--deep-green) 0%, var(--dark-green) 50%, var(--primary-green) 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.award-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 10% 90%, rgba(201, 169, 110, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 90% 10%, rgba(45, 122, 82, 0.2) 0%, transparent 40%);
    pointer-events: none;
}

.award-bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a96e' fill-opacity='0.04'%3E%3Cpath d='M40 0l5 15-10 10 10 10-5 15-5-15 10-10-10-10 5-15zM0 40l15-5 10 10-10 10-15-5 15-5-10-10 10-10-15-5zm80 0l-15-5-10 10 10 10 15-5-15-5 10-10-10-10 15-5zM40 80l-5-15 10-10-10-10 5-15 5 15-10 10 10 10-5 15z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.5;
}

.award-inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.award-header {
    text-align: center;
    color: #fff;
    margin-bottom: 50px;
}

.award-title {
    font-size: 38px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 15px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 6px;
}

.award-subtitle {
    font-size: 15px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.award-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.award-deco-line {
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.award-deco-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.award-deco-diamond {
    color: var(--gold);
    font-size: 14px;
}

.award-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.award-card {
    background: rgba(255,255,255,0.05);
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(201, 169, 110, 0.2);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.award-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    transform: scaleX(0);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 2;
}

.award-card:hover {
    background: rgba(255,255,255,0.08);
    border-color: var(--gold);
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
}

.award-card:hover::before {
    transform: scaleX(1);
}

.award-card .product-img-wrap {
    background: rgba(0,0,0,0.2);
}

.award-card .product-info {
    color: #fff;
}

.award-card .product-title {
    color: #fff;
}

.award-card .product-id {
    color: rgba(255,255,255,0.5);
}

.award-card .product-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--dark-green);
    font-weight: 600;
}

.award-card .product-btn:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
}

/* News Section */
.news-section {
    background: var(--bg-white);
    padding: 80px 20px;
    position: relative;
}

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

.news-card {
    background: var(--bg-cream);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
    border: 1px solid var(--border-color);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    border-color: var(--gold);
}

.news-img {
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    position: relative;
}

.news-img::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 50%, rgba(13, 61, 40, 0.3) 100%);
    pointer-events: none;
}

.news-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.news-card:hover .news-img img {
    transform: scale(1.1);
}

.news-date {
    position: absolute;
    bottom: 15px;
    left: 15px;
    background: rgba(13, 61, 40, 0.9);
    color: var(--gold);
    padding: 6px 16px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 500;
    z-index: 2;
    letter-spacing: 1px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    backdrop-filter: blur(10px);
}

.news-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-green);
    padding: 5px 15px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    z-index: 2;
    letter-spacing: 1px;
}

.news-date-alt {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0,0,0,0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 12px;
    z-index: 2;
}

.news-content {
    padding: 25px;
}

.news-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.7;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    transition: color 0.3s;
    min-height: 58px;
}

.news-title:hover {
    color: var(--primary-green);
}

.news-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.9;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

.news-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
    font-size: 12px;
    color: var(--text-light);
}

/* News Tabs */
.news-tabs {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.news-tab {
    padding: 10px 25px;
    background: var(--bg-white);
    border-radius: 25px;
    font-size: 14px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

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

/* Sidebar */
.sidebar-section {
    margin-top: 40px;
}

.sidebar-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

/* Category Section */
.category-section {
    padding: 80px 20px;
    background: var(--bg-white);
    position: relative;
}

.category-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    position: relative;
    height: 380px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.category-img-wrap {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.category-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-25deg);
    transition: left 0.7s ease;
}

.category-card:hover .category-shine {
    left: 150%;
}

.category-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 22px 25px;
    background: linear-gradient(to top, rgba(13, 61, 40, 0.95) 0%, rgba(13, 61, 40, 0.6) 50%, transparent 100%);
    color: #fff;
    transform: translateY(15px);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.category-card:hover .category-overlay {
    transform: translateY(0);
}

.category-number {
    font-size: 13px;
    color: var(--gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.1s;
}

.category-card:hover .category-number {
    opacity: 1;
    transform: translateY(0);
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 10px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 3px;
}

.category-divider {
    width: 35px;
    height: 1px;
    background: var(--gold);
    margin-bottom: 12px;
    opacity: 0;
    transform: scaleX(0);
    transform-origin: left;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.2s;
}

.category-card:hover .category-divider {
    opacity: 1;
    transform: scaleX(1);
}

.category-desc {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 15px;
    font-weight: 300;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
    font-size: 12px;
    letter-spacing: 1.5px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) 0.3s;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
}

.category-card:hover .category-link {
    opacity: 1;
    transform: translateY(0);
}

.category-link-arrow {
    transition: transform 0.3s;
}

.category-card:hover .category-link-arrow {
    transform: translateX(5px);
}

/* Filter Bar */
.filter-bar {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.filter-group {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.filter-group:last-child {
    margin-bottom: 0;
}

.filter-label {
    font-size: 14px;
    color: var(--text-dark);
    font-weight: bold;
    min-width: 60px;
    margin-right: 15px;
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    flex: 1;
}

.filter-option {
    padding: 6px 15px;
    background: var(--bg-gray);
    border-radius: 15px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-option:hover,
.filter-option.active {
    background: var(--primary-green);
    color: #fff;
}

/* Filter Tabs */
.filter-tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.filter-tab {
    padding: 8px 20px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
}

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

/* Day List */
.day-list {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.day-list h3 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border-color);
}

.day-items {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.day-item {
    padding: 6px 15px;
    background: var(--bg-gray);
    border-radius: 15px;
    font-size: 13px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s;
}

.day-item:hover {
    background: var(--primary-green);
    color: #fff;
}

/* Featured */
.featured-section {
    margin-bottom: 60px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.featured-card {
    display: flex;
    flex-direction: column;
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
}

.featured-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.featured-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.featured-img {
    width: 100%;
    height: 400px;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a5c3e, #0d3d28);
    overflow: hidden;
}

.featured-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.featured-card:hover .featured-img img {
    transform: scale(1.05);
}

.featured-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.featured-title {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: bold;
    transition: color 0.3s;
}

.featured-card:hover .featured-title {
    color: var(--primary-green);
}

.featured-desc {
    font-size: 14px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.featured-meta {
    display: flex;
    align-items: center;
    margin-top: auto;
}

.featured-id {
    font-size: 13px;
    color: var(--text-light);
}

.featured-btn-wrap {
    padding: 0 30px 30px;
    text-align: center;
}

.featured-btn {
    display: inline-block;
    padding: 12px 40px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 25px;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.3s;
    text-decoration: none;
}

.featured-btn:hover {
    background: var(--dark-green);
}

/* Fan Tu */
.fantu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.fantu-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
    transition: all 0.3s;
}

.fantu-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.fantu-img-wrap {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f5f0, #e5ebe5);
}

.fantu-img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.fantu-card:hover .fantu-img-wrap img {
    transform: scale(1.05);
}

.fantu-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--dark-green);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
}

.fantu-info {
    padding: 20px;
}

.fantu-buyer {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: bold;
}

.fantu-buyer span {
    color: var(--gold);
    font-weight: normal;
}

.fantu-product {
    font-size: 13px;
    color: var(--text-gray);
    margin-bottom: 5px;
}

.fantu-id {
    font-size: 12px;
    color: var(--text-light);
}

/* Sold Badge */
.sold-badge {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sold-text {
    background: var(--gold);
    color: var(--dark-green);
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: bold;
}

/* Pricing */
.pricing-section {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.pricing-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.pricing-item {
    background: var(--bg-gray);
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s;
}

.pricing-item:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

.pricing-item:hover .pricing-name,
.pricing-item:hover .pricing-price {
    color: #fff;
}

.pricing-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.pricing-name {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: bold;
    transition: color 0.3s;
}

.pricing-price {
    font-size: 28px;
    color: var(--gold);
    font-weight: bold;
    transition: color 0.3s;
}

.pricing-unit {
    font-size: 14px;
    color: var(--text-light);
    font-weight: normal;
}

/* Notes */
.notes {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.notes h3 {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.notes ul {
    padding-left: 20px;
}

.notes li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.notes li::before {
    content: '·';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 20px;
}

/* CTA */
.cta-section {
    margin-top: 40px;
    text-align: center;
}

.cta-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--gold);
    color: var(--dark-green);
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.cta-btn:hover {
    opacity: 0.9;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(201,169,110,0.4);
}

.cta-phone {
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-gray);
}

.cta-phone span {
    color: var(--primary-green);
    font-weight: bold;
    font-size: 18px;
}

/* ==================== 私人定制页面 ==================== */

/* Hero Banner */
.dz-hero {
    position: relative;
    min-height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--deep-green), var(--dark-green), var(--primary-green));
    overflow: hidden;
}

.dz-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.15) 0%, transparent 60%),
                url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30Z' fill='%23ffffff' fill-opacity='0.02'/%3E%3C/svg%3E");
}

.dz-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    max-width: 800px;
}

.dz-hero-badge {
    display: inline-block;
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 20px;
    padding: 6px 20px;
    margin-bottom: 25px;
    opacity: 0.9;
}

.dz-hero-title {
    font-size: 42px;
    color: var(--gold);
    margin-bottom: 15px;
    font-weight: bold;
    letter-spacing: 2px;
}

.dz-hero-subtitle {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.dz-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
}

.dz-hero-stat-num {
    font-size: 36px;
    color: var(--gold);
    font-weight: bold;
    line-height: 1;
}

.dz-hero-stat-num span {
    font-size: 16px;
    margin-left: 2px;
}

.dz-hero-stat-label {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
    letter-spacing: 1px;
}

.dz-hero-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(201,169,110,0.3);
}

/* Section Header */
.dz-section-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 10px;
}

.dz-section-line {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.dz-section-line:last-child {
    background: linear-gradient(90deg, var(--gold), transparent);
}

.dz-section-title {
    font-size: 28px;
    color: var(--text-dark);
    font-weight: bold;
    white-space: nowrap;
}

.dz-section-desc {
    text-align: center;
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 40px;
}

/* 定制流程 */
.dz-process {
    padding: 60px 0;
}

.dz-process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
}

.dz-process-step {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 40px 25px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.dz-process-step:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}

.dz-process-num {
    font-size: 48px;
    color: var(--bg-gray);
    font-weight: bold;
    line-height: 1;
    margin-bottom: -15px;
    transition: color 0.3s;
}

.dz-process-step:hover .dz-process-num {
    color: rgba(201,169,110,0.2);
}

.dz-process-icon {
    font-size: 32px;
    margin-bottom: 15px;
    position: relative;
    z-index: 2;
}

.dz-process-name {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: bold;
}

.dz-process-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* 定制品类 */
.dz-category {
    padding: 60px 0;
}

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

.dz-category-card {
    background: var(--bg-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

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

.dz-category-img {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-green), var(--primary-green));
}

.dz-category-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

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

.dz-category-body {
    padding: 25px;
}

.dz-category-name {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-weight: bold;
}

.dz-category-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.dz-category-price {
    font-size: 24px;
    color: var(--gold);
    font-weight: bold;
}

.dz-category-price span {
    font-size: 13px;
    color: var(--text-light);
    font-weight: normal;
    margin-left: 4px;
}

/* 定制说明 */
.dz-pricing {
    padding: 60px 0;
}

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

.dz-notes-card {
    background: var(--bg-white);
    border-radius: 16px;
    padding: 35px 30px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s;
}

.dz-notes-card:hover {
    box-shadow: var(--shadow-md);
}

.dz-notes-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.dz-notes-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-weight: bold;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--bg-gray);
}

.dz-notes-list li {
    font-size: 14px;
    color: var(--text-gray);
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
}

.dz-notes-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 9px;
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
}

/* 案例展示 */
.dz-showcase {
    padding: 60px 0;
}

.dz-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.dz-showcase-item {
    position: relative;
    height: 280px;
    border-radius: 14px;
    overflow: hidden;
    cursor: pointer;
}

.dz-showcase-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.dz-showcase-item:hover img {
    transform: scale(1.1);
}

.dz-showcase-mask {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(13,61,40,0.9) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s;
}

.dz-showcase-item:hover .dz-showcase-mask {
    opacity: 1;
}

.dz-showcase-mask h3 {
    font-size: 18px;
    color: var(--gold);
    margin-bottom: 5px;
    font-weight: bold;
}

.dz-showcase-mask p {
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

/* 服务优势 */
.dz-advantage {
    padding: 60px 0;
}

.dz-advantage-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.dz-advantage-item {
    text-align: center;
    padding: 30px 20px;
    transition: all 0.3s;
}

.dz-advantage-item:hover {
    transform: translateY(-5px);
}

.dz-advantage-icon {
    width: 70px;
    height: 70px;
    line-height: 70px;
    margin: 0 auto 20px;
    font-size: 32px;
    background: linear-gradient(135deg, var(--bg-cream), var(--bg-gray));
    border-radius: 50%;
    transition: all 0.3s;
}

.dz-advantage-item:hover .dz-advantage-icon {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    box-shadow: 0 5px 20px rgba(26,92,62,0.3);
}

.dz-advantage-name {
    font-size: 17px;
    color: var(--text-dark);
    margin-bottom: 12px;
    font-weight: bold;
}

.dz-advantage-desc {
    font-size: 13px;
    color: var(--text-gray);
    line-height: 1.8;
}

/* CTA */
.dz-cta {
    margin-top: 40px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.dz-cta-bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--deep-green), var(--dark-green), var(--primary-green));
}

.dz-cta-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,169,110,0.12) 0%, transparent 70%);
}

.dz-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
}

.dz-cta-title {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 12px;
    font-weight: bold;
}

.dz-cta-text {
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 30px;
}

.dz-cta-btn {
    display: inline-block;
    padding: 15px 50px;
    background: var(--gold);
    color: var(--dark-green);
    border-radius: 30px;
    font-size: 16px;
    font-weight: bold;
    transition: all 0.3s;
}

.dz-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(201,169,110,0.5);
}

.dz-cta-phone {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255,255,255,0.7);
}

.dz-cta-phone span {
    color: var(--gold);
    font-weight: bold;
    font-size: 20px;
}

/* 响应式 */
@media (max-width: 1024px) {
    .dz-process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-notes-grid {
        grid-template-columns: 1fr;
    }
    .dz-showcase-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .dz-advantage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .dz-hero-title {
        font-size: 30px;
    }
    .dz-hero-stats {
        gap: 20px;
    }
    .dz-hero-stat-num {
        font-size: 28px;
    }
    .dz-process-grid,
    .dz-category-grid,
    .dz-showcase-grid,
    .dz-advantage-grid {
        grid-template-columns: 1fr;
    }
    .dz-section-title {
        font-size: 22px;
    }
    .dz-cta-title {
        font-size: 22px;
    }
}

/* Result Count */
.result-count {
    background: var(--bg-white);
    padding: 15px 20px;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
    font-size: 14px;
    color: var(--text-gray);
}

.result-count strong {
    color: var(--primary-green);
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.page-btn,
.pagination a,
.pagination p {
    min-width: 40px;
    height: 40px;
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border-color);
    background: var(--bg-white);
    color: var(--text-gray);
    border-radius: 50%;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s;
}

.pagination a {
    text-decoration: none;
}

.pagination p {
    min-width: auto;
    border-radius: 20px;
    padding: 0 14px;
}

.page-btn.page-prev,
.page-btn.page-next,
.pagination a:first-child,
.pagination a:last-child {
    border-radius: 4px;
    padding: 0 15px;
    min-width: auto;
}

.page-btn:hover,
.pagination a:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.page-btn.active,
.pagination a.cur {
    background: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.pagination .pageRemark {
    color: var(--text-gray);
    background: transparent;
    border-color: transparent;
}

.pagination .pageRemark b {
    color: var(--primary-green);
}

.empty-state,
.verify-result {
    margin-top: 24px;
    padding: 22px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    color: var(--text-gray);
    text-align: center;
}

.verify-box {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-top: 20px;
}

.verify-input {
    flex: 1;
    min-width: 0;
    height: 44px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 0 14px;
    font-size: 14px;
    outline: none;
}

.verify-input:focus {
    border-color: var(--primary-green);
}

.verify-button {
    width: auto;
    min-width: 150px;
}

.verify-ok {
    color: var(--primary-green);
}

.verify-error {
    color: #a80000;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, var(--dark-green) 0%, var(--deep-green) 100%);
    color: #fff;
    padding: 0;
    margin-top: 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 50px 20px 40px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    gap: 60px;
}

.footer-info {
    flex: 1.2;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 4px;
    overflow: hidden;
}

.footer-logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo-text {
    font-size: 26px;
    font-weight: 600;
    color: var(--gold);
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 3px;
}

.footer-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 2;
    max-width: 320px;
    font-weight: 300;
}

.footer-contact {
    margin-top: 25px;
    padding-top: 20px;
    border-top: 1px solid rgba(201, 169, 110, 0.2);
}

.footer-phone {
    font-size: 22px;
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 8px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    letter-spacing: 1px;
}

.footer-time {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

.footer-cols {
    display: flex;
    gap: 50px;
    flex: 2;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 16px;
    color: var(--gold);
    margin-bottom: 22px;
    font-weight: 600;
    letter-spacing: 2px;
    font-family: "Microsoft YaHei", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-col ul li {
    margin-bottom: 14px;
}

.footer-col ul a {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    transition: all 0.3s;
    font-weight: 300;
    position: relative;
    padding-left: 0;
}

.footer-col ul a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s;
}

.footer-col ul a:hover {
    color: var(--gold);
    padding-left: 18px;
}

.footer-col ul a:hover::before {
    width: 10px;
}

.footer-qrcodes {
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex-shrink: 0;
}

.footer-qrcode {
    text-align: center;
}

.qr-img {
    width: 100px;
    height: 100px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    margin: 0 auto 10px;
}

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

.qr-label {
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 1px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
    text-align: center;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 15px;
}

.footer-links a {
    color: rgba(255,255,255,0.5);
    transition: color 0.3s;
    font-size: 13px;
}

.footer-links a:hover {
    color: var(--gold);
}

/* Back to Top */
.back-to-top {
    position: fixed;
    right: 30px;
    bottom: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 99;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--dark-green);
    transform: translateY(-5px);
}

/* Product Detail Page */
.product-detail-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.product-detail-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-detail-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
}

.product-detail-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
}

.back-link {
    color: var(--primary-green);
    font-size: 14px;
}

.back-link:hover {
    color: var(--gold);
}

.product-detail-main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 0 20px;
}

/* ===== Product Detail Page ===== */
.breadcrumb {
    max-width: 1200px;
    margin: 0 auto;
    font-size: 13px;
    color: #888;
    padding: 12px 20px;
    line-height: 1.6;
    border-bottom: 1px solid #f0ebe3;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.2s ease;
}

.breadcrumb a:hover {
    color: #a80000;
}

.breadcrumb .current {
    color: #43250e;
    font-weight: 500;
}

.detail-main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* 商品主展示区 */
.detail-showcase {
    display: flex;
    align-items: flex-start;
    border: 1px solid #eee;
    box-sizing: border-box;
    padding: 14px;
    margin-top: 20px;
}

.detail-showcase-left {
    width: 450px;
    flex-shrink: 0;
}

.detail-main-img {
    width: 450px;
    height: 450px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.detail-main-img img {
    max-width: 450px;
    max-height: 450px;
}

.detail-thumbnails {
    display: flex;
    align-items: center;
    margin-top: 15px;
    position: relative;
}

.detail-thumb-btn {
    width: 22px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
    font-size: 18px;
    user-select: none;
}

.detail-thumb-btn:hover {
    color: #a80000;
}

.detail-thumb-list {
    display: flex;
    gap: 10px;
    width: 390px;
    margin: 0 auto;
    overflow: hidden;
    justify-content: center;
}

.detail-thumb-item {
    flex-shrink: 0;
    border: 2px solid #a9a9a9;
    cursor: pointer;
    transition: border-color 0.2s;
}

.detail-thumb-item.active {
    border-color: #a80000;
}

.detail-thumb-item img {
    width: 54px;
    height: 54px;
    display: block;
}

.detail-showcase-right {
    flex: 1;
    margin-left: 45px;
}

.detail-pro-title {
    font-size: 24px;
    color: #000;
    line-height: 40px;
    margin-top: 15px;
    font-weight: normal;
}

.detail-pro-no {
    font-size: 18px;
    color: #a80000;
    line-height: 40px;
    margin: 0;
}

.detail-pro-attr {
    display: flex;
    flex-wrap: wrap;
    margin-top: 50px;
    font-size: 14px;
    color: #171717;
    background: #f5f5f5;
    line-height: 30px;
    padding: 15px 20px;
}

.detail-pro-attr span {
    width: 30%;
}

.detail-pro-attr span:nth-child(3n+3) {
    width: 40%;
}

.detail-pro-action {
    display: flex;
    flex-direction: column;
    margin-top: 50px;
}

.detail-xj-btn {
    display: inline-block;
    background: #a80000;
    width: 185px;
    height: 60px;
    color: #fff;
    line-height: 60px;
    padding-left: 48px;
    font-size: 22px;
    text-decoration: none;
    box-sizing: border-box;
    transition: text-shadow 0.2s;
}

.detail-xj-btn:hover {
    text-shadow: 0 0 0.2em #f87;
    color: #fff;
}

.detail-service {
    height: 24px;
    color: #666;
    margin-top: 20px;
    line-height: 24px;
}

.detail-service-label {
    margin-right: 5px;
}

.detail-service-tag {
    padding: 3px 5px;
    border: 1px solid #ddd;
    color: #999;
    margin-right: 5px;
    font-size: 12px;
}

/* 商品详情区 */
.detail-info {
    border: 1px solid #eee;
    box-sizing: border-box;
    margin-top: 30px;
}

.detail-info-tit {
    border-bottom: 4px solid #a80000;
    color: #a80000;
    height: 55px;
    text-align: center;
    line-height: 55px;
    font-size: 18px;
}

.detail-info-params {
    display: flex;
    padding: 40px 39px;
    align-items: flex-start;
}

.detail-params-left {
    width: 520px;
    flex-shrink: 0;
}

.detail-params-subtitle {
    font-size: 16px;
    color: #333;
    font-weight: bold;
    margin-bottom: 15px;
}

.detail-param-row {
    color: #000;
    line-height: 24px;
    padding: 8px 0;
    border-bottom: 1px dashed #d8d8d8;
}

.detail-param-label {
    color: #666;
}

.detail-param-value {
    color: #333;
}

.detail-params-right {
    width: 520px;
    margin-left: 40px;
    background: #e6f3f7;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.detail-params-right img {
    max-width: 100%;
    transition: transform 0.3s;
}

.detail-params-right img:hover {
    transform: scale(1.05);
}

.detail-photos-section {
    padding: 0 39px;
}

.detail-photos-title {
    border-bottom: 1px solid #eee;
    height: 46px;
    line-height: 46px;
    padding-top: 20px;
    font-size: 20px;
    color: #a80000;
    display: flex;
    align-items: center;
}

.detail-photos-bar {
    width: 3px;
    height: 19px;
    background: #a80000;
    margin-right: 15px;
    display: inline-block;
}

.detail-photos-en {
    font-size: 14px;
    color: #646464;
    margin-left: 10px;
}

.detail-photos-list {
    padding-top: 40px;
    padding-bottom: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.detail-photos-list img {
    max-width: 1120px;
    margin-bottom: 20px;
}

/* 商品推荐 */
.detail-recommend {
    margin-top: 30px;
}

.detail-recommend-tit {
    height: 20px;
    line-height: 17px;
    border-left: 4px solid #a80000;
    margin: 30px 0 15px 0;
    padding-left: 12px;
}

.detail-recommend-tit h3 {
    font-size: 20px;
    font-weight: normal;
    color: #333;
    margin: 0;
}

.detail-recommend-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

/* News Detail Page */
.news-detail-header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    padding: 15px 0;
}

.news-detail-header-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.news-detail-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-green);
}

.news-detail-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 22px;
    font-weight: bold;
}

.news-detail-main {
    max-width: 800px;
    margin: 40px auto;
    padding: 0 20px;
}

.article-card {
    background: var(--bg-white);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0,0,0,0.1);
}

.article-meta {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border-color);
}

.article-title {
    font-size: 24px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.article-content {
    font-size: 15px;
    color: var(--text-gray);
    line-height: 2;
}

.article-content p {
    margin-bottom: 15px;
}

.article-tag {
    display: inline-block;
    padding: 5px 15px;
    background: var(--primary-green);
    color: #fff;
    border-radius: 15px;
    font-size: 12px;
    margin-right: 15px;
}

.related-products {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
}

.related-title {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.related-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.related-item {
    padding: 10px 20px;
    background: var(--bg-gray);
    border-radius: 20px;
    font-size: 13px;
    color: var(--text-gray);
    transition: all 0.3s;
}

.related-item:hover {
    background: var(--primary-green);
    color: #fff;
}

.news-detail-footer {
    background: var(--dark-green);
    color: #fff;
    padding: 40px 20px;
    margin-top: 50px;
    text-align: center;
}

.news-detail-footer-logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 15px;
}

.news-detail-footer-phone {
    font-size: 20px;
    font-weight: bold;
    color: var(--gold);
    margin-bottom: 10px;
}

.news-detail-footer-copy {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
}

/* Responsive */
@media (max-width: 1024px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .award-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-card {
        height: 360px;
    }
    .news-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .fantu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .banner-image-wrap {
        width: 380px;
        height: 450px;
    }
    .banner-title-main {
        font-size: 44px;
    }
    .banner-stats {
        gap: 20px;
    }
    .banner-stat-num {
        font-size: 26px;
    }
    .nav-item a {
        padding: 14px 24px;
        font-size: 14px;
    }
    .footer-main {
        flex-wrap: wrap;
        gap: 40px;
    }
    .footer-info {
        flex: 1 1 100%;
    }
    .footer-cols {
        flex: 2;
    }
    .footer-qrcodes {
        flex-direction: row;
        flex: 1 1 100%;
        justify-content: flex-start;
    }
}

@media (max-width: 900px) {
    .featured-section {
        grid-template-columns: 1fr;
    }
    .featured-img {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .header-main {
        flex-direction: column;
        gap: 15px;
        position: static;
    }
    .search-box {
        position: relative;
        left: auto;
        transform: none;
        max-width: 100%;
        width: 100%;
        margin: 0;
    }
    .nav-list {
        flex-wrap: wrap;
        justify-content: center;
        gap: 0;
    }
    .nav-item a {
        padding: 12px 20px;
        font-size: 14px;
    }
    .nav {
        top: 0;
        z-index: 1000;
    }
    .banner-section {
        padding: 50px 20px 60px;
    }
    .banner-inner {
        flex-direction: column-reverse;
        text-align: center;
        gap: 40px;
    }
    .banner-image-wrap {
        width: 100%;
        max-width: 380px;
        height: 420px;
    }
    .banner-eyebrow {
        justify-content: center;
    }
    .banner-title-main {
        font-size: 38px;
        letter-spacing: 4px;
    }
    .banner-title-sub {
        letter-spacing: 4px;
    }
    .banner-actions {
        justify-content: center;
        flex-wrap: wrap;
    }
    .banner-stats {
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
    }
    .banner-stat-divider {
        display: none;
    }
    .section-title-large {
        font-size: 26px;
    }
    .product-grid,
    .award-grid,
    .category-grid,
    .news-grid,
    .fantu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .category-card {
        height: 340px;
    }
    .category-title {
        font-size: 22px;
    }
    .service-inner {
        flex-wrap: wrap;
        justify-content: center;
    }
    .service-item {
        flex: 0 0 calc(50% - 10px);
    }
    .footer-main {
        flex-direction: column;
        gap: 35px;
        text-align: center;
    }
    .footer-cols {
        flex-direction: column;
        gap: 30px;
    }
    .footer-col h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-qrcodes {
        justify-content: center;
        flex-direction: row;
    }
    .footer-desc {
        max-width: 100%;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    .section-header-center {
        align-items: center;
    }
    .filter-group {
        flex-direction: column;
        align-items: flex-start;
    }
    .pagination {
        flex-wrap: wrap;
        gap: 6px;
    }
    .page-btn {
        min-width: 36px;
        height: 36px;
        font-size: 13px;
    }
    .article-card {
        padding: 25px;
        border-radius: 12px;
    }
    .filter-label {
        margin-bottom: 8px;
    }
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .detail-showcase {
        flex-direction: column;
    }
    .detail-showcase-left {
        width: 100%;
    }
    .detail-main-img {
        width: 100%;
        height: auto;
        min-height: 300px;
    }
    .detail-main-img img {
        max-width: 100%;
        max-height: 400px;
    }
    .detail-thumb-list {
        width: 100%;
    }
    .detail-showcase-right {
        margin-left: 0;
        margin-top: 20px;
    }
    .detail-pro-title {
        font-size: 20px;
        line-height: 1.4;
    }
    .detail-pro-attr {
        margin-top: 20px;
    }
    .detail-pro-attr span {
        width: 50%;
    }
    .detail-pro-attr span:nth-child(3n+3) {
        width: 50%;
    }
    .detail-info-params {
        flex-direction: column;
        padding: 20px;
    }
    .detail-params-left,
    .detail-params-right {
        width: 100%;
        margin-left: 0;
    }
    .detail-params-right {
        margin-top: 20px;
    }
    .detail-photos-section {
        padding: 0 20px;
    }
    .detail-photos-list img {
        max-width: 100%;
    }
    .detail-recommend-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .product-grid,
    .award-grid,
    .category-grid,
    .news-grid,
    .fantu-grid {
        grid-template-columns: 1fr;
    }
    .banner-title-main {
        font-size: 28px;
        letter-spacing: 2px;
    }
    .banner-title-sub {
        font-size: 13px;
        letter-spacing: 2px;
    }
    .banner-subtitle {
        font-size: 13px;
    }
    .banner-btn {
        padding: 12px 24px;
        font-size: 13px;
    }
    .banner-image-wrap {
        height: 320px;
    }
    .section-title {
        font-size: 20px;
    }
    .section-title-large {
        font-size: 22px;
    }
    .section-eyebrow {
        font-size: 11px;
        letter-spacing: 3px;
    }
    .service-item {
        flex: 0 0 100%;
    }
    .category-card {
        height: 320px;
    }
    .category-title {
        font-size: 20px;
    }
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .nav-item a {
        padding: 10px 14px;
        font-size: 13px;
    }
    .logo-text {
        font-size: 20px;
    }
    .header-main {
        padding: 12px 15px;
    }
    .about-article {
        padding: 20px 15px;
    }
    .about-page-title {
        padding: 0 15px;
    }
    .title-tag {
        padding: 10px 20px;
        font-size: 16px;
    }
    .detail-pro-attr span,
    .detail-pro-attr span:nth-child(3n+3) {
        width: 100%;
    }
    .detail-recommend-list {
        grid-template-columns: 1fr;
    }
    .detail-xj-btn {
        width: 100%;
        padding-left: 0;
        text-align: center;
    }
    .detail-pro-title {
        font-size: 18px;
    }
}

.main-layout {
    max-width: 1200px !important;
    margin: 40px auto !important;
    padding: 0 20px !important;
}

/* Scroll Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: opacity, transform;
}

.fade-in-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold);
}

/* Selection */
::selection {
    background: var(--primary-green);
    color: var(--gold);
}

/* Inquiry Modal */
.inquiry-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.inquiry-modal.show {
    display: flex;
}

.inquiry-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.inquiry-modal-box {
    position: relative;
    width: 560px;
    max-width: 90%;
    background: #fff;
    border-radius: 4px;
    padding: 35px 40px 40px;
    box-sizing: border-box;
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.inquiry-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: #999;
    cursor: pointer;
    line-height: 1;
    padding: 5px;
}

.inquiry-modal-close:hover {
    color: #333;
}

.inquiry-modal-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.inquiry-modal-header h2 {
    font-size: 28px;
    color: #222;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 12px;
}

.inquiry-modal-sub {
    font-size: 16px;
    color: #a63029;
    font-weight: normal;
}

.inquiry-modal-product {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.inquiry-modal-label {
    flex-shrink: 0;
    width: 70px;
    padding: 15px 10px;
    background: #f5f5f5;
    color: #666;
    font-size: 15px;
    text-align: center;
    line-height: 1.6;
}

.inquiry-modal-product-info {
    flex: 1;
    padding-top: 8px;
}

.inquiry-modal-product-title {
    font-size: 18px;
    color: #222;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 10px;
}

.inquiry-modal-product-id {
    font-size: 16px;
    color: #999;
}

.inquiry-modal-form {
    margin-top: 25px;
}

.inquiry-form-row {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.inquiry-form-label {
    flex-shrink: 0;
    width: 80px;
    font-size: 16px;
    color: #222;
    text-align: right;
}

.inquiry-form-input {
    flex: 1;
    height: 50px;
    padding: 0 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    color: #333;
    background: #f5f5f5;
    box-sizing: border-box;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.inquiry-form-input:focus {
    border-color: #a63029;
    background: #fff;
}

.inquiry-form-submit {
    width: 100%;
    height: 55px;
    background: #a63029;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: 4px;
    box-shadow: 0 3px 0 #7a241e;
    transition: all 0.2s;
    font-family: inherit;
}

.inquiry-form-submit:hover {
    background: #8f2923;
    transform: translateY(1px);
    box-shadow: 0 2px 0 #7a241e;
}

.inquiry-form-submit:active {
    transform: translateY(3px);
    box-shadow: 0 0 0 #7a241e;
}

@media (max-width: 640px) {
    .inquiry-modal-box {
        padding: 25px 20px 30px;
    }

    .inquiry-modal-header h2 {
        font-size: 22px;
    }

    .inquiry-modal-sub {
        font-size: 14px;
    }

    .inquiry-modal-label {
        width: 60px;
        padding: 10px 8px;
        font-size: 13px;
    }

    .inquiry-modal-product-title {
        font-size: 15px;
    }

    .inquiry-modal-product-id {
        font-size: 14px;
    }

    .inquiry-form-label {
        width: 70px;
        font-size: 14px;
    }

    .inquiry-form-input {
        height: 44px;
        font-size: 14px;
    }

    .inquiry-form-submit {
        height: 48px;
        font-size: 16px;
    }
}

/* ========== 新品上新页 ========== */
.xinpin-banner {
    background: #3a1f14;
    background-image:
        linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.6) 100%),
        url('/images/image_6.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 25px;
}

.xinpin-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(26,15,10,0.85) 0%, rgba(26,15,10,0.7) 100%);
    pointer-events: none;
}

.xinpin-banner-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 35px 20px 30px;
    position: relative;
    z-index: 1;
}

/* 月份选择 */
.xinpin-months {
    display: flex;
    gap: 14px;
    margin-bottom: 35px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.xinpin-month {
    padding: 8px 22px;
    border: 1px solid rgba(255,255,255,0.6);
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    background: rgba(0,0,0,0.2);
}

.xinpin-month:hover,
.xinpin-month.active {
    border-color: #d4af37;
    color: #d4af37;
    background: rgba(212,175,55,0.1);
}

.xinpin-month-view-all {
    padding: 8px 22px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    margin-left: 10px;
    transition: all 0.3s;
    white-space: nowrap;
    background: rgba(0,0,0,0.2);
}

.xinpin-month-view-all:hover {
    background: #d4af37;
    border-color: #d4af37;
    color: #1a0f0a;
}

/* 时间轴 */
.xinpin-timeline {
    position: relative;
    padding-top: 7px;
    padding-bottom: 50px;
}

.xinpin-timeline-line {
    position: absolute;
    top: 14px;
    left: 0;
    right: 0;
    height: 0;
    border-top: 1px dashed rgba(245,245,245,0.6);
}

.xinpin-timeline-items {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    position: relative;
    gap: 0;
}

.xinpin-timeline-item {
    position: relative;
    cursor: pointer;
    flex: 1;
    text-align: center;
}

.xinpin-timeline-dot {
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #f5f5f5;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    font-style: normal;
}

.xinpin-timeline-dot.active {
    background: #d4af37;
}

.xinpin-timeline-link {
    display: block;
    color: #fff;
    text-align: center;
    padding-top: 25px;
    text-decoration: none;
    transition: padding-top 0.3s ease;
}

.xinpin-timeline-date {
    color: #fff;
    font-size: 14px;
    line-height: 1;
    padding: 18px 0;
    display: inline-block;
    transition: all 0.3s ease;
}

.xinpin-timeline-count {
    color: #fff;
    font-size: 14px;
    line-height: 50px;
    margin: 0;
    transition: all 0.3s ease;
}

.xinpin-timeline-item:hover .xinpin-timeline-link,
.xinpin-timeline-link.active {
    padding-top: 0;
    margin-top: -27px;
}

.xinpin-timeline-item:hover .xinpin-timeline-date,
.xinpin-timeline-link.active .xinpin-timeline-date {
    width: 68px;
    height: 68px;
    line-height: 64px;
    padding: 0;
    border: 2px solid #f5f5f5;
    background: #a80000;
    border-radius: 50%;
    text-align: center;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}

/* 区块标题 */
.xinpin-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    margin-top: 25px;
}

.xinpin-title-bar {
    width: 3px;
    height: 22px;
    background: #a63029;
}

.xinpin-section-title h2 {
    font-size: 20px;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.xinpin-divider {
    height: 10px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='10' viewBox='0 0 20 10'%3E%3Cpath d='M0 5h5l2.5-5 2.5 5 2.5 5 2.5-5 2.5 5 2.5-5h2.5' fill='none' stroke='%23d4af37' stroke-width='0.5' opacity='0.5'/%3E%3C/svg%3E");
    background-repeat: repeat-x;
    margin-bottom: 20px;
    opacity: 0.6;
}

/* 新品产品卡片 - 5列 */
.product-grid.xinpin-product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.xinpin-product-grid .product-card {
    border: 1px solid #eee;
    border-radius: 0;
    transition: all 0.3s;
    margin: 0;
}

.xinpin-product-grid .product-card:hover {
    border-color: #d4af37;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transform: translateY(-2px);
}

.xinpin-product-grid .product-img-wrap {
    border-radius: 0;
    aspect-ratio: 1;
}

.xinpin-date-tag {
    position: absolute;
    top: 0;
    right: 0;
    background: #a63029;
    color: #fff;
    padding: 5px 12px;
    font-size: 12px;
    z-index: 2;
}

.xinpin-product-grid .product-info {
    padding: 10px 12px 12px;
}

.xinpin-product-grid .product-title {
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 8px;
    height: 39px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.xinpin-product-grid .product-meta {
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 5px;
}

.xinpin-product-grid .product-id {
    font-size: 12px;
}

.xinpin-product-grid .product-btn {
    padding: 8px 15px;
    font-size: 12px;
    letter-spacing: 1px;
}

/* 响应式 */
@media (max-width: 1100px) {
    .product-grid.xinpin-product-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .xinpin-months {
        justify-content: center;
    }

    .xinpin-month-view-all {
        margin-left: 0;
    }

    .xinpin-timeline-items {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 10px;
    }

    .xinpin-timeline-item {
        flex-shrink: 0;
        flex: none;
        width: 100px;
    }

    .product-grid.xinpin-product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .xinpin-banner-inner {
        padding: 25px 15px 20px;
    }

    .xinpin-month {
        padding: 6px 14px;
        font-size: 13px;
    }

    .xinpin-month-view-all {
        padding: 6px 14px;
        font-size: 13px;
    }

    .xinpin-timeline-item {
        width: 80px;
    }

    .xinpin-timeline-date {
        font-size: 12px;
    }

    .xinpin-timeline-count {
        font-size: 12px;
    }

    .xinpin-timeline-item:hover .xinpin-timeline-date,
    .xinpin-timeline-link.active .xinpin-timeline-date {
        width: 56px;
        height: 56px;
        line-height: 52px;
        font-size: 12px;
    }

    .xinpin-date-tag {
        padding: 4px 10px;
        font-size: 11px;
    }

    .product-grid.xinpin-product-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .xinpin-product-grid .product-title {
        font-size: 12px;
        height: 36px;
    }

    .xinpin-product-grid .product-btn {
        padding: 7px 10px;
        font-size: 11px;
    }
}
