﻿        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Microsoft YaHei', '微软雅黑', Arial, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }

        /* 合并背景区域 - 包含顶部导航和轮播图 */
        .hero-section {
            /* 艺术化背景 - 多层渐变 + 图案 */
            background:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.2) 0%, transparent 40%),
                radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.15) 0%, transparent 60%),
                linear-gradient(135deg, #ffddc4 0%, #ffe4cc 30%, #ffd9b8 70%, #ffcc99 100%);
            position: relative;
            min-height: 800px;
            padding-top: 140px;
            padding-bottom: 100px;
            overflow: visible;
        }

        /* 背景装饰图案 - 糖晶效果 */
        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 10% 20%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
                radial-gradient(circle at 90% 80%, rgba(255, 255, 255, 0.4) 1px, transparent 1px),
                radial-gradient(circle at 30% 70%, rgba(255, 255, 255, 0.3) 1px, transparent 1px),
                radial-gradient(circle at 70% 30%, rgba(255, 255, 255, 0.3) 1px, transparent 1px);
            background-size: 60px 60px, 50px 50px, 70px 70px, 45px 45px;
            pointer-events: none;
            animation: sparkle 8s ease-in-out infinite;
        }

        @keyframes sparkle {
            0%, 100% {
                opacity: 0.5;
            }
            50% {
                opacity: 1;
            }
        }

        /* 背景装饰 - 渐变光晕 */
        .hero-section::after {
            content: '';
            position: absolute;
            top: -100px;
            right: -100px;
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            border-radius: 50%;
            animation: floatGlow 6s ease-in-out infinite;
        }

        @keyframes floatGlow {
            0%, 100% {
                transform: translate(0, 0) scale(1);
            }
            50% {
                transform: translate(-20px, 20px) scale(1.1);
            }
        }

        /* 底部波浪装饰 - 修改后的200px高度 */
        .wave-container {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            width: 100%;
            height: 150px;
            z-index: 2;
            overflow: hidden;
        }

        .wave-container svg {
            width: 100%;
            height: 100%;
            display: block;
        }

        /* 顶部导航容器 */
        .top-bar {
            display: flex;
            justify-content: center;
            align-items: center;
            background: linear-gradient(135deg, #ffddc4 0%, #ffe4cc 30%, #ffd9b8 70%, #ffcc99 100%);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            z-index: 1000;
            min-height: 200px;
            box-shadow: 0 4px 20px rgba(255, 221, 196, 0.4);
            backdrop-filter: blur(10px);
            padding: 0;
        }

        /* 内容包装器 */
        .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 50px 35px 50px;
            width: 85%;
            max-width: 1400px;
        }

        .logo,
        .nav-menu,
        .search-box {
            margin: 0;
        }

        /* 移动端菜单按钮特殊处理 */
        .mobile-menu-btn {
            position: absolute;
            top: 15px;
            right: 18px;
        }

        /* ========== 内页通用顶部导航样式 (pctop1.asp 专用) ========== */
        .page-top-wrapper {
            background: linear-gradient(135deg, #ffddc4 0%, #ffe4cc 30%, #ffd9b8 70%, #ffcc99 100%);
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            width: 100%;
            min-height: 200px;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(255, 221, 196, 0.4);
            backdrop-filter: blur(10px);
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .page-top-wrapper .top-bar {
            background: transparent;
            position: relative;
            top: auto;
            left: auto;
            right: auto;
            z-index: auto;
            width: 100%;
            display: flex;
            justify-content: center;
            align-items: center;
            padding: 0;
        }

        .page-top-wrapper .top-bar-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 25px 50px 35px 50px;
            width: 85%;
            max-width: 1400px;
        }

        /* 内页移动端顶部样式 */
        @media (max-width: 768px) {
            .page-top-wrapper {
                min-height: 100px;
            }

            .page-top-wrapper .top-bar-content {
                padding: 15px 20px;
                width: 100%;
            }

            .page-top-wrapper .mobile-menu-btn {
                position: absolute;
                top: 15px;
                right: 18px;
            }

            /* 内页联系信息模块移动端 */
            .contact-info-box {
                gap: 8px;
            }

            .contact-phone {
                padding: 5px 10px;
            }

            .contact-phone i {
                font-size: 13px;
            }

            .contact-label {
                font-size: 9px;
            }

            .contact-number {
                font-size: 11px;
            }

            .contact-wechat {
                padding: 5px 8px;
            }

            .contact-wechat i {
                font-size: 13px;
            }

            /* 内页品牌标语模块移动端 */
            .brand-slogan-box {
                margin-top: 20px;
            }

            .brand-slogan-main {
                font-size: 14px;
                letter-spacing: 3px;
            }

            .brand-slogan-sub {
                font-size: 10px;
                letter-spacing: 2px;
            }

            /* 内页双品牌展示模块移动端 */
            .dual-brand-box {
                gap: 6px;
            }

            .brand-item {
                padding: 5px 8px;
            }

            .brand-icon {
                width: 24px;
                height: 24px;
            }

            .brand-icon i {
                font-size: 11px;
            }

            .brand-name {
                font-size: 11px;
            }

            .brand-tag {
                font-size: 8px;
            }

            /* 内页统一双品牌口号模块移动端 - 隐藏 */
            .unified-slogan-box {
                display: none;
            }
        }

        /* ========== 内页通用顶部导航样式结束 ========== */

        /* Logo - 左栏 */
        .logo {
            display: flex;
            flex-direction: row;
            align-items: center;
            padding: 10px 20px;
            background: transparent;
            border-radius: 25px;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.12);
            transition: all 0.3s ease;
            position: relative;
            min-width: 200px;
            gap: 15px;
        }

        .logo-avatar {
            width: 90px;
            height: 90px;
            border-radius: 50%;
            overflow: hidden;
            border: 1px solid #c41e3a;
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
            margin-bottom: 0;
            position: relative;
            flex-shrink: 0;
        }

        .logo-avatar img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .logo-content {
            text-align: left;
        }

        .logo-title {
            font-size: 26px;
            font-weight: bold;
            color: #c41e3a;
            letter-spacing: 4px;
            margin-bottom: 8px;
            line-height: 1;
        }

        .logo-line {
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c41e3a, transparent);
            margin: 8px 0;
        }

        .logo-subtitle {
            font-size: 12px;
            color: #8b4513;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 8px;
        }

        .logo:hover {
            transform: translateY(-3px);
            box-shadow:
                0 10px 25px rgba(196, 30, 58, 0.25),
                inset 0 -3px 8px rgba(196, 30, 58, 0.08),
                inset 0 3px 8px rgba(255, 255, 255, 0.4);
        }

        .logo-content {
            text-align: center;
            position: relative;
            z-index: 1;
        }

        .logo-title {
            font-size: 32px;
            font-weight: bold;
            color: #c41e3a;
            letter-spacing: 4px;
            margin-bottom: 5px;
            line-height: 1;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.5);
        }

        .logo-line {
            width: 70%;
            height: 2px;
            background: linear-gradient(90deg, transparent, #c41e3a, transparent);
            margin: 8px auto;
        }

        .logo-subtitle {
            font-size: 13px;
            color: #8b4513;
            font-weight: 600;
            letter-spacing: 1px;
            margin-top: 5px;
            text-shadow: 0 1px 1px rgba(255, 255, 255, 0.5);
        }

        /* 菜单 - 中栏 */
        .nav-menu {
            display: flex;
            gap: 3px;
            align-items: center;
            padding-top: 20px;
            padding-left: 40px;
            padding-right: 40px;
            flex: 1;
        }

        .nav-menu a {
            text-decoration: none;
            color: #8f120d;
            font-size: 16px;
            font-weight: 500;
            position: relative;
            padding: 8px 5px;
            transition: all 0.3s ease;
            white-space: nowrap;
            flex: 1;
            text-align: center;
        }

        .nav-menu a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: #c41e3a;
            transition: width 0.3s ease;
        }

        .nav-menu a i {
            display: none;
        }

        .nav-menu a:hover {
            color: #c41e3a;
        }

        /* 菜单项激活状态 */
        .nav-menu a.active {
            color: #c41e3a;
        }

        .nav-menu a.active::after {
            width: 100%;
        }

        .nav-menu a:hover::after {
            width: 100%;
        }

        .mobile-menu-btn {
            display: none;
            font-size: 28px;
            color: #5d4037;
            cursor: pointer;
        }

        /* 搜索框 - 右栏 */
        .search-box {
            display: flex;
            align-items: center;
            background: transparent;
            border: none;
            border-bottom: 2px solid #c41e3a;
            padding: 8px 0;
            width: 126px;
            margin-top: 30px;
            gap: 8px;
            box-sizing: border-box;
        }

        .search-box input {
            border: none;
            outline: none;
            flex: 1;
            font-size: 14px;
            color: #c47a78;
            background: transparent;
            min-width: 0;
            padding-left: 16px;
        }

        .search-box input::placeholder {
            color: #c47a78;
        }

        .search-box button {
            background: #c41e3a;
            border: none;
            color: #fff;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            cursor: pointer;
            font-size: 12px;
            transition: all 0.3s ease;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            line-height: 1;
        }

        .search-box button:hover {
            background: #8b0000;
            transform: scale(1.1);
        }

        /* ========== 联系信息模块 (pctop方案1.asp 专用) ========== */
        .contact-info-box {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 30px;
        }

        .contact-phone {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border-radius: 20px;
            border: 1px solid #c41e3a;
        }

        .contact-phone i {
            color: #c41e3a;
            font-size: 18px;
        }

        .contact-phone-content {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .contact-label {
            font-size: 11px;
            color: #c47a78;
            line-height: 1;
        }

        .contact-number {
            font-size: 14px;
            color: #c41e3a;
            font-weight: 600;
            margin-top: 2px;
        }

        .contact-wechat {
            display: flex;
            align-items: center;
            gap: 6px;
            padding: 8px 14px;
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border-radius: 20px;
            border: 1px solid #22c55e;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .contact-wechat:hover {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            transform: translateY(-2px);
        }

        .contact-wechat i {
            color: #22c55e;
            font-size: 18px;
        }

        /* ========== 品牌标语模块 (pctop方案3.asp 专用) ========== */
        .brand-slogan-box {
            text-align: center;
            margin-top: 35px;
        }

        .brand-slogan-main {
            font-size: 20px;
            font-weight: 700;
            color: #c41e3a;
            letter-spacing: 6px;
            margin-bottom: 8px;
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .brand-slogan-sub {
            font-size: 13px;
            color: #c47a78;
            letter-spacing: 4px;
        }

        /* ========== 双品牌展示模块 (pctop方案4.asp 专用) ========== */
        .dual-brand-box {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-top: 30px;
        }

        .brand-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 14px;
            border-radius: 15px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .brand-shangtang {
            background: linear-gradient(135deg, #fff5f5 0%, #ffe8e8 100%);
            border: 1px solid #c41e3a;
        }

        .brand-shangtang:hover {
            background: linear-gradient(135deg, #ffe8e8 0%, #ffd9d9 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.2);
        }

        .brand-xinwuhu {
            background: linear-gradient(135deg, #f0fdf4 0%, #dcfce7 100%);
            border: 1px solid #22c55e;
        }

        .brand-xinwuhu:hover {
            background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(34, 197, 94, 0.2);
        }

        .brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .brand-shangtang .brand-icon {
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
        }

        .brand-shangtang .brand-icon i {
            color: #fff;
            font-size: 14px;
        }

        .brand-xinwuhu .brand-icon {
            background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
        }

        .brand-xinwuhu .brand-icon i {
            color: #fff;
            font-size: 14px;
        }

        .brand-info {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .brand-name {
            font-size: 14px;
            font-weight: 700;
            line-height: 1;
            margin-bottom: 2px;
        }

        .brand-shangtang .brand-name {
            color: #c41e3a;
        }

        .brand-xinwuhu .brand-name {
            color: #22c55e;
        }

        .brand-tag {
            font-size: 10px;
            color: #666;
            line-height: 1;
        }

        /* ========== 统一双品牌口号模块 (pctop方案5.asp 专用) ========== */
        .unified-slogan-box {
            text-align: center;
            margin-top: 35px;
            padding: 10px 20px;
            background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, rgba(34, 197, 94, 0.05) 100%);
            border-radius: 15px;
            border: 1px solid rgba(196, 30, 58, 0.1);
        }

        .unified-slogan-main {
            font-size: 18px;
            font-weight: 700;
            background: linear-gradient(135deg, #c41e3a 0%, #22c55e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 5px;
            margin-bottom: 8px;
        }

        .unified-slogan-sub {
            font-size: 12px;
            color: #666;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
        }

        .unified-slogan-sub span {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .unified-slogan-sub .brand-shangtang-name {
            color: #c41e3a;
            font-weight: 600;
        }

        .unified-slogan-sub .brand-xinwuhu-name {
            color: #22c55e;
            font-weight: 600;
        }

        .unified-slogan-sub .divider {
            color: #ccc;
            font-size: 10px;
        }

        /* Banner轮播 */
        .banner-slider {
            position: relative;
            height: 590px;
            overflow: visible;
            z-index: 15;
        }

        .banner-slide {
            display: none;
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            align-items: flex-start;
            padding: 80px 100px;
            animation: slideIn 0.8s ease;
        }

        .banner-slide.active {
            display: flex;
        }

        @keyframes slideIn {
            from {
                opacity: 0;
                transform: translateX(50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        .banner-content {
            display: flex;
            align-items: flex-start;
            justify-content: space-between;
            width: 85%;
            max-width: 1200px;
            margin: 0 auto;
            position: relative;
            padding-top: 30px;
            z-index: 5;
        }

        .banner-left {
            flex: 1;
            padding-right: 80px;
        }

        .banner-title {
            font-size: 32px;
            font-weight: bold;
            color: #5d4037;
            margin-bottom: 20px;
            margin-top: -15px;
            line-height: 1.3;
            position: relative;
        }

        /* 标题下方装饰线 */
        .banner-title::after {
            content: '';
            position: absolute;
            bottom: -15px;
            left: 0;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #c41e3a 0%, #ff6b6b 100%);
            border-radius: 2px;
        }

        .banner-desc {
            font-size: 16px;
            color: #6d4c41;
            line-height: 1.8;
            text-align: justify;
            margin-bottom: 30px;
            margin-top: 40px;
            position: relative;
        }

        .banner-desc p {
            margin-bottom: 15px;
        }

        /* 描述文字左侧装饰线 */
        .banner-desc::before {
            content: '';
            position: absolute;
            left: -20px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: linear-gradient(180deg, #c41e3a 0%, transparent 100%);
            border-radius: 2px;
        }

        /* Banner按钮 */
        .banner-btn {
            display: inline-block;
            padding: 15px 40px;
            background: linear-gradient(135deg, #c41e3a 0%, #8b0000 100%);
            color: #fff;
            text-decoration: none;
            border-radius: 30px;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
            position: relative;
            overflow: hidden;
        }

        .banner-btn::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 ease;
        }

        .banner-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 30px rgba(196, 30, 58, 0.4);
        }

        .banner-btn:hover::before {
            left: 100%;
        }

        /* Banner装饰小元素 */
        .banner-decoration {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            margin-top: 50px;
            flex-wrap: wrap;
        }

        .decoration-item {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 10px 20px;
            border: 1px solid #ffcdd2;
            border-radius: 25px;
            background: white;
            transition: all 0.3s ease;
            font-size: 15px;
            color: #5d4037;
            flex-shrink: 0;
        }

        .decoration-item i {
            color: #ffa65f;
            font-size: 16px;
        }

        .decoration-item:hover {
            background: #c41e3a;
            transform: translateY(-3px);
            box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
        }

        .decoration-item:hover i,
        .decoration-item:hover span {
            color: white;
        }

        /* 装饰元素容器 */
        .banner-decorations {
            position: absolute;
            width: 100%;
            height: 100%;
            top: 0;
            left: 0;
            pointer-events: none;
            overflow: hidden;
        }

        /* 浮动元素基础样式 */
        .floating-element {
            position: absolute;
            opacity: 0.15;
            animation: float 6s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) rotate(0deg);
            }
            50% {
                transform: translateY(-20px) rotate(10deg);
            }
        }

        /* 糖晶装饰 */
        .sugar-crystal {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, #fff 0%, #ffd9b8 100%);
            border: 2px solid #ffd9b8;
            transform: rotate(45deg);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }

        /* 星星装饰 */
        .star {
            font-size: 40px;
            color: #c41e3a;
        }

        /* 圆点装饰 */
        .dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: #ffc89a;
        }

        /* 菱形装饰 */
        .diamond {
            width: 32px;
            height: 32px;
            background: #ff6b6b;
            transform: rotate(45deg);
        }

        /* 圆形装饰 */
        .circle {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            border: 2px solid #c41e3a;
        }

        /* 十字装饰 */
        .cross {
            width: 30px;
            height: 30px;
            position: relative;
        }

        .cross::before,
        .cross::after {
            content: '';
            position: absolute;
            background: #ff6b6b;
            border-radius: 2px;
        }

        .cross::before {
            width: 30px;
            height: 6px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        .cross::after {
            width: 6px;
            height: 30px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }

        /* 三角装饰 */
        .triangle {
            width: 0;
            height: 0;
            border-left: 20px solid transparent;
            border-right: 20px solid transparent;
            border-bottom: 35px solid #ffc89a;
        }

        /* 正方形装饰 */
        .square {
            width: 35px;
            height: 35px;
            background: #ff6b6b;
            border-radius: 8px;
        }

        /* 环形装饰 */
        .ring {
            width: 45px;
            height: 45px;
            border-radius: 50%;
            border: 4px solid #c41e3a;
            background: transparent;
        }

        /* 数据统计卡片 */
        .stats-container {
            display: flex;
            gap: 20px;
            margin-top: 40px;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.8);
            padding: 15px 20px;
            border-radius: 15px;
            text-align: center;
            min-width: 100px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .stat-number {
            font-size: 24px;
            font-weight: bold;
            color: #c41e3a;
            display: block;
            margin-bottom: 5px;
        }

        .stat-label {
            font-size: 12px;
            color: #6d4c41;
        }

        .banner-right {
            flex: 0 0 315px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin-top: 20px;
        }

        .banner-right img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.15);
            object-fit: cover;
        }

        /* Banner导航按钮 */
        .banner-nav {
            position: absolute;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            gap: 12px;
            z-index: 10;
        }

        .banner-nav button {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            border: 2px solid #c41e3a;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .banner-nav button.active {
            background: #c41e3a;
        }

        .banner-nav button:hover {
            background: #c41e3a;
            transform: scale(1.2);
        }

        /* Banner左右切换按钮 */
        .banner-arrow {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 50px;
            height: 50px;
            background: #ebc2a4;
            border: none;
            border-radius: 50%;
            color: #f4f4f4;
            font-size: 24px;
            cursor: pointer;
            transition: all 0.3s ease;
            z-index: 10;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .banner-arrow:hover {
            background: #d4a885;
            transform: translateY(-50%) scale(1.1);
        }

        .banner-arrow.prev {
            left: calc(10% + 20px);
        }

        .banner-arrow.next {
            right: calc(10% + 20px);
        }

        /* 内容区域 */
        .content-section {
            padding: 50px 50px 80px;
            background: #fff;
            position: relative;
            z-index: 4;
            max-width: 85%;
            margin-left: auto;
            margin-right: auto;
        }

        .section-title {
            text-align: center;
            font-size: 36px;
            color: #5d4037;
            margin-bottom: 50px;
            font-weight: bold;
        }

        /* 底部区域 */
        /* 鑫五湖品牌介绍 - 全新艺术设计 */
        .brand-section {
            padding: 50px 50px 80px;
            background: linear-gradient(135deg, #fff9f5 0%, #fff5ec 50%, #ffecd9 100%);
            position: relative;
            overflow: hidden;
            z-index: 3;
        }

        .brand-background {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            overflow: hidden;
            pointer-events: none;
        }

        .floating-circle {
            position: absolute;
            border-radius: 50%;
            opacity: 0.08;
            animation: float 20s ease-in-out infinite;
        }

        .circle-1 {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, #d48c4e 0%, transparent 70%);
            top: -100px;
            right: -100px;
            animation-delay: 0s;
        }

        .circle-2 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, #8b5a3c 0%, transparent 70%);
            bottom: -50px;
            left: -50px;
            animation-delay: 5s;
        }

        .circle-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, #ffcc99 0%, transparent 70%);
            top: 50%;
            left: 60%;
            animation-delay: 10s;
        }

        .sugar-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: #ffcc99;
            border-radius: 50%;
            animation: sparkle 3s ease-in-out infinite;
            box-shadow: 0 0 10px rgba(255, 204, 153, 0.5);
        }

        .p-1 { top: 20%; left: 10%; animation-delay: 0s; }
        .p-2 { top: 60%; right: 15%; animation-delay: 1s; }
        .p-3 { bottom: 30%; left: 30%; animation-delay: 2s; }

        @keyframes float {
            0%, 100% { transform: translate(0, 0) rotate(0deg); }
            25% { transform: translate(20px, 20px) rotate(90deg); }
            50% { transform: translate(0, 40px) rotate(180deg); }
            75% { transform: translate(-20px, 20px) rotate(270deg); }
        }

        @keyframes sparkle {
            0%, 100% { opacity: 0.3; transform: scale(1); }
            50% { opacity: 1; transform: scale(1.5); }
        }

        .brand-container {
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 2;
        }

        /* 品牌头部 */
        .brand-header {
            text-align: center;
            margin-bottom: 50px;
            padding: 40px 30px;
            background: linear-gradient(135deg, rgba(255, 236, 217, 0.9) 0%, rgba(255, 217, 184, 0.9) 50%, rgba(255, 204, 153, 0.9) 100%);
            backdrop-filter: blur(10px);
            border-radius: 30px;
            box-shadow: 0 10px 40px rgba(212, 140, 78, 0.25);
            border: 2px solid rgba(255, 255, 255, 0.5);
            position: relative;
        }

        .brand-header::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at center, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            pointer-events: none;
        }

        .brand-logo-container {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 30px;
            margin-bottom: 25px;
            flex-wrap: wrap;
        }

        .brand-logo-left,
        .brand-logo-right {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .brand-logo-icon {
            font-size: 48px;
            filter: drop-shadow(2px 2px 4px rgba(212, 140, 78, 0.3));
            animation: bounce 2s ease-in-out infinite;
        }

        .brand-logo-icon img {
            width: 50px;
            height: 71px;
            object-fit: contain;
        }

        .brand-logo-right .brand-logo-icon {
            animation-delay: 1s;
        }

        .brand-logo-text {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        .brand-logo-right .brand-logo-text {
            align-items: flex-end;
        }

        .brand-name-main {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #d48c4e 0%, #8b5a3c 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
            position: relative;
        }

        .brand-name-secondary {
            font-size: 36px;
            font-weight: 800;
            background: linear-gradient(135deg, #5d4037 0%, #8b6f5e 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: none;
        }

        .brand-tag {
            font-size: 10px;
            font-weight: 600;
            color: #8b6f5e;
            letter-spacing: 3px;
            margin-top: 4px;
            text-transform: uppercase;
        }

        .brand-logo-divider {
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 40px;
            color: #d48c4e;
            font-weight: bold;
            padding: 0 10px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .brand-slogan {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            flex-wrap: wrap;
            font-size: 16px;
            color: #5d4037;
            font-weight: 500;
            position: relative;
        }

        .slogan-item {
            padding: 8px 20px;
            background: rgba(255, 255, 255, 0.6);
            border-radius: 20px;
            border: 1px solid rgba(212, 140, 78, 0.2);
            transition: all 0.3s ease;
            cursor: default;
        }

        .slogan-item:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-3px);
            box-shadow: 0 4px 12px rgba(212, 140, 78, 0.2);
        }

        .slogan-dot {
            color: #d48c4e;
            font-size: 20px;
            font-weight: bold;
        }

        /* 品牌介绍卡片 */
        .brand-intro-card {
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            border-radius: 24px;
            padding: 40px 50px;
            margin-bottom: 50px;
            box-shadow: 0 8px 32px rgba(93, 64, 55, 0.1);
            border: 2px solid rgba(212, 140, 78, 0.15);
            position: relative;
            overflow: hidden;
        }

        .brand-intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d48c4e 0%, #8b5a3c 50%, #d48c4e 100%);
        }

        .intro-decoration {
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 25px;
            gap: 20px;
        }

        .intro-line {
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #d48c4e 50%, transparent 100%);
        }

        .intro-icon svg {
            width: 60px;
            height: 60px;
            animation: glow 2s ease-in-out infinite;
        }

        @keyframes glow {
            0%, 100% { filter: drop-shadow(0 0 5px rgba(255, 204, 153, 0.5)); }
            50% { filter: drop-shadow(0 0 15px rgba(255, 204, 153, 0.8)); }
        }

        .intro-text p {
            font-size: 16px;
            line-height: 2;
            color: #5d4037;
            text-align: justify;
            text-indent: 2em;
        }

        .intro-text .highlight {
            color: #d48c4e;
            font-weight: 600;
            position: relative;
        }

        /* 品牌故事网格 */
        .brand-story-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }

        .story-card {
            background: rgba(255, 255, 255, 0.95);
            border-radius: 20px;
            padding: 35px 30px;
            box-shadow: 0 6px 24px rgba(93, 64, 55, 0.12);
            position: relative;
            overflow: hidden;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(212, 140, 78, 0.1);
            cursor: pointer;
        }

        .story-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #d48c4e 0%, #8b5a3c 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .story-card:hover {
            transform: translateY(-12px) scale(1.02);
            box-shadow: 0 16px 48px rgba(93, 64, 55, 0.2);
            border-color: rgba(212, 140, 78, 0.3);
        }

        .story-card:hover::before {
            transform: scaleX(1);
        }

        .card-bg-number {
            position: absolute;
            top: -6px;
            right: 7px;
            font-size: 80px;
            font-weight: 900;
            color: rgba(212, 140, 78, 0.08);
            line-height: 1;
            transition: all 0.4s ease;
        }

        .story-card:hover .card-bg-number {
            color: rgba(212, 140, 78, 0.15);
            transform: scale(1.1) rotate(10deg);
        }

        .card-icon {
            font-size: 48px;
            margin-bottom: 15px;
            filter: drop-shadow(2px 2px 4px rgba(93, 64, 55, 0.15));
            transition: transform 0.3s ease;
        }

        .story-card:hover .card-icon {
            transform: scale(1.15) rotate(5deg);
        }

        .card-title {
            font-size: 22px;
            font-weight: 700;
            color: #5d4037;
            margin-bottom: 15px;
            position: relative;
            transition: color 0.3s ease;
        }

        .story-card:hover .card-title {
            color: #d48c4e;
        }

        .card-text {
            font-size: 14px;
            line-height: 1.8;
            color: #6b5d52;
            margin-bottom: 0;
        }

        .card-decoration {
            position: absolute;
            bottom: 15px;
            right: 15px;
            width: 40px;
            height: 40px;
            opacity: 0;
            transition: all 0.4s ease;
        }

        .card-decoration::before {
            content: '→';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            font-size: 24px;
            color: #d48c4e;
        }

        .story-card:hover .card-decoration {
            opacity: 1;
            transform: translate(-5px, -5px);
        }

        .brand-footer {
            text-align: center;
            padding: 35px 30px;
            background: linear-gradient(135deg, #ffecd9 0%, #ffd9b8 50%, #ffcc99 100%);
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(212, 140, 78, 0.25);
            position: relative;
            transform: translateY(20px);
        }

        .brand-footer::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 60%);
            animation: pulse 4s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
            50% { transform: translate(25%, 25%) scale(1.1); opacity: 0.5; }
        }

        .footer-content {
            position: relative;
            z-index: 1;
            transform: translateY(25px);
        }

        .footer-text {
            font-size: 24px;
            font-weight: bold;
            color: #5d4037;
            margin: 0 0 10px 0;
            text-shadow: 2px 2px 4px rgba(93, 64, 55, 0.2);
            position: relative;
            display: inline-block;
            padding: 0 35px;
            line-height: 1.4;
        }

        .footer-text::before {
            content: '「';
            position: absolute;
            left: 0;
            color: #d48c4e;
            font-size: 28px;
            top: -2px;
        }

        .footer-text::after {
            content: '」';
            position: absolute;
            right: 0;
            color: #d48c4e;
            font-size: 28px;
            top: -2px;
        }

        .footer-slogan {
            font-size: 16px;
            color: #8b6f5e;
            margin: 0 0 15px 0;
            letter-spacing: 3px;
            font-weight: 500;
            line-height: 1.6;
            padding: 0 10px;
        }

        .footer-stats {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 15px;
            padding-top: 25px;
            border-top: 2px dashed rgba(93, 64, 55, 0.2);
            transform: translateY(20px);
        }

        .footer-stat {
            text-align: center;
        }

        .stat-number {
            display: block;
            font-size: 28px;
            font-weight: bold;
            color: #d48c4e;
            margin-bottom: 5px;
        }

        .stat-label {
            display: block;
            font-size: 13px;
            color: #6b5d52;
        }

        .footer-ornament {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 15px;
            margin-top: 15px;
            position: relative;
            z-index: 1;
            transform: translateY(20px);
        }

        .ornament-star {
            color: #d48c4e;
            font-size: 20px;
        }

        .ornament-line {
            width: 60px;
            height: 2px;
            background: linear-gradient(90deg, transparent 0%, #d48c4e 50%, transparent 100%);
        }

        /* 关于我们模块 */
        .about-section {
            padding: 55px 50px 80px 50px;
            background: linear-gradient(180deg, #faf5f0 0%, #f5ebe3 100%);
            position: relative;
        }

        .about-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .about-title {
            text-align: center;
            font-size: 38px;
            font-weight: 700;
            color: #5d4037;
            margin-bottom: 3px;
            letter-spacing: 3px;
        }

        .about-subtitle {
            text-align: center;
            font-size: 18px;
            color: #d48c4e;
            margin-bottom: 60px;
            letter-spacing: 6px;
            font-weight: 500;
            text-transform: uppercase;
        }

        .about-content {
            display: flex;
            gap: 60px;
            align-items: stretch;
        }

        .about-text {
            flex: 1;
        }

        .about-right {
            flex: 0 0 450px;
            display: flex;
            flex-direction: column;
            gap: 30px;
        }

        .about-intro {
            margin-bottom: 30px;
        }

        .about-intro h3 {
            font-size: 30px;
            color: #5d4037;
            margin-bottom: 8px;
            font-weight: 700;
        }

        .founded-year {
            font-size: 18px;
            color: #d48c4e;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .about-description {
            margin-bottom: 0;
        }

        .about-description p {
            font-size: 16px;
            line-height: 2.0;
            color: #6b5b4f;
            margin-bottom: 15px;
            text-align: justify;
        }

        .about-image {
            flex: 0 0 auto;
        }

        .image-wrapper {
            position: relative;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(212, 140, 78, 0.25);
        }

        .about-img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.5s ease;
        }

        .image-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, #d48c4e 0%, #c48854 50%, #a0725d 100%);
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transition: all 0.5s ease;
        }

        .overlay-content {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
        }

        .overlay-icon {
            font-size: 47px;
            margin: 0;
            animation: bounce 2s ease-in-out infinite;
        }

        @keyframes bounce {
            0%, 100% {
                transform: translateY(0);
            }
            50% {
                transform: translateY(-8px);
            }
        }

        .overlay-title {
            font-size: 23px;
            font-weight: 700;
            color: white;
            margin: 0;
            line-height: 1.4;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
        }

        .overlay-line {
            width: 60px;
            height: 3px;
            background: white;
            border-radius: 2px;
            margin: 5px 0;
        }

        .overlay-subtitle {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.95);
            margin: 0;
            font-weight: 400;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .image-wrapper:hover .about-img {
            transform: scale(1.1);
        }

        .image-wrapper:hover .image-overlay {
            opacity: 1;
        }

        .about-highlights {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
        }

        .highlight-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 15px;
            background: rgba(212, 140, 78, 0.05);
            border-radius: 12px;
            transition: all 0.3s ease;
        }

        .highlight-item:hover {
            background: rgba(212, 140, 78, 0.1);
            transform: translateX(5px);
        }

        .highlight-icon {
            font-size: 26px;
            width: 45px;
            height: 45px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }

        .highlight-text h4 {
            font-size: 15px;
            color: #5d4037;
            margin-bottom: 2px;
            font-weight: 600;
        }

        .highlight-text p {
            font-size: 13px;
            color: #8b6f5e;
        }

        /* 新闻系统 */
        /* 新闻系统 - 全新样式 */
    .news-section {
        padding: 50px 50px 35px;
        background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
        position: relative;
        z-index: 4;
        margin-bottom: 465px;
    }

        .news-section-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #5d4037;
            margin-bottom: 8px;
            letter-spacing: 2px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            padding-top: 20px;
        }

        .news-title-right {
            margin-left: 7px;
        }

        .news-sugar-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            animation: bounce 2s ease-in-out infinite;
        }

        .news-sugar-icon svg {
            width: 90px;
            height: 75px;
        }

        @keyframes bounce {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-5px); }
        }

        .news-section-subtitle {
            text-align: center;
            font-size: 16px;
            color: #8b6f5e;
            margin-bottom: 35px;
            letter-spacing: 4px;
            font-weight: 500;
        }

        .news-container {
            width: 80%;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 置顶新闻 - 特殊样式 */
        .news-card.featured {
            display: block;
            background: linear-gradient(135deg, #8B5A3C 0%, #A0725D 30%, #C48854 70%, #E8B678 100%);
            border-radius: 20px;
            padding: 45px;
            margin-bottom: 50px;
            box-shadow: 0 10px 40px rgba(139, 90, 60, 0.25);
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
            text-decoration: none;
            color: #fff;
        }

        .news-card.featured::before {
            content: '';
            position: absolute;
            top: -50px;
            right: -50px;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .news-card.featured::after {
            content: '';
            position: absolute;
            bottom: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            border-radius: 50%;
        }

        .news-featured-deco {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-image:
                radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.06) 0%, transparent 50%);
            pointer-events: none;
        }

        .news-card.featured:hover {
            transform: translateY(-8px) scale(1.01);
            box-shadow: 0 15px 50px rgba(139, 90, 60, 0.35);
        }

        .news-featured-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            color: #8B5A3C;
            padding: 10px 24px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 25px;
            box-shadow: 0 4px 15px rgba(139, 90, 60, 0.2);
            letter-spacing: 1px;
            border: 2px solid rgba(232, 182, 120, 0.5);
            animation: pulse 2s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.02); }
        }

        .news-featured-content {
            position: relative;
            z-index: 1;
        }

        .news-featured-icon {
            font-size: 36px;
            margin-bottom: 15px;
            display: inline-block;
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0) rotate(0deg); }
            50% { transform: translateY(-8px) rotate(5deg); }
        }

        .news-featured-title {
            font-size: 28px;
            font-weight: 700;
            color: #ffffff;
            margin-bottom: 16px;
            line-height: 1.4;
            text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
            position: relative;
        }

        .news-featured-title::before {
            content: '';
            position: absolute;
            left: -15px;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 70%;
            background: linear-gradient(180deg, #fff 0%, rgba(255, 255, 255, 0.3) 100%);
            border-radius: 3px;
        }

        .news-featured-desc {
            font-size: 16px;
            color: #fff5f0;
            line-height: 1.7;
            margin-bottom: 25px;
            text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.15);
        }

        .news-featured-meta {
            display: flex;
            gap: 30px;
            padding-top: 20px;
            border-top: 2px solid rgba(255, 255, 255, 0.25);
        }

        .news-featured-meta .news-date {
            font-size: 15px;
            color: #ffffff;
            font-weight: 500;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* 普通新闻网格 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }

        .news-item {
            display: flex;
            flex-direction: row;
            background: white;
            border-radius: 16px;
            padding: 0;
            box-shadow: 0 4px 20px rgba(93, 64, 55, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            text-decoration: none;
            color: inherit;
        }

        .news-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: linear-gradient(180deg, #d48c4e 0%, #8b5a3c 100%);
            transition: opacity 0.4s ease;
        }

        .news-item:hover {
            transform: translateY(-8px);
            box-shadow: 0 12px 40px rgba(139, 90, 60, 0.25);
            border-color: rgba(232, 182, 120, 0.5);
            background: linear-gradient(135deg, #8B5A3C 0%, #A0725D 30%, #C48854 70%, #E8B678 100%);
        }

        .news-item:hover::before {
            opacity: 0;
        }

        .news-item-number {
            font-size: 36px;
            font-weight: 900;
            color: rgba(212, 140, 78, 0.2);
            line-height: 1;
            padding: 30px 15px 30px 15px;
            flex-shrink: 0;
            position: relative;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-number {
            color: rgba(255, 255, 255, 0.25);
        }

        .news-item-number::after {
            content: '';
            position: absolute;
            right: 0;
            top: 20%;
            width: 1px;
            height: 60%;
            background: linear-gradient(180deg, rgba(212, 140, 78, 0.2) 0%, transparent 100%);
        }

        .news-item-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            padding: 40px 25px 40px 0;
        }

        .news-item-line {
            width: 40px;
            height: 3px;
            background: linear-gradient(90deg, #d48c4e 0%, transparent 100%);
            border-radius: 2px;
            margin-bottom: 15px;
            transition: width 0.3s ease;
        }

        .news-item:hover .news-item-line {
            width: 80px;
        }

        .news-item-title {
            font-size: 22px;
            font-weight: 700;
            color: #5d4037;
            margin-bottom: 12px;
            line-height: 1.6;
            position: relative;
        }

        .news-item:hover .news-item-title {
            color: #fff;
            transform: translateX(4px);
            transition: all 0.3s ease;
        }

        .news-item-desc {
            font-size: 16px;
            color: #8b6f5e;
            line-height: 1.8;
            margin-bottom: 18px;
            flex: 1;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-desc {
            color: rgba(255, 255, 255, 0.9);
        }

        .news-item-meta {
            display: flex;
            justify-content: flex-start;
            align-items: center;
            padding-top: 16px;
            border-top: 1px solid rgba(212, 140, 78, 0.1);
            gap: 8px;
            transition: border-color 0.3s ease;
        }

        .news-item:hover .news-item-meta {
            border-top-color: rgba(255, 255, 255, 0.2);
        }

        .news-item-meta .news-date {
            font-size: 13px;
            color: #9a8070;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-meta .news-date {
            color: rgba(255, 255, 255, 0.8);
        }

        .news-item-meta .news-date i {
            color: #d48c4e;
            font-size: 12px;
            transition: color 0.3s ease;
        }

        .news-item:hover .news-item-meta .news-date i {
            color: rgba(255, 255, 255, 0.8);
        }

        /* 响应式 */
        @media (max-width: 768px) {
            /* Footer图片缩略图缩小 */
            .footer-overlay-image {
                width: 150px !important;
            }

            .thumbnail-container {
                width: 350px !important;
                height: 180px !important;
            }

            .thumbnail {
                width: 30px !important;
                height: 45px !important;
            }

            /* 移动端使用专门的底部背景图片 */
            .footer-bg-img {
                content: url('img/bottom-mobile.png') !important;
            }

            /* 底部整体向上移动335px */
            .footer-section {
                margin-top: -255px !important; /* 80px - 335px = -255px */
            }

            /* 移动端三栏垂直排列 */
            .footer-three-column {
                flex-direction: column !important;
                align-items: flex-start !important;
                gap: 15px !important;
                top: 200px !important; /* 调整位置 */
            }

            .footer-column {
                width: 100% !important;
                align-items: flex-start !important;
            }

            .column-item {
                font-size: 14px !important;
                margin-bottom: 10px !important; /* 标签与内容的间距 */
            }

            .column-label {
                font-size: 16px !important;
            }

            .column-content {
                font-size: 13px !important;
                line-height: 1.5 !important;
                margin-bottom: 30px !important; /* 距下一栏的间距增加15px（原来是15px） */
            }

            /* 联系电话栏到关注我们的距离减少7px */
            .footer-center {
                margin-bottom: -7px !important;
                margin-top: -5px !important; /* 向上移动5px */
            }

            /* 关注我们也向上移动5px */
            .footer-right {
                margin-top: -5px !important;
            }

            /* 移动端隐藏ICP备案号 */
            .footer-copyright p {
                line-height: 1.6 !important;
                font-size: 14px !important;
            }

            /* 在移动端隐藏ICP备案号，只显示前两部分 */
            .footer-copyright p::after {
                content: "苏ICP备2026004810号-1";
                display: none;
            }

            /* 地址栏特别调整 */
            .footer-left .column-content {
                font-size: 15px !important; /* 字号增加2px */
                margin-top: -7px !important; /* 向上移动7px（从-10px改为-7px，即向下移动3px） */
            }

            /* 地址标签也向上移动 */
            .footer-left .column-item {
                margin-top: -29px !important; /* 再向上移动4px */
                margin-bottom: 15px !important; /* 与地址内容拉开距离 */
            }

            /* 电话栏字号调整 */
            .footer-center .column-content {
                font-size: 16px !important; /* 字号减少到16px */
                font-weight: normal !important; /* 去掉加粗 */
            }

            /* 社交图标容器调整 */
            .social-icons {
                flex-direction: row !important;
                flex-wrap: wrap !important;
                gap: 10px !important;
            }

            .social-icon {
                transform: scale(0.8) !important;
            }

            /* 移动端禁用悬停效果 */
            .thumbnail:hover {
                transform: none !important;
                box-shadow: none !important;
                z-index: auto !important;
                border-color: rgba(255, 255, 255, 0.8) !important;
            }

            .thumbnail:hover img {
                transform: none !important;
            }

            .image-name {
                font-size: 14px !important;
                padding: 6px 16px !important;
                top: -42px !important; /* 向下移动28px */
            }

            .news-section {
                padding: 50px 30px;
            }

            .news-section-title {
                font-size: 32px;
            }

            .news-card.featured {
                padding: 30px;
            }

            .news-emoji {
                font-size: 56px;
            }

            .news-featured-title {
                font-size: 22px;
            }

            .news-grid {
                grid-template-columns: 1fr;
            }

            /* 关于我们模块 - 响应式 */
            .about-section {
                padding: 50px 20px;
            }

            .about-title {
                font-size: 32px;
            }

            .about-subtitle {
                font-size: 14px;
                margin-bottom: 40px;
                letter-spacing: 4px;
            }

            .about-content {
                flex-direction: column;
                gap: 40px;
            }

            .about-right {
                flex: 0 0 auto;
                width: 100%;
            }

            .about-highlights {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }

            .about-intro h3 {
                font-size: 24px;
            }

            .about-description p {
                font-size: 14px;
                line-height: 1.8;
            }
        }

        .news-item-desc {
            font-size: 14px;
            color: #666;
            line-height: 1.6;
            margin-bottom: 10px;
        }

        .news-item-time {
            font-size: 13px;
            color: #999;
            font-style: italic;
        }

        .news-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent 0%, #e0d0c8 50%, transparent 100%);
            margin: 10px 0;
        }

        .footer-section {
            position: relative;
            width: 100%;
            margin-top: 80px;
        }

        .footer-background {
            position: relative;
            width: 100%;
            overflow: visible;
        }

        .footer-background img {
            display: block;
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .footer-images-container {
            position: absolute;
            left: 50%;
            top: 0;
            transform: translate(-50%, -50%);
            width: 700px;
            height: 350px;
        }

        .footer-overlay-image {
            position: absolute;
            left: 50%;
            top: 50%;
            transform: translate(-50%, -50%);
            width: 300px;
            z-index: 10;
            perspective: 1000px;
        }

        .image-name {
            position: absolute;
            top: -70px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 22px;
            font-weight: 600;
            color: #5d4037;
            white-space: nowrap;
            text-align: center;
            background: linear-gradient(135deg, rgba(255, 248, 240, 0.98) 0%, rgba(255, 240, 225, 0.98) 100%);
            padding: 10px 24px;
            border-radius: 25px;
            box-shadow: 0 4px 20px rgba(93, 64, 55, 0.15),
                        0 2px 8px rgba(93, 64, 55, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.8);
            border: 1px solid rgba(212, 140, 78, 0.3);
            letter-spacing: 1px;
            transition: all 0.3s ease;
        }

        .footer-overlay-image img {
            width: 100%;
            height: auto;
            display: block;
            transition: opacity 0.3s ease, transform 0.5s ease;
            border-radius: 12px;
            box-shadow: 0 10px 40px rgba(93, 64, 55, 0.4),
                        0 5px 20px rgba(93, 64, 55, 0.3),
                        0 0 0 1px rgba(255, 255, 255, 0.2),
                        inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: transparent;
        }

        .thumbnail-container {
            position: absolute;
            left: 50%;
            top: 50%;
            width: 700px;
            height: 350px;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        /* 装饰性光晕背景 */
        .thumbnail-container::before {
            content: '';
            position: absolute;
            left: 50%;
            top: 50%;
            width: 550px;
            height: 550px;
            transform: translate(-50%, -50%);
            background: radial-gradient(ellipse at center bottom,
                rgba(212, 140, 78, 0.15) 0%,
                rgba(212, 140, 78, 0.08) 30%,
                transparent 70%);
            pointer-events: none;
            z-index: -1;
        }

        .thumbnail {
            position: absolute;
            width: 55px;
            height: 80px;
            pointer-events: auto;
            cursor: pointer;
            transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                        border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 3px 15px rgba(93, 64, 55, 0.2),
                        0 1px 3px rgba(93, 64, 55, 0.1);
            background: #fff;
            left: 50%;
            top: 50%;
            transform-origin: center center;
            border: 1px solid rgba(255, 255, 255, 0.8);
        }

        .thumbnail img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
            transition: transform 0.4s ease;
        }

        .thumbnail:hover {
            transform: scale(1.3) translateY(-10px);
            box-shadow: 0 8px 30px rgba(93, 64, 55, 0.3),
                        0 4px 15px rgba(212, 140, 78, 0.25),
                        0 0 0 1px rgba(212, 140, 78, 0.3);
            z-index: 20;
            border-color: rgba(212, 140, 78, 0.5);
        }

        .thumbnail:hover img {
            transform: scale(1.1);
        }

        .footer-content {
            position: absolute;
            bottom: 20px;
            left: 0;
            right: 0;
            text-align: center;
            color: #fff;
            padding: 20px;
            font-size: 14px;
        }

        /* 底部三栏信息容器 */
        .footer-three-column {
            position: absolute;
            top: 280px;
            left: 50%;
            transform: translateX(-50%);
            width: 80%;
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            z-index: 15;
        }

        /* 每一栏 */
        .footer-column {
            display: flex;
            flex-direction: column;
            align-items: flex-start;
            flex: 1;
        }

        .footer-left {
            align-items: flex-start;
        }

        .footer-center {
            align-items: center;
        }

        .footer-right {
            align-items: flex-end;
        }

        /* 栏目标题 */
        .column-item {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 15px;
        }

        /* 中栏特制：减少标题与内容的距离 */
        .footer-center .column-item {
            margin-bottom: 0;
        }

        .column-item i {
            color: #c4621e;
            font-size: 22px;
            filter: drop-shadow(0 1px 2px rgba(93, 64, 55, 0.3));
        }

        .column-label {
            font-size: 21px;
            font-weight: 600;
            color: #5d4037;
            letter-spacing: 1px;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        /* 栏目内容 */
        .column-content {
            font-size: 15px;
            color: #5d4037;
            line-height: 1.8;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        .footer-left .column-content {
            font-size: 19px;
        }

        .phone-number {
            font-size: 40px;
            font-weight: 600;
            color: #5d4037;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
        }

        /* 社交媒体图标容器 */
        .social-icons {
            display: flex;
            gap: 30px;
        }

        .social-icon {
            position: relative;
            width: 58px;
            height: 58px;
            border-radius: 50%;
            background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(255, 248, 240, 0.95) 100%);
            box-shadow: 0 4px 15px rgba(93, 64, 55, 0.2),
                        0 2px 6px rgba(93, 64, 55, 0.1),
                        inset 0 1px 0 rgba(255, 255, 255, 0.8);
            cursor: pointer;
            transition: all 0.3s ease;
            overflow: visible;
            border: 1px solid rgba(212, 140, 78, 0.2);
        }

        .social-overlay {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(93, 64, 55, 0.85);
            transition: all 0.3s ease;
            mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
            -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
        }

        .social-icon:hover .social-overlay {
            background: rgba(93, 64, 55, 0.25);
            mask-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
            -webkit-mask-image: linear-gradient(rgba(0, 0, 0, 1), rgba(0, 0, 0, 1));
        }

        .social-icon:hover {
            transform: scale(1.12) translateY(-3px);
            box-shadow: 0 8px 25px rgba(93, 64, 55, 0.3),
                        0 4px 12px rgba(212, 140, 78, 0.2);
            border-color: rgba(212, 140, 78, 0.4);
        }

        .social-icon i {
            font-size: 26px;
            color: #fff;
            transition: all 0.3s ease;
        }

        .social-icon:hover i {
            color: #d48c4e;
            text-shadow: 0 0 10px rgba(212, 140, 78, 0.5);
        }

        .social-label {
            position: absolute;
            bottom: -28px;
            left: 50%;
            transform: translateX(-50%);
            font-size: 12px;
            font-weight: 600;
            color: #5d4037;
            white-space: nowrap;
            text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
        }

        .qrcode {
            position: absolute;
            top: -160px;
            left: 50%;
            transform: translateX(-50%) scale(0);
            width: 150px;
            height: 150px;
            background: #fff;
            border-radius: 10px;
            padding: 10px;
            box-shadow: 0 8px 30px rgba(93, 64, 55, 0.35),
                        0 4px 15px rgba(93, 64, 55, 0.2);
            opacity: 0;
            transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
            pointer-events: none;
            z-index: 100;
            border: 1px solid rgba(212, 140, 78, 0.2);
        }

        .qrcode::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            border-width: 8px 8px 0;
            border-style: solid;
            border-color: #fff transparent transparent transparent;
        }

        .qrcode img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            display: block;
            border-radius: 6px;
        }

        .social-icon:hover .qrcode {
            opacity: 1;
            transform: translateX(-50%) scale(1);
            pointer-events: auto;
        }

        /* 版权信息 */
        .footer-copyright {
            background: linear-gradient(135deg, #5d4037 0%, #4e342e 100%);
            color: rgba(255, 255, 255, 0.9);
            text-align: center;
            padding: 15px 20px;
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        .footer-copyright p {
            margin: 0;
        }

        /* 移动端响应式 */
        @media (max-width: 1200px) {
            .banner-content {
                padding: 0 50px;
            }

            .banner-right {
                flex: 0 0 350px;
            }

            .banner-title {
                font-size: 36px;
            }
        }

        @media (max-width: 992px) {
            .top-bar {
                flex-direction: column;
                gap: 20px;
                padding: 15px 20px 15px 20px;
            }

            .logo {
                clip-path: none;
                border-radius: 15px;
                min-width: auto;
            }

            .nav-menu {
                gap: 20px;
                flex-wrap: wrap;
                justify-content: center;
            }

            .search-box {
                min-width: 250px;
            }

            .banner-slide {
                padding: 0 40px;
            }

            .banner-content {
                flex-direction: column;
                text-align: center;
            }

            .banner-left {
                padding-right: 0;
                padding-bottom: 40px;
            }

            .banner-right {
                flex: 0 0 auto;
            }

            .banner-desc {
                text-align: center;
            }
        }

        @media (max-width: 768px) {
            .hero-section {
                min-height: auto;
            }

            .top-bar {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                padding-right: 0;
                padding-left: 0;
                width: 100%;
                max-width: none;
                z-index: 100000;
                padding-top: 0;
                padding-bottom: 0;
                min-height: 100px;
            }

            .logo {
                transform: scale(0.75);
                transform-origin: top left;
                margin: 0;
                padding: 0;
                position: absolute;
                top: 0;
                left: 0;
                pointer-events: none;
            }

            .mobile-menu-btn {
                display: block;
                position: absolute;
                top: 15px;
                right: 18px;
                z-index: 100001;
            }

            .banner-decoration {
                gap: 8px;
                margin-top: 20px;
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 5px;
                justify-content: center;
            }

            .decoration-item {
                padding: 6px 12px;
                font-size: calc(12px + 1px) !important;
                white-space: nowrap;
            }

            .banner-decoration {
                gap: 5px !important;
            }

            .banner-title {
                text-align: center;
            }

            .banner-title::after {
                left: 50%;
                transform: translateX(-50%);
            }

            .banner-desc {
                font-size: 14px !important;
                line-height: calc(2 + 0.1);
                width: 82% !important;
                max-width: 82%;
                margin: 5px auto -20px auto !important;
            }

            .banner-right img {
                width: 100% !important;
                height: auto !important;
                object-fit: contain !important;
                margin-top: -15px;
                margin-bottom: -55px;
            }

            .stats-container {
                gap: 10px;
                flex-wrap: nowrap;
                overflow-x: auto;
                justify-content: center;
                width: 100% !important;
                max-width: 100% !important;
            }

            .stat-item {
                padding: 10px 12px;
                min-width: 70px;
            }

            .stat-number {
                font-size: calc(14px + 2px) !important;
                margin-bottom: 3px;
            }

            .stat-label {
                font-size: calc(9px + 2px) !important;
            }

            .banner-arrow {
                top: calc(50% - 235px + 80px) !important;
                transform: translateY(-50%) !important;
            }

            .banner-arrow.prev {
                left: 10px !important;
            }

            .banner-arrow.next {
                right: 10px !important;
            }

            .banner-content {
                display: flex;
                flex-direction: column;
                text-align: center;
                align-items: center;
                width: 92% !important;
                padding: 0 !important;
            }

            .banner-left {
                padding-right: 0;
                display: flex;
                flex-direction: column;
                align-items: center;
                width: 100%;
            }

            .nav-menu {
                display: none;
                position: absolute;
                top: 100%;
                left: 7.5%;
                width: 85%;
                background: rgba(255, 255, 255, 0.98);
                backdrop-filter: blur(10px);
                flex-direction: column;
                padding: 10px 0;
                gap: 0;
                box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
                border-top: 3px solid #d48c4e;
                z-index: 100002;
                align-items: flex-start;
                border-radius: 0 0 10px 10px;
            }

            .nav-menu.active {
                display: flex;
                animation: slideDown 0.3s ease-out;
                align-items: flex-start;
            }

            .nav-menu a {
                padding: 12px 20px 12px 25px;
                border-bottom: 1px solid rgba(212, 140, 78, 0.1);
                transition: all 0.3s ease;
                display: flex;
                align-items: center;
                gap: 15px;
                text-align: left;
            }

            .nav-menu a i {
                width: 20px;
                text-align: center;
                color: #d48c4e;
                font-size: 16px;
                flex-shrink: 0;
                display: block !important;
            }

            .nav-menu a:hover {
                background: rgba(212, 140, 78, 0.1);
                padding-left: 35px;
            }

            .nav-menu a:hover i {
                color: #c41e3a;
            }

            /* 移动端菜单项激活状态 */
            .nav-menu a.active {
                color: #27ae60;
            }

            /* 移动端去掉下划线 */
            .nav-menu a.active::after {
                display: none;
            }

            @keyframes slideDown {
                from {
                    opacity: 0;
                    transform: translateY(-10px);
                }
                to {
                    opacity: 1;
                    transform: translateY(0);
                }
            }

            .search-box {
                display: none;
            }

            /* 移动端联系信息模块 */
            .contact-info-box {
                gap: 10px;
            }

            .contact-phone {
                padding: 6px 12px;
            }

            .contact-phone i {
                font-size: 14px;
            }

            .contact-label {
                font-size: 10px;
            }

            .contact-number {
                font-size: 12px;
            }

            .contact-wechat {
                padding: 6px 10px;
            }

            .contact-wechat i {
                font-size: 14px;
            }

            /* 移动端品牌标语模块 */
            .brand-slogan-box {
                margin-top: 25px;
            }

            .brand-slogan-main {
                font-size: 16px;
                letter-spacing: 4px;
            }

            .brand-slogan-sub {
                font-size: 11px;
                letter-spacing: 3px;
            }

            /* 移动端双品牌展示模块 */
            .dual-brand-box {
                gap: 8px;
            }

            .brand-item {
                padding: 6px 10px;
            }

            .brand-icon {
                width: 28px;
                height: 28px;
            }

            .brand-icon i {
                font-size: 12px;
            }

            .brand-name {
                font-size: 12px;
            }

            .brand-tag {
                font-size: 9px;
            }

            /* 移动端统一双品牌口号模块 - 隐藏 */
            .unified-slogan-box {
                display: none;
            }

            .logo {
                padding: 20px 30px;
            }

            .logo-title {
                font-size: 28px;
            }

            .banner-slider {
                height: auto;
                padding: 20px 0;
            }

            .banner-slide {
                position: relative;
                padding: 0 20px;
            }

            .banner-title {
                font-size: 28px;
            }

            .banner-desc {
                font-size: 14px !important;
            }

            .banner-right img {
                max-height: 300px;
            }

            .banner-arrow {
                width: 40px;
                height: 40px;
                font-size: 18px;
            }

            .banner-arrow.prev {
                left: 10px;
            }

            .banner-arrow.next {
                right: 10px;
            }

            .content-section {
                padding: 80px 20px 60px;
            }

            .section-title {
                font-size: 28px;
            }

            .news-container {
                flex-direction: column;
            }

            .news-featured img {
                height: 250px;
            }

            .news-featured-content {
                padding: 20px;
            }

            .news-featured-title {
                font-size: 18px;
            }

            .news-header h3 {
                font-size: 20px;
            }

            .news-item-title {
                font-size: 16px;
            }

            .news-item-desc {
                font-size: 14px !important;
            }

            .news-featured-desc {
                font-size: 14px !important;
            }

            .brand-section {
                padding: 60px 20px 40px;
            }

            .brand-header {
                margin-bottom: 30px;
                padding: 25px 15px;
                width: 100% !important;
                text-align: center;
                margin-top: -30px;
                border-radius: 0 !important;
            }

            .brand-logo-container {
                gap: 15px;
                flex-direction: column !important;
                justify-content: center;
                width: 100%;
                align-items: center;
            }

            .brand-logo-divider {
                display: none !important;
            }

            .brand-logo-right {
                flex-direction: row-reverse !important;
            }

            .brand-logo-right .brand-logo-icon {
                order: 1;
            }

            .brand-logo-right .brand-logo-text {
                order: 2;
            }

            .brand-slogan {
                gap: 15px !important;
                justify-content: center;
            }

            .slogan-dot {
                display: none !important;
            }

            .about-intro {
                text-align: center;
                margin-top: -6px;
            }

            .about-intro h3 {
                font-size: calc(24px - 2px) !important;
            }

            .founded-year {
                font-size: calc(18px - 1px) !important;
                margin-top: -4px !important;
            }

            .about-title {
                padding-top: -20px !important;
            }

            .about-subtitle {
                margin-bottom: -20px !important;
                display: none !important;
            }

            .overlay-content {
                gap: 5px !important;
            }

            .about-content {
                gap: calc(40px - 15px) !important;
            }

            .news-section-title {
                padding-top: calc(20px - 15px) !important;
            }

            .news-section {
                padding-top: calc(50px - 30px + 10px) !important;
            }

            .news-section-subtitle {
                margin-top: -5px !important;
                margin-bottom: calc(35px - 10px) !important;
            }

            .news-container {
                width: 100% !important;
            }

            .about-description {
                width: 85% !important;
                margin: 0 auto !important;
            }

            .about-right {
                width: 100% !important;
            }

            .about-highlights {
                gap: 5px !important;
            }

            .brand-logo-icon {
                font-size: 40px;
            }

            .brand-logo-icon img {
                width: 40px;
                height: 57px;
            }

            .brand-name-main,
            .brand-name-secondary {
                font-size: 28px;
            }

            .brand-logo-divider {
                font-size: 32px;
            }

            .brand-slogan {
                font-size: 14px;
                gap: 8px;
            }

            .slogan-item {
                padding: 6px 12px;
                font-size: 13px;
            }

            .brand-intro-card {
                padding: 25px 20px;
                margin-bottom: 30px;
            }

            .intro-text p {
                font-size: 14px;
                line-height: 1.7;
            }

            .brand-story-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .story-card {
                padding: 25px 20px;
            }

            .card-bg-number {
                font-size: 60px;
            }

            .card-icon {
                font-size: 40px;
            }

            .card-title {
                font-size: 18px;
            }

            .card-text {
                font-size: 14px !important;
            }

            .story-section {
                padding: 22px 18px;
            }

            .story-title-wrapper {
                gap: 10px;
                padding-bottom: 10px;
            }

            .story-icon {
                font-size: 28px;
            }

            .story-title {
                font-size: 18px;
            }

            .story-content {
                font-size: 14px;
                line-height: 1.7;
            }

            .footer-text {
                font-size: 18px;
                padding: 0 25px;
            }

            .footer-text::before {
                font-size: 22px;
                left: 0;
                top: -2px;
            }

            .footer-text::after {
                font-size: 22px;
                right: 0;
                top: -2px;
            }

            .footer-slogan {
                font-size: 14px;
                letter-spacing: 2px;
                padding: 0 5px;
            }

            .footer-stats {
                gap: 20px;
            }

            .stat-number {
                font-size: 22px;
            }

            .stat-label {
                font-size: calc(12px + 2px) !important;
            }

            .ornament-line {
                width: 40px;
            }

            /* Footer图片缩略图缩小 */
            .footer-overlay-image {
                width: 150px !important;
            }

            .thumbnail-container {
                width: 350px !important;
                height: 180px !important;
            }

            .thumbnail {
                width: 30px !important;
                height: 45px !important;
            }

            /* 移动端使用专门的底部背景图片 */
            .footer-bg-img {
                content: url('/img/bottom-mobile.png') !important;
            }

            /* 移动端禁用悬停效果 */
            .thumbnail:hover {
                transform: none !important;
                box-shadow: none !important;
                z-index: auto !important;
                border-color: rgba(255, 255, 255, 0.8) !important;
            }

            .thumbnail:hover img {
                transform: none !important;
            }

            .image-name {
                font-size: 14px !important;
                padding: 6px 16px !important;
                top: -42px !important; /* 向下移动28px */
            }
        }

        @media (max-width: 768px) {
            /* 防止移动端左右滑动 */
            html, body {
                overflow-x: hidden !important;
                max-width: 100vw !important;
                width: 100% !important;
                position: relative !important;
            }

            /* 确保所有容器不超出视口 */
            * {
                max-width: 100vw !important;
            }
        }

        @media (max-width: 480px) {
            .logo-title {
                font-size: 24px;
            }

            .logo-subtitle {
                font-size: 12px;
            }

            .banner-title {
                font-size: 22px;
            }

            .banner-desc {
                font-size: 14px !important;
            }

            .footer-content {
                font-size: 12px;
                padding: 15px;
                bottom: 10px;
            }

            /* 修复移动端左右滑动问题 - 隐藏或调整负值定位元素 */
            .hero-section::after,
            .hero-section::before {
                display: none !important;
            }

            .circle-1,
            .circle-2,
            .circle-3 {
                display: none !important;
            }

            .news-card.featured::before,
            .news-card.featured::after {
                display: none !important;
            }

            .brand-header::before,
            .brand-footer::before {
                display: none !important;
            }

            .brand-background {
                display: none !important;
            }
        }

        /* ========== 品牌理念内容样式 (er.asp 专用) ========== */
        .er-philosophy-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题 */
        .er-philosophy-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .er-philosophy-decor-left {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #c41e3a, transparent);
            margin: 30px 0;
        }

        .er-philosophy-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .er-philosophy-subtitle {
            font-size: 28px;
            color: #c41e3a;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        .er-philosophy-decor-right {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #c41e3a, transparent);
            margin: 30px 0;
        }

        /* 核心理念 */
        .er-philosophy-hero {
            display: grid;
            grid-template-columns: 1fr auto;
            gap: 60px;
            align-items: center;
            margin-bottom: 100px;
            background: linear-gradient(135deg, #fff9f5 0%, #fff 100%);
            border-radius: 30px;
            padding: 60px;
            box-shadow: 0 10px 50px rgba(212, 165, 116, 0.2);
            position: relative;
            overflow: hidden;
        }

        .er-philosophy-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4a574, #c41e3a, #d4a574);
        }

        .er-philosophy-badge {
            display: inline-block;
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            color: #fff;
            padding: 12px 30px;
            border-radius: 50px;
            font-size: 20px;
            font-weight: 600;
            letter-spacing: 4px;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(196, 30, 58, 0.3);
        }

        .er-philosophy-hero-text {
            font-size: 22px;
            line-height: 2;
            color: #555;
            text-align: justify;
        }

        .er-philosophy-hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        .er-philosophy-circle {
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4);
            animation: pulse 3s ease-in-out infinite;
        }

        @keyframes pulse {
            0%, 100% { transform: scale(1); box-shadow: 0 10px 40px rgba(212, 165, 116, 0.4); }
            50% { transform: scale(1.05); box-shadow: 0 15px 50px rgba(212, 165, 116, 0.6); }
        }

        .er-philosophy-icon {
            font-size: 80px;
            color: #fff;
        }

        /* 四大板块网格 */
        .er-philosophy-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
            margin-bottom: 80px;
        }

        .er-philosophy-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(212, 165, 116, 0.2);
        }

        .er-philosophy-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #d4a574, #c41e3a);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .er-philosophy-card:hover::before {
            transform: scaleX(1);
        }

        .er-philosophy-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 50px rgba(212, 165, 116, 0.3);
        }

        .er-philosophy-card-icon {
            width: 80px;
            height: 80px;
            border-radius: 20px;
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
        }

        .er-philosophy-card-icon i {
            font-size: 36px;
            color: #fff;
        }

        .er-philosophy-card-title {
            font-size: 24px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 1px;
        }

        .er-philosophy-card-content p {
            font-size: 16px;
            line-height: 1.8;
            color: #666;
            margin: 0 0 15px 0;
            text-align: justify;
        }

        .er-philosophy-card-content p:last-child {
            margin-bottom: 0;
        }

        /* 底部寄语 */
        .er-philosophy-footer {
            text-align: center;
            padding: 60px;
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
        }

        .er-philosophy-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at center, rgba(212, 165, 116, 0.1) 0%, transparent 70%);
        }

        .er-philosophy-quote {
            position: relative;
            z-index: 1;
        }

        .er-philosophy-quote p {
            font-size: 32px;
            font-weight: 700;
            color: #d4a574;
            margin: 30px 0;
            letter-spacing: 6px;
        }

        .er-philosophy-quote i {
            font-size: 36px;
            color: rgba(212, 165, 116, 0.5);
        }

        /* 品牌理念移动端响应式 */
        @media (max-width: 768px) {
            .er-philosophy-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .er-philosophy-header {
                margin-bottom: 60px;
            }

            .er-philosophy-title {
                font-size: 32px;
                letter-spacing: 6px;
                margin: 0 0 15px 0;
            }

            .er-philosophy-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            .er-philosophy-decor-left,
            .er-philosophy-decor-right {
                margin: 20px 0;
            }

            .er-philosophy-hero {
                grid-template-columns: 1fr;
                padding: 40px 25px;
                gap: 40px;
                text-align: center;
            }

            .er-philosophy-hero-text {
                font-size: 18px;
            }

            .er-philosophy-badge {
                font-size: 16px;
                padding: 10px 20px;
                letter-spacing: 2px;
            }

            .er-philosophy-circle {
                width: 120px;
                height: 120px;
            }

            .er-philosophy-icon {
                font-size: 50px;
            }

            .er-philosophy-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .er-philosophy-card {
                padding: 30px 25px;
            }

            .er-philosophy-card-icon {
                width: 60px;
                height: 60px;
            }

            .er-philosophy-card-icon i {
                font-size: 28px;
            }

            .er-philosophy-card-title {
                font-size: 20px;
            }

            .er-philosophy-card-content p {
                font-size: 15px;
            }

            .er-philosophy-footer {
                padding: 40px 25px;
            }

            .er-philosophy-quote p {
                font-size: 19px;
                letter-spacing: 1px;
                margin: 20px 0;
            }

            .er-philosophy-quote i {
                font-size: 20px;
            }

            .er-philosophy-quote i {
                font-size: 24px;
            }
        }

        /* ========== 三农服务内容样式 (sannong/er.asp 专用) ========== */
        .sannong-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题区 */
        .sannong-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
        }

        .sannong-header-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #27ae60, transparent);
            margin: 30px 0;
        }

        .sannong-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .sannong-subtitle {
            font-size: 28px;
            color: #27ae60;
            font-weight: 600;
            letter-spacing: 6px;
            position: relative;
            display: inline-block;
        }

        .sannong-subtitle::before,
        .sannong-subtitle::after {
            content: '';
            position: absolute;
            top: 50%;
            width: 60px;
            height: 1px;
            background: #27ae60;
        }

        .sannong-subtitle::before {
            right: calc(100% + 15px);
        }

        .sannong-subtitle::after {
            left: calc(100% + 15px);
        }

        /* 引导区 */
        .sannong-intro {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: center;
            background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .sannong-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #27ae60, #1e8449);
        }

        .sannong-intro-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 40px rgba(39, 174, 96, 0.3);
        }

        .sannong-intro-icon i {
            font-size: 50px;
            color: #fff;
        }

        .sannong-intro-text {
            font-size: 20px;
            line-height: 1.9;
            color: #555;
            text-align: justify;
            margin: 0;
        }

        /* 四大板块网格 */
        .sannong-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 35px;
            margin-bottom: 100px;
        }

        .sannong-card {
            background: #fff;
            border-radius: 20px;
            padding: 45px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(39, 174, 96, 0.15);
        }

        .sannong-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #27ae60, #1e8449);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .sannong-card:hover::before {
            transform: scaleX(1);
        }

        .sannong-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 15px 50px rgba(39, 174, 96, 0.25);
        }

        .sannong-card-number {
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 72px;
            font-weight: 700;
            color: rgba(39, 174, 96, 0.1);
            line-height: 1;
            font-family: 'Georgia', serif;
        }

        .sannong-card-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 25px;
            box-shadow: 0 5px 20px rgba(39, 174, 96, 0.3);
        }

        .sannong-card-icon i {
            font-size: 32px;
            color: #fff;
        }

        .sannong-card-title {
            font-size: 22px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 1px;
        }

        .sannong-card-content p {
            font-size: 15px;
            line-height: 1.9;
            color: #666;
            margin: 0 0 15px 0;
            text-align: justify;
        }

        .sannong-card-content p:last-child {
            margin-bottom: 0;
        }

        /* 产品优势区 */
        .sannong-features {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            border-radius: 25px;
            padding: 60px 50px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .sannong-features::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #27ae60, #1e8449, #27ae60);
        }

        .sannong-features-title {
            text-align: center;
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 50px 0;
            letter-spacing: 4px;
            position: relative;
        }

        .sannong-features-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .sannong-feature-item {
            text-align: center;
            padding: 30px 20px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid rgba(39, 174, 96, 0.3);
            border-radius: 15px;
            transition: all 0.4s ease;
        }

        .sannong-feature-item:hover {
            background: rgba(255, 255, 255, 0.1);
            transform: translateY(-5px);
            border-color: #27ae60;
        }

        .sannong-feature-icon {
            width: 65px;
            height: 65px;
            border-radius: 50%;
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 5px 20px rgba(39, 174, 96, 0.4);
        }

        .sannong-feature-icon i {
            font-size: 28px;
            color: #fff;
        }

        .sannong-feature-title {
            font-size: 18px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 12px 0;
        }

        .sannong-feature-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        /* 底部寄语 */
        .sannong-footer {
            text-align: center;
            padding: 70px;
            background: linear-gradient(135deg, #f0f9f4 0%, #ffffff 100%);
            border-radius: 20px;
            position: relative;
            overflow: hidden;
            border: 2px solid #27ae60;
        }

        .sannong-footer-inner {
            position: relative;
            z-index: 1;
        }

        .sannong-footer-quote-left,
        .sannong-footer-quote-right {
            font-size: 40px;
            color: #27ae60;
            opacity: 0.5;
        }

        .sannong-footer-text {
            font-size: 36px;
            font-weight: 700;
            color: #27ae60;
            margin: 30px 0;
            letter-spacing: 8px;
        }

        /* 三农服务移动端响应式 */
        @media (max-width: 768px) {
            .sannong-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .sannong-header {
                margin-bottom: 60px;
            }

            .sannong-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            .sannong-subtitle {
                font-size: 18px;
                letter-spacing: 3px;
            }

            .sannong-subtitle::before,
            .sannong-subtitle::after {
                width: 30px;
            }

            .sannong-intro {
                grid-template-columns: 1fr;
                padding: 35px 25px;
                gap: 25px;
                text-align: center;
            }

            .sannong-intro-icon {
                width: 80px;
                height: 80px;
                margin: 0 auto;
            }

            .sannong-intro-icon i {
                font-size: 35px;
            }

            .sannong-intro-text {
                font-size: 16px;
            }

            .sannong-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .sannong-card {
                padding: 35px 25px;
            }

            .sannong-card-number {
                font-size: 48px;
                top: 20px;
                right: 20px;
            }

            .sannong-card-icon {
                width: 55px;
                height: 55px;
            }

            .sannong-card-icon i {
                font-size: 24px;
            }

            .sannong-card-title {
                font-size: 18px;
            }

            .sannong-card-content p {
                font-size: 14px;
            }

            .sannong-features {
                padding: 40px 25px;
            }

            .sannong-features-title {
                font-size: 24px;
                margin-bottom: 35px;
            }

            .sannong-features-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .sannong-feature-item {
                padding: 25px 15px;
            }

            .sannong-feature-icon {
                width: 50px;
                height: 50px;
            }

            .sannong-feature-icon i {
                font-size: 22px;
            }

            .sannong-feature-title {
                font-size: 15px;
            }

            .sannong-feature-desc {
                font-size: 12px;
            }

            .sannong-footer {
                padding: 40px 25px;
            }

            .sannong-footer-quote-left,
            .sannong-footer-quote-right {
                font-size: 24px;
            }

            .sannong-footer-text {
                font-size: 20px;
                letter-spacing: 4px;
            }
        }

        /* ========== 产品展示内容样式 (products/er.asp 专用) ========== */
        .products-section {
            max-width: 1300px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
            scroll-behavior: smooth;
            overflow-x: visible;
        }

        .products-nav-spacer {
            display: none;
        }

        .products-nav-spacer.show {
            display: block;
        }

        /* 页面标题区 */
        .products-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .products-header-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #d4a574, #c41e3a, transparent);
            margin: 30px 0;
        }

        .products-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .products-subtitle {
            font-size: 28px;
            color: #d4a574;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        /* 产品分类导航 */
        .products-nav {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 80px;
            flex-wrap: wrap;
            background: linear-gradient(135deg, #ffddc4 0%, #ffe4cc 30%, #ffd9b8 70%, #ffcc99 100%);
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }

        .products-nav.fixed {
            position: fixed;
            top: 200px;
            left: 50%;
            transform: translateX(-50%);
            z-index: 998;
        }

        .products-nav-item {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 15px 30px;
            background: #fff;
            border: 2px solid rgba(212, 165, 116, 0.3);
            border-radius: 50px;
            color: #666;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            transition: all 0.3s ease;
            box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
        }

        .products-nav-item i {
            font-size: 20px;
        }

        .products-nav-item:hover {
            border-color: #d4a574;
            color: #d4a574;
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(212, 165, 116, 0.3);
        }

        .products-nav-item.active {
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 5px 20px rgba(212, 165, 116, 0.4);
        }

        .products-nav-item.active:hover {
            transform: translateY(-3px);
            color: #fff;
        }

        /* 产品分类区 */
        .products-category {
            margin-bottom: 80px;
        }

        /* 锚点位置调整 */
        .products-category::before {
            content: '';
            display: block;
            height: 230px;
            margin-top: -230px;
            visibility: hidden;
        }

        .products-category-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 40px;
            padding-bottom: 20px;
            border-bottom: 2px solid rgba(212, 165, 116, 0.3);
            position: relative;
        }

        .products-category-icon {
            width: 70px;
            height: 70px;
            border-radius: 18px;
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
        }

        .products-category-icon i {
            font-size: 32px;
            color: #fff;
        }

        .products-category-title {
            font-size: 36px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
            letter-spacing: 4px;
        }

        .products-category-badge {
            margin-left: auto;
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            color: #fff;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 2px;
        }

        /* 产品网格 */
        .products-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
        }

        .product-item {
            background: #fff;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
            transition: all 0.4s ease;
            border: 1px solid rgba(212, 165, 116, 0.15);
            cursor: default;
        }

        .product-item:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 40px rgba(212, 165, 116, 0.3);
        }

        .product-image {
            width: 100%;
            padding-top: 146%;
            position: relative;
            overflow: hidden;
            background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
        }

        .product-image img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.4s ease;
        }

        .product-item:hover .product-image img {
            transform: scale(1.1);
        }

        .product-name {
            padding: 20px 15px;
            text-align: center;
            font-size: 16px;
            font-weight: 600;
            color: #333;
            line-height: 1.5;
            border-top: 1px solid rgba(212, 165, 116, 0.1);
        }

        /* 产品展示移动端响应式 */
        @media (max-width: 768px) {
            .products-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .products-header {
                margin-bottom: 50px;
            }

            .products-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            .products-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            .products-nav {
                gap: 10px;
                margin-bottom: 40px;
                flex-wrap: wrap;
                justify-content: center;
                padding: 10px 15px;
                background: rgba(255, 255, 255, 0.98);
                border-radius: 10px;
                box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
            }

            .products-nav.fixed {
                position: fixed;
                top: 100px;
                left: 50%;
                transform: translateX(-50%);
                z-index: 998;
                width: calc(100% - 30px);
                max-width: 100%;
            }

            .products-nav-item {
                padding: 12px 16px;
                font-size: 14px;
                border-radius: 25px;
                flex: 0 0 auto;
                justify-content: center;
            }

            .products-nav-item i {
                display: none;
            }

            /* 前三个分类一行显示，自适应宽度 */
            .products-nav-item:nth-child(1),
            .products-nav-item:nth-child(2),
            .products-nav-item:nth-child(3) {
                flex: 0 0 auto;
                background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
                color: #fff;
                border-color: transparent;
                text-align: center;
            }

            /* 后两个分类一行显示 */
            .products-nav-item:nth-child(4),
            .products-nav-item:nth-child(5) {
                flex: 1 1 calc(50% - 5px);
                min-width: calc(50% - 5px);
                background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
                color: #fff;
                border-color: transparent;
            }

            .products-category-header {
                flex-direction: row;
                align-items: center;
                gap: 12px;
                padding-bottom: 12px;
                flex-wrap: nowrap;
            }

            .products-category-icon {
                width: 40px;
                height: 40px;
                flex-shrink: 0;
            }

            .products-category-icon i {
                font-size: 18px;
            }

            .products-category-title {
                font-size: 16px;
                letter-spacing: 1px;
                flex: 1;
            }

            .products-category-badge {
                margin-left: auto;
                font-size: 10px;
                padding: 4px 10px;
                flex-shrink: 0;
            }

            .products-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 15px;
            }

            .product-image {
                height: 200px;
            }

            .product-name {
                padding: 12px 8px;
                font-size: 13px;
            }

            /* 锚点位置调整 - 移动端 */
            .products-category::before {
                height: 115px;
                margin-top: -115px;
            }
        }

        /* ========== 新闻栏目内容样式 (news/er.asp 专用) ========== */
        body.page-news .news-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题区 */
        body.page-news .news-header {
            text-align: center;
            margin-bottom: 80px;
        }

        body.page-news .news-header-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #9b59b6, #8e44ad, transparent);
            margin: 30px 0;
        }

        body.page-news .news-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        body.page-news .news-subtitle {
            font-size: 28px;
            color: #9b59b6;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        /* 新闻列表 */
        body.page-news .news-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 25px;
            margin-bottom: 60px;
        }

        body.page-news .news-item {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 20px;
            background: #fff;
            border-radius: 15px;
            padding: 25px;
            text-decoration: none;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(155, 89, 182, 0.1);
            transition: all 0.4s ease;
            align-items: start;
        }

        body.page-news .news-item:hover {
            transform: translateY(-5px);
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            box-shadow: 0 12px 40px rgba(155, 89, 182, 0.4);
            border-color: transparent;
        }

        body.page-news .news-item:hover .news-item-date-full,
        body.page-news .news-item:hover .news-item-excerpt {
            color: rgba(255, 255, 255, 0.9);
        }

        body.page-news .news-item:hover .news-item-date-full::before {
            background: #fff;
        }

        body.page-news .news-item:hover .news-item-readmore {
            color: #fff;
        }

        body.page-news .news-item-icon-wrapper {
            display: flex;
            align-items: flex-start;
        }

        body.page-news .news-item-icon {
            width: 55px;
            height: 55px;
            border-radius: 12px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 6px 20px rgba(155, 89, 182, 0.35);
            flex-shrink: 0;
        }

        body.page-news .news-item-icon i {
            font-size: 24px;
            color: #fff;
        }

        body.page-news .news-item-content {
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        body.page-news .news-item-date-full {
            font-size: 13px;
            color: #999;
            font-weight: 500;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }

        body.page-news .news-item-date-full::before {
            content: '';
            width: 5px;
            height: 5px;
            background: linear-gradient(135deg, #9b59b6, #8e44ad);
            border-radius: 50%;
        }

        body.page-news .news-item-title {
            font-size: 18px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 10px 0;
            line-height: 1.3;
            transition: color 0.3s ease;
        }

        body.page-news .news-item:hover .news-item-title {
            color: #fff;
        }

        body.page-news .news-item-excerpt {
            font-size: 14px;
            line-height: 1.6;
            color: #666;
            margin: 0 0 15px 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        body.page-news .news-item-footer {
            display: flex;
            justify-content: flex-end;
            align-items: center;
            padding-top: 12px;
            border-top: 1px solid rgba(155, 89, 182, 0.15);
            margin-top: auto;
            transition: border-color 0.3s ease;
        }

        body.page-news .news-item:hover .news-item-footer {
            border-color: rgba(255, 255, 255, 0.3);
        }

        body.page-news .news-item-readmore {
            font-size: 13px;
            color: #9b59b6;
            font-weight: 600;
            display: flex;
            align-items: center;
            gap: 6px;
            transition: all 0.3s ease;
        }

        body.page-news .news-item-readmore i {
            transition: transform 0.3s ease;
            font-size: 11px;
        }

        body.page-news .news-item:hover .news-item-readmore i {
            transform: translateX(4px);
        }

        /* 分页 */
        body.page-news .news-pagination {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 10px;
        }

        body.page-news .news-pagination-item {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            border: 2px solid rgba(155, 89, 182, 0.2);
            background: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-size: 16px;
            font-weight: 600;
            color: #666;
            transition: all 0.3s ease;
        }

        body.page-news .news-pagination-item:hover {
            border-color: #9b59b6;
            color: #9b59b6;
        }

        body.page-news .news-pagination-item.active {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            border-color: transparent;
            color: #fff;
            box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
        }

        body.page-news .news-pagination-ellipsis {
            font-size: 18px;
            color: #999;
            font-weight: 500;
        }

        body.page-news .news-pagination-next {
            width: 45px;
            height: 45px;
            border-radius: 10px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            border: none;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            color: #fff;
            box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
            transition: all 0.3s ease;
        }

        body.page-news .news-pagination-next:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.4);
        }

        /* 新闻栏目移动端响应式 */
        @media (max-width: 768px) {
            body.page-news .news-section {
                padding: 125px 20px 0 20px !important;
                margin-bottom: 320px;
            }

            body.page-news .news-header {
                margin-bottom: 70px;
            }

            body.page-news .news-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            body.page-news .news-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            body.page-news .news-list {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            body.page-news .news-item {
                grid-template-columns: 1fr;
                gap: 15px;
                padding: 20px 18px;
            }

            body.page-news .news-item-icon-wrapper {
                justify-content: flex-start;
                margin-bottom: 5px;
            }

            body.page-news .news-item-icon {
                width: 50px;
                height: 50px;
            }

            body.page-news .news-item-icon i {
                font-size: 20px;
            }

            body.page-news .news-item-content {
                text-align: left;
            }

            body.page-news .news-item-date-full {
                font-size: 12px;
            }

            body.page-news .news-item-title {
                font-size: 16px;
            }

            body.page-news .news-item-excerpt {
                font-size: 13px;
                -webkit-line-clamp: 2;
            }

            body.page-news .news-item-footer {
                padding-top: 10px;
            }

            body.page-news .news-pagination-item {
                width: 40px;
                height: 40px;
                font-size: 14px;
            }

            body.page-news .news-pagination-next {
                width: 40px;
                height: 40px;
            }
        }

        /* ========== 新闻详情页样式 (Details.asp 专用) ========== */
        .news-detail-container {
            max-width: 900px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
        }

        /* 返回按钮 */
        .news-detail-breadcrumb {
            margin-bottom: 30px;
        }

        .news-detail-breadcrumb .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
            border-radius: 30px;
            color: #666;
            font-size: 14px;
            font-weight: 600;
            text-decoration: none;
            transition: all 0.3s ease;
            border: 1px solid rgba(155, 89, 182, 0.2);
        }

        .news-detail-breadcrumb .back-btn:hover {
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            color: #fff;
            border-color: transparent;
            transform: translateX(-5px);
            box-shadow: 0 5px 20px rgba(155, 89, 182, 0.3);
        }

        /* 文章主体 */
        .news-detail-article {
            background: #fff;
            border-radius: 20px;
            padding: 50px 60px;
            box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(155, 89, 182, 0.1);
        }

        /* 标题区 */
        .news-detail-header {
            text-align: center;
            margin-bottom: 40px;
            padding-bottom: 30px;
            border-bottom: 2px dashed rgba(155, 89, 182, 0.15);
        }

        .news-detail-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 25px;
            border-radius: 50%;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 8px 30px rgba(155, 89, 182, 0.35);
        }

        .news-detail-icon i {
            font-size: 30px;
            color: #fff;
        }

        .news-detail-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            line-height: 1.4;
            letter-spacing: 2px;
        }

        .news-detail-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            flex-wrap: wrap;
        }

        .news-detail-meta span {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: #888;
        }

        .news-detail-meta i {
            color: #9b59b6;
        }

        /* 内容区 */
        .news-detail-content {
            font-size: 16px;
            line-height: 1.8;
            color: #555;
        }

        .news-detail-content img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
            margin: 20px 0;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        }

        .news-detail-content p {
            margin-bottom: 18px;
            text-align: justify;
        }

        /* 分隔线 */
        .news-detail-divider {
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(155, 89, 182, 0.3), transparent);
            margin: 40px 0;
        }

        /* 底部返回按钮 */
        .news-detail-footer {
            text-align: center;
        }

        .news-detail-footer .back-btn-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 15px 40px;
            background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
            border-radius: 35px;
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            text-decoration: none;
            box-shadow: 0 8px 25px rgba(155, 89, 182, 0.35);
            transition: all 0.3s ease;
        }

        .news-detail-footer .back-btn-back:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(155, 89, 182, 0.45);
        }

        /* 新闻详情页移动端响应式 */
        @media (max-width: 768px) {
            .news-detail-container {
                padding: 140px 15px 0 15px;
                margin-bottom: 320px;
            }

            .news-detail-article {
                padding: 30px 25px;
                border-radius: 15px;
            }

            .news-detail-header {
                padding-bottom: 25px;
            }

            .news-detail-icon {
                width: 55px;
                height: 55px;
                margin-bottom: 20px;
            }

            .news-detail-icon i {
                font-size: 24px;
            }

            .news-detail-title {
                font-size: 22px;
                letter-spacing: 1px;
            }

            .news-detail-meta {
                gap: 15px;
            }

            .news-detail-meta span {
                font-size: 13px;
            }

            .news-detail-content {
                font-size: 15px;
                line-height: 1.7;
            }

            .news-detail-footer .back-btn-back {
                padding: 12px 30px;
                font-size: 15px;
            }
        }

        /* ========== 联系我们内容样式 (contact/er.asp 专用) ========== */
        .contact-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题区 */
        .contact-header {
            text-align: center;
            margin-bottom: 100px;
        }

        .contact-header-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e74c3c, #c0392b, transparent);
            margin: 30px 0;
        }

        .contact-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .contact-subtitle {
            font-size: 28px;
            color: #e74c3c;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        /* 双品牌展示区 */
        .contact-brands {
            margin-bottom: 80px;
        }

        .contact-brands-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin: 0 0 50px 0;
            letter-spacing: 6px;
            position: relative;
        }

        .contact-brands-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 40px;
        }

        .contact-brand-card {
            background: #fff;
            border-radius: 25px;
            padding: 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
            box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
            transition: all 0.4s ease;
        }

        .contact-brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
        }

        .contact-brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
        }

        .brand-shangtang::before {
            background: linear-gradient(90deg, #d4a574, #c41e3a);
        }

        .brand-xinwu::before {
            background: linear-gradient(90deg, #27ae60, #1e8449);
        }

        .contact-brand-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            margin: 0 auto 25px auto;
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
            z-index: 1;
        }

        .brand-shangtang .contact-brand-icon {
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            box-shadow: 0 10px 30px rgba(212, 165, 116, 0.4);
        }

        .brand-xinwu .contact-brand-icon {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            box-shadow: 0 10px 30px rgba(39, 174, 96, 0.4);
        }

        .contact-brand-icon i {
            font-size: 42px;
            color: #fff;
        }

        .contact-brand-name {
            font-size: 36px;
            font-weight: 700;
            margin: 0 0 15px 0;
            letter-spacing: 4px;
            position: relative;
            z-index: 1;
        }

        .brand-shangtang .contact-brand-name {
            color: #c41e3a;
        }

        .brand-xinwu .contact-brand-name {
            color: #27ae60;
        }

        .contact-brand-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.7;
            margin: 0 0 20px 0;
            position: relative;
            z-index: 1;
        }

        .contact-brand-divider {
            width: 60px;
            height: 3px;
            margin: 0 auto 20px auto;
            border-radius: 2px;
            position: relative;
            z-index: 1;
        }

        .brand-shangtang .contact-brand-divider {
            background: linear-gradient(90deg, #d4a574, #c41e3a);
        }

        .brand-xinwu .contact-brand-divider {
            background: linear-gradient(90deg, #27ae60, #1e8449);
        }

        .contact-brand-tag {
            display: inline-block;
            padding: 8px 25px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
            position: relative;
            z-index: 1;
        }

        .brand-shangtang .contact-brand-tag {
            background: linear-gradient(135deg, #d4a574 0%, #c41e3a 100%);
            color: #fff;
            box-shadow: 0 5px 15px rgba(196, 30, 58, 0.3);
        }

        .brand-xinwu .contact-brand-tag {
            background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%);
            color: #fff;
            box-shadow: 0 5px 15px rgba(39, 174, 96, 0.3);
        }

        /* 公司名称区 */
        .contact-company {
            margin-bottom: 80px;
        }

        .contact-company-inner {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            border-radius: 25px;
            padding: 50px;
            display: flex;
            align-items: center;
            gap: 40px;
            position: relative;
            overflow: hidden;
        }

        .contact-company-inner::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #e74c3c, #d4a574, #27ae60, #e74c3c);
        }

        .contact-company-icon {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        .contact-company-icon i {
            font-size: 42px;
            color: #fff;
        }

        .contact-company-content {
            flex: 1;
            position: relative;
            z-index: 1;
        }

        .contact-company-name {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            margin: 0 0 15px 0;
            letter-spacing: 4px;
        }

        .contact-company-slogan {
            font-size: 18px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            letter-spacing: 6px;
        }

        /* 联系信息区 */
        .contact-info {
            margin-bottom: 80px;
        }

        .contact-info-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin: 0 0 50px 0;
            letter-spacing: 6px;
        }

        .contact-info-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }

        .contact-info-item {
            background: #fff;
            border-radius: 20px;
            padding: 35px;
            display: flex;
            align-items: flex-start;
            gap: 25px;
            box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
            border: 2px solid rgba(231, 76, 60, 0.1);
            transition: all 0.4s ease;
        }

        .contact-info-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 45px rgba(231, 76, 60, 0.2);
            border-color: rgba(231, 76, 60, 0.3);
        }

        .contact-info-icon {
            width: 60px;
            height: 60px;
            border-radius: 15px;
            background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
            flex-shrink: 0;
        }

        .contact-info-icon i {
            font-size: 26px;
            color: #fff;
        }

        .contact-info-content {
            flex: 1;
        }

        .contact-info-label {
            font-size: 16px;
            font-weight: 600;
            color: #e74c3c;
            margin: 0 0 8px 0;
        }

        .contact-info-value {
            font-size: 16px;
            color: #555;
            line-height: 1.6;
            margin: 0;
        }

        /* 底部装饰区 */
        .contact-footer-decor {
            text-align: center;
            padding: 40px;
            background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
            border-radius: 20px;
        }

        .contact-footer-line {
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, transparent, #e74c3c, transparent);
            margin: 0 auto 20px auto;
        }

        .contact-footer-text {
            font-size: 22px;
            font-weight: 600;
            color: #2c3e50;
            margin: 0;
            letter-spacing: 4px;
        }

        /* 联系我们移动端响应式 */
        @media (max-width: 768px) {
            .contact-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .contact-header {
                margin-bottom: 60px;
            }

            .contact-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            .contact-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            .contact-brands-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .contact-brands-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }

            .contact-brand-card {
                padding: 35px 25px;
            }

            .contact-brand-icon {
                width: 80px;
                height: 80px;
            }

            .contact-brand-icon i {
                font-size: 32px;
            }

            .contact-brand-name {
                font-size: 26px;
            }

            .contact-brand-desc {
                font-size: 14px;
            }

            .contact-company-inner {
                flex-direction: column;
                text-align: center;
                padding: 35px 25px;
            }

            .contact-company-icon {
                width: 80px;
                height: 80px;
            }

            .contact-company-icon i {
                font-size: 32px;
            }

            .contact-company-name {
                font-size: 24px;
            }

            .contact-company-slogan {
                font-size: 14px;
                letter-spacing: 4px;
            }

            .contact-info-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .contact-info-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .contact-info-item {
                padding: 25px 20px;
                gap: 18px;
            }

            .contact-info-icon {
                width: 50px;
                height: 50px;
            }

            .contact-info-icon i {
                font-size: 22px;
            }

            .contact-info-label {
                font-size: 14px;
            }

            .contact-info-value {
                font-size: 14px;
            }

            .contact-footer-decor {
                padding: 30px 20px;
            }

            .contact-footer-line {
                width: 60px;
            }

            .contact-footer-text {
                font-size: 16px;
                letter-spacing: 2px;
            }
        }

        /* ========== 人力资源内容样式 (hr/er.asp 专用) ========== */
        .hr-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题区 */
        .hr-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .hr-header-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #3498db, #2980b9, transparent);
            margin: 30px 0;
        }

        .hr-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .hr-subtitle {
            font-size: 28px;
            color: #3498db;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        /* 人才理念区 */
        .hr-philosophy {
            display: grid;
            grid-template-columns: auto 1fr;
            gap: 40px;
            align-items: center;
            background: linear-gradient(135deg, #e8f4fc 0%, #ffffff 100%);
            border-radius: 25px;
            padding: 50px;
            margin-bottom: 80px;
            position: relative;
            overflow: hidden;
        }

        .hr-philosophy::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 6px;
            height: 100%;
            background: linear-gradient(180deg, #3498db, #2980b9);
        }

        .hr-philosophy-icon {
            width: 120px;
            height: 120px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            box-shadow: 0 10px 40px rgba(52, 152, 219, 0.3);
        }

        .hr-philosophy-icon i {
            font-size: 50px;
            color: #fff;
        }

        .hr-philosophy-title {
            font-size: 32px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 15px 0;
            letter-spacing: 4px;
        }

        .hr-philosophy-text {
            font-size: 18px;
            line-height: 1.9;
            color: #555;
            margin: 0;
        }

        /* 招聘职位区 */
        .hr-jobs {
            margin-bottom: 80px;
        }

        .hr-jobs-title {
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            text-align: center;
            margin: 0 0 50px 0;
            letter-spacing: 6px;
            position: relative;
        }

        .hr-job-card {
            background: #fff;
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
            border: 1px solid rgba(52, 152, 219, 0.15);
            transition: all 0.4s ease;
        }

        .hr-job-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 50px rgba(52, 152, 219, 0.25);
        }

        .hr-job-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-bottom: 25px;
            border-bottom: 2px solid rgba(52, 152, 219, 0.2);
            margin-bottom: 25px;
        }

        .hr-job-title {
            display: flex;
            align-items: center;
            gap: 15px;
            margin: 0;
        }

        .hr-job-title h3 {
            font-size: 28px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0;
        }

        .hr-job-tag {
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            color: #fff;
            padding: 6px 16px;
            border-radius: 20px;
            font-size: 14px;
            font-weight: 600;
        }

        .hr-job-salary {
            font-size: 24px;
            font-weight: 700;
            color: #e74c3c;
        }

        .hr-job-info {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-bottom: 25px;
        }

        .hr-job-info-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 16px;
            color: #666;
        }

        .hr-job-info-item i {
            font-size: 18px;
            color: #3498db;
        }

        .hr-job-benefits {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 30px;
        }

        .hr-benefit-tag {
            background: rgba(52, 152, 219, 0.1);
            color: #3498db;
            padding: 8px 20px;
            border-radius: 25px;
            font-size: 14px;
            font-weight: 600;
        }

        .hr-job-details-title {
            font-size: 20px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 15px 0;
        }

        .hr-job-details-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .hr-job-details-list li {
            padding-left: 25px;
            position: relative;
            font-size: 16px;
            line-height: 1.8;
            color: #555;
            margin-bottom: 10px;
        }

        .hr-job-details-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 8px;
            height: 8px;
            background: linear-gradient(135deg, #3498db, #2980b9);
            border-radius: 50%;
        }

        /* 联系方式区 */
        .hr-contact {
            background: linear-gradient(135deg, #2c3e50 0%, #1a252f 100%);
            border-radius: 25px;
            padding: 60px 50px;
            position: relative;
            overflow: hidden;
        }

        .hr-contact::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, #3498db, #2980b9, #3498db);
        }

        .hr-contact-title {
            font-size: 36px;
            font-weight: 700;
            color: #fff;
            text-align: center;
            margin: 0 0 50px 0;
            letter-spacing: 4px;
        }

        .hr-contact-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 40px;
            position: relative;
            z-index: 1;
        }

        .hr-contact-item {
            text-align: center;
        }

        .hr-contact-icon {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 20px auto;
            box-shadow: 0 5px 20px rgba(52, 152, 219, 0.4);
        }

        .hr-contact-icon i {
            font-size: 36px;
            color: #fff;
        }

        .hr-contact-info h4 {
            font-size: 18px;
            font-weight: 600;
            color: #fff;
            margin: 0 0 10px 0;
        }

        .hr-contact-info p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }

        /* 人力资源移动端响应式 */
        @media (max-width: 768px) {
            .hr-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .hr-header {
                margin-bottom: 60px;
            }

            .hr-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            .hr-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            .hr-philosophy {
                grid-template-columns: 1fr;
                padding: 35px 25px;
                text-align: center;
            }

            .hr-philosophy-icon {
                width: 80px;
                height: 80px;
                margin: 0 auto;
            }

            .hr-philosophy-icon i {
                font-size: 35px;
            }

            .hr-philosophy-title {
                font-size: 22px;
            }

            .hr-philosophy-text {
                font-size: 15px;
            }

            .hr-jobs-title {
                font-size: 28px;
                margin-bottom: 35px;
            }

            .hr-job-card {
                padding: 30px 20px;
            }

            .hr-job-header {
                flex-direction: column;
                align-items: flex-start;
                gap: 15px;
            }

            .hr-job-title h3 {
                font-size: 20px;
            }

            .hr-job-salary {
                font-size: 20px;
            }

            .hr-job-info {
                grid-template-columns: 1fr;
                gap: 12px;
            }

            .hr-job-info-item {
                font-size: 14px;
            }

            .hr-job-benefits {
                gap: 8px;
            }

            .hr-benefit-tag {
                font-size: 12px;
                padding: 6px 14px;
            }

            .hr-job-details-title {
                font-size: 17px;
            }

            .hr-job-details-list li {
                font-size: 14px;
            }

            .hr-contact {
                padding: 40px 25px;
            }

            .hr-contact-title {
                font-size: 24px;
                margin-bottom: 35px;
            }

            .hr-contact-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .hr-contact-icon {
                width: 60px;
                height: 60px;
            }

            .hr-contact-icon i {
                font-size: 28px;
            }

            .hr-contact-info h4 {
                font-size: 16px;
            }

            .hr-contact-info p {
                font-size: 14px;
            }
        }

        /* ========== 品牌实力内容样式 (er.asp 专用) ========== */
        .er-brand-strength-section {
            max-width: 1200px;
            margin: 0 auto 60px auto;
            padding: 270px 20px 0 20px;
            position: relative;
        }

        /* 页面标题 */
        .er-brand-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .er-brand-decor {
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, transparent, #3498db, #2980b9, transparent);
            margin: 30px 0;
        }

        .er-brand-title {
            font-size: 64px;
            font-weight: 700;
            color: #2c3e50;
            margin: 0 0 20px 0;
            letter-spacing: 12px;
            position: relative;
        }

        .er-brand-subtitle {
            font-size: 28px;
            color: #3498db;
            font-weight: 600;
            letter-spacing: 8px;
            display: inline-block;
        }

        .er-brand-section-title {
            text-align: center;
            font-size: 42px;
            font-weight: 700;
            color: #2c3e50;
            margin-bottom: 50px;
            position: relative;
            letter-spacing: 3px;
        }

        .er-brand-section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #1a1a1a, #d4a574);
            margin: 20px auto 0;
            border-radius: 2px;
        }

        .er-brand-intro-card {
            background: linear-gradient(135deg, #fff 0%, #f8f9fa 100%);
            border-radius: 20px;
            padding: 50px;
            margin-bottom: 60px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.08);
            position: relative;
            overflow: hidden;
        }

        .er-brand-intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 6px;
            background: linear-gradient(90deg, #d4a574, #c4956a, #d4a574);
        }

        .er-brand-intro-content {
            font-size: 18px;
            line-height: 2;
            color: #444;
            text-align: justify;
            position: relative;
            z-index: 1;
        }

        .er-brand-intro-content::first-letter {
            font-size: 48px;
            font-weight: 700;
            color: #d4a574;
            float: left;
            margin-right: 10px;
            line-height: 1;
        }

        .er-brand-subtitle {
            font-size: 28px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 30px;
            position: relative;
            padding-left: 20px;
            border-left: 5px solid #d4a574;
        }

        .er-brand-box {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            margin-bottom: 60px;
        }

        .er-brand-card {
            background: #fff;
            border-radius: 16px;
            padding: 40px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .er-brand-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .er-brand-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
        }

        .er-brand-card.er-sugar::before {
            background: linear-gradient(90deg, #f4a261, #e76f51);
        }

        .er-brand-card.er-brown::before {
            background: linear-gradient(90deg, #8b4513, #a0522d);
        }

        .er-brand-card-header {
            display: flex;
            align-items: center;
            margin-bottom: 25px;
            gap: 15px;
        }

        .er-brand-card-icon {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #f4a261, #e76f51);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 28px;
        }

        .er-brand-card.er-brown .er-brand-card-icon {
            background: linear-gradient(135deg, #8b4513, #a0522d);
        }

        .er-brand-card-title {
            font-size: 26px;
            font-weight: 700;
            color: #2c3e50;
        }

        .er-brand-card-desc {
            font-size: 16px;
            color: #666;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .er-brand-features {
            margin-top: 25px;
        }

        .er-brand-feature-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8f9fa;
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        .er-brand-feature-item:hover {
            background: #f0f0f0;
            transform: translateX(5px);
        }

        .er-brand-feature-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            background: linear-gradient(135deg, #d4a574, #c4956a);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 16px;
            margin-top: 2px;
        }

        .er-brand-feature-content {
            flex: 1;
        }

        .er-brand-feature-title {
            font-size: 18px;
            font-weight: 600;
            color: #2c3e50;
            margin-bottom: 8px;
        }

        .er-brand-feature-text {
            font-size: 15px;
            color: #666;
            line-height: 1.7;
        }

        .er-brand-summary {
            background: linear-gradient(135deg, #2c3e50 0%, #1a1a1a 100%);
            border-radius: 20px;
            padding: 50px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .er-brand-summary::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(212,165,116,0.1) 0%, transparent 70%);
        }

        .er-brand-summary-title {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 30px;
            position: relative;
            z-index: 1;
        }

        .er-brand-summary-title span {
            color: #d4a574;
        }

        .er-brand-summary-options {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 30px;
            position: relative;
            z-index: 1;
        }

        .er-brand-option-card {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 12px;
            padding: 30px;
            transition: all 0.4s ease;
        }

        .er-brand-option-card:hover {
            background: rgba(255,255,255,0.12);
            border-color: #d4a574;
            transform: translateY(-5px);
        }

        .er-brand-option-title {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 15px;
            color: #d4a574;
        }

        .er-brand-option-text {
            font-size: 16px;
            line-height: 1.8;
            color: #ccc;
        }

        @media (max-width: 768px) {
            .er-brand-box {
                grid-template-columns: 1fr;
            }

            .er-brand-summary-options {
                grid-template-columns: 1fr;
            }

            .er-brand-strength-section {
                padding: 140px 20px 0 20px;
                margin-bottom: 320px;
            }

            .er-brand-title {
                font-size: 32px;
                letter-spacing: 6px;
            }

            .er-brand-subtitle {
                font-size: 18px;
                letter-spacing: 4px;
            }

            .er-brand-section-title {
                font-size: 28px;
            }

            .er-brand-intro-card {
                padding: 30px;
            }

            .er-brand-intro-content {
                font-size: 16px;
            }

            .er-brand-intro-content::first-letter {
                font-size: 40px;
            }
        }
        /* ========== 品牌实力内容样式结束 ========== */
 
 