chengkun
2025-09-04 0ea78440cb53b7ecf0ef715e3f51d88918c5821d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
.text {
    font-size: 14px;
}
 
.item {
    font-size: 18px;
    line-height: 30px;
    margin-bottom: 24px;
    text-align: center;
}
 
.clearfix:before,
.clearfix:after {
    display: table;
    content: "";
}
.clearfix:after {
    clear: both
}
.clearfix {
    font-size: 24px;
    text-align: center;
    margin: 10px auto 30px auto;
}
.container {
    display: grid;
    place-items: center; /* 水平垂直居中 */
    height: 100vh; /* 或者其他指定高度 */
}
.box-card {
    /*position: absolute;*/
    width: 680px;
    margin: auto;
    top: 50%;
    transform: translateY(-50%);
}
.success {
    color: #409eff;
}
.error {
    color: #f56c6c;
}