6843e3d2
lifengge
增加首页、执行、我的页面
|
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
|
/* pages/mine/mine.wxss */
.top{
width: 100%;
height: 450rpx;
position: relative;
}
.minebg{
width: 100%;
height: 100%;
}
.userinfo{
width: 100%;
position: absolute;
z-index: 100;
top: 120rpx;
text-align: center;
}
.headimg{
margin-bottom: 10rpx;
width: 150rpx;
height: 150rpx;
border-radius: 50%;
border: 6rpx solid rgba(255, 255, 255, 0.25);
}
.userinfo view{
color: #fff;
line-height: 50rpx;
}
.mycase{
margin: 24rpx;
background-color: #fff;
border-radius: 15rpx;
}
.item{
width: 100%;
padding: 24rpx;
box-sizing: border-box;
border-bottom: 1rpx solid #dedede;
display: flex;
align-items: center;
}
.count{
padding: 24rpx 0;
}
.count-item{
display: inline-flex;
align-items: center;
flex-direction: column;
width: calc(100% / 3);
}
.counticon{
margin-bottom: 10rpx;
width: 70rpx;
height: 70rpx;
}
.count-item view{
color: #9498a4;
font-size: 30rpx;
}
.count-item view text{
color: #35dab5;
}
.menu{
margin: 24rpx;
padding: 0 24rpx;
background-color: #fff;
border-radius: 15rpx;
}
.menu-item{
display: flex;
align-items:center;
border-bottom: 1rpx solid #dedede;
}
.menu-item:last-child{
border-bottom: none !important;
}
.mineicon{
margin-right: 20rpx;
width: 45rpx;
height: 45rpx;
}
.menu-item view{
width: calc(100% - 93rpx);
line-height: 90rpx;
}
.more{
width: 32rpx;
height: 32rpx;
}
.exit{
margin:24rpx 25%;
padding: 26rpx 0;
background-color: #fff;
border-radius: 10rpx;
border: 1rpx solid #dedede;
font-size: 32rpx;
font-weight: normal;
text-align: center;
}
|