styled.ts
1.6 KB
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
import styled from "styled-components"
export const ConsultationOrderWrapper = styled.div`
box-sizing: border-box;
padding: 16px 24px;
width: 100%;
height: calc(100vh - 65px);
overflow: auto;
position: relative;
background: #f5f5f5;
.title{
font-size: 18px;
font-weight: 700;
margin-bottom: 16px;
}
.paginationBox{
display: flex;
align-items: flex-end;
// position: absolute;
// bottom: 20px;
// right: 20px;
}
`
export const ConsultationOrderItemWrapper = styled.div`
display: flex;
flex-wrap: wrap;
margin-right: -32px;
.orderItem{
margin-bottom: 16px;
margin-right: 16px;
box-sizing: border-box;
padding: 10px 12px;
border-radius: 20px;
background: #fff;
width: 48%;
.topinfo{
margin-bottom: 20px;
.username{
color: #323233;
font-size: 15px;
font-weight: 700;
margin: 0 10px;
}
.statetag{
box-sizing: border-box;
padding: 2px 6px;
border: 1px solid #05B8D2;
border-radius: 8px;
color: #05b8d2;
font-size: 11px;
font-weight: 700;
margin-right: 10px;
}
.time{
color: #999999;
font-size: 13px;
}
.stateText{
color: #05b8d2;
font-size: 14px;
font-weight: 700;
}
}
.contenttext{
color: #323233;
font-size: 14px;
font-weight: 700;
margin-bottom: 10px;
span{
color: #666666;
}
}
.moneytext{
color: #f33f2e;
font-size: 14px;
font-weight: 700;
}
}
`