        /* 基础重置 */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* 全屏渐变背景 */ 
        body {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            background: linear-gradient(135deg, #f4d47a 0%, #d1cdc1 100%);/* 大的背景图渐变色 前面的颜色代码是左上角的，后面的颜色代码是右下角的 */
            font-family: 'Helvetica Neue', Arial, 'PingFang SC', 'Microsoft YaHei', sans-serif;
            line-height: 1.6;
        }

        /* 主容器 */
        .container {
            background: rgba(33, 36, 42, 0.95);/* 主容器方框背景颜色 */
            padding: 2.5rem;
            border-radius: 1rem;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);/* 主容器方框阴影颜色 */
            text-align: center;
            max-width: 800px;
            width: 90%;
            margin: 2rem;
        }

        /* 品牌LOGO样式 */
        .brand-logo {
            width: min(80%, 200px);
            margin-bottom: 2rem;
            transition: opacity 0.3s;
        }

        /* 加载动画 */ /* 转圈动画颜色 */
        .loading-spinner {
            width: 80px;
            height: 80px;
            margin: 1.5rem auto;
            border: 4px solid #f3f3f3;/* 整个圆圈颜色 */
            border-top: 4px solid #ee4949;/* 旋转部分颜色 */
            border-radius: 50%;
            animation: spin 1.2s linear infinite;
        }

        /* 内容区域 */
        .content {
            margin: 1.5rem 0;
        }
        
        .content h1 {
        color: #ffffff; /* 正在为您跳转...字体颜色 */
        }

        .content p {
            color: #cccccc; /* 即将前往目标页面字体颜色 */
        }

        /* 倒计时样式 */
        .countdown {
            color: #fefa9e;/* 剩余时间字体颜色 */
            font-size: clamp(1.5rem, 5vw, 2rem);
            font-weight: 600;
            margin: 1rem 0;
        }

        /* 文字链接样式 */
        .manual-link {
            display: inline-block;
            margin-top: 1rem;
            color: #ee4949;/* 点此立即访问字体颜色 */
            text-decoration: none;
            border-bottom: 2px solid transparent;
            transition: all 0.3s ease;
        }

        .manual-link:hover {
            color: #fefa9e;/* 点此立即访问指针指向字体颜色 */
            border-bottom-color: currentColor;
        }

        /* 动画定义 */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* 响应式设计 */
        @media (max-width: 768px) {
            .container {
                padding: 1.5rem;
            }

            .brand-logo {
                width: 150px;
            }

            .loading-spinner {
                width: 60px;
                height: 60px;
            }
        }

        @media (max-width: 480px) {
            .container {
                padding: 1rem;
                width: 95%;
            }

            .countdown {
                font-size: 1.3rem;
            }
        }