<!DOCTYPE html>  
<html>  
<head>  
    <title>网站到期提示</title>  
    <style>  
        body {  
            font-family: Arial, sans-serif;  
            text-align: center;  
            padding: 50px;  
        }  
        .container {  
            background-color: #f8d7da;  
            color: #721c24;  
            border: 1px solid #f5c6cb;  
            padding: 20px;  
            margin: 0 auto;  
            max-width: 600px;  
            border-radius: 5px;  
        }  
        h1 {  
            font-size: 24px;  
            margin-bottom: 15px;  
        }  
        p {  
            font-size: 16px;  
        }  
    </style>  
</head>  
<body>  
    <div class="container">  
        <h1>网站已到期</h1>  
        <p>非常抱歉，您的网站已经到期。为了不影响您的正常使用，请尽快联系网站服务商进行续费。</p>  
        <p>如有任何疑问或需要帮助，请随时联系我们。感谢您的理解与支持！</p>  
    </div>  
</body>  
</html>