31 lines
653 B
HTML
31 lines
653 B
HTML
|
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>活动</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: Arial, sans-serif;
|
||
|
text-align: center;
|
||
|
padding: 20px;
|
||
|
}
|
||
|
|
||
|
.limit-message {
|
||
|
background-color: #f8d7da;
|
||
|
color: #721c24;
|
||
|
border: 1px solid #f5c6cb;
|
||
|
padding: 10px;
|
||
|
border-radius: 5px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
|
||
|
<body>
|
||
|
<div class="limit-message">
|
||
|
<p>活动过于火爆,请稍后再试。</p>
|
||
|
</div>
|
||
|
</body>
|
||
|
|
||
|
</html>
|