configuration.scss
790 Bytes
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
.status-page {
background: #f8f9fa;
padding: 15rpx 15rpx;
min-height: 100vh;
.search-top {
justify-content: space-between;
flex-direction: row;
.search-main {
width: 700rpx;
margin-top: -34rpx;
}
}
}
.status-container {
width: 700rpx;
height: 250rpx;
display: flex;
flex-wrap: wrap;
align-content: space-between;
justify-content: space-between;
flex-direction: row;
.status-item {
width: 300rpx;
height: 250rpx;
margin: 23rpx;
background-color: #ffffff;
border-radius: 20px;
flex-direction: column;
justify-content: space-between;
.item-image {
margin-top: 38rpx;
.image {
width: 198rpx;
height: 119rpx;
}
}
.item-text {
position: relative;
top: -25rpx;
.text {
color: #333333;
font-size: 14px;
}
}
}
}