/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap'); */
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Inter', 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
            overflow: hidden;
            background: #0a0a0a;
            color: #fff;
            position: relative;
        }

        /* 静态背景 */
        body::before {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: 
                radial-gradient(circle at 20% 80%, rgba(139, 195, 74, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(156, 204, 101, 0.4) 0%, transparent 50%),
                radial-gradient(circle at 40% 40%, rgba(205, 220, 57, 0.4) 0%, transparent 50%),
                linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            z-index: -2;
        }

        /* 静态粒子效果 */
        body::after {
            content: '';
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: 
                radial-gradient(2px 2px at 20px 30px, rgba(139, 195, 74, 0.1), transparent),
                radial-gradient(2px 2px at 40px 70px, rgba(156, 204, 101, 0.1), transparent),
                radial-gradient(1px 1px at 90px 40px, rgba(205, 220, 57, 0.1), transparent),
                radial-gradient(1px 1px at 130px 80px, rgba(255, 152, 0, 0.1), transparent),
                radial-gradient(2px 2px at 160px 30px, rgba(255, 87, 34, 0.1), transparent);
            background-repeat: repeat;
            background-size: 200px 100px;
            z-index: -1;
        }

        .container {
            height: 100vh;
            overflow: hidden;
            position: relative;
        }

        .section {
            height: 100vh;
            padding: 40px 20px;
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center;
            text-align: center;
            position: absolute;
            width: 100%;
            opacity: 0;
            transform: translateY(100vh) scale(0.9);
            transition: all 1s cubic-bezier(0.25, 0.1, 0.25, 1);
            background: rgba(0, 0, 0, 0.2);
            backdrop-filter: blur(20px);
            overflow-y: auto;
            filter: blur(5px);
            padding-top: 80px;
        }

        .section.active {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .section.prev {
            transform: translateY(-100vh) scale(0.9);
            filter: blur(5px);
        }

        .section.next {
            transform: translateY(100vh) scale(0.9);
            filter: blur(5px);
        }

        .section-0.active {
            transform: translateY(0) !important;
            opacity: 1 !important;
        }

        .section-0 {
            justify-content: flex-start;
            padding-top: 40px !important;
            padding-bottom: 80px !important;
        }

        .section-0 h1 {
            margin-bottom: 10px !important;
        }

        .section-0 h2 {
            margin-bottom: 10px !important;
        }

        .section-0 p {
            margin-bottom: 15px !important;
        }

        .section-0.active h1, .section-0.active h2, .section-0.active p, .section-0.active .service-grid, .section-0.active .partners-grid, .section-0.active .stats-container, .section-0.active .contact-info {
            opacity: 1 !important;
            transform: translateY(0) !important;
            filter: blur(0) !important;
        }

        .section h1, .section h2, .section p, .service-grid, .partners-grid, .stats-container, .contact-info {
            opacity: 0;
            transform: translateY(50px) scale(0.95);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
            filter: blur(3px);
        }

        /* 第一页元素默认显示 */
        .section-0 h1, .section-0 h2, .section-0 p, .section-0 .service-grid, .section-0 .partners-grid, .section-0 .stats-container, .section-0 .contact-info {
            opacity: 1 !important;
            transform: translateY(0) scale(1) !important;
            filter: blur(0) !important;
        }

        /* 确保第一页标题绝对可见 */
        .section-0 h1 {
            color: #ffffff !important;
            font-size: 2.5rem !important;
            margin-bottom: 20px !important;
            z-index: 1000 !important;
            position: relative !important;
            display: block !important;
            visibility: visible !important;
        }

        /* logo容器样式 */
        .logo-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 30px;
            margin: 15px auto 20px;
            opacity: 1 !important;
            transform: translateY(0) scale(1) !important;
            filter: blur(0) !important;
        }

        /* 公司logo样式 */
        .company-logo {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            object-fit: cover;
            margin: 0;
            display: block;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            border: 3px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            opacity: 1 !important;
            transform: translateY(0) scale(1) !important;
            filter: blur(0) !important;
        }

        /* 主logo稍大一些 */
        .main-logo {
            width: 120px;
            height: 120px;
            border: 4px solid rgba(255, 255, 255, 0.3);
        }

        .company-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .main-logo:hover {
            transform: scale(1.05);
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
            border-color: rgba(255, 255, 255, 0.5);
        }

        .section.active h1, .section.active h2, .section.active p, .section.active .service-grid, .section.active .partners-grid, .section.active .stats-container, .section.active .contact-info {
            opacity: 1;
            transform: translateY(0) scale(1);
            filter: blur(0);
        }

        .section.active h1 {
            transition-delay: 0.2s;
        }

        .section.active h2 {
            transition-delay: 0.3s;
        }

        .section.active p {
            transition-delay: 0.4s;
        }

        .section.active .service-grid, .section.active .partners-grid {
            transition-delay: 0.5s;
        }

        .section.active .stats-container {
            transition-delay: 0.6s;
        }

        .section.active .contact-info {
            transition-delay: 0.5s;
        }

        .section h1 {
            font-size: 3rem;
            margin-bottom: 20px;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
            letter-spacing: -1px;
            line-height: 1.2;
            max-width: 100%;
            word-wrap: break-word;
        }

        /* 使用纯白色标题 */
        .section h1 {
            color: #ffffff;
        }

        .section h2 {
            font-size: 2rem;
            margin-bottom: 20px;
            font-weight: 700;
            color: #ffffff;
            letter-spacing: -0.5px;
        }

        .section p {
            font-size: 1.1rem;
            line-height: 1.6;
            margin-bottom: 25px;
            max-width: 800px;
            color: rgba(255, 255, 255, 0.9);
            font-weight: 400;
            letter-spacing: 0.3px;
        }

        @keyframes glow {
            0% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.1); }
            100% { text-shadow: 0 0 30px rgba(255, 255, 255, 0.3), 0 0 40px rgba(168, 237, 234, 0.2); }
        }

        .service-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
            max-width: 1000px;
            width: 100%;
            margin-top: 80px;
            margin-bottom: 20px;
        }

        /* 第一页专用的service-grid样式 */
        .section-0 .service-grid {
            margin-top: 10px;
            margin-bottom: 10px;
        }

        /* 第一页专用的stats-container样式 */
        .section.section-0 .stats-container {
            margin: 20px 0 80px 0 !important;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(6, 1fr);
            gap: 35px;
            max-width: 850px;
            width: 100%;
            margin-top: 60px;
        }

        .dual-column-container {
            display: flex;
            gap: 80px;
            max-width: 1300px;
            width: 100%;
            margin-top: 40px;
            justify-content: center;
            align-items: stretch;
        }

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

        .column h3 {
            font-size: 1.8rem;
            margin-bottom: 30px;
            background: linear-gradient(135deg, #fff 0%, #8BC34A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 600;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .column h3 {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.4s;
        }

        .partners-grid-small {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            max-width: 480px;
            margin: 0 auto;
            height: 360px;
            align-content: start;
        }

        .partners-grid-small.entertainment {
            grid-template-columns: repeat(2, 1fr);
            max-width: 360px;
            height: 360px;
            align-content: start;
            gap: 35px;
        }

        .partner-logo {
            background: transparent;
            padding: 0;
            border-radius: 50%;
            backdrop-filter: none;
            border: none;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            align-items: center;
            justify-content: center;
            aspect-ratio: 1;
            overflow: hidden;
            opacity: 0;
            transform: translateY(20px) scale(0.8);
        }

        .section.active .partner-logo {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: calc(0.7s + var(--logo-index) * 0.05s);
        }

        .partner-logo:nth-child(1) { --logo-index: 0; }
        .partner-logo:nth-child(2) { --logo-index: 1; }
        .partner-logo:nth-child(3) { --logo-index: 2; }
        .partner-logo:nth-child(4) { --logo-index: 3; }
        .partner-logo:nth-child(5) { --logo-index: 4; }
        .partner-logo:nth-child(6) { --logo-index: 5; }
        .partner-logo:nth-child(7) { --logo-index: 6; }
        .partner-logo:nth-child(8) { --logo-index: 7; }
        .partner-logo:nth-child(9) { --logo-index: 8; }
        .partner-logo:nth-child(10) { --logo-index: 9; }
        .partner-logo:nth-child(11) { --logo-index: 10; }
        .partner-logo:nth-child(12) { --logo-index: 11; }

        .partner-logo:hover {
            transform: translateY(-10px) scale(1.05);
            box-shadow: 0 15px 40px rgba(255, 255, 255, 0.2);
        }

        .partner-logo img {
            width: 110%;
            height: 110%;
            object-fit: cover;
            filter: brightness(1.2) contrast(1.1);
            transition: all 0.3s ease;
            border-radius: 50%;
        }

        .partner-logo:hover img {
            filter: brightness(1.4) contrast(1.2);
            transform: scale(1.1);
        }

        .service-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 24px;
            border-radius: 16px;
            box-shadow: 
                0 8px 32px rgba(0, 0, 0, 0.3),
                inset 0 1px 0 rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.2);
            backdrop-filter: blur(20px);
            position: relative;
            overflow: hidden;
            opacity: 0;
            transform: translateY(30px) scale(0.9);
        }

        .section.active .service-card {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: calc(0.7s + var(--index) * 0.1s);
        }

        .service-card:nth-child(1) { --index: 0; }
        .service-card:nth-child(2) { --index: 1; }
        .service-card:nth-child(3) { --index: 2; }
        .service-card:nth-child(4) { --index: 3; }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8BC34A, #9CCC65, #CDDC39, #FF9800);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card:hover {
            transform: translateY(-15px) scale(1.02);
            box-shadow: 
                0 20px 60px rgba(0, 0, 0, 0.4),
                inset 0 1px 0 rgba(255, 255, 255, 0.3);
            background: rgba(255, 255, 255, 0.15);
        }

        .service-title {
            font-size: 1.4rem;
            font-weight: 700;
            background: linear-gradient(135deg, #fff 0%, #8BC34A 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 12px;
            letter-spacing: -0.3px;
        }

        .service-desc {
            font-size: 1rem;
            line-height: 1.6;
            color: rgba(255, 255, 255, 0.8);
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        /* 案例展示样式 */
        .cases-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .four-column-layout {
            display: flex;
            gap: 40px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .four-column-layout {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .case-column {
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .case-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: calc(0.7s + var(--column-index) * 0.1s);
        }

        .case-column:nth-child(1) { --column-index: 0; }
        .case-column:nth-child(2) { --column-index: 1; }
        .case-column:nth-child(3) { --column-index: 2; }
        .case-column:nth-child(4) { --column-index: 3; }

        .case-image-column img {
            width: 100%;
            height: 450px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .case-image-column img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .case-text-column {
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 20px;
        }

        .case-text-column h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.3px;
        }

        .case-text-column p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        .case-images-column {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .four-images-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 15px;
            width: 100%;
            height: 450px;
        }

        .small-image {
            overflow: hidden;
            border-radius: 12px;
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            position: relative;
        }

        .small-image:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
        }

        .small-image img {
            width: 100%;
            height: 210px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .small-image:hover img {
            transform: scale(1.1);
        }

        /* 民宿合作案例样式 */
        .homestay-cases-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .three-column-layout {
            display: flex;
            gap: 50px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
            height: 500px;
        }

        .section.active .three-column-layout {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .homestay-column {
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .homestay-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: calc(0.7s + var(--homestay-index) * 0.1s);
        }

        .homestay-column:nth-child(1) { --homestay-index: 0; }
        .homestay-column:nth-child(2) { --homestay-index: 1; }
        .homestay-column:nth-child(3) { --homestay-index: 2; }

        .homestay-column.image-column {
            flex: 1;
            height: 500px;
        }

        .homestay-column.text-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
            padding: 0;
            height: 500px;
        }

        .homestay-column.himama-stack-column {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 15px;
            height: 500px;
        }

        .image-column img {
            width: 100%;
            height: 500px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .image-column img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .case-text-block {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            height: 500px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .case-text-block:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
        }

        .case-text-block h3 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 15px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.3px;
        }

        .case-text-block p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 12px;
            font-size: 1rem;
            font-weight: 400;
            letter-spacing: 0.2px;
        }

        .horizontal-image {
            flex: 1;
            overflow: hidden;
            border-radius: 15px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .horizontal-image:hover {
            transform: translateY(-8px) scale(1.02);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        }

        .horizontal-image img {
            width: 100%;
            height: 170px;
            object-fit: cover;
            transition: all 0.4s ease;
        }

        .horizontal-image:hover img {
            transform: scale(1.1);
        }

        .himama-text-block {
            background: rgba(255, 255, 255, 0.1);
            padding: 15px;
            border-radius: 15px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            margin: 0;
            height: 130px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .himama-text-block:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
        }

        .himama-text-block h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 12px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            letter-spacing: -0.2px;
        }

        .himama-text-block p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 8px;
            font-size: 0.9rem;
            font-weight: 400;
            letter-spacing: 0.1px;
        }

        /* 博主资源样式 */
        .blogger-resources-container,
        .distribution-resources-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .two-column-layout {
            display: flex;
            gap: 60px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .two-column-layout {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .blogger-column {
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .blogger-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: calc(0.7s + var(--blogger-index) * 0.2s);
        }

        .blogger-column:nth-child(1) { --blogger-index: 0; }
        .blogger-column:nth-child(2) { --blogger-index: 1; }

        .blogger-card {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px 30px 40px 30px;
            border-radius: 25px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            max-height: 450px;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .blogger-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #8BC34A, #9CCC65, #CDDC39, #FF9800);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .blogger-card:hover::before {
            transform: translateX(0);
        }

        .blogger-card:hover {
            transform: translateY(-10px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .blogger-icon {
            margin-bottom: 15px;
            text-align: center;
            height: 60px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .blogger-icon img {
            width: 60px;
            height: 60px;
            object-fit: contain;
            filter: brightness(1.2) contrast(1.1);
            transition: all 0.3s ease;
        }

        .blogger-icon img:hover {
            transform: scale(1.1);
            filter: brightness(1.4) contrast(1.2);
        }

        .blogger-card h3 {
            font-size: 1.8rem;
            font-weight: 700;
            margin-bottom: 20px;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            text-align: center;
        }

        .blogger-stats {
            text-align: center;
            margin-bottom: 20px;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .stat-highlight {
            font-size: 3rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 2px 8px rgba(139, 195, 74, 0.6);
            margin-bottom: 8px;
        }

        .stat-desc {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1.1rem;
            font-weight: 500;
        }

        .blogger-card p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.6;
            margin-bottom: 12px;
            font-size: 1rem;
            font-weight: 400;
        }

        .coverage-tags {
            display: flex;
            gap: 12px;
            margin-top: 20px;
            margin-bottom: 15px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .tag {
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            color: white;
            padding: 8px 16px;
            border-radius: 20px;
            font-size: 0.9rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(139, 195, 74, 0.4);
        }

        .effect-metrics {
            display: flex;
            gap: 20px;
            margin-bottom: 20px;
            justify-content: center;
        }

        .metric-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 15px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
        }

        .metric-item:hover {
            background: rgba(255, 255, 255, 0.15);
            transform: translateY(-3px);
        }

        .metric-icon {
            font-size: 1.8rem;
            margin-bottom: 8px;
        }

        .metric-text {
            color: rgba(255, 255, 255, 0.9);
            font-size: 0.9rem;
            font-weight: 500;
            text-align: center;
        }

        /* 小程序开发样式 */
        .miniprogram-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .miniprogram-layout {
            display: flex;
            gap: 60px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .miniprogram-layout {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .miniprogram-image-column {
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .miniprogram-content-column {
            flex: 2;
            display: flex;
            flex-direction: column;
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
            height: 500px;
        }

        .section.active .miniprogram-image-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .section.active .miniprogram-content-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.9s;
        }

        .miniprogram-image-column img {
            width: 100%;
            height: 500px;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .miniprogram-image-column img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .miniprogram-feature-block {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .miniprogram-feature-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8BC34A, #9CCC65, #CDDC39, #FF9800);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .miniprogram-feature-block:hover::before {
            transform: translateX(0);
        }

        .miniprogram-feature-block:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
        }

        .feature-icon {
            font-size: 2rem;
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .feature-header h3 {
            font-size: 1.6rem;
            font-weight: 700;
            color: #ffffff;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            margin: 0;
        }

        .miniprogram-feature-block p {
            color: rgba(255, 255, 255, 0.85);
            line-height: 1.7;
            margin-bottom: 15px;
            font-size: 1rem;
            font-weight: 400;
        }

        .feature-tags {
            display: flex;
            gap: 10px;
            margin-top: 20px;
            flex-wrap: wrap;
        }

        .feature-tag {
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            color: white;
            padding: 6px 14px;
            border-radius: 15px;
            font-size: 0.85rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .feature-tag:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(139, 195, 74, 0.4);
        }

        /* 技术创新成果样式 */
        .innovation-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .innovation-layout {
            display: flex;
            gap: 60px;
            align-items: stretch;
            opacity: 0;
            transform: translateY(50px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .innovation-layout {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .innovation-image-column {
            flex: 1;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .innovation-content-column {
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 30px;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
            height: 500px;
        }

        .section.active .innovation-image-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.7s;
        }

        .section.active .innovation-content-column {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.9s;
        }

        .innovation-image-column img {
            width: 100%;
            height: 500px;
            object-fit: contain;
            border-radius: 20px;
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 1px solid rgba(255, 255, 255, 0.1);
            background: rgba(255, 255, 255, 0.05);
        }

        .innovation-image-column img:hover {
            transform: scale(1.05);
            box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
        }

        .innovation-feature-block {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            position: relative;
            overflow: hidden;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .innovation-feature-block::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, #8BC34A, #9CCC65, #CDDC39, #FF9800);
            transform: translateX(-100%);
            transition: transform 0.6s ease;
        }

        .innovation-feature-block:hover::before {
            transform: translateX(0);
        }

        .innovation-feature-block:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
            border-color: rgba(255, 255, 255, 0.3);
        }

        .cta-button {
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            color: white;
            border: none;
            padding: 12px 24px;
            font-size: 0.95rem;
            border-radius: 25px;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            margin: 0;
            font-weight: 600;
            box-shadow: 0 8px 25px rgba(139, 195, 74, 0.4);
            position: relative;
            overflow: hidden;
        }

        .cta-button::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
            transition: left 0.6s ease;
        }

        .cta-button:hover::before {
            left: 100%;
        }

        .cta-button:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 15px 40px rgba(139, 195, 74, 0.5);
        }

        .cta-buttons-container {
            display: flex;
            justify-content: center;
            gap: 10px;
            margin-top: 10px;
        }

        .hotel-intro {
            max-width: 900px;
            margin: 0 auto 40px auto;
            opacity: 0;
            transform: translateY(30px);
            transition: all 1.2s cubic-bezier(0.25, 0.1, 0.25, 1);
        }

        .section.active .hotel-intro {
            opacity: 1;
            transform: translateY(0);
            transition-delay: 0.5s;
        }

        .hotel-intro p {
            font-size: 1rem;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 15px;
            text-align: center;
        }

        .stats-container {
            display: flex;
            justify-content: center;
            gap: 25px;
            margin: 20px 0;
            flex-wrap: wrap;
        }

        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            text-align: center;
            padding: 15px;
            border-radius: 15px;
            min-width: 120px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px) scale(0.8);
        }

        .section.active .stat-item {
            opacity: 1;
            transform: translateY(0) scale(1);
            transition-delay: calc(0.8s + var(--stat-index) * 0.1s);
        }

        .stat-item:nth-child(1) { --stat-index: 0; }
        .stat-item:nth-child(2) { --stat-index: 1; }
        .stat-item:nth-child(3) { --stat-index: 2; }
        .stat-item:nth-child(4) { --stat-index: 3; }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255, 255, 255, 0.15);
            box-shadow: 0 10px 30px rgba(255, 255, 255, 0.1);
        }

        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #ffffff;
            text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(139, 195, 74, 0.6);
            display: block;
        }

        .stat-label {
            font-size: 0.85rem;
            color: rgba(255, 255, 255, 0.7);
            font-weight: 500;
            margin-top: 5px;
        }

        .navigation {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 1000;
        }

        .nav-dot {
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            margin: 15px 0;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            border: 2px solid rgba(255, 255, 255, 0.3);
            position: relative;
            backdrop-filter: blur(10px);
        }

        .nav-dot.active {
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            transform: scale(1.4);
            border-color: rgba(255, 255, 255, 0.8);
            box-shadow: 0 0 20px rgba(139, 195, 74, 0.5);
        }

        .nav-dot:hover {
            background: rgba(255, 255, 255, 0.4);
            transform: scale(1.2);
        }

        .nav-label {
            position: absolute;
            right: 35px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(0, 0, 0, 0.8);
            color: white;
            padding: 8px 12px;
            border-radius: 8px;
            font-size: 12px;
            white-space: nowrap;
            opacity: 0;
            pointer-events: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .nav-dot:hover .nav-label {
            opacity: 1;
            transform: translateY(-50%) translateX(-5px);
        }

        .scroll-hint {
            position: fixed;
            bottom: 30px;
            left: 50%;
            transform: translateX(-50%);
            color: rgba(255, 255, 255, 0.9);
            font-size: 16px;
            animation: bounce 2s infinite;
            background: rgba(255, 255, 255, 0.1);
            padding: 15px 30px;
            border-radius: 50px;
            border: 1px solid rgba(255, 255, 255, 0.2);
            font-weight: 500;
            backdrop-filter: blur(20px);
        }

        .fixed-cta-button {
            position: fixed;
            bottom: 30px;
            right: 30px;
            z-index: 1001;
        }

        .fixed-cta-button .cta-button {
            box-shadow: 0 8px 32px rgba(139, 195, 74, 0.6);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0%, 100% {
                transform: scale(1);
                box-shadow: 0 8px 32px rgba(139, 195, 74, 0.6);
            }
            50% {
                transform: scale(1.05);
                box-shadow: 0 12px 40px rgba(139, 195, 74, 0.8);
            }
        }

        .contact-info {
            background: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 20px;
            margin: 20px auto;
            max-width: 600px;
            backdrop-filter: blur(20px);
            border: 1px solid rgba(255, 255, 255, 0.2);
        }

        .contact-item {
            display: flex;
            align-items: center;
            margin: 15px 0;
            font-size: 1.1rem;
            color: rgba(255, 255, 255, 0.9);
        }

        .contact-icon {
            font-size: 1.5rem;
            margin-right: 15px;
            background: linear-gradient(135deg, #8BC34A 0%, #689F38 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% {
                transform: translateX(-50%) translateY(0);
            }
            40% {
                transform: translateX(-50%) translateY(-10px);
            }
            60% {
                transform: translateX(-50%) translateY(-5px);
            }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .section h1 {
                font-size: 2.8rem;
            }
            
            .section h2 {
                font-size: 2.2rem;
            }
            
            .logo-container {
                gap: 20px;
                margin: 10px auto 20px;
            }

            .company-logo {
                width: 80px;
                height: 80px;
            }

            .main-logo {
                width: 100px;
                height: 100px;
            }
            
            .section p {
                font-size: 1.1rem;
            }
            
            .section {
                padding: 30px 20px;
            }
            
            .service-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            
            .partners-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 25px;
                max-width: 480px;
            }
            
            .dual-column-container {
                flex-direction: column;
                gap: 40px;
            }
            
            .partners-grid-small {
                grid-template-columns: repeat(3, 1fr);
                gap: 20px;
                max-width: 350px;
            }
            
            .column h3 {
                font-size: 1.5rem;
                margin-bottom: 20px;
            }
            
            .four-column-layout {
                flex-direction: column;
                gap: 30px;
            }

            .case-column {
                text-align: center;
            }

            .case-image-column img {
                height: 250px;
            }

            .case-text-column h3 {
                font-size: 1.5rem;
                color: #ffffff;
                text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
            }

            .case-text-column p {
                font-size: 0.9rem;
            }

            .four-images-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 10px;
                height: 250px;
            }

            .small-image img {
                height: 115px;
            }

            .three-column-layout {
                flex-direction: column;
                gap: 30px;
            }

            .homestay-column {
                text-align: center;
            }

            .homestay-column.text-column {
                padding: 10px;
            }

            .image-column img {
                height: 300px;
            }

            .case-text-block {
                padding: 20px;
            }

            .case-text-block h3 {
                font-size: 1.4rem;
            }

            .case-text-block p {
                font-size: 0.9rem;
            }

            .himama-text-block {
                padding: 20px;
                margin: 8px 0;
            }

            .himama-text-block h3 {
                font-size: 1.2rem;
            }

            .himama-text-block p {
                font-size: 0.85rem;
            }

            .horizontal-image img {
                height: 120px;
            }

            .two-column-layout {
                flex-direction: column;
                gap: 40px;
            }

            .blogger-card {
                padding: 30px;
            }

            .blogger-icon {
                height: 50px;
            }

            .blogger-icon img {
                width: 50px;
                height: 50px;
            }

            .blogger-card h3 {
                font-size: 1.6rem;
            }

            .stat-highlight {
                font-size: 2.5rem;
            }

            .blogger-card p {
                font-size: 1rem;
            }

            .effect-metrics {
                flex-direction: column;
                gap: 15px;
            }

            .coverage-tags {
                justify-content: center;
            }

            .miniprogram-layout {
                flex-direction: column;
                gap: 40px;
            }

            .miniprogram-image-column img {
                height: 300px;
                object-fit: contain;
            }

            .miniprogram-content-column {
                height: auto;
            }

            .miniprogram-feature-block {
                padding: 25px;
                flex: none;
            }

            .feature-header {
                gap: 12px;
            }

            .feature-icon {
                font-size: 1.6rem;
            }

            .feature-header h3 {
                font-size: 1.4rem;
            }

            .miniprogram-feature-block p {
                font-size: 0.95rem;
            }

            .feature-tag {
                font-size: 0.8rem;
                padding: 5px 12px;
            }

            .innovation-layout {
                flex-direction: column;
                gap: 40px;
            }

            .innovation-image-column img {
                height: 300px;
            }

            .innovation-content-column {
                height: auto;
            }

            .innovation-feature-block {
                padding: 25px;
                flex: none;
            }
            
            .stats-container {
                flex-direction: column;
                gap: 20px;
            }
            
            .navigation {
                right: 20px;
            }
            
            .beian-footer {
                margin-top: 60px;
            }
            
            .beian-content {
                padding: 15px 0;
            }
            
            .beian-link {
                font-size: 11px;
            }
        }
        

        
        /* 固定备案信息 */
        .fixed-beian {
            position: fixed;
            bottom: 10px;
            left: 0;
            width: 100%;
            text-align: center;
            z-index: 1000;
            pointer-events: none;
        }
        
        .fixed-beian a {
            color: rgba(255, 255, 255, 0.5);
            text-decoration: none;
            font-size: 12px;
            font-weight: 300;
            pointer-events: auto;
            background-color: rgba(0, 0, 0, 0.3);
            padding: 3px 8px;
            border-radius: 4px;
        }
        
        .fixed-beian a:hover {
            color: rgba(255, 255, 255, 0.8);
        }
        
        @media (max-width: 768px) {
            .beian-container {
                margin-top: 40px;
                padding: 15px 0;
            }
            
            .beian-link {
                font-size: 12px;
                padding: 6px 12px;
            }
        }