        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background: #9e0b0f url('') no-repeat center center;
            background-size: cover;
            color: #fff;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 20px;
            position: relative;
            overflow-x: hidden;
        }
        
        /* 红色遮罩层增强文字可读性 */
        body::after {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(158, 11, 15, 0.7);
            z-index: 0;
        }
		
        .container {
            position: relative;
            z-index: 1;
            max-width: 1200px;
            width: 100%;
        }
        
        .header {
            margin-bottom: 40px;
        }
        
        h1 {
            font-size: 3.5rem;
            text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
            margin-bottom: 15px;
            color: #FFD700;
        }
        
        .subtitle {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto 30px;
            line-height: 1.6;
        }
        
        .countdown-box {
            background: rgba(255, 255, 255, 0.15);
            backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 30px;
            margin: 30px auto;
            max-width: 900px;
            border: 2px solid rgba(255, 215, 0, 0.5);
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        }
        
        .countdown {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 20px;
            margin: 40px 0;
        }
        
        .countdown-item {
            background: rgba(0, 0, 0, 0.4);
            border-radius: 15px;
            padding: 25px 15px;
            min-width: 140px;
            display: flex;
            flex-direction: column;
            align-items: center;
            border: 1px solid #FFD700;
        }
        
        .countdown-number {
            font-size: 3.5rem;
            font-weight: bold;
            color: #FFD700;
            line-height: 1;
            margin-bottom: 10px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.5);
        }
        
        .countdown-label {
            font-size: 1.2rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }
        
        .spring-elements {
            display: flex;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
            flex-wrap: wrap;
        }
        
        .spring-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 15px;
            padding: 25px;
            max-width: 350px;
            border: 1px solid rgba(255, 215, 0, 0.3);
        }
        
        .spring-item h3 {
            color: #FFD700;
            margin-bottom: 15px;
            font-size: 1.8rem;
        }
        
        .spring-item p {
            line-height: 1.8;
            font-size: 1.1rem;
        }
        
        .decoration {
            position: absolute;
            z-index: 0;
            opacity: 0.7;
        }
        
        .lantern {
            top: 5%;
            left: 5%;
            width: 180px;
            animation: sway 4s infinite alternate ease-in-out;
        }
        
        .lantern.right {
            left: auto;
            right: 5%;
        }
        
        .gold-line {
            position: absolute;
            width: 100%;
            height: 20px;
            background: linear-gradient(90deg, transparent, #FFD700, transparent);
            top: 0;
            left: 0;
        }
        
        .gold-line.bottom {
            top: auto;
            bottom: 0;
        }
        
        .firework {
            position: absolute;
            width: 180px;
            bottom: 10%;
            right: 8%;
            animation: pulse 2s infinite;
        }
        
        .firework.left {
            right: auto;
            left: 8%;
        }
        
        .footer {
            margin-top: 50px;
            font-size: 1rem;
            color: rgba(255, 255, 255, 0.8);
        }
		
		
A.index_main2:link , A.index_main2:visited {FONT-SIZE: 14px; COLOR: #1f51a1; TEXT-DECORATION: none;}
A.index_main2:hover   {FONT-SIZE: 14px; COLOR: #da251d; TEXT-DECORATION: none;}

A.end2:link , A.end2:visited, A.end2:hover   {FONT-SIZE: 16px; COLOR: #fff; TEXT-DECORATION: none;}
        
        /* 动画效果 */
        @keyframes sway {
            0% { transform: translateX(-5px) rotate(-5deg); }
            100% { transform: translateX(5px) rotate(5deg); }
        }
        
        @keyframes pulse {
            0% { transform: scale(1); opacity: 0.7; }
            50% { transform: scale(1.1); opacity: 1; }
            100% { transform: scale(1); opacity: 0.7; }
        }
        
        /* 响应式设计 */
        @media (max-width: 768px) {
            h1 { font-size: 2.5rem; }
            .countdown-item { min-width: 100px; padding: 15px 10px; }
            .countdown-number { font-size: 2.5rem; }
            .spring-elements { flex-direction: column; align-items: center; }
            .spring-item { width: 100%; }
            .lantern { width: 60px; }
        }
        
        @media (max-width: 480px) {
            h1 { font-size: 2rem; }
            .subtitle { font-size: 1.2rem; }
            .countdown { gap: 10px; }
            .countdown-item { min-width: 70px; padding: 12px 5px; }
            .countdown-number { font-size: 1.8rem; }
            .countdown-label { font-size: 0.9rem; }
        }