<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="refresh" content="0; url=https://ai.feishu.cn/wiki/EvL5wzrxkiHRjEksul0cK8jGnRc">
<title>正在跳转...</title>
<style>
body {
font-family: Arial, sans-serif;
text-align: center;
padding: 50px;
background-color: #f5f5f5;
}
.container {
max-width: 600px;
margin: 0 auto;
padding: 40px;
background-color: white;
border-radius: 8px;
box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
h1 {
color: #333;
margin-bottom: 20px;
}
p {
color: #666;
font-size: 16px;
margin-bottom: 10px;
}
.countdown {
font-size: 24px;
color: #1890ff;
font-weight: bold;
margin: 20px 0;
}
.manual-link {
margin-top: 30px;
padding: 10px 20px;
background-color: #1890ff;
color: white;
text-decoration: none;
border-radius: 4px;
display: inline-block;
transition: background-color 0.3s;
}
.manual-link:hover {
background-color: #40a9ff;
}
</style>
</head>
<body>
<div class="container">
<h1>页面跳转中...</h1>
<p>您将被自动跳转到目标页面</p>
<div class="countdown" id="countdown">3</div>
<p>如果浏览器没有自动跳转,请点击下方链接:</p>
<a href="https://ai.feishu.cn/wiki/EvL5wzrxkiHRjEksul0cK8jGnRc" class="manual-link">立即跳转</a>
</div>
<script>
// 倒计时功能
let countdown = 3;
const countdownElement = document.getElementById('countdown');
const timer = setInterval(() => {
countdown--;
if (countdown > 0) {
countdownElement.textContent = countdown;
} else {
clearInterval(timer);
}
}, 1000);
// 额外的JavaScript跳转作为备用
setTimeout(() => {
window.location.href = "https://ai.feishu.cn/wiki/EvL5wzrxkiHRjEksul0cK8jGnRc";
}, 3000);
</script>
</body>
</html>