@font-face {
            font-family: 'FZZhaoGYJW-EB';
            src: url('/font/FZZhaoGYJW-EB.TTF') format('truetype');
            font-weight: normal;
            font-style: normal;
        }

        body {
            font-family: 'FZZhaoGYJW-EB', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            min-height: 100vh;
            background-image: url('img/bg3.png');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .hero-tag-bg {
            background-image: url('img/hero_banner_bg.png');
            background-size: 100% 100%;
            background-repeat: no-repeat;
        }

        .hero-desc {
            font-size: 24px;
            line-height: 36px;
            color: #fff;
            -webkit-text-stroke: 4px #700000;
            paint-order: stroke fill;
            text-shadow: 2px 2px 4px rgba(94, 0, 0, 0.48);
        }

        nav {
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 0;
            z-index: 1000;
        }

        /* 移动端导航栏与展开菜单背景统一，消除色差衔接线 */
        @media (max-width: 768px) {
            nav {
                background-color: #fff3d9;
                backdrop-filter: none;
            }
        }

        .nav-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        @media (min-width: 640px) {
            .nav-container {
                padding: 0 24px;
            }
        }

        @media (min-width: 1024px) {
            .nav-container {
                padding: 0 32px;
            }
        }

        .nav-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 64px;
        }

        .logo {
            height: 64px;
            width: auto;
        }

        .nav-links {
            display: none;
            align-items: center;
            gap: 16px;
        }

        @media (min-width: 768px) {
            .nav-links {
                display: flex;
            }
        }

        .nav-links a {
            color: #78350f;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 20px;
            font-weight: 500;
            text-decoration: none;
            transition: color 0.2s;
        }

        .nav-links a:hover {
            color: #d97706;
        }

        .nav-links a.active {
            color: #d97706;
            border-bottom: 2px solid #d97706;
        }

        .mobile-menu-btn {
            display: flex;
            align-items: center;
            justify-content: center;
            min-width: 44px;
            min-height: 44px;
            padding: 10px;
            background: none;
            border: none;
            color: #78350f;
            cursor: pointer;
            outline: none;
            position: relative;
            z-index: 1;
            -webkit-tap-highlight-color: transparent;
            touch-action: manipulation;
            border-radius: 8px;
            transition: background-color 0.2s;
        }

        .mobile-menu-btn:hover {
            color: #d97706;
        }

        .mobile-menu-btn:active {
            background-color: rgba(0, 0, 0, 0.05);
        }

        @media (min-width: 768px) {
            .mobile-menu-btn {
                display: none;
            }
        }

        .mobile-menu-btn svg {
            width: 24px;
            height: 24px;
            display: block;
            pointer-events: none;
        }

        /* v-show 控制显隐，不在 CSS 中设置 display:none，否则会覆盖 v-show 的内联样式 */
        .mobile-menu {
            padding: 8px;
            padding-top: 8px;
            padding-bottom: 12px;
            background-color: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(8px);
            position: relative;
            z-index: 1;
        }

        /* 移动端菜单暖色渐变背景，与导航栏无缝衔接 */
        @media (max-width: 768px) {
            .mobile-menu {
                background: linear-gradient(180deg, #fff3d9 0%, #ffe0b2 100%);
                backdrop-filter: none;
            }
        }

        @media (min-width: 768px) {
            .mobile-menu {
                display: none !important;
            }
        }

        .mobile-menu a {
            display: block;
            color: #78350f;
            padding: 8px 12px;
            border-radius: 6px;
            font-size: 16px;
            font-weight: 500;
            text-decoration: none;
            margin-bottom: 4px;
            transition: color 0.2s;
        }

        .mobile-menu a:hover {
            color: #d97706;
        }

        .mobile-menu a.active {
            color: #fcd34d;
        }

        .hero-section {
            position: relative;
            margin-top:-64px;
            overflow: hidden;
            max-height: 800px;
        }

        @media (max-width: 767px) {
            .hero-section {
                min-height: auto;
                max-height: none;
            }
            .hero-bg img {
                height: auto;
                width: 100%;
                min-height: 500px;
            }
            .hero-content {
                position: absolute;
                top:100px !important;
            }
            .hero-row {
                height: auto;
            }
            .hero-text {
                align-items: center;
            }
        }

        .hero-bg {
            width: 100%;
        }

        .hero-bg img {
            width: 100%;
            height: 100%;
            display: block;
        }

        .hero-content {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 10;
        }

        .hero-content-inner {
            max-width: 1624px;
            margin: 0 auto;
            padding: 0 16px;
            height: 100%;
            display: flex;
            align-items: center;
        }

        @media (min-width: 640px) {
            .hero-content-inner {
                padding: 0 24px;
            }
        }

        @media (min-width: 1024px) {
            .hero-content-inner {
                padding: 0 32px;
            }
        }

        .hero-row {
            width: 100%;
            height: 100%;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .hero-icon {
            display: none;
            flex: 1;
            justify-content: flex-end;
            align-items: flex-end;
            height: 100%;
        }

        .hero-icon img {
            width: 110%;
            height: auto;
            max-height: 800px;
            object-fit: contain;
            vertical-align: bottom;
        }

        @media (min-width: 768px) {
            .hero-row {
                flex-direction: row;
                align-items: stretch;
                justify-content: space-between;
            }
            .hero-text {
                flex: 0 0 40%;
                display: flex;
                flex-direction: column;
                justify-content: center;
                align-items: flex-start;
            }
            .hero-icon {
                display: flex;
                flex: 0 0 55%;
                justify-content: flex-end;
                align-items: flex-end;
            }
        }

        .hero-text {
            width: 100%;
            text-align: center;
            margin-bottom: 32px;
            display: flex;
            flex-direction: column;
            align-items: flex-start;
        }

        @media (min-width: 768px) {
            .hero-text {
                width: 40%;
                text-align: left;
                margin-bottom: 0;
            }
        }

        .hero-tag {
            display: inline-block;
            padding: 8px 32px;
            margin-bottom: 24px;
        }

        .hero-tag span {
            display: flex;
            align-items: center;
            color: #dc2626;
            font-weight: bold;
            font-size: 14px;
        }

        @media (min-width: 768px) {
            .hero-tag span {
                font-size: 16px;
            }
        }

        .hero-tag img {
            width: 16px;
            height: 16px;
            margin-right: 8px;
        }

        .hero-slogan-img {
            max-width: 100%;
            height: auto;
            max-height: 550px;
            filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.15));
        }

        @media (min-width: 768px) {
            .hero-slogan-img {
                max-height: 650px;
            }
        }

        .hero-desc-text {
            max-width: 448px;
            margin: 32px 0px;
        }

        .feature-section {
            padding: 60px 0;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
        }

        .feature-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 16px;
        }

        @media (min-width: 640px) {
            .feature-container {
                padding: 0 24px;
            }
        }

        @media (min-width: 1024px) {
            .feature-container {
                padding: 0 32px;
            }
        }

        .feature-header {
            text-align: center;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .feature-header img {
            max-width: 80%;
            height: auto;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .feature-header img {
                max-width: 40%;
            }
        }

        .gallery-wrapper {
            position: relative;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            perspective: 1000px;
        }

        @media (min-width: 768px) {
            .gallery-wrapper {
                height: 400px;
            }
        }

        .gallery-item {
            position: absolute;
            transition: all 0.5s ease;
            border-radius: 8px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 4px solid #fff;
        }

        .gallery-item img {
            display: block;
            width: 100%;
            height: auto;
        }

        .gallery-item.item-0 {
            z-index: 50;
            width: 50%;
            transform: translateX(0) scale(1);
        }

        @media (min-width: 768px) {
            .gallery-item.item-0 {
                width: 45%;
            }
        }

        .gallery-item.item-1 {
            z-index: 40;
            width: 35%;
            transform: translateX(60%) scale(0.85);
            opacity: 0.8;
        }

        @media (min-width: 768px) {
            .gallery-item.item-1 {
                width: 30%;
                transform: translateX(70%) scale(0.85);
            }
        }

        .gallery-item.item-2 {
            z-index: 30;
            width: 25%;
            transform: translateX(100%) scale(0.7);
            opacity: 0.6;
        }

        @media (min-width: 768px) {
            .gallery-item.item-2 {
                width: 20%;
                transform: translateX(120%) scale(0.7);
            }
        }

        .gallery-item.item-3 {
            z-index: 30;
            width: 25%;
            transform: translateX(-100%) scale(0.7);
            opacity: 0.6;
        }

        @media (min-width: 768px) {
            .gallery-item.item-3 {
                width: 20%;
                transform: translateX(-120%) scale(0.7);
            }
        }

        .gallery-item.item-4 {
            z-index: 40;
            width: 35%;
            transform: translateX(-60%) scale(0.85);
            opacity: 0.8;
        }

        @media (min-width: 768px) {
            .gallery-item.item-4 {
                width: 30%;
                transform: translateX(-70%) scale(0.85);
            }
        }

        .gallery-indicators {
            display: flex;
            justify-content: center;
            margin-top: 20px;
            gap: 16px;
        }

        .gallery-indicators button {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            border: none;
            background-color: #92400e;
            cursor: pointer;
            transition: all 0.3s;
        }

        @media (max-width: 767px) {
            .gallery-indicators button {
                width: 14px;
                height: 14px;
            }
        }

        .gallery-indicators button.active {
            background-color: #fef08a;
        }

        .gallery-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 100;
            background-color: rgba(0, 0, 0, 0.5);
            color: white;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            transition: background-color 0.2s;
        }

        .gallery-btn:hover {
            background-color: rgba(0, 0, 0, 0.7);
        }

        .gallery-btn.prev {
            left: 10px;
        }

        .gallery-btn.next {
            right: 10px;
        }

        .feature-header h2 {
            font-size: 60px;
            font-weight: bold;
            color: #fff;
            -webkit-text-stroke: 4px #700000;
            paint-order: stroke fill;
            margin-bottom: 16px;
            letter-spacing: 4px;
        }

        @media (min-width: 768px) {
            .feature-header h2 {
                font-size: 80px;
            }
        }

        .feature-header p {
            color: #fff;
            font-size: 24px;
            -webkit-text-stroke: 2px #700000;
            paint-order: stroke fill;
        }

        @media (min-width: 768px) {
            .feature-header p {
                font-size: 28px;
            }
        }

        .info-section {
            padding: 24px 0;
            background: #fff4;
        }

        .info-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
        }

        @media (min-width: 640px) {
            .info-container {
                padding: 0 24px;
            }
        }

        @media (min-width: 1024px) {
            .info-container {
                padding: 0 32px;
            }
        }

        .info-row {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 32px;
        }

        @media (min-width: 768px) {
            .info-row {
                flex-direction: row;
            }
        }

        .info-logo {
            width: 25%;
            display: flex;
            justify-content: center;
        }

        .info-logo img {
            width: 128px;
            height: 128px;
            border-radius: 16px;
            box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
        }

        @media (min-width: 768px) {
            .info-logo img {
                width: 160px;
                height: 160px;
            }
        }

        .info-text {
            width: 75%;
        }

        .info-text h3 {
            font-size: 20px;
            font-weight: bold;
            color: #92400e;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .info-text h3 {
                font-size: 24px;
            }
        }

        .info-text p {
            color: #92400e;
            font-size: 14px;
            line-height: 1.625;
            margin-bottom: 16px;
        }

        @media (min-width: 768px) {
            .info-text p {
                font-size: 16px;
            }
        }

        .info-text p:last-child {
            color: #2e2e2e;
            margin-bottom: 0;
        }

        footer {
            background-color: #faf0ce;
            color: #333;
            padding: 32px 0;
            font-family: 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        .footer-container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 16px;
            background-color: #faf0ce;
        }

        @media (min-width: 640px) {
            .footer-container {
                padding: 0 24px;
            }
        }

        @media (min-width: 1024px) {
            .footer-container {
                padding: 0 32px;
            }
        }

        .footer-links {
            margin-bottom: 16px;
        }

        .footer-links a, .footer-info a {
            color: #333;
            text-decoration: none;
            margin-right: 24px;
            font-size: 16px;
        }

        .footer-links a:hover {
            color: #d97706;
        }

        .footer-info {
            margin-bottom: 12px;
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
        }

        .footer-info p {
            font-size: 14px;
            margin: 0;
        }

        .footer-info a {
            font-size: 14px;
        }

        .footer-warning {
            margin-top: 16px;
        }

        .footer-warning p {
            font-size: 14px;
            color: #333;
            line-height: 1.6;
        }