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
| /* pages/face/face.wxss */
|
| .face {
| display: flex;
| flex-direction: column;
| box-shadow: 0px 6px 6px 0 rgba(80, 119, 170, 0.06);
| }
|
| .face-icon {
| width: 100%;
| height: 32vh;
| background-size: cover;
| }
|
| .face-main {
| padding: 2vh;
| display: flex;
| border-top: 1px solid #f2f2f2;
| align-items: center;
| }
|
| .face-title {
| font-size: 14px;
| color: #333;
| margin-right: auto;
| width: 20%;
| }
|
| .face-text {
| font-size: 14px;
| color: #999;
| text-align: right;
| }
|
|