
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', Arial, sans-serif;
            background-color: #ffffff;
            overflow-y: auto;
            max-width: 640px;
            margin: 0 auto;
        }
        
        .banner-container {
            position: relative;
            width: 100%;
            background-image: url('/images/011.jpg');
            background-repeat: no-repeat;
            background-position: top center;
            background-size: cover;
            background-color: #008000;
        }
        
        /* 电脑端高度 (≥641px) */
        @media (min-width: 641px) {
            .banner-container {
                height: 500px;
            }
        }
        
        /* 手机端高度 (≤640px) */
        @media (max-width: 640px) {
            .banner-container {
                height: 280px;
            }
        }
        
        /* 文字元素 - 绝对定位 */
        .text-element {
            position: absolute;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        /* 主标题 */
        .main-title {
            top: 10%;
            left: 2%;
            font-size: 3rem;
            font-weight: bold;
            color: #ffffff;
            letter-spacing: 2px;
            text-align: left;
        }
        
        /* 副标题 */
        .sub-title {
            top: 25%;
            left: 5%;
            font-size: 1.8rem;
            font-weight: bold;
            color: #ffd700;
            letter-spacing: 1px;
            text-align: left;
        }
        
        /* 按钮 */
        .btn-container {
            position: absolute;
            top: 40%;
            left: 5%;
            
            max-width: 300px;
        }
        
        .btn {
            display: block;
            width: 100%;
            padding: 12px 40px;
            background: linear-gradient(135deg, #ffd700, #ffed4e, #ffd700);
            background-size: 200% 200%;
            border: 3px solid #ffd700;
            border-radius: 50px;
            font-size: 1.3rem;
            font-weight: bold;
            color: #000000;
            text-align: center;
            text-decoration: none;
            cursor: pointer;
            box-shadow: 
                0 0 20px rgba(255, 215, 0, 0.8),
                0 8px 30px rgba(0, 0, 0, 0.3),
                inset 0 2px 5px rgba(255, 255, 255, 0.5);
            transition: all 0.3s ease;
            animation: glowing 2s ease-in-out infinite alternate;
        }
        
        .btn:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 0 30px rgba(255, 215, 0, 1),
                0 12px 40px rgba(0, 0, 0, 0.4),
                inset 0 2px 5px rgba(255, 255, 255, 0.7);
            background-position: 100% 0;
        }
        
        /* 发光动画 */
        @keyframes glowing {
            from {
                box-shadow: 
                    0 0 20px rgba(255, 215, 0, 0.8),
                    0 8px 30px rgba(0, 0, 0, 0.3),
                    inset 0 2px 5px rgba(255, 255, 255, 0.5);
            }
            to {
                box-shadow: 
                    0 0 30px rgba(255, 215, 0, 1),
                    0 10px 40px rgba(0, 0, 0, 0.4),
                    inset 0 2px 5px rgba(255, 255, 255, 0.7);
            }
        }
        
        /* 响应式调整 - 电脑端和手机端 (640px为界限) */
        @media (max-width: 640px) {
            /* 手机端样式 */
            .main-title {
                font-size: 2rem;
                top: 8%;
            }
            
            .sub-title {
                font-size: 1.3rem;
                top: 25%;
            }
            
            .btn {
                font-size: 0.9rem;
                padding: 5px 20px;
            }
        }
        
        @media (min-width: 641px) {
            /* 电脑端样式 */
            .main-title {
                font-size: 3rem;
            }
            
            .sub-title {
                font-size: 1.8rem;
            }
            
            .btn {
                font-size: 1.5rem;
            }
        }
        
        /* 新增横幅板块样式 - 一行显示 */
        .banner-bottom {
            width: 100%;
            background: linear-gradient(to right, #ff8c00, #f7eb41);
            padding: 12px 0;
            margin-top: 0;
            border: 2px solid #8b0000;
        }
        
        .banner-bottom-content {
            max-width: 100%;
            margin: 0 auto;
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: nowrap;
            gap: 0;
        }
        
        .banner-bottom-item {
            font-size: 1rem;
            font-weight: bold;
            color: #8b0000;
            padding: 0 5px;
            text-align: center;
            white-space: nowrap;
        }
        
        /* 高亮项样式 */
        .highlight-item {
            border: 2px solid #8b0000;
            color: #000000;
        }
        
        /* 响应式调整 - 保持一行显示 */
        @media (max-width: 640px) {
            .banner-bottom {
                padding: 8px 0;
                overflow-x: auto;
            }
            
            .banner-bottom-content {
                padding: 0;
            }
            
            .banner-bottom-item {
                font-size: 0.85rem;
                padding: 0 5px;
            }
        }
        
        /* 金色板块样式 */
        .golden-section {
            width: 100%;
            background: url('/images/05.jpg') center center no-repeat;
            background-size: cover;
            padding: 20px 15px;
            margin-top: 0;
            border-radius: 10px;
            
            position: relative;
            overflow: hidden;
        }
        
        .golden-section::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" width="100" height="100" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.3)"/></svg>');
            opacity: 0.3;
        }
        
        .golden-content {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        
        /* 红色徽章 */
        .red-badge {
            position: absolute;
            top: -4px;
            left: -60px;
            background: linear-gradient(135deg, #dc143c, #8b0000);
            color: white;
            padding: 5px 40px;
            border-radius: 0;
            font-size: 0.9rem;
            font-weight: bold;
            transform: rotate(-45deg);
            box-shadow: 0 4px 15px rgba(220, 20, 60, 0.5);
            z-index: 10;
        }
        
        /* 最新消息徽章 */
        .latest-news {
            position: absolute;
            top: 35px;
            left: 35px;
            background: none;
            color: #8b0000;
            padding: 0;
            border-radius: 0;
            font-size: 0.8rem;
            font-weight: bold;
            box-shadow: none;
            line-height: 1.2;
        }
        
        /* 服务标题 */
        .service-title {
            color: #8b0000;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 10px;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        }
        
        /* 金色主标题 */
        .golden-main-title {
            margin-top：20px;
            color: #8b0000;
            font-size: 2rem;
            font-weight: bold;
            margin-top: 30px;
            text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9);
        }
        
        /* 金色副标题 */
        .golden-subtitle {
            color: #2f4f4f;
            font-size: 1.2rem;
            font-weight: bold;
            margin-bottom: 15px;
            text-shadow: 1px 1px 2px rgba(255, 255, 255, 0.8);
        }
        
        /* 金色按钮 */
        .golden-btn-container {
            display: flex;
            justify-content: center;
            margin-bottom: 30px;
        }
        
        .golden-btn {
            background: linear-gradient(135deg, #daa520, #ffd700, #daa520);
            color: #8b0000;
            padding: 8px 20px;
            border: 3px solid #8b0000;
            border-radius: 50px;
            font-size: 0.9rem;
            font-weight: bold;
            text-decoration: none;
            box-shadow: 
                0 8px 25px rgba(218, 165, 32, 0.6),
                0 0 20px rgba(255, 215, 0, 0.5),
                inset 0 2px 5px rgba(255, 255, 255, 0.8);
            transition: all 0.3s ease;
            animation: golden-glow 2s ease-in-out infinite alternate;
        }
        
        .golden-btn:hover {
            transform: translateY(-3px);
            box-shadow: 
                0 12px 35px rgba(218, 165, 32, 0.8),
                0 0 30px rgba(255, 215, 0, 0.8),
                inset 0 2px 5px rgba(255, 255, 255, 1);
        }
        
        /* 金色发光动画 */
        @keyframes golden-glow {
            from {
                box-shadow: 
                    0 8px 25px rgba(218, 165, 32, 0.6),
                    0 0 20px rgba(255, 215, 0, 0.5),
                    inset 0 2px 5px rgba(255, 255, 255, 0.8);
            }
            to {
                box-shadow: 
                    0 10px 30px rgba(218, 165, 32, 0.8),
                    0 0 30px rgba(255, 215, 0, 0.8),
                    inset 0 2px 5px rgba(255, 255, 255, 1);
            }
        }
        
        /* 金色板块响应式调整 */
        @media (max-width: 640px) {
            .golden-section {
                padding: 15px 10px;
            }
            
            .red-badge {
                font-size: 0.8rem;
                padding: 3px 30px;
                top: -4px;
                left: -44px;
            }
            
            .latest-news {
                font-size: 0.7rem;
                padding: 6px 10px;
                top: 28px;
                left: 5px;
            }
            
            .service-title {
                font-size: 1rem;
            }
            
            .golden-main-title {
                font-size: 1.3rem;
            }
            
            .golden-subtitle {
                font-size: 1rem;
            }
            
            .golden-btn {
                font-size: 0.8rem;
                padding: 6px 15px;
            }
        }
        
        @media (min-width: 641px) {
            .golden-section {
                padding: 25px 20px;
            }
            
            .service-title {
                margin-bottom: 5px;
            }
            
            .golden-main-title {
                font-size: 2rem;
                margin-bottom: 30px
            }
            
            .golden-subtitle {
                font-size: 1.3rem;
            }
            
            .golden-btn {
                font-size: 1rem;
                padding: 8px 25px;
            }
        }
        
        /* 开奖记录板块样式 */
        .result-section {
            width: 100%;
            background-color: #ffffff;
            padding: 20px 15px;
            margin-top: 10px;
            border-radius: 10px;
           
        }
        
        .result-content {
            max-width: 100%;
            margin: 0 auto;
        }
        
        /* 结果组样式 */
        .result-group {
            margin-bottom: 25px;
        }
        
        /* 结果标题样式 */
        .result-title {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 5px;
            margin-bottom: 15px;
            font-size: 1.2rem;
            font-weight: bold;
        }
        
        /* 标题圆形样式 */
        .title-circle {
            display: inline-block;
            width: 30px;
            height: 30px;
            background-color: #000000;
            color: #ffd700;
            border-radius: 50%;
            text-align: center;
            line-height: 30px;
            font-size: 0.9rem;
            font-weight: bold;
        }
        
        /* 结果列表样式 */
        .result-list {
            margin-bottom: 20px;
        }
        
        /* 结果项样式 */
        .result-item {
            font-size: 1rem;
            color: #333333;
            margin-bottom: 10px;
            padding: 8px 12px;
            background-color: transparent;
            border-radius: 5px;
            text-align: center;
        }
        
        /* 精准标记样式 */
        .accurate {
            color: #dc143c;
            font-weight: bold;
        }
        
        /* 领取按钮样式 */
        .claim-btn-container {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
        }
        
        .claim-btn {
            display: inline-block;
            width: 80%;
            max-width: 300px;
            padding: 15px 30px;
            background-color: #000000;
            color: #ffd700;
            border-radius: 50px;
            font-size: 1.5rem;
            font-weight: bold;
            text-align: center;
            text-decoration: none;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transition: all 0.3s ease;
        }
        
        .claim-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
        }
        
        /* 底部文字样式 */
        .bottom-text {
            text-align: center;
            font-size: 1.1rem;
            font-weight: bold;
            color: #dc143c;
            margin-top: 15px;
        }
        
        /* 开奖记录板块响应式调整 */
        @media (max-width: 640px) {
            .result-section {
                padding: 15px 10px;
            }
            
            .result-title {
                font-size: 1rem;
            }
            
            .title-circle {
                width: 25px;
                height: 25px;
                line-height: 25px;
                font-size: 0.8rem;
            }
            
            .result-item {
                font-size: 0.9rem;
                padding: 6px 10px;
                text-align: center;
            }
            
            .claim-btn {
                font-size: 1.2rem;
                padding: 12px 25px;
            }
            
            .bottom-text {
                font-size: 1rem;
            }
        }
        
        @media (min-width: 641px) {
            .result-section {
                padding: 25px 20px;
            }
            
            .result-title {
                font-size: 1.5rem;
            }
            
            .title-circle {
                width: 40px;
                height: 40px;
                line-height: 40px;
                font-size: 1.1rem;
            }
            
            .result-item {
                font-size: 1.2rem;
                padding: 10px 15px;
                text-align: center;
            }
            
            .claim-btn {
                font-size: 1.8rem;
                padding: 18px 40px;
            }
            
            .bottom-text {
                font-size: 1.3rem;
            }
        }
