<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width,initial-scale=1,maximum-scale=1,user-scalable=no">
<title>new-module</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
}
body {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: #000;
display: flex;
justify-content: center;
align-items: center;
overflow: hidden;
}
.stars {
position: fixed;
width: 100%;
height: 100%;
transform: rotate(-45deg);
}
.star {
--star-color: var(--star-color);
--star-tail-length: 6em;
--star-tail-height: 2px;
--star-width: calc(var(--star-tail-length) / 6);
--fall-duration: 9s;
--tail-fade-duration: var(--fall-duration);
position: absolute;
top: var(--top-offset);
left: 0;
width: var(--star-tail-length);
height: var(--star-tail-height);
color: var(--star-color);
background: linear-gradient(45deg, currentColor, transparent);
border-radius: 50%;
filter: drop-shadow(0 0 6px currentColor);
transform: translate3d(104em, 0, 0);
animation: fall var(--fall-duration) var(--fall-delay) linear infinite, tail-fade var(--tail-fade-duration) var(--fall-delay) ease-out infinite;
}
@keyframes fall {
to {
transform: translate3d(-30em, 0, 0);
}
}
@keyframes tail-fade {
0%, 50% {
width: var(--star-tail-length);
opacity: 1;
}
70%, 80% {
width: 0;
opacity: 0.4;
}
100% {
width: 0;
opacity: 0;
}
}
.container {
width: 100%;
max-width: 420px;
padding: 20px;
position: relative;
z-index: 1;
}
.card {
background: rgba(255, 255, 255, 0.03);
backdrop-filter: blur(10px);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 24px;
padding: 40px 30px;
position: relative;
overflow: hidden;
}
.card::before {
content: '';
position: absolute;
top: 0;
left: -100%;
width: 200%;
height: 100%;
background: linear-gradient(
90deg,
transparent,
rgba(255, 255, 255, 0.1),
transparent
);
transform: rotate(45deg);
animation: shine 3s infinite;
}
@keyframes shine {
0% { transform: translateX(-100%) rotate(45deg); }
100% { transform: translateX(100%) rotate(45deg); }
}
.title {
text-align: center;
margin-bottom: 40px;
position: relative;
}
.title h1 {
font-size: 28px;
color: #fff;
font-weight: 700;
letter-spacing: 1px;
text-transform: uppercase;
margin-bottom: 10px;
}
.input-group {
margin-bottom: 30px;
position: relative;
}
.input-group input {
width: 100%;
padding: 20px;
background: rgba(255, 255, 255, 0.05);
border: 1px solid rgba(255, 255, 255, 0.1);
border-radius: 16px;
color: #fff;
font-size: 16px;
transition: all 0.3s ease;
}
.input-group input:focus {
outline: none;
border-color: rgba(255, 255, 255, 0.3);
box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}
.input-group input::placeholder {
color: rgba(255, 255, 255, 0.4);
}
.verify-btn {
width: 100%;
padding: 20px;
background: linear-gradient(45deg, #3b82f6, #8b5cf6);
border: none;
border-radius: 16px;
color: #fff;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
text-transform: uppercase;
letter-spacing: 1px;
position: relative;
overflow: hidden;
margin-bottom: 30px;
}
.verify-btn:hover {
transform: translateY(-2px);
box-shadow: 0 10px 20px rgba(59, 130, 246, 0.3);
}
.verify-btn:active {
transform: translateY(1px);
}
.notice {
background: rgba(255, 255, 255, 0.02);
border-radius: 16px;
padding: 20px;
border: 1px solid rgba(255, 255, 255, 0.05);
}
.notice h3 {
color: rgba(255, 255, 255, 0.9);
font-size: 16px;
margin-bottom: 10px;
font-weight: 600;
}
.notice p {
color: rgba(255, 255, 255, 0.6);
font-size: 14px;
line-height: 1.6;
}
/* 响应式布局 */
@media (max-width: 768px) {
.container {
padding: 15px;
}
.card {
padding: 30px 20px;
}
.title h1 {
font-size: 24px;
}
}
@media screen and (max-height: 500px) and (orientation: landscape) {
.container {
max-width: 600px;
}
.card {
display: grid;
grid-template-columns: 1fr 1fr;
gap: 20px;
align-items: center;
}
.title {
grid-column: 1 / -1;
margin-bottom: 20px;
}
}
</style>
</head>
<body>
<div class="stars">
<!-- 动态生成星星 -->
<script>
const starsContainer = document.querySelector('.stars');
for(let i = 0; i < 20; i++) {
const star = document.createElement('div');
star.className = 'star';
star.style.setProperty('--star-color', `rgb(${Math.random() * 255},${Math.random() * 255},${Math.random() * 255})`);
star.style.setProperty('--top-offset', `${Math.random() * 100}%`);
star.style.setProperty('--fall-delay', `${Math.random() * 10}s`);
starsContainer.appendChild(star);
}
</script>
</div>
<div class="container">
<div class="card">
<div class="title">
<h1>验证系统</h1>
</div>
<div class="input-group">
<input type="text" id="code" placeholder="请输入激活码" pattern="^[a-zA-Z0-9_-]{1,16}$">
</div>
<button class="verify-btn" onclick="Call_Verify(code.value)">
验证
</button>
<div class="notice">
<h3>系统公告</h3>
<p id="notice"></p>
</div>
</div>
</div>
<script>
document.body.style.display = 'flex';
function Call_Verify(text) {
RuoLv.onButtonClick(0,text);
}
</script>
</body>
</html>
成为第一个评论此应用的用户吧!