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
| /* pages/excess/excess.wxss */
|
| .excess {
| display: flex;
| flex-direction: column;
| align-items: center;
| height: 100vh;
| background: rgba(80, 119, 170, 0.06);
| }
|
| .excess-height {
| height: 10vh;
| }
|
| .excess-main-top {
| width: 30vh;
| height: 30vh;
| border-radius: 30vh;
| background-color: #fff;
| display: flex;
| justify-content: center;
| align-items: center;
| color: #2195ff;
| }
|
| .excess-main-bottom {
| width: 30vh;
| height: 30vh;
| border-radius: 30vh;
| background-color: #fff;
| display: flex;
| justify-content: center;
| align-items: center;
| color: #2195ff;
| }
|
|