
    :root {
      --color-primary: #2D5A27;
      --color-secondary: #558B2F;
      --color-accent: #8BC34A;
      --color-accent-light: #AED581;
      --color-accent-water: #00ACC1;
      --color-background: #F1F8E9;
      --color-surface: #FFFFFF;
      --color-border: #C5E1A5;
      --shadow-sm: 0 2px 8px rgba(45,90,39,0.06);
      --shadow-md: 0 4px 20px rgba(45,90,39,0.1);
      --shadow-lg: 0 8px 40px rgba(45,90,39,0.15);
      --radius-sm: 12px;
      --radius-md: 20px;
      --radius-lg: 28px;
      --transition: cubic-bezier(0.4, 0, 0.2, 1);
    }
    * { margin: 0; padding: 0; box-sizing: border-box; }
    html { scroll-behavior: smooth; overflow-x: hidden; }
    body { font-family: 'Noto Sans SC', sans-serif; background: var(--color-background); color: var(--color-primary); line-height: 1.6; overflow-x: hidden; padding-top: calc(64px + env(safe-area-inset-top, 0px)); }

    /* 清新自然主题导航样式 */
    .navbar { border-bottom: 1px solid rgba(45,90,39,0.08); }
    .logo { font-family: 'ZCOOL XiaoWei', serif; }
    .menu-overlay { background: rgba(45,90,39,0.2); }

    .hero { margin-top: 0; position: relative; overflow: hidden; }
    .carousel { position: relative; width: 100%; }
    .carousel-track { display: flex; transition: transform 0.6s var(--transition); }
    .carousel-slide { min-width: 100%; aspect-ratio: 3/2; display: flex; align-items: center; justify-content: center; padding: 40px 20px; text-align: center; background: linear-gradient(135deg, #E8F5E9 0%, #DCEDC8 100%); }
    .slide-content { max-width: 500px; }
    .slide-tag { display: inline-block; padding: 8px 20px; background: var(--color-accent-water); color: white; font-size: 0.85rem; font-weight: 500; border-radius: 50px; margin-bottom: 20px; }
    .slide-title { font-family: 'ZCOOL XiaoWei', serif; font-size: clamp(1.75rem, 5vw, 2.5rem); font-weight: 600; line-height: 1.3; margin-bottom: 16px; color: var(--color-primary); }
    .slide-desc { color: var(--color-secondary); font-size: 1rem; margin-bottom: 28px; }
    .slide-cta { display: inline-flex; align-items: center; gap: 8px; padding: 16px 32px; background: var(--color-primary); color: white; text-decoration: none; font-weight: 500; border-radius: 50px; transition: all 0.3s var(--transition); }
    .slide-cta:hover { background: var(--color-accent-water); }
    .carousel-arrow { position: absolute; top: 50%; transform: translateY(-50%); width: 48px; height: 48px; background: white; border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); transition: all 0.3s var(--transition); z-index: 10; }
    .carousel-arrow:hover { background: var(--color-accent-water); color: white; }
    .carousel-arrow.prev { left: 16px; }
    .carousel-arrow.next { right: 16px; }
    .carousel-dots { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); display: flex; gap: 10px; z-index: 10; }
    .carousel-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--color-border); border: none; cursor: pointer; transition: all 0.3s var(--transition); }
    .carousel-dot.active { background: var(--color-accent-water); width: 28px; border-radius: 5px; }

    .section { padding: 60px 20px; max-width: 1200px; margin: 0 auto; }
    .section-header { text-align: center; margin-bottom: 40px; }
    .section-title { font-family: 'ZCOOL XiaoWei', serif; font-size: clamp(1.5rem, 4vw, 2rem); font-weight: 600; margin-bottom: 12px; color: var(--color-primary); }
    .section-subtitle { color: var(--color-secondary); font-size: 0.95rem; }
    .section-title::after { content: ''; display: block; width: 60px; height: 3px; background: var(--color-accent-water); margin: 16px auto 0; border-radius: 3px; }

    .product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .product-card { background: var(--color-surface); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-sm); transition: all 0.4s var(--transition); text-decoration: none; color: inherit; border: 1px solid var(--color-border); }
    .product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
    .product-img { aspect-ratio: 1; background: linear-gradient(135deg, #E8F5E9, #F1F8E9); display: flex; align-items: center; justify-content: center; font-size: 3rem; }
    .product-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .product-info { padding: 20px; }
    .product-name { font-weight: 500; font-size: 1rem; margin-bottom: 10px; line-height: 1.4; }
    .product-price { font-family: 'ZCOOL XiaoWei', serif; font-size: 1.25rem; font-weight: 600; color: var(--color-accent-water); }

    .footer { background: var(--color-primary); color: rgba(255,255,255,0.85); padding: 48px 20px 32px; }
    .footer-content { max-width: 800px; margin: 0 auto; text-align: center; }
    .footer-logo { font-family: 'ZCOOL XiaoWei', serif; font-size: 1.5rem; font-weight: 600; color: white; margin-bottom: 24px; }
    .footer-links { display: flex; justify-content: center; flex-wrap: wrap; gap: 24px; margin-bottom: 32px; }
    .footer-links a { color: rgba(255,255,255,0.8); text-decoration: none; font-size: 0.9rem; }
    .footer-links a:hover { color: var(--color-accent-light); }
    .footer-divider { width: 60px; height: 2px; background: rgba(255,255,255,0.2); margin: 0 auto 24px; border-radius: 2px; }
    .footer-copy { font-size: 0.85rem; opacity: 0.7; }
    .footer-support { font-size: 0.85rem; opacity: 0.7; }
    .footer-support a { color: inherit; text-decoration: none; }
    .footer-support a:hover { text-decoration: underline; }

    .contact-item {
      display: flex; align-items: center; justify-content: center;
      gap: 10px; color: var(--color-secondary); font-size: 0.95rem;
    }
    #addressItem { cursor: pointer; transition: opacity 0.2s; }
    #addressItem:hover { opacity: 0.7; }
    #addressItem:active { opacity: 0.5; }

    .bottom-nav { display: none; position: fixed; bottom: 0; left: 0; width: 100%; height: 60px; background: white; border-top: 1px solid var(--color-border); z-index: 1000; padding-bottom: env(safe-area-inset-bottom, 0); }
    .bottom-nav-inner { display: flex; justify-content: space-around; align-items: center; height: 100%; max-width: 500px; margin: 0 auto; }
    .bottom-nav-item { display: flex; flex-direction: column; align-items: center; gap: 4px; color: #999; text-decoration: none; font-size: 10px; transition: color 0.3s; background: none; border: none; cursor: pointer; padding: 8px 16px; font-weight: 500; }
    .bottom-nav-item.active, .bottom-nav-item:hover { color: var(--color-accent-water); }
    .bottom-nav-item .nav-icon { font-size: 20px; }
    .popover-overlay { position: fixed; inset: 0; background: rgba(45,90,39,0.5); z-index: 2000; opacity: 0; visibility: hidden; transition: all 0.3s; }
    .popover-overlay.show { opacity: 1; visibility: visible; }
    .popover-box { position: fixed; bottom: 70px; left: 50%; transform: translateX(-50%) translateY(20px); background: white; border-radius: var(--radius-md); padding: 24px; z-index: 2001; opacity: 0; visibility: hidden; transition: all 0.3s; text-align: center; box-shadow: var(--shadow-lg); border: 1px solid var(--color-border); }
    .popover-box.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
    .popover-qr { width: 160px; height: 160px; background: linear-gradient(135deg, #E8F5E9, #E0F7FA); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: 60px; margin-bottom: 12px; }
    .popover-title { font-size: 14px; font-weight: 500; color: var(--color-primary); }
    .popover-tip { font-size: 12px; color: var(--color-secondary); margin-top: 4px; }
    .qrcode-wrapper img { max-width: 100%; max-height: 100%; width: auto; height: auto; display: block; object-fit: contain; }
    @media (min-width: 768px) { .product-grid { grid-template-columns: repeat(4, 1fr); gap: 24px; } .section { padding: 80px 48px; } .carousel-slide { aspect-ratio: 16/8; } }
    @media (max-width: 768px) { .carousel-arrow { display: none; } body { padding-bottom: 60px; } .popover-box { bottom: 130px; } }
    @media (max-width: 768px) { .bottom-nav { display: block; } .footer { display: none; } .contact-section { padding-bottom: 100px; } }

    /* ===== 企业简介 ===== */
    .about-section {
      display: flex;
      align-items: center;
      gap: 60px;
      max-width: 1200px;
      margin: 0 auto;
      padding: 80px 48px;
    }
    .about-container {
      flex: 1;
    }
    .about-badge {
      display: inline-block;
      padding: 8px 20px;
      background: linear-gradient(135deg, var(--color-accent-light), #C5E1A5);
      color: var(--color-primary);
      font-size: 0.85rem;
      font-weight: 500;
      border-radius: 50px;
      margin-bottom: 20px;
    }
    .about-title {
      font-family: 'ZCOOL XiaoWei', serif;
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 600;
      margin-bottom: 20px;
      color: var(--color-primary);
    }
    .about-text {
      color: var(--color-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 32px;
    }
    .about-highlights {
      display: flex;
      gap: 24px;
      margin-bottom: 32px;
    }
    .highlight-item {
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .highlight-icon {
      color: var(--color-accent);
    }
    .highlight-label {
      font-size: 0.9rem;
      font-weight: 500;
      color: var(--color-primary);
    }
    .about-cta {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      color: var(--color-accent-water);
      font-weight: 500;
      text-decoration: none;
      transition: gap 0.3s;
    }
    .about-cta:hover {
      gap: 12px;
    }
    .about-image {
      width: 300px;
      height: 300px;
      background: linear-gradient(135deg, #E8F5E9, #DCEDC8);
      border-radius: var(--radius-lg);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 8rem;
      flex-shrink: 0;
    }

    @media (max-width: 900px) {
      .about-section {
        flex-direction: column;
        padding: 60px 24px;
        text-align: center;
      }
      .about-image {
        width: 200px;
        height: 200px;
        font-size: 5rem;
      }
      .about-highlights {
        justify-content: center;
      }
    }
/* 底部导航自定义图片图标（后台可配置） */
.bottom-nav-item .nav-icon-img { width: 24px; height: 24px; object-fit: contain; vertical-align: middle; }
