
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta http-equiv="X-UA-Compatible" content="IE=edge">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>网站维护中</title>
    <style>
        /* 全局样式 */
        body {
            font-family: 'Arial', sans-serif;
            background: linear-gradient(135deg, #f7f7ff, #eef6ff);
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
            align-items: center;
            height: 100vh;
            overflow: hidden;
            position: relative; /* 添加相对定位以便于背景装饰 */
        }

        /* 动态背景光效 */
        .background-glow {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
            z-index: -1;
        }

        .glow-circle {
            position: absolute;
            width: 400px;
            height: 400px;
            background: rgba(0, 115, 170, 0.2);
            border-radius: 50%;
            filter: blur(150px); /* 添加模糊效果 */
            animation: glow 8s infinite alternate;
        }

        @keyframes glow {
            0% { transform: scale(1); opacity: 0.5; }
            100% { transform: scale(1.2); opacity: 0.1; }
        }

        .circle-top {
            top: -200px;
            left: 50%;
            transform: translateX(-50%);
        }

        .circle-bottom {
            bottom: -200px;
            right: 50%;
            transform: translateX(50%);
        }

        /* 容器样式 */
        .maintenance-container {
            text-align: center;
            background: rgba(255, 255, 255, 0.9); /* 半透明背景 */
            padding: 40px 60px;
            border-radius: 16px;
            box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
            max-width: 480px;
            width: 100%;
            position: relative;
            z-index: 1;
        }

        /* 标题样式 */
        h1 {
            color: #333;
            font-size: 32px;
            font-weight: bold;
            margin-bottom: 20px;
        }

        /* 描述段落样式 */
        p {
            color: #666;
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        /* 联系信息样式 */
        .contact-info {
            color: #999;
            font-size: 14px;
            margin-top: 20px;
        }

        a {
            color: #0073aa;
            text-decoration: none;
            font-weight: bold;
        }

        a:hover {
            text-decoration: underline;
        }

        /* 动画图标 */
        .icon-loading {
            display: block;
            margin: 20px auto 40px;
            width: 60px;
            height: 60px;
            border: 4px solid #0073aa;
            border-top-color: transparent;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        /* 动画关键帧 */
        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }
    </style>
</head>
<body>
    <!-- 动态背景光效 -->
    <div class="background-glow">
        <div class="glow-circle circle-top"></div>
        <div class="glow-circle circle-bottom"></div>
    </div>

    <!-- 维护页面内容 -->
    <div class="maintenance-container">
        <!-- 加载动画 -->
        <div class="icon-loading"></div>

        <h1>网站正在维护中</h1>
        <p>我们正在进行一些重要的更新和改进，请在维护时间结束后访问。</p>
        <p>维护时间：2025年7月14日--2025年7月**日。</p>
        <p>咨询电话：德天信息部（IT）内线电话：8081</p>

        <div class="contact-info">
            如果有任何问题，请联系我们的支持团队：<a href="mailto:wangkechang@deten.cn">wangkechang@deten.cn</a>
        </div>
    </div>
</body>
</html>