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
| /**
| * 徐祥健<xuxj@hugeinfo.com.cn>
| * 2018年7月16日 16:14
| *
| */
|
|
| @import '../../conf/vars';
|
| .card-view {
| &-main {
| display: flex;
| justify-content: space-around;
| margin: 20px;
| text-align: center;
| }
| &-card {
| width: 200px;
| background-color: #fff;
| height: 120px;
| }
| &-img {
| width: 25px;
| }
| &-title {
| line-height: 60px;
| height: 60px;
| border-bottom: 1px solid #F3F3F3;
| }
| &-count {
| line-height: 60px;
|
| }
| &-span {
| font-size: 30px;
| }
| }
|
|