index.less
927 Bytes
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
.prepaid-index {
width: 100%;
padding: 24px;
.prepaid-card {
height: 180px;
transition: all 0.3s;
&:hover {
transform: translateY(-5px);
box-shadow: 0 5px 15px rgba(0, 0, 0, 10%);
}
.card-content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
height: 100%;
.card-icon {
font-size: 36px;
margin-bottom: 16px;
color: #1890ff;
}
.card-title {
font-size: 18px;
font-weight: 500;
margin-bottom: 12px;
}
.card-desc {
color: rgba(0, 0, 0, 45%);
text-align: center;
padding: 0 12px;
}
}
}
td {
font-family: 'San Francisco', 'Helvetica Neue', Helvetica, Arial,
'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', 'Heiti SC',
'WenQuanYi Micro Hei', sans-serif;
font-size: 13px;
}
}