* {
box-sizing: border-box;
margin: 0;
padding: 0;
user-select: none;
-webkit-user-select: none;
-webkit-tap-highlight-color: transparent;
}
body {
font-family: 'Noto Sans SC', sans-serif;
background-color: var(--bg-color);
color: var(--text-main);
height: 100vh;
width: 100vw;
overflow: hidden;
display: flex;
flex-direction: column;
touch-action: none;
}
/* 名单输入界面 */
.name-input-screen {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: var(--bg-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 20px;
}
.name-input-screen.hidden {
display: none;
}
.name-input-container {
width: 100%;
max-width: 600px;
background: var(--card-bg);
border-radius: 16px;
padding: 40px;
border: 1px solid var(--primary-border);
box-shadow: 0 0 30px var(--primary-glow);
}
.name-input-title {
font-family: 'ZCOOL KuaiLe', cursive;
color: var(--primary);
font-size: 32px;
text-align: center;
margin-bottom: 10px;
}
.name-input-subtitle {
color: var(--text-dim);
text-align: center;
margin-bottom: 30px;
font-size: 14px;
}
.name-textarea {
width: 100%;
height: 300px;
background: var(--name-textarea-bg);
border: 1px solid var(--primary-border-strong);
border-radius: 8px;
padding: 15px;
color: var(--text-main);
font-size: 16px;
resize: none;
font-family: 'Noto Sans SC', sans-serif;
margin-bottom: 20px;
}
.name-textarea:focus {
outline: none;
border-color: var(--primary);
box-shadow: 0 0 10px var(--primary-border);
}
.name-textarea::placeholder {
color: var(--text-dim);
}
.upload-btn {
width: 100%;
padding: 15px;
background: linear-gradient(135deg, var(--primary-border), var(--primary-dim));
border: 1px solid var(--primary-border-highlight);
border-radius: 8px;
color: var(--primary);
font-size: 18px;
font-weight: bold;
cursor: pointer;
transition: all 0.3s;
font-family: 'ZCOOL KuaiLe', cursive;
}
.upload-btn:hover {
background: linear-gradient(135deg, var(--primary-border-strong), var(--primary-border));
box-shadow: 0 0 20px var(--primary-glow-hover);
}
.upload-btn:disabled {
opacity: 0.5;
cursor: not-allowed;
}