style.ts
2.0 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
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
import styled from "styled-components";
export const SendPrescriptionWrapper = styled.div`
max-height: 440px;
overflow: auto;
.title{
color: #323233;
font-size: 15px;
font-weight: 700;
margin: 4px 0;
}
.lefticon{
padding-top: 10px;
box-sizing: border-box;
margin-right: 5px;
}
.grayIcon{
font-size: 18px;
color: #000;
}
.add{
width: 100%;
box-sizing: border-box;
padding: 13px 0;
background: #F3FFFF;
.blueIcon{
font-size: 18px;
color: #09b9d3;
margin-right: 3px;
}
span{
color: #05b8d2;
font-size: 15px;
font-weight: 700;
}
}
`
export const ViewPrescriptionWrapper = styled.div`
max-height: 440px;
overflow: auto;
.title{
color: #323233;
font-size: 14px;
font-weight: 700;
margin-bottom: 8px;
}
.marbot{
margin-bottom: 8px;
}
.content{
color: #323233;
font-size: 14px;
}
.itemo{
margin-bottom: 20px;
}
.listbox{
box-sizing: border-box;
padding: 16px 14px;
background: #F8F8FA;
border-radius: 24px;
margin-bottom: 12px;
}
.black{
color: #323233;
font-size: 14px;
font-weight: 700;
margin-bottom: 4px;
}
.gray{
color: #999999;
font-size: 12px;
font-weight: 700;
}
`
export const ViewSymptomWrapper = styled.div`
max-height: 440px;
overflow: auto;
.title{
color: #323233;
font-size: 14px;
font-weight: 700;
margin-bottom: 8px;
}
.top{
margin-bottom: 12px;
}
.username{
color: #242424;
font-size: 16px;
font-weight: 700;
margin: 0 10px;
}
.tag{
border-radius: 12px;
background: #05B8D2;
color: #fff;
font-size: 12px;
font-weight: 700;
box-sizing: border-box;
padding: 2px 7px;
}
.money{
color: #f33f2e;
font-size: 15px;
font-weight: 700;
}
.row{
margin-bottom: 12px;
color: #323233;
font-size: 28rpx;
font-weight: 700;
span{
color:#666666;
}
}
.fff{
color: #fff;
}
`