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
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
| .container {
| padding: 0rpx !important;
| }
|
| .top-show {
| width: 100%;
| height: 360rpx;
|
| .top-show-img {
| width: 100%;
| height: 100%;
| }
| }
|
| .bottom-show {
| margin: 0 16rpx;
|
| .section {
| background-color: #fff;
| border-radius: 20rpx;
| padding: 20rpx;
| }
|
| .user-container {
| display: flex;
| justify-content: space-between;
| align-items: center;
| margin-top: -86rpx;
| color: #999;
|
| .avatar-container {
| display: flex;
| align-items: center;
|
| image {
| width: 120rpx;
| height: 120rpx;
| border-radius: 50%;
| margin-right: 20rpx;
| }
|
| .no-login {
| display: flex;
| flex-direction: column;
| font-size: 24rpx;
|
| text:first-child {
| font-size: 28rpx;
| }
|
| .ellipsis {
| width: 400rpx;
| overflow: hidden;
| text-overflow: ellipsis;
| overflow: hidden;
| white-space: nowrap;
| }
| }
| }
| }
|
| .order {
| background-color: #fff;
| margin-top: 20rpx;
|
| .order-title-wrap,
| .order-content-wrap {
| padding: 20rpx;
| display: flex;
| justify-content: space-between;
| }
|
| .order-title-wrap {
| .title {
| color: #444;
| // font-weight: 700;
| }
|
| .more {
| color: #ccc;
| font-size: 24rpx;
| }
| }
|
| .order-content-wrap {
| display: flex;
|
| .iconfont {
| font-size: 60rpx;
| text-align: center;
| }
|
| text {
| font-size: 25rpx;
| margin-top: 20rpx;
| }
| }
|
| .order-content-item {
| display: flex;
| flex-direction: column;
| align-items: center;
| }
| }
|
| .after-scale {
| margin-top: 30rpx;
|
| .order-title-wrap {
| line-height: 50rpx;
| }
|
| .after-scale-item {
| display: flex;
| margin: 25rpx 15rpx;
| color: #999;
| line-height: 50rpx;
|
| text {
| font-size: 25rpx;
| margin-left: 20rpx;
| }
|
| .iconfont {
| color: #a2b364;
| }
| }
| }
|
| .info-footer {
| height: 100rpx;
| line-height: 100rpx;
| text-align: center;
| color: #aaa;
| font-size: 25rpx;
| }
| }
|
|