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
| page{
| background-color: #f5f5f7;
| font-size: 26upx;
| }
|
| .logsMain{
| width: 100%;
| margin-top: 30upx;
| background-color: #ffffff;
| padding: 30upx 0;
| position: relative;
| }
| .date{
| padding: 0 30upx;
| font-size: 28upx;
| }
| .const {
| margin-top: 20upx;
| display: flex;
| font-size: 28upx;
| }
| .const view:nth-child(1){
| margin: 0 30upx;
| }
| .controls{
| position: absolute;
| right: 30upx;
| top: 30%;
| background-color: #1735C0;
| color: #ffffff;
| display: flex;
| justify-content: center;
| align-items: center;
| font-weight: 700;
| font-size: 26upx;
| border-radius: 16upx;
| padding: 16upx 40upx;
| }
|
|