/* 节日卡片网格 */
        .holiday-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1rem;
            background:#fff;
            padding: 1rem;
        }
        
        @media (min-width: 768px) {
            .holiday-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        
        @media (min-width: 1024px) {
            .holiday-grid {
                /*grid-template-columns: 1fr 1fr 1fr 1fr;*/
            }
        }
        
        /* 卡片样式 */
        .holiday-card {
            background-color: white;
            border-radius: 6px;
            overflow: hidden;
            /*box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);*/
            border:1px solid #eee;
            transition: transform 0.3s ease;
        }
        
        .holiday-card:hover {
            transform: scale(1.02);
        }
        
        /* 卡片头部样式 */
        .card-header {
            padding: 0.5rem 1rem;
            color: #333;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .card-header h2 {
            margin: 0;
			font-size: 1rem;
			background: #d7ebfb;
			padding: 2px 10px;
			white-space: nowrap;
			border-radius: 5px;
			color: #6478bd;
			font-weight: 400;
        }
        
        .card-header p i {
            font-size: 24px;
        }
        
        /* 春节卡片颜色 */
        .spring-card .card-header {
            background: none;
        }
        
        /* 元宵节卡片颜色 */
        .lantern-card .card-header {
            background: none;
        }
        
        /* 国庆节卡片颜色 */
        .national-card .card-header {
            background: none;
        }
        
        /* 元旦卡片颜色 */
        .newyear-card .card-header {
            background: none;
        }
        
        /* 倒计时区域样式 */
        .countdown {
            padding: 0 1rem;
        }
        
        .time-units {
            display: flex;
            gap: 0.5rem;
            margin-bottom: 1rem;
            
        }
        
        .time-unit {
            text-align: center;
            display: flex;
            align-items: center;
        }
        
        .time-number {
            font-size: 20px;
            font-weight: bold;
            color: #1f2937;
        }
        
        .time-label {
            font-size: 12px;
            color: #1f2937;
            margin-left:0.5rem;
			font-weight: 666;
        }
        
        /* 节日日期样式 */
        .holiday-date {
            text-align: center;
            color: #d2d2d2;
            margin-bottom: 16px;
            font-size:12px;
        }
        
        /* 节日标签样式 */
        .holiday-tag {
            display: inline-block;
            padding: 6px 12px;
            border-radius: 9999px;
            font-size: 12px;
            text-align: center;
        }
        
        .spring-tag {
            background-color: rgba(16, 185, 129, 0.1);
            color: #10B981;
        }
        
        .lantern-tag {
            background-color: rgba(239, 68, 68, 0.1);
            color: #EF4444;
        }
        
        .national-tag {
            background-color: rgba(245, 158, 11, 0.1);
            color: #F59E0B;
        }
        
        .newyear-tag {
            background-color: rgba(139, 92, 246, 0.1);
            color: #8B5CF6;
        }
        
        .tag-container {
            text-align: center;
        }
        
        /* 页脚样式 */
        footer {
            background-color: #1f2937;
            color: white;
            padding: 32px 0;
            margin-top: 48px;
        }
        
        footer .container {
            text-align: center;
        }
        
        footer p {
            margin: 0;
        }
        
        footer p:first-child {
            margin-bottom: 8px;
        }
        
        footer p:last-child {
            color: #9ca3af;
            font-size: 14px;
        }
        
        /* 动画效果 */
        @keyframes pulse {
            0%, 100% {
                opacity: 1;
            }
            50% {
                opacity: 0.7;
            }
        }
        
        .pulse {
            animation: pulse 3s cubic-bezier(0.4, 0, 0.6, 1) infinite;
        }