       :root {
            --primary-color: #2563eb;
            --primary-dark: #1d4ed8;
            --secondary-color: #ea580c;
            --accent-color: #10b981;
            --danger-color: #ef4444;
            --warning-color: #f59e0b;
            --lottery-red: #dc2626;
            --lottery-gold: #fbbf24;
            --light-bg: #f8fafc;
            --card-bg: #ffffff;
            --text-primary: #1e293b;
            --text-secondary: #64748b;
            --border-color: #e2e8f0;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.1);
            --shadow-large: 0 10px 40px rgba(0, 0, 0, 0.08);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Segoe UI', 'Microsoft YaHei', 'PingFang SC', sans-serif;
            line-height: 1.6;
            color: var(--text-primary);
            background-color: var(--light-bg);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* 头部设计 - 保持与主页一致 */
        .site-header {
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            color: white;
            padding: 1.2rem 0 0;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
            position: relative;
            z-index: 10;
        }
        
        .header-content {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            padding-bottom: 15px;
        }
        
        .logo-area {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .logo-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .logo-text h1 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 5px;
        }
        
        .logo-text p {
            font-size: 14px;
            opacity: 0.9;
        }
        
        /* 移动端汉堡菜单 */
        .mobile-menu-toggle {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
            padding: 8px;
            border-radius: 8px;
            transition: background 0.3s;
            z-index: 1001;
        }
        
        .mobile-menu-toggle:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        /* 侧边导航栏 */
        .side-nav {
            position: fixed;
            top: 0;
            left: -280px;
            width: 280px;
            height: 100vh;
            background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
            box-shadow: 8px 0 30px rgba(0, 0, 0, 0.3);
            z-index: 1000;
            transition: left 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }
        
        .side-nav.active {
            left: 0;
        }
        
        .side-nav-header {
            padding: 25px 20px 15px;
            display: flex;
            align-items: center;
            gap: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        
        .side-nav-logo {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.15);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
        }
        
        .side-nav-title h2 {
            font-size: 18px;
            color: white;
            margin-bottom: 4px;
        }
        
        .side-nav-title p {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.7);
        }
        
        .side-nav-close {
            position: absolute;
            top: 20px;
            right: 20px;
            background: none;
            border: none;
            color: white;
            font-size: 22px;
            cursor: pointer;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: background 0.3s;
        }
        
        .side-nav-close:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        .side-nav-list {
            list-style: none;
            padding: 20px 0;
            flex: 1;
        }
        
        .side-nav-item {
            margin-bottom: 5px;
        }
        
        .side-nav-link {
            display: flex;
            align-items: center;
            padding: 18px 25px;
            color: white;
            text-decoration: none;
            font-size: 16px;
            font-weight: 500;
            transition: all 0.3s;
            border-left: 4px solid transparent;
        }
        
        .side-nav-link:hover, .side-nav-link.active {
            background: rgba(255, 255, 255, 0.1);
            border-left-color: white;
            padding-left: 28px;
        }
        
        .side-nav-link i {
            margin-right: 15px;
            font-size: 18px;
            width: 24px;
            text-align: center;
        }
        
        .side-nav-footer {
            padding: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            text-align: center;
        }
        
        /* 主内容区域 */
        .content-wrapper {
            transition: filter 0.4s ease, opacity 0.4s ease;
        }
        
        .content-wrapper.blurred {
            filter: blur(5px) brightness(0.9);
            opacity: 0.8;
            pointer-events: none;
        }
        
        /* 导航栏 */
        .main-nav {
            background-color: rgba(255, 255, 255, 0.08);
            border-radius: 10px 10px 0 0;
            position: relative;
        }
        
        .nav-list {
            display: flex;
            list-style: none;
            justify-content: space-between;
        }
        
        .nav-item {
            flex: 1;
        }
        
        .nav-link {
            display: block;
            text-align: center;
            padding: 16px 8px;
            color: white;
            text-decoration: none;
            font-weight: 500;
            border-bottom: 3px solid transparent;
            transition: all 0.3s;
            font-size: 15px;
        }
        
        .nav-link:hover, .nav-link.active {
            background-color: rgba(255, 255, 255, 0.15);
            border-bottom-color: white;
        }
        
        .nav-link i {
            margin-right: 8px;
            font-size: 16px;
        }
        
        /* 开奖详情页头部 */
        .detail-header {
            background: linear-gradient(135deg, #dc2626, #ef4444);
            color: white;
            padding: 40px 0;
            margin-bottom: 30px;
            border-radius: 0 0 20px 20px;
            box-shadow: var(--shadow-large);
            position: relative;
            overflow: hidden;
        }
        
        .detail-header::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiB2aWV3Qm94PSIwIDAgMTAwIDEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48Y2lyY2xlIGN4PSI1MCIgY3k9IjUwIiByPSIyIiBmaWxsPSIjZmZmIiBmaWxsLW9wYWNpdHk9IjAuMSIvPjwvc3ZnPg==');
            background-size: 50px 50px;
            opacity: 0.2;
        }
        
        .header-content-inner {
            position: relative;
            z-index: 1;
        }
        
        .period-badge {
            display: inline-block;
            background: rgba(255, 255, 255, 0.2);
            color: white;
            padding: 8px 20px;
            border-radius: 20px;
            font-weight: 600;
            font-size: 16px;
            margin-bottom: 15px;
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.3);
        }
        
        .page-title {
            font-size: 36px;
            font-weight: 800;
            margin-bottom: 10px;
            text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
        }
        
        .page-subtitle {
            font-size: 18px;
            opacity: 0.9;
            margin-bottom: 25px;
            max-width: 800px;
        }
        
        /* 开奖号码展示 */
        .lottery-numbers {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .number-ball {
            width: 70px;
            height: 70px;
            background: white;
            color: #dc2626;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 800;
            font-size: 32px;
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
            position: relative;
            overflow: hidden;
        }
        
        .number-ball::after {
            content: '';
            position: absolute;
            top: -10px;
            left: -10px;
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.3);
            border-radius: 50%;
            filter: blur(5px);
        }
        
        /* 开奖信息统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-bottom: 30px;
        }
        
        .stat-card {
            background: rgba(255, 255, 255, 0.1);
            backdrop-filter: blur(10px);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            padding: 20px;
            text-align: center;
        }
        
        .stat-value {
            font-size: 24px;
            font-weight: 700;
            color: white;
            margin-bottom: 5px;
        }
        
        .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.8);
        }
        
        /* 主要内容布局 */
        .main-layout {
            display: grid;
            grid-template-columns: 1fr 300px;
            gap: 30px;
            margin-bottom: 40px;
        }
        
        /* 开奖信息卡片 */
        .info-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-large);
            margin-bottom: 30px;
        }
        
        .card-header {
            padding: 25px 30px;
            background: linear-gradient(to right, #f0f7ff, #e6f0ff);
            border-bottom: 1px solid var(--border-color);
        }
        
        .card-title {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 12px;
        }
        
        .card-subtitle {
            font-size: 15px;
            color: var(--text-secondary);
            margin-top: 8px;
        }
        
        .card-body {
            padding: 30px;
        }
        
        /* 原始中奖信息表格样式 - 保持结构但重新设计外观 */
        .reward-container {
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
            border: 1px solid var(--border-color);
            margin-bottom: 30px;
        }
        
        /* 重新设计.rewardTop */
        .rewardTop {
            display: flex;
            background: linear-gradient(to right, var(--primary-color), var(--primary-dark));
            color: white;
            font-weight: 600;
            font-size: 16px;
        }
        
        .rewardTop li {
            flex: 1;
            padding: 18px 15px;
            text-align: center;
            border-right: 1px solid rgba(255, 255, 255, 0.2);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .rewardTop li:last-child {
            border-right: none;
        }
        
        /* 重新设计.rewardMid */
        .rewardMid {
            display: flex;
            flex-wrap: wrap;
            max-height: 600px;
            overflow-y: auto;
        }
        
        .rewardMid li {
            flex: 0 0 33.333%;
            padding: 16px 15px;
            text-align: center;
            border-bottom: 1px solid #f1f3f5;
            border-right: 1px solid #f1f3f5;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 15px;
            min-height: 60px;
            box-sizing: border-box;
        }
        
        .rewardMid li:nth-child(3n) {
            border-right: none;
        }
        
        /* 特殊样式 - 奖等列 */
        .rewardMid li:nth-child(3n+1) {
            font-weight: 600;
            color: var(--text-primary);
            background-color: #f8fafc;
            justify-content: flex-start;
            padding-left: 25px;
        }
        
        /* 特殊样式 - 中奖注数列 */
        .rewardMid li:nth-child(3n+2) {
            color: var(--text-primary);
            font-weight: 500;
        }
        
        /* 特殊样式 - 中奖金额列 */
        .rewardMid li:nth-child(3n) {
            color: var(--accent-color);
            font-weight: 700;
            position: relative;
            background-color: #f0f9ff;
        }
        
        .rewardMid li:nth-child(3n)::after {
            content: "元";
            font-size: 12px;
            margin-left: 4px;
            opacity: 0.7;
        }
        
        /* 高额奖金突出显示 */
        .rewardMid li:nth-child(3),
        .rewardMid li:nth-child(12),
        .rewardMid li:nth-child(21),
        .rewardMid li:nth-child(30) {
            color: var(--danger-color);
            font-weight: 800;
            background-color: #fef2f2;
        }
        
        /* 侧边栏 */
        .sidebar {
            display: flex;
            flex-direction: column;
            gap: 30px;
        }
        
        .sidebar-card {
            background: var(--card-bg);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow);
        }
        
        .sidebar-header {
            padding: 18px 22px;
            background: linear-gradient(to right, #f0f7ff, #e6f0ff);
            border-bottom: 1px solid var(--border-color);
        }
        
        .sidebar-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--primary-color);
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .sidebar-content {
            padding: 20px;
        }
        
        /* 页脚 */
        .site-footer {
            background: #1e293b;
            color: #cbd5e1;
            padding: 10px 0 25px;
            margin-top: 20px;
        }
        
        .copyright {
            text-align: center;
            padding-top: 25px;
            border-top: 1px solid #334155;
            color: #94a3b8;
            font-size: 14px;
        }
        
        /* 响应式设计 */
        @media (max-width: 1100px) {
        	body .header-search {
                display: none;
            }
            .nav-link span {
                display: none;
            }
            
            .nav-link i {
                margin-right: 0;
                font-size: 18px;
            }
            
            .nav-link {
                padding: 16px 10px;
                font-size: 0;
            }
        }
        
        @media (max-width: 992px) {
            .header-content {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
            
            .logo-area {
                order: 1;
                flex: 1;
            }
            
            .mobile-menu-toggle {
                order: 3;
                display: block;
            }
            
            .main-layout {
                grid-template-columns: 1fr;
            }
            
            .page-title {
                font-size: 30px;
            }
            
            .page-subtitle {
                font-size: 16px;
            }
            
            .number-ball {
                width: 60px;
                height: 60px;
                font-size: 28px;
            }
        }
        
        @media (max-width: 768px) {
            .main-nav {
                display: none;
            }
            
            .detail-header {
                padding: 30px 0;
            }
            
            .lottery-numbers {
                justify-content: center;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .rewardMid li {
                flex: 0 0 33.333%;
                padding: 14px 12px;
                font-size: 14px;
                min-height: 55px;
            }
            
            .rewardTop li {
                padding: 16px 12px;
                font-size: 15px;
            }
            
            .rewardMid li:nth-child(3n+1) {
                padding-left: 20px;
            }
        }
        
        @media (max-width: 576px) {
            .container {
                padding: 0 15px;
            }
            
            .page-title {
                font-size: 26px;
            }
            
            .period-badge {
                font-size: 14px;
                padding: 6px 15px;
            }
            
            .number-ball {
                width: 50px;
                height: 50px;
                font-size: 24px;
            }
            
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
            
            .rewardMid li {
                flex: 0 0 33.333%;
                padding: 12px 10px;
                font-size: 13px;
                min-height: 50px;
            }
            
            .rewardTop li {
                padding: 14px 10px;
                font-size: 14px;
            }
            
            .rewardMid li:nth-child(3n+1) {
                padding-left: 15px;
            }
        }
        
        @media (max-width: 480px) {
            .logo-text h1 {
                font-size: 20px;
            }
            
            .logo-icon {
                width: 40px;
                height: 40px;
                font-size: 20px;
            }
            
            .page-title {
                font-size: 22px;
            }
            
            .number-ball {
                width: 45px;
                height: 45px;
                font-size: 22px;
            }
            
            .lottery-numbers {
                gap: 15px;
            }
        }
        
        @media (max-width: 380px) {
            .rewardMid li {
                flex: 0 0 33.333%;
                padding: 10px 8px;
                font-size: 12px;
                min-height: 45px;
            }
            
            .rewardTop li {
                padding: 12px 8px;
                font-size: 13px;
            }
            
            .rewardMid li:nth-child(3n+1) {
                padding-left: 12px;
            }
        }
        
             
        @media (max-width: 992px) {
            .header-content {
                flex-direction: row;
                align-items: center;
                gap: 15px;
            }
            
            .logo-area {
                order: 1;
                flex: 1;
            }
            
            .mobile-search-btn {
                order: 2;
                display: block;
            }
            
            .mobile-menu-toggle {
                order: 3;
                display: block;
            }
            
            .filter-toolbar {
                flex-direction: column;
                align-items: flex-start;
            }
            
            .filter-group {
                width: 100%;
                justify-content: space-between;
            }
        }   
        
        
        
        .related-list {
            list-style: none;
        }
        
        .related-item {
            padding: 15px 0;
            border-bottom: 1px solid var(--border-color);
        }
        
        .related-item:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }
        
        .related-item:first-child {
            padding-top: 0;
        }
        
        .related-link {
            display: block;
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        .related-link:hover {
            color: var(--primary-color);
        }
        
        .related-period {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 5px;
        }
        
        .fc3dkj ul{
        	list-style: none;
        }
        .fc3dkj ul li{
        	padding: 12px 0; 
        	border-bottom: 1px solid var(--border-color);
        }
        .fc3dkj ul li a{
        	color: var(--text-primary); 
        	text-decoration: none; 
        	font-weight: 500;
        }
        .fc3dkj ul li div{
        	font-size: 13px; 
        	color: var(--text-secondary);
        	 margin-top: 5px;
        }
        