2026-02-03 13:15:39 +08:00
|
|
|
body,
|
|
|
|
|
html,
|
2026-02-04 10:12:13 +08:00
|
|
|
div,
|
2026-02-03 13:15:39 +08:00
|
|
|
ul,
|
2026-02-04 10:12:13 +08:00
|
|
|
li,
|
|
|
|
|
h1,
|
|
|
|
|
h2,
|
|
|
|
|
h3,
|
|
|
|
|
p {
|
2026-02-02 13:32:33 +08:00
|
|
|
margin: 0;
|
2026-02-03 13:15:39 +08:00
|
|
|
padding: 0;
|
2026-02-02 13:32:33 +08:00
|
|
|
}
|
2026-02-04 10:09:24 +08:00
|
|
|
* {
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
}
|
2026-02-02 13:32:33 +08:00
|
|
|
html,
|
|
|
|
|
body,
|
|
|
|
|
#app {
|
|
|
|
|
width: 100%;
|
|
|
|
|
height: 100%;
|
|
|
|
|
overflow: hidden;
|
2026-02-05 13:55:37 +08:00
|
|
|
font-family: 'Medium';
|
2026-02-02 13:32:33 +08:00
|
|
|
}
|
2026-02-03 11:11:04 +08:00
|
|
|
@keyframes loading {
|
|
|
|
|
0% {
|
|
|
|
|
transform: rotate(0deg);
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
transform: rotate(360deg);
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-10 17:27:08 +08:00
|
|
|
@keyframes opacity-in {
|
|
|
|
|
0% {
|
|
|
|
|
opacity: 0;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
opacity: 1;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@keyframes z-index-10to-1 {
|
|
|
|
|
0% {
|
|
|
|
|
z-index: 10;
|
|
|
|
|
}
|
|
|
|
|
100% {
|
|
|
|
|
z-index: -1;
|
|
|
|
|
}
|
|
|
|
|
}
|
2026-02-10 16:58:50 +08:00
|
|
|
.flex {
|
|
|
|
|
display: flex;
|
|
|
|
|
}
|
|
|
|
|
.flex-center {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.flex-1 {
|
|
|
|
|
flex: 1;
|
|
|
|
|
}
|
|
|
|
|
.flex-col {
|
|
|
|
|
flex-direction: column;
|
|
|
|
|
}
|
|
|
|
|
.align-center {
|
|
|
|
|
align-items: center;
|
|
|
|
|
}
|
|
|
|
|
.space-between {
|
|
|
|
|
justify-content: space-between;
|
|
|
|
|
}
|
|
|
|
|
.justify-center {
|
|
|
|
|
justify-content: center;
|
|
|
|
|
}
|
|
|
|
|
.relative {
|
|
|
|
|
position: relative;
|
2026-02-04 10:01:50 +08:00
|
|
|
}
|