
        /*
         * 全局样式设置
         * 使用方法：直接引入此CSS文件即可
         * 计划任务示例：可用于游戏平台展示、API接口介绍等场景
         * 配色方案：统一使用蓝紫色系 (#667eea 主蓝, #764ba2 主紫)
         */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: "Segoe UI", "Microsoft YaHei", "Helvetica Neue", Arial, sans-serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #e8eef5 50%, #f0f4f8 100%);
            background-attachment: fixed;
            overflow-x: hidden;
            color: #2c3e50;
            line-height: 1.6;
        }

        /* 导航栏样式 - 优化版 */
        .navbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(20px);
            box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            border-bottom: 1px solid rgba(102, 126, 234, 0.1);
        }

        .navbar.scrolled {
            background: rgba(255, 255, 255, 0.98);
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
            padding-top: 5px;
            padding-bottom: 5px;
        }

        .navbar-container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            height: 70px;
            transition: height 0.3s ease;
        }

        .navbar-logo {
            font-size: 1.8em;
            font-weight: 700;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            display: inline-block;
        }

        .navbar-logo::before {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .navbar-logo:hover {
            transform: scale(1.08);
            filter: drop-shadow(0 5px 15px rgba(102, 126, 234, 0.3));
        }

        .navbar-logo:hover::before {
            transform: scaleX(1);
        }

        .navbar-nav {
            display: flex;
            list-style: none;
            gap: 40px;
        }

        .navbar-nav a {
            text-decoration: none;
            color: #4a5568;
            font-weight: 500;
            font-size: 1.05em;
            transition: all 0.3s ease;
            position: relative;
            padding: 8px 0;
        }

        .navbar-nav a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            width: 0;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transition: all 0.3s ease;
            transform: translateX(-50%);
        }

        .navbar-nav a:hover {
            color: #667eea;
            transform: translateY(-2px);
        }

        .navbar-nav a:hover::after {
            width: 100%;
        }

        /* 游戏供货介绍区域 */
        /* 游戏供货介绍区域 - 增强版 */
        .supply-intro {
            padding: 100px 0;
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景图案 */
        .supply-intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.12) 0%, transparent 25%),
                    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 25%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 30%);
            pointer-events: none;
            animation: supplyBgPulse 6s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .supply-intro::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes supplyBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .supply-intro .layui-container {
            position: relative;
            z-index: 2;
        }

        .supply-intro h2 {
            text-align: center;
            font-size: 3em;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .supply-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .supply-intro > .layui-container > p {
            text-align: center;
            font-size: 1.35em;
            color: #718096;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }

        .supply-item {
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            border-radius: 25px;
            padding: 45px 30px;
            text-align: center;
            box-shadow:
                    0 10px 35px rgba(102, 126, 234, 0.15),
                    0 0 0 1px rgba(102, 126, 234, 0.1);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        /* 添加悬停时的背景渐变效果 */
        .supply-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        /* 添加顶部渐变条 */
        .supply-item::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 1;
        }

        .supply-item:hover {
            transform: translateY(-18px) scale(1.05);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.3),
                    0 0 0 3px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .supply-item:hover::before {
            opacity: 1;
        }

        .supply-item:hover::after {
            transform: scaleX(1);
        }

        /* 添加游戏图标容器 */
        .supply-item-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
        }

        .supply-item:hover .supply-item-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .supply-item h3 {
            color: #667eea;
            font-size: 1.5em;
            font-weight: 800;
            margin-bottom: 18px;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .supply-item:hover h3 {
            transform: translateY(-5px);
            text-shadow: 0 3px 15px rgba(102, 126, 234, 0.4);
            color: #764ba2;
        }

        .supply-item p {
            color: #2d3748;
            font-size: 2.2em;
            font-weight: 900;
            margin: 0;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s ease;
        }

        .supply-item:hover p {
            transform: scale(1.15);
        }

        /* 添加数量单位 */
        .supply-item p::after {
            content: '个';
            font-size: 0.4em;
            font-weight: 600;
            color: #718096;
            -webkit-text-fill-color: #718096;
            margin-left: 5px;
        }

        /* 供货网格布局 */
        .supply-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 25px;
            margin-bottom: 60px;
        }

        .supply-features {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 60px;
            margin-top: 70px;
        }

        .feature-item {
            text-align: center;
            min-width: 250px;
            padding: 40px 35px;
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            border-radius: 25px;
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.15);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            border: 2px solid rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        /* 添加特色项背景动画 */
        .feature-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .feature-item:hover {
            transform: translateY(-8px) scale(1.03);
            box-shadow: 0 20px 50px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.3);
        }

        .feature-item:hover::before {
            opacity: 1;
        }

        /* 添加特色项图标 */
        .feature-item-icon {
            width: 60px;
            height: 60px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.8em;
            color: white;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
        }

        .feature-item:hover .feature-item-icon {
            transform: rotate(360deg) scale(1.1);
            box-shadow: 0 12px 30px rgba(102, 126, 234, 0.4);
        }

        .feature-item h3 {
            color: #2d3748;
            font-size: 1.2em;
            font-weight: 700;
            margin-bottom: 15px;
            position: relative;
            z-index: 2;
            transition: all 0.3s ease;
        }

        .feature-item:hover h3 {
            color: #667eea;
            transform: translateY(-3px);
        }

        .feature-item p {
            color: #667eea;
            font-size: 2.5em;
            font-weight: 900;
            margin: 0;
            position: relative;
            z-index: 2;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            transition: all 0.4s ease;
        }

        .feature-item:hover p {
            transform: scale(1.1);
        }

        /* 查找回介绍区域 - 增强版 */
        .lookup-intro {
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            padding: 100px 0;
            color: #2c3e50;
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景效果 */
        .lookup-intro::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.12) 0%, transparent 25%),
                    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 25%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 30%);
            pointer-events: none;
            animation: lookupBgPulse 6s ease-in-out infinite;
        }

        /* 添加动态粒子装饰 */
        .lookup-intro::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes lookupBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .lookup-intro .layui-container {
            position: relative;
            z-index: 2;
        }

        .lookup-intro h2 {
            text-align: center;
            font-size: 3em;
            margin-bottom: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 900;
            position: relative;
            display: inline-block;
            width: 100%;
        }

        .lookup-intro h2::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 2px;
        }

        .lookup-intro > .layui-container > p {
            text-align: center;
            font-size: 1.35em;
            color: #718096;
            margin-bottom: 60px;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            font-weight: 500;
        }

        /* 查找网格布局 */
        .lookup-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 60px;
        }

        .intro-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            padding: 45px 35px;
            border-radius: 25px;
            border: 2px solid transparent;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow:
                    0 10px 35px rgba(102, 126, 234, 0.15),
                    0 0 0 1px rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
            text-align: center;
            cursor: pointer;
        }

        /* 添加悬停时的背景渐变效果 */
        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        /* 添加顶部渐变条 */
        .intro-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 1;
        }

        .intro-card:hover {
            transform: translateY(-18px) scale(1.05);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.3),
                    0 0 0 3px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .intro-card:hover::before {
            opacity: 1;
        }

        .intro-card:hover::after {
            transform: scaleX(1);
        }

        /* 添加卡片图标样式 */
        .intro-card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
        }

        .intro-card:hover .intro-card-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        /* lookup-intro区域的section-header特殊样式 */
        .lookup-intro .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .lookup-intro .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .lookup-intro .section-tag::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.6s ease;
        }

        .lookup-intro .section-tag:hover::before {
            left: 100%;
        }

        .lookup-intro .section-title {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            position: relative;
        }

        .lookup-intro .section-desc {
            font-size: 1.2em;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }

        /* 添加卡片悬停时的光效 */
        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
            transition: left 0.6s ease;
            z-index: 0;
        }

        /* 添加底部渐变条 */
        .intro-card::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.3));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 1;
        }

        .intro-card:hover {
            transform: translateY(-15px) scale(1.02);
            background: rgba(255, 255, 255, 0.25);
            box-shadow:
                    0 25px 50px rgba(0, 0, 0, 0.25),
                    0 0 0 2px rgba(255, 255, 255, 0.3);
            border-color: rgba(255, 255, 255, 0.4);
        }

        .intro-card:hover::before {
            left: 100%;
        }

        .intro-card:hover::after {
            transform: scaleX(1);
        }

        .intro-card h3 {
            color: #2c3e50;
            font-size: 1.7em;
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 800;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .intro-card:hover h3 {
            transform: translateY(-3px);
            color: #667eea;
        }

        .intro-card p {
            color: #718096;
            line-height: 2;
            font-size: 1.15em;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .intro-card:hover p {
            transform: translateY(2px);
            color: #4a5568;
        }

        .target-games {
            text-align: center;
            margin-top: 60px;
            padding: 40px;
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            border-radius: 25px;
            border: 2px solid transparent;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
            box-shadow:
                    0 10px 35px rgba(102, 126, 234, 0.15),
                    0 0 0 1px rgba(102, 126, 234, 0.1);
        }

        .target-games::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .target-games:hover {
            transform: translateY(-5px);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.3),
                    0 0 0 3px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .target-games:hover::before {
            opacity: 1;
        }

        .target-games h3 {
            color: #2c3e50;
            font-size: 1.6em;
            margin-top: 0;
            font-weight: 800;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .target-games:hover h3 {
            transform: translateY(-2px);
            color: #667eea;
        }

        .target-games p {
            color: #718096;
            font-size: 1.2em;
            margin: 10px 0 0 0;
        }

        .target-games-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
        }

        .target-games:hover .target-games-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        /* 录像取证和变更通知介绍区域 - 增强版 */
        .evidence-notification {
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            padding: 100px 0;
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景效果 */
        .evidence-notification::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 30% 20%, rgba(102, 126, 234, 0.12) 0%, transparent 25%),
                    radial-gradient(circle at 70% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 25%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 30%);
            pointer-events: none;
            animation: evidenceBgPulse 6s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .evidence-notification::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes evidenceBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .evidence-notification .layui-container {
            position: relative;
            z-index: 2;
        }

        /* evidence-notification区域的section-header样式 */
        .evidence-notification .section-header {
            text-align: center;
            margin-bottom: 60px;
            position: relative;
            z-index: 2;
        }

        .evidence-notification .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .evidence-notification .section-tag::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.6s ease;
        }

        .evidence-notification .section-tag:hover::before {
            left: 100%;
        }

        .evidence-notification .section-title {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: titleGradient 4s ease-in-out infinite;
        }

        .evidence-notification .section-desc {
            font-size: 1.2em;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }

        /* evidence网格布局 */
        .evidence-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
            gap: 30px;
        }

        .evidence-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            padding: 45px 35px;
            border-radius: 25px;
            border: 2px solid transparent;
            height: 100%;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow:
                    0 10px 35px rgba(102, 126, 234, 0.15),
                    0 0 0 1px rgba(102, 126, 234, 0.1);
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        /* 添加卡片悬停时的背景渐变效果 */
        .evidence-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.08) 0%, rgba(118, 75, 162, 0.08) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        /* 添加顶部渐变条 */
        .evidence-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 1;
        }

        .evidence-card:hover {
            transform: translateY(-18px) scale(1.05);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.3),
                    0 0 0 3px rgba(102, 126, 234, 0.25);
            border-color: rgba(102, 126, 234, 0.4);
        }

        .evidence-card:hover::before {
            opacity: 1;
        }

        .evidence-card:hover::after {
            transform: scaleX(1);
        }

        /* evidence卡片图标 */
        .evidence-card-icon {
            width: 70px;
            height: 70px;
            margin: 0 auto 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2em;
            color: white;
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
        }

        .evidence-card:hover .evidence-card-icon {
            transform: rotate(360deg) scale(1.15);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .evidence-card h3 {
            color: #667eea;
            font-size: 1.7em;
            margin-top: 0;
            margin-bottom: 25px;
            text-align: center;
            font-weight: 800;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .evidence-card:hover h3 {
            transform: translateY(-3px);
            text-shadow: 0 2px 10px rgba(102, 126, 234, 0.2);
        }

        .evidence-card p {
            color: #4a5568;
            line-height: 2;
            font-size: 1.15em;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .evidence-card:hover p {
            transform: translateY(2px);
        }

        .evidence-link {
            display: inline-block;
            padding: 14px 35px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50px;
            color: white;
            text-decoration: none;
            font-weight: 700;
            margin-top: 25px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
            z-index: 2;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.25);
        }

        .evidence-link::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.6s ease;
            z-index: -1;
        }

        .evidence-link:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow: 0 15px 40px rgba(102, 126, 234, 0.35);
        }

        .evidence-link:hover::before {
            left: 100%;
        }

        .notification-tags {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            margin-top: 25px;
        }

        .notification-tags span {
            display: inline-block;
            padding: 12px 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50px;
            color: white;
            font-weight: 600;
            font-size: 1em;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.2);
            position: relative;
            overflow: hidden;
        }

        .notification-tags span::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;
        }

        .notification-tags span:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.3);
        }

        .notification-tags span:hover::before {
            left: 100%;
        }

        /* Hero区域样式 - 增强版 */
        .hero {
            padding: 180px 0 120px;
            position: relative;
            overflow: hidden;
            background:
                    linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }

        /* 添加动态几何图形装饰 */
        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.15) 0%, transparent 30%),
                    radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.12) 0%, transparent 30%),
                    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
            animation: pulse 4s ease-in-out infinite;
        }

        /* 添加网格背景效果 */
        .hero::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            animation: gridMove 20s linear infinite;
            pointer-events: none;
        }

        @keyframes pulse {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        @keyframes gridMove {
            0% { transform: translate(0, 0); }
            100% { transform: translate(50px, 50px); }
        }

        /* 添加浮动粒子效果 */
        .hero-particle {
            position: absolute;
            width: 10px;
            height: 10px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            animation: float 15s ease-in-out infinite;
        }

        .hero-particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
        .hero-particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 2s; width: 15px; height: 15px; }
        .hero-particle:nth-child(3) { left: 60%; top: 30%; animation-delay: 4s; }
        .hero-particle:nth-child(4) { left: 80%; top: 70%; animation-delay: 6s; width: 12px; height: 12px; }
        .hero-particle:nth-child(5) { left: 40%; top: 80%; animation-delay: 8s; }
        .hero-particle:nth-child(6) { left: 70%; top: 10%; animation-delay: 10s; width: 8px; height: 8px; }

        @keyframes float {
            0%, 100% {
                transform: translateY(0) translateX(0) scale(1);
                opacity: 0.3;
            }
            25% {
                transform: translateY(-30px) translateX(20px) scale(1.1);
                opacity: 0.6;
            }
            50% {
                transform: translateY(-60px) translateX(-10px) scale(1);
                opacity: 0.4;
            }
            75% {
                transform: translateY(-30px) translateX(30px) scale(1.05);
                opacity: 0.5;
            }
        }

        .hero-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
            text-align: center;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.25);
            backdrop-filter: blur(15px);
            padding: 10px 30px;
            border-radius: 50px;
            font-size: 0.95em;
            margin-bottom: 35px;
            border: 2px solid rgba(255, 255, 255, 0.4);
            animation: fadeInUp 0.8s ease, badgeGlow 3s ease-in-out infinite 0.8s;
            position: relative;
            overflow: hidden;
        }

        .hero-badge::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            animation: badgeShine 3s ease-in-out infinite;
        }

        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes badgeGlow {
            0%, 100% { box-shadow: 0 0 20px rgba(255, 255, 255, 0.3); }
            50% { box-shadow: 0 0 40px rgba(255, 255, 255, 0.5); }
        }

        @keyframes badgeShine {
            0% { left: -100%; }
            50%, 100% { left: 100%; }
        }

        .hero-title {
            font-size: 3.8em;
            font-weight: 900;
            margin-bottom: 30px;
            line-height: 1.2;
            text-shadow:
                    0 4px 20px rgba(0, 0, 0, 0.3),
                    0 0 40px rgba(255, 255, 255, 0.2);
            animation: fadeInUp 0.8s ease 0.2s backwards, titleFloat 6s ease-in-out infinite 1s;
            background: linear-gradient(135deg, #ffffff 0%, #f0f0ff 50%, #ffffff 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: fadeInUp 0.8s ease 0.2s backwards, titleGradient 4s ease-in-out infinite 1s;
        }

        @keyframes titleGradient {
            0%, 100% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
        }

        .hero-subtitle {
            font-size: 1.6em;
            margin-bottom: 55px;
            opacity: 0.98;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
            animation: fadeInUp 0.8s ease 0.4s backwards;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
            font-weight: 500;
        }

        .hero-buttons {
            display: flex;
            gap: 25px;
            justify-content: center;
            flex-wrap: wrap;
            animation: fadeInUp 0.8s ease 0.6s backwards;
        }

        .btn {
            padding: 18px 45px;
            border-radius: 50px;
            font-size: 1.15em;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            display: inline-block;
            position: relative;
            overflow: hidden;
            z-index: 1;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: inherit;
            z-index: -1;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .btn-primary {
            background: white;
            color: #667eea;
            box-shadow:
                    0 10px 30px rgba(0, 0, 0, 0.25),
                    0 0 20px rgba(255, 255, 255, 0.3);
            border: none;
        }

        .btn-primary:hover {
            transform: translateY(-5px) scale(1.05);
            box-shadow:
                    0 15px 45px rgba(0, 0, 0, 0.35),
                    0 0 30px rgba(255, 255, 255, 0.5);
        }

        .btn-primary::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(102, 126, 234, 0.1);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .btn-primary:hover::after {
            width: 300px;
            height: 300px;
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: white;
            border: 2px solid rgba(255, 255, 255, 0.6);
            backdrop-filter: blur(15px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-5px) scale(1.05);
            border-color: rgba(255, 255, 255, 0.9);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
        }

        /* 核心优势区域 - 增强版 */
        .advantages-section {
            padding: 120px 0;
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景图案 */
        .advantages-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 10% 20%, rgba(102, 126, 234, 0.08) 0%, transparent 20%),
                    radial-gradient(circle at 90% 80%, rgba(118, 75, 162, 0.08) 0%, transparent 20%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.04) 0%, transparent 30%);
            pointer-events: none;
            animation: advantagesBgPulse 6s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .advantages-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes advantagesBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .advantages-section .layui-container {
            position: relative;
            z-index: 2;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
            position: relative;
            z-index: 2;
        }

        .section-tag {
            display: inline-block;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-size: 0.9em;
            font-weight: 600;
            margin-bottom: 20px;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.3);
            position: relative;
            overflow: hidden;
        }

        .section-tag::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.6s ease;
        }

        .section-tag:hover::before {
            left: 100%;
        }

        .section-title {
            font-size: 2.8em;
            font-weight: 700;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-size: 200% 200%;
            animation: titleGradient 4s ease-in-out infinite;
        }

        .section-desc {
            font-size: 1.2em;
            color: #718096;
            max-width: 700px;
            margin: 0 auto;
        }

        .advantage-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            padding: 40px;
            border-radius: 20px;
            box-shadow:
                    0 10px 40px rgba(0, 0, 0, 0.08),
                    0 0 0 1px rgba(102, 126, 234, 0.05);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            border: 2px solid transparent;
            position: relative;
            overflow: hidden;
            text-align: center;
        }

        /* 添加卡片悬停时的背景渐变效果 */
        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        /* 添加顶部渐变条 */
        .advantage-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 5px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            z-index: 1;
        }

        .advantage-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.25),
                    0 0 0 2px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .advantage-card:hover::before {
            opacity: 1;
        }

        .advantage-card:hover::after {
            transform: scaleX(1);
        }

        .advantage-icon {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5em;
            margin: 0 auto 25px;
            color: white;
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            z-index: 2;
            box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
        }

        /* 添加图标光晕效果 */
        .advantage-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            border-radius: 20px;
        }

        .advantage-card:hover .advantage-icon {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
        }

        .advantage-card:hover .advantage-icon::before {
            transform: translate(-50%, -50%) scale(1.5);
        }

        .advantage-title {
            font-size: 1.5em;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2d3748;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .advantage-title {
            transform: translateY(-3px);
            text-shadow: 0 2px 10px rgba(102, 126, 234, 0.15);
        }

        .advantage-desc {
            color: #718096;
            line-height: 1.8;
            font-size: 1.05em;
            position: relative;
            z-index: 2;
            transition: all 0.4s ease;
        }

        .advantage-card:hover .advantage-desc {
            transform: translateY(2px);
        }

        /* 游戏接口详情区域 - 增强版 */
        .games-section {
            padding: 120px 0;
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景图案 */
        .games-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 15% 25%, rgba(102, 126, 234, 0.1) 0%, transparent 25%),
                    radial-gradient(circle at 85% 75%, rgba(118, 75, 162, 0.1) 0%, transparent 25%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 30%);
            pointer-events: none;
            animation: gamesBgPulse 6s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .games-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes gamesBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .games-section .layui-container {
            position: relative;
            z-index: 2;
        }

        .filter-bar {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-bottom: 50px;
            flex-wrap: wrap;
        }

        .filter-btn {
            padding: 12px 30px;
            border-radius: 30px;
            border: 2px solid #e2e8f0;
            background: white;
            color: #4a5568;
            font-size: 1em;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
        }

        /* 添加按钮光扫效果 */
        .filter-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
            transition: left 0.6s ease;
        }

        .filter-btn:hover, .filter-btn.active {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            border-color: transparent;
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.35);
        }

        .filter-btn:hover::before, .filter-btn.active::before {
            left: 100%;
        }

        .game-card {
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            border-radius: 20px;
            overflow: hidden;
            box-shadow:
                    0 10px 40px rgba(0, 0, 0, 0.08),
                    0 0 0 1px rgba(102, 126, 234, 0.05);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            border: 2px solid transparent;
        }

        /* 添加卡片悬停时的背景渐变效果 */
        .game-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: 0;
        }

        .game-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow:
                    0 25px 60px rgba(102, 126, 234, 0.25),
                    0 0 0 2px rgba(102, 126, 234, 0.15);
            border-color: rgba(102, 126, 234, 0.2);
        }

        .game-card:hover::before {
            opacity: 1;
        }

        .game-card-header {
            padding: 30px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            position: relative;
            overflow: hidden;
            transition: all 0.4s ease;
        }

        /* 添加头部光效装饰 */
        .game-card-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
            animation: headerGlow 3s ease-in-out infinite;
        }

        /* 添加头部网格装饰 */
        .game-card-header::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
            background-size: 20px 20px;
            pointer-events: none;
        }

        @keyframes headerGlow {
            0%, 100% { opacity: 0.5; }
            50% { opacity: 1; }
        }

        .game-card:hover .game-card-header {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
        }

        .game-card-header h3 {
            font-size: 1.6em;
            margin-bottom: 10px;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .game-card:hover .game-card-header h3 {
            transform: translateX(5px);
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .game-card-header p {
            font-size: 0.95em;
            opacity: 0.9;
            position: relative;
            z-index: 1;
            transition: all 0.4s ease;
        }

        .game-card:hover .game-card-header p {
            opacity: 1;
            transform: translateX(5px);
        }

        .game-card-body {
            padding: 30px;
            position: relative;
            z-index: 2;
        }

        .game-stat {
            display: flex;
            justify-content: space-between;
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #e2e8f0;
            transition: all 0.3s ease;
        }

        .game-stat:hover {
            padding-left: 10px;
            border-bottom-color: #667eea;
        }

        .game-stat:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }

        .game-stat-label {
            color: #718096;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .game-stat:hover .game-stat-label {
            color: #667eea;
        }

        .game-stat-value {
            color: #2d3748;
            font-weight: 700;
            transition: all 0.3s ease;
        }

        .game-stat:hover .game-stat-value {
            color: #764ba2;
            transform: translateX(-5px);
        }

        .game-detail-btn {
            margin-top: 20px;
            text-align: right;
        }

        .game-detail-btn .layui-btn {
            padding: 10px 30px;
            height: 42px;
            line-height: 42px;
            font-size: 0.95em;
            border-radius: 25px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            color: white;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(102, 126, 234, 0.25);
        }

        /* 添加按钮光扫效果 */
        .game-detail-btn .layui-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.6s ease;
        }

        .game-detail-btn .layui-btn:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
        }

        .game-detail-btn .layui-btn:hover::before {
            left: 100%;
        }

        /* 对接流程区域 - 增强版 */
        .process-section {
            padding: 120px 0;
            background:
                    linear-gradient(135deg, #ffffff 0%, #f5f9ff 50%, #e8f0ff 100%);
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景图案 */
        .process-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.1) 0%, transparent 30%),
                    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.1) 0%, transparent 30%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.05) 0%, transparent 40%);
            pointer-events: none;
            animation: processBgPulse 6s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .process-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.02) 1px, transparent 1px);
            background-size: 40px 40px;
            pointer-events: none;
        }

        @keyframes processBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        .process-section .layui-container {
            position: relative;
            z-index: 2;
        }

        .process-steps {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            position: relative;
            margin-top: 60px;
        }

        /* 增强连接线效果 */
        .process-steps::before {
            content: '';
            position: absolute;
            top: 50px;
            left: 10%;
            right: 10%;
            height: 6px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            z-index: 0;
            border-radius: 3px;
            box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3);
            animation: lineGlow 3s ease-in-out infinite;
        }

        @keyframes lineGlow {
            0%, 100% { box-shadow: 0 4px 15px rgba(102, 126, 234, 0.3); }
            50% { box-shadow: 0 4px 25px rgba(102, 126, 234, 0.5); }
        }

        .process-step {
            text-align: center;
            position: relative;
            z-index: 1;
            flex: 1;
            padding: 0 20px;
            transition: all 0.4s ease;
        }

        .process-step:hover {
            transform: translateY(-10px);
        }

        .step-icon {
            width: 110px;
            height: 110px;
            background: linear-gradient(145deg, #ffffff 0%, #f8faff 100%);
            border: 5px solid #667eea;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 25px;
            font-size: 2.5em;
            font-weight: 800;
            color: #667eea;
            box-shadow:
                    0 10px 30px rgba(102, 126, 234, 0.2),
                    0 0 0 1px rgba(102, 126, 234, 0.05);
            transition: all 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
            overflow: hidden;
        }

        /* 添加图标光晕效果 */
        .step-icon::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
            transform: translate(-50%, -50%) scale(0);
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
            border-radius: 50%;
        }

        /* 添加图标旋转光环 */
        .step-icon::after {
            content: '';
            position: absolute;
            top: -5px;
            left: -5px;
            right: -5px;
            bottom: -5px;
            border: 2px dashed rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            animation: rotate 20s linear infinite;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        .process-step:hover .step-icon {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            transform: scale(1.15);
            box-shadow:
                    0 20px 50px rgba(102, 126, 234, 0.35),
                    0 0 0 3px rgba(102, 126, 234, 0.15);
            border-color: transparent;
        }

        .process-step:hover .step-icon::before {
            transform: translate(-50%, -50%) scale(1.5);
            background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
        }

        .process-step:hover .step-icon::after {
            opacity: 1;
        }

        .step-title {
            font-size: 1.4em;
            font-weight: 700;
            margin-bottom: 15px;
            color: #2d3748;
            transition: all 0.4s ease;
        }

        .process-step:hover .step-title {
            color: #667eea;
            transform: translateY(-3px);
        }

        .step-desc {
            color: #718096;
            line-height: 1.7;
            font-size: 1.05em;
            transition: all 0.4s ease;
        }

        .process-step:hover .step-desc {
            color: #4a5568;
            transform: translateY(2px);
        }

        /* 页脚样式 - 增强版 */
        .footer {
            background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
            color: white;
            padding: 80px 0 40px;
            position: relative;
            overflow: hidden;
        }

        /* 添加动态背景图案 */
        .footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background:
                    radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 30%),
                    radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 30%),
                    radial-gradient(circle at 50% 50%, rgba(102, 126, 234, 0.08) 0%, transparent 40%);
            pointer-events: none;
            animation: footerBgPulse 8s ease-in-out infinite;
        }

        /* 添加网格装饰 */
        .footer::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                    linear-gradient(rgba(102, 126, 234, 0.03) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(102, 126, 234, 0.03) 1px, transparent 1px);
            background-size: 50px 50px;
            pointer-events: none;
        }

        @keyframes footerBgPulse {
            0%, 100% { opacity: 0.8; }
            50% { opacity: 1; }
        }

        /* 添加顶部波浪装饰 */
        .footer-wave {
            position: absolute;
            top: -1px;
            left: 0;
            width: 100%;
            height: 60px;
            background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 60" preserveAspectRatio="none"><path d="M0,30 C150,60 350,0 600,30 C850,60 1050,0 1200,30 L1200,60 L0,60 Z" fill="linear-gradient(135deg, %23f5f7fa 0%, %23e8eef5 50%, %23f0f4f8 100%)"/></svg>');
            background-size: cover;
            z-index: 1;
        }

        .footer-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 30px;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 50px;
            margin-bottom: 60px;
        }

        .footer-section {
            position: relative;
            padding: 20px;
            border-radius: 15px;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            border: 1px solid transparent;
        }

        .footer-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
            border-radius: 15px;
            opacity: 0;
            transition: opacity 0.4s ease;
            z-index: -1;
        }

        .footer-section:hover::before {
            opacity: 1;
        }

        .footer-section:hover {
            border-color: rgba(102, 126, 234, 0.2);
            transform: translateY(-5px);
        }

        .footer-section h4 {
            font-size: 1.3em;
            margin-bottom: 25px;
            color: white;
            position: relative;
            display: inline-block;
            transition: all 0.3s ease;
        }

        /* 添加标题下划线动画 */
        .footer-section h4::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .footer-section:hover h4::after {
            transform: scaleX(1);
        }

        .footer-section h4:hover {
            color: #667eea;
            transform: translateX(5px);
        }

        .footer-section p {
            color: #a0aec0;
            line-height: 1.8;
            margin-bottom: 15px;
            transition: all 0.3s ease;
        }

        .footer-section:hover p {
            color: #cbd5e0;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-section ul li {
            margin-bottom: 12px;
            position: relative;
            padding-left: 20px;
            transition: all 0.3s ease;
        }

        /* 添加列表项前的装饰 */
        .footer-section ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            width: 6px;
            height: 6px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .footer-section ul li:hover::before {
            width: 10px;
            height: 10px;
            background: #764ba2;
        }

        .footer-section ul a {
            color: #a0aec0;
            text-decoration: none;
            transition: all 0.3s ease;
            display: inline-block;
            position: relative;
        }

        .footer-section ul a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .footer-section ul a:hover {
            color: white;
            padding-left: 5px;
        }

        .footer-section ul a:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* 添加社交媒体图标 */
        .social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }

        .social-icon {
            width: 40px;
            height: 40px;
            background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(118, 75, 162, 0.2) 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.2em;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            border: 1px solid rgba(102, 126, 234, 0.3);
        }

        .social-icon:hover {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            transform: translateY(-5px) scale(1.1);
            box-shadow: 0 10px 25px rgba(102, 126, 234, 0.4);
            border-color: transparent;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 40px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #a0aec0;
            position: relative;
            z-index: 2;
        }

        /* 添加底部装饰线动画 */
        .footer-bottom::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 100px;
            height: 3px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            border-radius: 3px;
            transition: width 0.4s ease;
        }

        .footer:hover .footer-bottom::before {
            width: 200px;
        }

        .footer-bottom p {
            transition: all 0.3s ease;
        }

        .footer-bottom p:hover {
            color: #cbd5e0;
        }

        /* 响应式设计 */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 2.8em;
            }

            .section-title {
                font-size: 2.2em;
            }

            .supply-intro h2, .lookup-intro h2, .evidence-notification h2 {
                font-size: 2.2em;
            }

            .process-steps::before {
                left: 5%;
                right: 5%;
            }
        }

        @media (max-width: 768px) {
            .navbar-nav {
                display: none;
            }

            .features-intro {
                padding: 40px 0;
            }

            .features-intro-title {
                font-size: 1.8em;
            }

            .features-intro-subtitle {
                font-size: 1em;
            }

            .features-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .feature-card {
                padding: 25px 20px;
            }

            .feature-icon {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }

            .feature-card h3 {
                font-size: 1.2em;
            }

            .feature-card p {
                font-size: 0.9em;
            }

            .hero {
                padding: 140px 0 100px;
            }

            .hero-title {
                font-size: 2.2em;
            }

            .hero-subtitle {
                font-size: 1.2em;
            }

            .hero-buttons {
                flex-direction: column;
                align-items: center;
            }

            .btn {
                width: 100%;
                max-width: 300px;
            }

            .supply-intro, .lookup-intro, .evidence-notification, .advantages-section, .games-section, .process-section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.8em;
            }

            .supply-item, .feature-item, .intro-card, .advantage-card {
                margin-bottom: 30px;
            }

            .process-steps {
                flex-direction: column;
                align-items: center;
            }

            .process-steps::before {
                display: none;
            }

            .process-step {
                margin-bottom: 40px;
            }

            .filter-bar {
                gap: 10px;
            }

            .filter-btn {
                padding: 10px 20px;
                font-size: 0.9em;
            }

            .supply-features {
                gap: 20px;
            }

            .feature-item {
                min-width: 150px;
                padding: 20px;
            }
        }

        @media (max-width: 480px) {
            .hero-title {
                font-size: 1.8em;
            }

            .section-title {
                font-size: 1.5em;
            }

            .supply-intro h2, .lookup-intro h2, .evidence-notification h2 {
                font-size: 1.8em;
            }

            .supply-item, .feature-item, .intro-card, .advantage-card, .game-card {
                padding: 20px;
            }

            .step-icon {
                width: 80px;
                height: 80px;
                font-size: 2em;
            }

            .supply-item h3 {
                font-size: 1.1em;
            }

            .supply-item p {
                font-size: 1.4em;
            }

            .feature-item h3 {
                font-size: 1em;
            }

            .feature-item p {
                font-size: 1.6em;
            }

            /* 移动端悬浮微信按钮样式 */
            .floating-wechat {
                right: 15px;
            }

            .floating-wechat-btn {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .floating-wechat-tooltip {
                font-size: 12px;
                padding: 10px 14px;
                right: 60px;
            }

            .floating-wechat-btn:hover .floating-wechat-tooltip {
                right: 65px;
            }
        }

        /* 悬浮微信联系按钮 */
        .floating-wechat {
            position: fixed;
            right: 30px;
            top: 50%;
            transform: translateY(-50%);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 15px;
            animation: floatPulse 3s ease-in-out infinite;
        }

        .floating-wechat-btn {
            width: 60px;
            height: 60px;
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            box-shadow: 0 8px 25px rgba(102, 126, 234, 0.4);
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            position: relative;
        }

        .floating-wechat-btn:hover {
            transform: scale(1.15);
            box-shadow: 0 12px 35px rgba(102, 126, 234, 0.6);
        }

        .floating-wechat-tooltip {
            position: absolute;
            right: 70px;
            top: 50%;
            transform: translateY(-50%);
            background: rgba(255, 255, 255, 0.98);
            padding: 12px 18px;
            border-radius: 8px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: all 0.3s ease;
            font-size: 14px;
            color: #2c3e50;
            font-weight: 600;
        }

        .floating-wechat-btn:hover .floating-wechat-tooltip {
            opacity: 1;
            visibility: visible;
            right: 75px;
        }

        .floating-wechat-tooltip::before {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border: 8px solid transparent;
            border-left-color: rgba(255, 255, 255, 0.98);
        }

        @keyframes floatPulse {
            0%, 100% {
                transform: translateY(-50%);
            }
            50% {
                transform: translateY(calc(-50% - 5px));
            }
        }

        /* ==================== 微交互动画效果 ==================== */

        /* 滚动淡入动画 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .fade-in-left.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .fade-in-right.visible {
            opacity: 1;
            transform: translateX(0);
        }

        .fade-in-up {
            opacity: 0;
            transform: translateY(50px);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .fade-in-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .fade-in-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .fade-in-scale.visible {
            opacity: 1;
            transform: scale(1);
        }

        /* 按钮波纹效果 */
        .ripple {
            position: relative;
            overflow: hidden;
        }

        .ripple::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.6s ease, height 0.6s ease;
        }

        .ripple:active::after {
            width: 300px;
            height: 300px;
        }

        /* 文字打字机效果 */
        .typewriter {
            overflow: hidden;
            border-right: 3px solid #667eea;
            white-space: nowrap;
            animation: typing 3.5s steps(40, end), blink-caret 0.75s step-end infinite;
        }

        @keyframes typing {
            from { width: 0; }
            to { width: 100%; }
        }

        @keyframes blink-caret {
            from, to { border-color: transparent; }
            50% { border-color: #667eea; }
        }

        /* 文字渐变动画 */
        .text-gradient-animate {
            background: linear-gradient(90deg, #667eea, #764ba2, #667eea);
            background-size: 300% 100%;
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            animation: gradientText 3s ease infinite;
        }

        @keyframes gradientText {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* 边框动画 */
        .border-animate {
            position: relative;
        }

        .border-animate::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            border: 2px solid transparent;
            border-radius: inherit;
            background: linear-gradient(90deg, #667eea, #764ba2) border-box;
            -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            animation: borderRotate 3s linear infinite;
        }

        @keyframes borderRotate {
            0% { background-position: 0% 50%; }
            100% { background-position: 200% 50%; }
        }

        /* 悬停3D翻转效果 */
        .flip-card {
            perspective: 1000px;
        }

        .flip-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s cubic-bezier(0.23, 1, 0.320, 1);
            transform-style: preserve-3d;
        }

        .flip-card:hover .flip-card-inner {
            transform: rotateY(180deg);
        }

        .flip-card-front, .flip-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            backface-visibility: hidden;
            border-radius: inherit;
        }

        .flip-card-back {
            transform: rotateY(180deg);
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
        }

        /* 鼠标跟随效果 */
        .mouse-follow {
            position: relative;
        }

        .mouse-follow::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            background: radial-gradient(circle, rgba(102, 126, 234, 0.2) 0%, transparent 70%);
            border-radius: 50%;
            transform: translate(-50%, -50%);
            transition: width 0.3s ease, height 0.3s ease;
            pointer-events: none;
        }

        .mouse-follow:hover::before {
            width: 200px;
            height: 200px;
        }

        /* 加载动画 */
        .loading {
            display: inline-block;
            width: 40px;
            height: 40px;
            border: 3px solid rgba(102, 126, 234, 0.3);
            border-top-color: #667eea;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            to { transform: rotate(360deg); }
        }

        /* 脉冲动画 */
        .pulse {
            animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }

        @keyframes pulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.5; }
        }

        /* 弹跳动画 */
        .bounce {
            animation: bounce 2s infinite;
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-20px); }
            60% { transform: translateY(-10px); }
        }

        /* 摇晃动画 */
        .shake {
            animation: shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
        }

        @keyframes shake {
            10%, 90% { transform: translate3d(-1px, 0, 0); }
            20%, 80% { transform: translate3d(2px, 0, 0); }
            30%, 50%, 70% { transform: translate3d(-4px, 0, 0); }
            40%, 60% { transform: translate3d(4px, 0, 0); }
        }

        /* 旋转动画 */
        .rotate {
            animation: rotate 2s linear infinite;
        }

        @keyframes rotate {
            from { transform: rotate(0deg); }
            to { transform: rotate(360deg); }
        }

        /* 缩放动画 */
        .scale {
            animation: scale 2s ease-in-out infinite;
        }

        @keyframes scale {
            0%, 100% { transform: scale(1); }
            50% { transform: scale(1.1); }
        }

        /* 光滑滚动 */
        html {
            scroll-behavior: smooth;
        }

        /* 自定义滚动条 */
        ::-webkit-scrollbar {
            width: 10px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
            border-radius: 5px;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
        }

        /* 选择文本样式 */
        ::selection {
            background: rgba(102, 126, 234, 0.3);
            color: #2d3748;
        }

        /* 焦点样式 */
        *:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.3);
        }

        /* 图片悬停放大效果 */
        .img-zoom {
            overflow: hidden;
        }

        .img-zoom img {
            transition: transform 0.5s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .img-zoom:hover img {
            transform: scale(1.1);
        }

        /* 文字下划线动画 */
        .underline-animate {
            position: relative;
            display: inline-block;
        }

        .underline-animate::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 100%;
            height: 2px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transform-origin: right;
            transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1);
        }

        .underline-animate:hover::after {
            transform: scaleX(1);
            transform-origin: left;
        }

        /* 阴影动画 */
        .shadow-animate {
            transition: box-shadow 0.4s ease;
        }

        .shadow-animate:hover {
            box-shadow:
                    0 20px 40px rgba(102, 126, 234, 0.2),
                    0 0 0 1px rgba(102, 126, 234, 0.1);
        }

        /* 发光效果 */
        .glow {
            animation: glow 2s ease-in-out infinite alternate;
        }

        @keyframes glow {
            from {
                box-shadow: 0 0 10px rgba(102, 126, 234, 0.5);
            }
            to {
                box-shadow: 0 0 20px rgba(102, 126, 234, 0.8), 0 0 30px rgba(118, 75, 162, 0.6);
            }
        }

        /* 浮动动画 */
        .float {
            animation: float 3s ease-in-out infinite;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        /* 闪烁动画 */
        .blink {
            animation: blink 1s linear infinite;
        }

        @keyframes blink {
            50% { opacity: 0; }
        }

        /* 滑入动画 */
        .slide-in {
            animation: slideIn 0.5s ease-out;
        }

        @keyframes slideIn {
            from {
                transform: translateX(-100%);
                opacity: 0;
            }
            to {
                transform: translateX(0);
                opacity: 1;
            }
        }

        /* 弹出动画 */
        .pop-in {
            animation: popIn 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        }

        @keyframes popIn {
            from {
                transform: scale(0);
                opacity: 0;
            }
            to {
                transform: scale(1);
                opacity: 1;
            }
        }

        /* 震动动画 */
        .vibrate {
            animation: vibrate 0.3s linear infinite;
        }

        @keyframes vibrate {
            0% { transform: translate(0); }
            20% { transform: translate(-2px, 2px); }
            40% { transform: translate(-2px, -2px); }
            60% { transform: translate(2px, 2px); }
            80% { transform: translate(2px, -2px); }
            100% { transform: translate(0); }
        }

        /* 旋转缩放动画 */
        .rotate-scale {
            animation: rotateScale 2s ease-in-out infinite;
        }

        @keyframes rotateScale {
            0%, 100% { transform: rotate(0deg) scale(1); }
            50% { transform: rotate(180deg) scale(1.1); }
        }

        /* 波浪动画 */
        .wave {
            position: relative;
        }

        .wave::before, .wave::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 100%;
            height: 100%;
            border: 2px solid rgba(102, 126, 234, 0.3);
            border-radius: 50%;
            transform: translate(-50%, -50%) scale(0);
            animation: wave 2s ease-out infinite;
        }

        .wave::after {
            animation-delay: 1s;
        }

        @keyframes wave {
            to {
                transform: translate(-50%, -50%) scale(2);
                opacity: 0;
            }
        }

        /* 功能简介区域 */
        .features-intro {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            padding: 60px 0;
            margin-top: 70px;
            position: relative;
            overflow: hidden;
        }

        .features-intro::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></svg>');
            background-size: 50px 50px;
            animation: patternMove 20s linear infinite;
        }

        @keyframes patternMove {
            0% {
                background-position: 0 0;
            }
            100% {
                background-position: 50px 50px;
            }
        }

        .features-intro-header {
            text-align: center;
            margin-bottom: 50px;
            position: relative;
            z-index: 2;
        }

        .features-intro-title {
            font-size: 2.5em;
            font-weight: 700;
            color: white;
            margin-bottom: 15px;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
        }

        .features-intro-subtitle {
            font-size: 1.2em;
            color: rgba(255, 255, 255, 0.9);
            max-width: 800px;
            margin: 0 auto;
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            position: relative;
            z-index: 2;
        }

        .feature-card {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(90deg, #667eea, #764ba2);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .feature-card:hover {
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.25);
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .feature-card:hover::before {
            transform: scaleX(1);
        }

        .feature-icon {
            width: 80px;
            height: 80px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 36px;
            color: white;
            transition: all 0.4s ease;
        }

        .feature-card:hover .feature-icon {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1) rotate(5deg);
        }

        .feature-card h3 {
            font-size: 1.4em;
            color: white;
            margin-bottom: 12px;
            font-weight: 600;
        }

        .feature-card p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.95em;
            line-height: 1.6;
        }

        .feature-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 0.85em;
            margin-top: 15px;
            transition: all 0.3s ease;
        }

        .feature-card:hover .feature-badge {
            background: rgba(255, 255, 255, 0.3);
        }
    