ningshuxia
2025-03-27 afbafeecc1325bff849a17fb63b9b2b65b48ddf1
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
.space-y-1\.5 > :not([hidden]) ~ :not([hidden]) {
    margin-top: 1.5px;
}
 
.space-x-8 > :not([hidden]) ~ :not([hidden]) {
    margin-left: 8px;
}
 
.p-x-8 {
    --offset: 8px;
    padding-left: var(--offset);
    padding-right: var(--offset);
}
 
/* flex 布局
--------------------------------------------------------- */
.flex {
    display: flex;
}
 
.flex-col {
    flex-direction: column;
}
 
.justify-start {
    justify-content: flex-start;
}
 
.justify-end {
    justify-content: flex-end;
}
 
.justify-center {
    justify-content: center;
}
 
.justify-between {
    justify-content: space-between;
}
 
.justify-around {
    justify-content: space-around;
}
 
.items-start {
    align-items: flex-start;
}
 
.items-end {
    align-items: flex-end;
}
 
.items-center {
    align-items: center;
}
 
.flex-items-center {
    display: flex;
    align-items: center;
}
 
/* 圆角
--------------------------------------------------------- */
 
.rounded-none {
    border-radius: 0px;
}
 
.rounded-sm {
    border-radius: 0.125rem;
    /* 2px */
}
 
.rounded {
    border-radius: 0.25rem;
    /* 4px */
}
 
.rounded-md {
    border-radius: 0.375rem;
    /* 6px */
}
 
.rounded-lg {
    border-radius: 0.5rem;
    /* 8px */
}
 
.rounded-xl {
    border-radius: 0.75rem;
    /* 12px */
}
 
.rounded-2xl {
    border-radius: 1rem;
    /* 16px */
}
 
.rounded-3xl {
    border-radius: 1.5rem;
    /* 24px */
}
 
.rounded-full {
    border-radius: 9999px;
}
 
.w-fit {
    width: fit-content;
}
 
.text-nowrap {
    text-wrap: nowrap;
}