<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>温馨提示</title>
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            min-height: 100vh;
            background-color: #1e90ff;
            display: flex;
            justify-content: center;
            align-items: center;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            padding: 20px;
        }

        .main-container {
            text-align: center;
            background-color: #ffffff;
            border-radius: 16px;
            padding: 56px 48px;
            max-width: 460px;
            width: 100%;
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
        }

        .header-section {
            margin-bottom: 40px;
        }

        .logo-box {
            width: 100px;
            height: 100px;
            background: linear-gradient(135deg, #4169e1 0%, #1e90ff 100%);
            border-radius: 16px;
            display: flex;
            justify-content: center;
            align-items: center;
            margin: 0 auto 28px;
            box-shadow: 0 8px 25px rgba(25, 118, 210, 0.4);
        }

        .logo-icon {
            font-size: 48px;
        }

        .title {
            font-size: 28px;
            color: #1e90ff;
            font-weight: 700;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }

        .subtitle {
            font-size: 14px;
            color: #64b5f6;
            font-weight: 400;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .info-section {
            background: linear-gradient(145deg, #e3f2fd 0%, #bbdefb 100%);
            border-radius: 12px;
            padding: 28px 24px;
            margin-bottom: 28px;
            border: 1px solid #90caf9;
        }

        .info-title {
            font-size: 13px;
            color: #1565c0;
            font-weight: 600;
            margin-bottom: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .info-title::before {
            content: '📅';
            font-size: 16px;
        }

        .info-content {
            font-size: 16px;
            color: #37474f;
            line-height: 1.8;
        }

        .highlight-time {
            color: #1e90ff;
            font-weight: 700;
            font-size: 18px;
        }

        .status-banner {
            background: linear-gradient(90deg, #fff3e0 0%, #ffe0b2 100%);
            border-left: 4px solid #ff9800;
            padding: 14px 20px;
            border-radius: 0 8px 8px 0;
            margin-bottom: 0;
        }

        .status-text {
            font-size: 14px;
            color: #e65100;
            font-weight: 600;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        @media (max-width: 420px) {
            .main-container {
                padding: 40px 28px;
            }

            .title {
                font-size: 24px;
            }

            .logo-box {
                width: 80px;
                height: 80px;
            }

            .logo-icon {
                font-size: 40px;
            }

            .highlight-time {
                font-size: 16px;
            }
        }
    </style>
</head>
<body>
    <div class="main-container">
        <div class="header-section">
            <div class="logo-box">
                <span class="logo-icon">🕐</span>
            </div>
            <h1 class="title">温馨提示</h1>
            <p class="subtitle">Maintenance</p>
        </div>

        <div class="info-section">
            <div class="info-content">
                业务时间为<span class="highlight-time">工作日 9:00 — 17:00</span><br>
                请于业务时间访问本系统，感谢您的理解与支持！<br>
            </div>
        </div>

    </div>
</body>
</html>
