word_report.wxss
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
123
124
125
page {
padding-bottom: 120rpx;
}
.info_box {
width: 100%;
padding: 0 32rpx;
border-bottom: 16rpx solid #f5f6f8;
box-sizing: border-box;
}
.item {
width: 100%;
height: 100rpx;
display: flex;
justify-content: space-between;
align-items: center;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 500;
color: rgba(51, 51, 51, 1);
border-bottom: 2rpx solid #e6e6e6;
box-sizing: border-box;
}
.item:last-child {
border: none;
}
.item text:last-child {
color: #666;
}
.img_box, .word_box {
widows: 100%;
padding: 0 32rpx;
box-sizing: border-box;
}
.title {
width: 100%;
font-size: 28rpx;
font-family: PingFang SC;
font-weight: 500;
color: rgba(51, 51, 51, 1);
padding: 37rpx 0;
box-sizing: border-box;
display: flex;
align-items: center;
}
.title image {
width: 18rpx;
height: 18rpx;
margin-right: 10rpx;
}
.img_arr {
width: 100%;
display: flex;
flex-wrap: wrap;
}
.img_item {
width: 200rpx;
height: 200rpx;
margin-right: 42rpx;
margin-bottom: 42rpx;
position: relative;
}
.img_item .show_img {
width: 100%;
height: 100%;
}
.img_item .del {
width: 30rpx;
height: 30rpx;
position: absolute;
right: 10rpx;
top: 10rpx;
}
.img_item:nth-child(3n) {
margin-right: 0;
}
.word {
width: 100%;
height: 373rpx;
border: 1px solid rgba(229, 229, 229, 1);
border-radius: 10rpx;
padding: 28rpx 28rpx 48rpx 28rpx;
box-sizing: border-box;
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 500;
color: rgba(204, 204, 204, 1);
position: relative;
}
.word_num{
font-size: 26rpx;
font-family: PingFang SC;
font-weight: 500;
color: rgba(204, 204, 204, 1);
position: absolute;
right: 28rpx;
bottom: 10rpx;
}
.submit {
width: 686rpx;
height: 88rpx;
background: rgba(65, 205, 121, 1);
border-radius: 10rpx;
font-size: 32rpx;
font-family: PingFang SC;
font-weight: 500;
color: rgba(255, 255, 255, 1);
display: flex;
justify-content: center;
align-items: center;
margin: 164rpx auto 0;
}