    /* 全局样式重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Microsoft YaHei", sans-serif;
            scroll-behavior: smooth; /* 平滑滚动 */
        }
        body {
            background-color: #f8f8f8;
            color: #333;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            transition: all 0.3s ease;
        }
        /* 动画类 - 滚动渐入 */
        .fade-in {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-in.active {
            opacity: 1;
            transform: translateY(0);
        }

        /* 导航栏样式 */
        header {
            background-color: #fff;
            border-bottom: 1px solid #eee;
            padding: 10px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            transition: background-color 0.3s ease, box-shadow 0.3s ease;
        }
        header.scrolled {
            background-color: #fff;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }
        .header-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .logo {
            display: flex;
            align-items: center;
            cursor: pointer;
        }
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        .logo-text {
            font-size: 18px;
            font-weight: bold;
            color: #ff7a00;
            transition: color 0.3s ease;
        }
        .logo:hover .logo-text {
            color: #e66a00;
        }
        .nav-list {
            display: flex;
            list-style: none;
        }
        .nav-list li {
            margin: 0 15px;
            position: relative;
        }
        .nav-list a {
            text-decoration: none;
            color: #333;
            font-size: 14px;
            padding: 5px 0;
            transition: color 0.3s ease;
            display: inline-block;
        }
        .nav-list a::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background-color: #ff7a00;
            transition: width 0.3s ease;
        }
        .nav-list a:hover {
            color: #ff7a00;
        }
        .nav-list a:hover::after {
            width: 100%;
        }
        .free-trial {
            background-color: #ff7a00;
            color: #fff !important;
            padding: 8px 15px;
            border-radius: 3px;
            transition: background-color 0.3s ease, transform 0.3s ease;
        }
        .free-trial:hover {
            background-color: #e66a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,122,0,0.2);
        }
        .free-trial::after {
            display: none;
        }
        /* 移动端菜单按钮 */
        .menu-btn {
            display: none;
            font-size: 24px;
            cursor: pointer;
            color: #333;
        }

        /* Banner区域 */
        .banner {
            background: linear-gradient(to right, #fef7ff, #fff9e8);
            padding: 60px 0;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
			height:560px;
        }
        .banner::before {
            content: "";
            position: absolute;
            top: 0;
            right: 0;
            width: 50%;
            height: 100%;
            opacity: 0.05;
            z-index: 0;
        }
        .banner-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
            position: relative;
            z-index: 1;
        }
        .banner-text {
            flex: 1;
        }
        .banner-text h1 {
            font-size: 36px;
            margin-bottom: 20px;
            color: #333;
            line-height: 1.4;
            animation: slideInLeft 1s ease;
        }
        @keyframes slideInLeft {
            from {
                opacity: 0;
                transform: translateX(-50px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }
        .banner-text p {
            font-size: 18px;
            color: #666;
            margin-bottom: 20px;
            animation: slideInLeft 1s ease 0.3s both;
        }
        .banner-tag {
            display: inline-block;
            background-color: #ff7a00;
            color: #fff;
            padding: 5px 15px;
            border-radius: 20px;
            font-size: 14px;
            animation: slideInLeft 1s ease 0.6s both;
        }
        .banner-img {
            flex: 1;
            text-align: right;
            animation: fadeInUp 1s ease 0.8s both;
        }
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }
        .banner-img img {
            width: 300px;
            height: 300px;
            border-radius: 50%;
            transition: transform 0.5s ease;
        }
        .banner-img img:hover {
            transform: rotate(5deg) scale(1.05);
        }

        /* 平台介绍 */
        .platform-intro {
            padding: 60px 0 30px;
            text-align: center;
        }
        .section-title {
            font-size: 30px;
			font-weight:bold;
            color: #333;
            position: relative;
            display: inline-block;
        }
       
        .intro-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .intro-card {
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 10px rgba(0,0,0,0.05);
            text-align: left;
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .intro-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        }
		.intro-cards > div{
			background:url('https://img.94wan.com/2/20260410/main1_bg1.png?t=1') 50% no-repeat;
			background-size:100% 100%;
		}
		
		.intro-cards > div:nth-of-type(2){
			background:url('https://img.94wan.com/2/20260410/main1_bg2.png?t=1') 50% no-repeat;
			background-size:100% 100%;
		}
		
		.intro-cards > div:nth-of-type(3){
			background:url('https://img.94wan.com/2/20260410/main1_bg3.png?t=1') 50% no-repeat;
			background-size:100%;
		}
        .intro-card h3 {
            font-size: 16px;

            margin-bottom: 10px;
            color: #333;
            display: flex;
            align-items: center;
			font-weight:bold;
        }
        
        .intro-card p {
            font-size: 12px;
            color: #888;
            line-height: 1.6;
        }

        /* 行业壁垒 */
        .industry-barrier {
            padding: 30px 0;
        }
        .barrier-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 30px;
        }
        .barrier-card {
            text-align: center;
            transition: all 0.3s ease;
			background:#fff;
			padding:20px;
        }
        .barrier-card:hover {
            transform: translateY(-5px);
        }
        .barrier-card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            margin-bottom: 15px;
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            transition: all 0.3s ease;
        }
        .barrier-card:hover img {
            box-shadow: 0 8px 16px rgba(0,0,0,0.15);
            transform: scale(1.02);
        }
        .barrier-card p {
            font-size: 14px;
            color: #666;
			text-align:left;
        }

        /* 解决方案 */
        .solution {
            padding: 60px 0 0;
            background: url(https://img.94wan.com/2/20260410/solution_bg.webp) 50% rgba(0, 0, 0);
			background-size:100%;
			backdrop-filter: blur(8px);
            color: #fff;
            text-align: center;
            position: relative;
			opacity: 0.3;
        }
        .solution::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at center, rgba(255,122,0,0.1) 0%, transparent 70%);
            z-index: 0;
        }
        .solution .section-title {
            color: #fff;
            position: relative;
            z-index: 1;
        }
        .solution .section-title::after {
            background-color: #fff;
        }
        .solution-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-top: 40px;
            position: relative;
            z-index: 1;
        }
        .solution-card {
            padding: 30px;
            transition: all 0.3s ease;
            border-radius: 8px;
			

			background: rgba(157, 157, 157, 0.1761);
        }
        .solution-card:hover {
            background-color: rgba(255,255,255,0.05);
            transform: translateY(-5px);
        }
        .solution-card img {
            width: 300px;
            height: 238px;
            margin: 0 auto 20px;
            filter: drop-shadow(0 0 10px rgba(255,122,0,0.3));
            transition: all 0.3s ease;
        }
        .solution-card:hover img {
            filter: drop-shadow(0 0 15px rgba(255,122,0,0.5));
            transform: rotate(5deg);
        }
        .solution-card h3 {
            font-size: 18px;
            margin-bottom: 10px;
        }
        .solution-card p {
            font-size: 14px;
            color: #ccc;
            line-height: 1.6;
        }

        /* 游戏展示 */
        .game-show {
            padding: 60px 0;
            text-align: center;
        }
        .game-grid{
			 display: grid;
						grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
						gap: 20px;
						margin-top: 40px;
						}
        .game-item {
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            padding: 10px;
            border-radius: 8px;
        }
        .game-item:hover {
            background-color: #fff;
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        }
        .game-item img {
            width: 80px;
            border-radius: 8px;
            margin: 0 auto 10px;
            transition: all 0.3s ease;
        }
        .game-item:hover img {
            transform: scale(1.1);
            box-shadow: 0 0 10px rgba(255,122,0,0.2);
        }
        .game-item p {
            font-size: 12px;
            color: #666;
            transition: color 0.3s ease;
        }
        .game-item:hover p {
            color: #ff7a00;
            font-weight: bold;
        }

        /* 招商政策 */
        .investment {
            padding: 60px 0;
            background-color: #fff;
        }
        .policy-cards {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }
        .policy-card {
            text-align: left;
            padding: 20px;
            transition: all 0.3s ease;
            border-radius: 8px;
			float:left;
			width:310px;
        }
        .policy-card:hover {
            background-color: #f9f9f9;
            transform: translateY(-5px);
            box-shadow: 0 4px 8px rgba(0,0,0,0.05);
        }
        .policy-card .icon {
            width: 56px;
            height: 56px;
            margin: 0 auto 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 20px;
            transition: all 0.3s ease;
			float:left;
        }
        .policy-card:hover .icon {
            box-shadow: 0 0 10px rgba(255,122,0,0.3);
        }

		.policy-card >div:nth-of-type(2) {
           width:200px;
		   float:left;
		   margin-left:10px;
        }


        .policy-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
			font-weight:bold;

        }
        .policy-card p {
            font-size: 12px;
            color: #666;
            line-height: 1.5;
        }

        /* 成功案例 */
        .cases {
            padding: 60px 0;
            text-align: center;
        }
        .case-grid {
            margin-top: 20px;
        }
        .case-item {
            background-color: #fff;
            padding: 15px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.05);
            transition: all 0.3s ease;
            cursor: pointer;
        }
        .case-item:hover {
            transform: translateY(-5px) rotate(1deg);
            box-shadow: 0 6px 12px rgba(0,0,0,0.1);
        }
        .case-item img {
            width: 60px;
            height: 60px;
            margin: 0 auto;
            transition: all 0.3s ease;
        }
        .case-item:hover img {
            transform: scale(1.1);
        }

        /* 联系表单 */
        .contacts {
			background:#f8f8f8;
			max-width:1920px;
			margin:0 auto;
			min-height:569px;
        }
        .contact-inner {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .contact-img {
            flex: 1;
            transition: all 0.3s ease;
        }
        .contact-img:hover img {
            transform: scale(1.02);
            box-shadow: 0 8px 16px rgba(0,0,0,0.1);
        }
        .contact-form {
            flex: 1;
        }
		#contactForm{
			float:right;
			width: 722px;
			max-width:100%;
			background: #fff;
		}
        .form-title {
            font-size: 24px;
            margin-bottom: 20px;
            color: #333;
        }
        .form-group {
            margin-bottom: 15px;
        }
        .form-group label {
            display: block;
            font-size: 14px;
            margin-bottom: 5px;
            color: #666;
        }
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 4px;
            font-size: 14px;
            transition: all 0.3s ease;
        }
        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #ff7a00;
            box-shadow: 0 0 8px rgba(255,122,0,0.2);
        }
        .form-group textarea {
            height: 100px;
            resize: none;
        }
        .form-group .error {
            color: #ff4444;
            font-size: 12px;
            margin-top: 5px;
            display: none;
        }
        .submit-btn {
            background-color: #FFF2E7;
			color: #F87606;
            border: none;
            padding: 12px 30px;
            border-radius: 4px;
            font-size: 16px;
            cursor: pointer;
            transition: all 0.3s ease;
			width:194px;
			height:40px;
			display:block;
			margin:0 auto;
        }
        .submit-btn:hover {
            background-color: #e66a00;
            transform: translateY(-2px);
            box-shadow: 0 4px 8px rgba(255,122,0,0.2);
        }
        .submit-btn:active {
            transform: translateY(0);
        }
        .success-message {
            color: #00C851;
            font-size: 14px;
            margin-top: 15px;
            display: none;
            text-align: center;
        }

        /* 底部样式 */
        footer {
            background-color: #111;
            color: #999;
            padding: 40px 0 20px;
        }
        .footer-inner {
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            font-size: 16px;
            color: #fff;
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        .footer-col h4::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 0;
            width: 40px;
            height: 2px;
            background-color: #ff7a00;
        }
        .footer-col ul {
            list-style: none;
        }
        .footer-col ul li {
            margin-bottom: 10px;
            transition: all 0.3s ease;
        }
        .footer-col ul li:hover {
            transform: translateX(5px);
        }
        .footer-col ul li a {
            color: #999;
            text-decoration: none;
            font-size: 14px;
            transition: color 0.3s ease;
        }
        .footer-col ul li a:hover {
            color: #ff7a00;
        }
        .copyright {
            text-align: center;
            font-size: 12px;
            padding-top: 20px;
            border-top: 1px solid #333;
            transition: color 0.3s ease;
        }
        .copyright:hover {
            color: #ff7a00;
        }

        /* 回到顶部按钮 */
        .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 45px;
            height: 45px;
            background-color: #ff7a00;
            color: #fff;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            box-shadow: 0 4px 8px rgba(255,122,0,0.3);
            transition: all 0.3s ease;
            opacity: 0;
            visibility: hidden;
            z-index: 99;
        }
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        .back-to-top:hover {
            background-color: #e66a00;
            transform: translateY(-5px);
        }

        /* 响应式适配 */
        @media (max-width: 768px) {
			.banner{
				height:60vw;
			}
            .banner-inner, .contact-inner {
                flex-direction: column;
                text-align: center;
            }
            .banner-img {
                margin-top: 30px;
                text-align: center;
            }
            .nav-list {
                display: none;
                position: absolute;
                top: 60px;
                left: 0;
                width: 100%;
                background-color: #fff;
                flex-direction: column;
                padding: 20px;
                box-shadow: 0 4px 8px rgba(0,0,0,0.1);
            }
            .nav-list li {
                margin: 10px 0;
            }
            .menu-btn {
                display: block;
            }
            .section-title {
                font-size: 24px;
            }
            .banner-text h1 {
                font-size: 28px;
            }
            .game-grid {
                grid-template-columns: repeat(auto-fill, minmax(60px, 1fr));
            }
            .case-grid {
                grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
            }
			#contactForm{
				float:right;
				width:100%;
				background: #fff;
			}

			.container>p{
				display:none;
			}

			.game-item:last-of-type{
				display:none;
			}
			.game-item:nth-of-type(26){
				display:none;
			}
        }