用户登录功能

This commit is contained in:
2025-12-30 09:39:40 +00:00
parent 9edc0ae2ca
commit 8c3200829a
13 changed files with 539 additions and 23 deletions

View File

@@ -812,3 +812,98 @@ body {
from { transform: translateX(-100%); }
to { transform: translateX(0); }
}
/* 登录页面样式 */
.login-page {
min-height: 100vh;
display: flex;
justify-content: center;
align-items: center;
padding: 20px;
}
.login-container {
background: rgba(255, 255, 255, 0.95);
backdrop-filter: blur(10px);
border-radius: 20px;
padding: 40px;
width: 100%;
max-width: 450px;
box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
animation: modalSlideIn 0.5s ease;
}
.login-header {
text-align: center;
margin-bottom: 30px;
}
.login-header i {
font-size: 3rem;
color: #667eea;
margin-bottom: 15px;
display: block;
}
.login-header h1 {
color: #2d3748;
font-size: 1.8rem;
font-weight: 700;
margin: 0;
}
.login-form {
display: flex;
flex-direction: column;
}
.login-form .form-group {
margin-bottom: 20px;
}
.login-form label {
display: flex;
align-items: center;
gap: 8px;
margin-bottom: 8px;
color: #4a5568;
font-weight: 600;
}
.login-form label i {
color: #667eea;
}
.btn-block {
width: 100%;
justify-content: center;
margin-top: 10px;
}
.error-message {
background: #fed7d7;
color: #c53030;
padding: 12px 16px;
border-radius: 8px;
margin-bottom: 15px;
font-size: 14px;
border: 1px solid #fc8181;
}
/* 用户信息显示 */
.user-info {
display: flex;
align-items: center;
gap: 8px;
color: #4a5568;
font-weight: 600;
padding: 8px 16px;
background: #f7fafc;
border-radius: 8px;
border: 2px solid #e2e8f0;
}
.user-info i {
color: #667eea;
font-size: 1.2rem;
}