Newer
Older
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
138
139
140
141
142
143
144
145
146
147
page-outGoingReportEdit {
.searchToolBar{
display: flex;
flex-direction: row;
align-items: center;
justify-content: left;
box-sizing: border-box;
}
.item1-image{
width: 100%;
height: 135px;
}
.item1-content{
margin-top: 12px;
}
.item1-content-header{
display: flex;
flex-direction: row;
align-items: flex-start;
justify-content: space-between;
box-sizing: border-box;
}
.item1-title{
margin-left: 15px;
font-size: 18px;
font-weight: bold;
width: 12em;
line-height:18px;
}
.item1-content-box{
display: flex;
flex-direction: row;
align-items: flex-end;
justify-content: center;
box-sizing: border-box;
margin-right: 15px;
color: #80a7ee;
font-size: 16px;
line-height:18px;
}
.item1-introduction{
margin: 0 15px;
color: #9d9d9d;
padding-bottom: 10px;
line-height: 25px;
}
.btn-introduce{
background-color: white;
padding: 3px 7px;
border: 1px solid #cccccc;
border-radius: 10px;
float: right;
color: #666666;
}
.report-info{
font-size: 18px;
}
.report-item{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
color: #666666;
}
.report-item-title{
margin-right: 20px;
}
.report-btn{
position: absolute;
bottom: 0;
}
.right-icon{
width: 30px;
height: 30px;
}
.report-item-content{
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between;
box-sizing: border-box;
}
.cover{
position: relative;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.4);
// opacity: 0.4;
z-index: 100;
}
.cover-content{
position: fixed;
// height: 400px;
width: 300px;
margin:auto;
left:0;
right:0;
top: 110px;
z-index: 1000;
background-color: white;
}
.cover-content-box{
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
box-sizing: border-box;
margin: 15px 15px;
// width: 280px;
}
.cover-content-info{
height: 280px;
border: 1px solid #cccccc;
padding: 0 10px;
margin-bottom: 10px;
color: #272727;
overflow: scroll;
width: 270px;
}
.cover-content-title{
margin-top: 0;
}
.back-btn{
width: 30px;
height: 30px;
}
}