<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>We've Moved!</title>
<style>
body {
margin: 0;
padding: 0;
display: flex;
justify-content: center;
align-items: center;
height: 100vh;
background-image: url('bg.jpg');
background-size: cover;
background-position: center;
font-family: 'Helvetica Neue', Arial, sans-serif;
text-align: center;
color: #333;
}
.container {
padding: 2rem;
background: rgba(255, 255, 255, 0.8); /* 半透明背景 */
border-radius: 12px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
max-width: 400px;
width: 90%;
}
h1 {
font-size: 2rem;
margin-bottom: 1rem;
}
p {
font-size: 1rem;
margin-bottom: 1rem;
}
.link-info {
font-size: 0.95rem;
color: #333;
margin-bottom: 1.5rem;
}
.button {
display: inline-block;
padding: 0.75rem 1.5rem;
background-color: #3b82f6;
color: white;
text-decoration: none;
border-radius: 8px;
font-size: 1rem;
transition: background-color 0.3s;
}
.button:hover {
background-color: #2563eb;
}
@media (max-width: 600px) {
h1 {
font-size: 1.5rem;
}
p, .link-info {
font-size: 0.9rem;
}
}
</style>
</head>
<body>
<div class="container">
<h1>We've Moved!</h1>
<p>Our website has moved to a new address.</p>
<div class="link-info">You are being redirected from <strong>https://www.mya777.info/</strong> to <strong>https://www.mya777info.com/</strong></div>
<a href="https://www.mya777info.com" class="button">Go to New Website</a>
</div>
</body>
</html>