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
| .header {
| background: url(../../../static/custom/banner/4.png) no-repeat left top;
| background-size: 100% auto;
|
| .userinfo {
| display: flex;
| padding: 60rpx;
|
| .image {
| flex-shrink: 0;
| width: 120rpx;
| height: 120rpx;
| image {
| border-radius: 100%;
| width: 100%;
| height: 100%;
| }
| }
|
| .info {
| display: flex;
| flex-flow: wrap;
| padding-left: 30rpx;
| color: #fff;
|
| .username {
| width: 100%;
| font-size: 40rpx;
| padding-top: 8rpx;
| }
|
| .usercode {
| height: 48rpx;
| padding: 0 20rpx;
| margin-top: 10rpx;
| background-color: rgba(0, 0, 0, 0.1);
| border-radius: 20rpx;
| font-size: 30rpx;
| }
| }
| }
|
| .logout {
| flex-shrink: 0;
| position: absolute;
| right: 70rpx;
| top: 65rpx;
| .u-btn {
| font-size: 30rpx;
| }
| }
| }
|
| .toolbar {
| padding: 0 4%;
| margin-bottom: 5rpx;
| border-radius: 0 0 100% 100%;
| background-color: #4094ff;
|
| .box {
| display: flex;
| flex-direction: row;
| justify-content: space-around;
| padding: 10rpx;
| border-radius: 15rpx;
| box-shadow: 0 0 20rpx rgba(0, 0, 0, 0.15);
| background-color: #fefefe;
|
| .item {
| display: flex;
| flex-direction: column;
| align-items: center;
| justify-content: center;
| // flex-flow: wrap;
| height: 120rpx;
| color: #666666;
| font-size: 30rpx;
| padding: 10rpx 10rpx;
|
| .icon {
| font-size: 50rpx;
| }
|
| .label {
| padding: 10rpx;
| }
| }
|
| .hover {
| background-color: #f6f6f6;
| border-radius: 15rpx;
| }
| }
| }
|
|