first commit

This commit is contained in:
2026-07-27 14:54:21 +08:00
commit 4d086758e8
161 changed files with 63776 additions and 0 deletions
+259
View File
@@ -0,0 +1,259 @@
.profile-page {
padding: 0 24px 24px;
min-height: 100vh;
}
/* 用户头部 */
.profile-header {
padding: 40px 32px 32px;
margin: 20px 0 0;
}
.user-info {
display: flex;
align-items: center;
margin-bottom: 32px;
}
.avatar {
width: 120px;
height: 120px;
border-radius: 50%;
border: 4px dashed var(--line-star);
margin-right: 24px;
flex-shrink: 0;
}
.avatar-placeholder {
width: 120px;
height: 120px;
border-radius: 50%;
background: linear-gradient(135deg, var(--bg-card) 0%, rgba(91, 140, 255, 0.1) 100%);
display: flex;
align-items: center;
justify-content: center;
margin-right: 24px;
border: 4px dashed var(--line-star);
flex-shrink: 0;
}
.avatar-icon {
font-size: 56px;
}
.user-name {
font-size: 40px;
font-weight: 800;
color: var(--text-primary);
display: block;
margin-bottom: 8px;
}
.user-level {
font-size: 24px;
color: var(--text-secondary);
display: block;
}
/* 5状态快捷入口 - 2+3布局 */
.status-grid {
background: var(--bg-card);
border: var(--line-card);
border-radius: 20px;
overflow: hidden;
}
.status-row {
display: flex;
align-items: center;
justify-content: space-around;
padding: 20px 0;
}
.status-row.row2 {
display: grid;
grid-template-columns: 1fr 2px 1fr;
}
.status-row.row3 {
display: grid;
grid-template-columns: 1fr 2px 1fr 2px 1fr;
}
.status-item {
display: flex;
flex-direction: column;
align-items: center;
flex: 1;
padding: 8px 0;
}
.status-num {
font-size: 36px;
font-weight: 800;
color: var(--accent-pink);
margin-bottom: 8px;
}
.status-label {
font-size: 24px;
color: var(--text-secondary);
}
.status-divider {
width: 2px;
height: 48px;
background: var(--line-star);
opacity: 0.25;
}
.status-divider-h {
height: 2px;
background: var(--line-star);
opacity: 0.15;
margin: 0 16px;
}
/* 菜单网格 */
.menu-grid {
display: grid;
grid-template-columns: 1fr 1fr 1fr;
gap: 20px;
}
.menu-card {
display: flex;
flex-direction: column;
align-items: center;
padding: 32px 16px;
transition: transform 0.2s;
}
.menu-card:active {
transform: scale(0.96);
}
.menu-icon {
font-size: 48px;
margin-bottom: 12px;
}
.menu-label {
font-size: 26px;
color: var(--text-primary);
font-weight: 500;
}
/* 企业定制 */
.enterprise-section {
padding: 32px;
}
.enterprise-title {
font-size: 30px;
font-weight: 700;
color: var(--text-primary);
display: block;
margin-bottom: 8px;
}
.enterprise-desc {
font-size: 24px;
color: var(--text-secondary);
}
.enterprise-btn {
padding: 16px 32px !important;
font-size: 26px !important;
border-radius: 40px !important;
}
/* 登录弹窗 */
.modal-overlay {
position: fixed;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: rgba(0, 0, 0, 0.5);
display: flex;
align-items: center;
justify-content: center;
z-index: 1000;
padding: 48px;
}
.login-card {
width: 100%;
max-width: 600px;
padding: 40px;
text-align: center;
}
.login-title {
font-size: 36px;
font-weight: 700;
color: var(--text-primary);
display: block;
margin-bottom: 12px;
}
.login-desc {
font-size: 26px;
color: var(--text-secondary);
display: block;
margin-bottom: 32px;
}
.avatar-btn {
width: 160px;
height: 160px;
border-radius: 50%;
margin: 0 auto 24px;
background: var(--bg-input);
border: 3px dashed var(--line-star);
display: flex;
align-items: center;
justify-content: center;
overflow: hidden;
padding: 0;
line-height: 1;
font-size: 0;
}
.avatar-img {
width: 100%;
height: 100%;
border-radius: 50%;
}
.avatar-placeholder {
font-size: 24px;
color: var(--text-secondary);
}
.nickname-input {
width: 100%;
height: 80px;
background: var(--bg-input);
border: 3px dashed var(--line-star);
border-radius: 16px;
padding: 0 24px;
font-size: 28px;
color: var(--text-primary);
margin-bottom: 32px;
text-align: center;
box-sizing: border-box;
}
.login-actions {
display: flex;
gap: 20px;
}
.login-actions .btn-outline,
.login-actions .btn-gradient {
flex: 1;
padding: 20px 0;
text-align: center;
}