feat: award页面

This commit is contained in:
2026-01-16 14:30:48 +08:00
parent c9b67c4d3b
commit 6a5a0930e9
45 changed files with 1584 additions and 67 deletions

View File

@@ -2488,3 +2488,22 @@ textarea:focus {
background: #ffffff;
color: #000;
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-center {
justify-content: center;
align-items: center;
}
.align-center {
align-items: center;
}
.space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}

View File

@@ -2406,3 +2406,22 @@ textarea:focus{
color: #000;
}
}
.flex {
display: flex;
}
.flex-col {
flex-direction: column;
}
.flex-center {
justify-content: center;
align-items: center;
}
.align-center {
align-items: center;
}
.space-between {
justify-content: space-between;
}
.justify-center {
justify-content: center;
}