admin
2025-02-20 fa677dec1c55db004a31beefb1e346e18c7858c2
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
.btn-active {
    background: #FF2B4B;
    box-shadow: 0px 6px 8px 0px rgba(255, 43, 75, 0.2);
    border: none;
}
 
 
.order-item {
    width: 7.1rem;
    height: 2.12rem;
    padding: 0 0.3rem;
    background-color: #FFF;
    border-radius: 0.2rem;
    margin: 0.15rem 0.20rem;
    box-sizing: border-box;
}
 
.order-item>div:first-child {
    display: flex;
    border-bottom: solid 1px #E0E0E0;
    padding: 0.15rem 0rem;
    justify-content: space-between;
}
 
.order-item>div:first-child .time {
    font-weight: 400;
    font-size: 0.24rem;
    color: #888888;
    line-height: 0.39rem;
    text-align: right;
}
 
.order-item .user {
    display: flex;
    align-items: center;
}
 
.order-item .user img {
    width: 0.66rem;
    height: 0.66rem;
    border-radius: 0.33rem;
    margin-right: 0.2rem;
}
 
.order-item .user .name {
    font-weight: 400;
    font-size: 0.28rem;
    color: #000000;
    margin-bottom: 0.1rem;
}
 
.order-item.user .id {
    font-weight: 400;
    font-size: 0.28rem;
    color: #888888;
}
 
.order-item>div:last-child {
    display: flex;
    padding: 0.1rem 0rem;
    justify-content: space-between;
}
 
.order-item>div:last-child>div {
    text-align: center;
}
 
.order-item>div:last-child .title {
    font-size: 0.20rem;
    color: #888888;
    margin-bottom: 0.2rem;
}
 
.order-item>div:last-child .val {
    font-size: 0.30rem;
    color: #000000;
}
 
 
.top-nav {
    height: 0.93rem;
    line-height: 0.93rem;
    position: relative;
    text-align: center;
    background-color: white;
}
 
.top-nav div:first-child {
    background-image: url("../img/icon_back.png");
    background-size: 100% 100%;
    height: 0.5rem;
    width: 0.5rem;
    position: absolute;
    left: 0.25rem;
    top: 0.25rem;
    border: none;
}
 
.top-nav div:last-child {
    font-size: 0.36rem;
    color: #333333;
}