k94314517
2024-07-25 a75b18a4157ab486e0b51c438ac165ab3a08e3e0
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
.container {
  background-color: #f7f7f7;
  padding: 30rpx 40rpx;
}
.list .item {
  padding: 30rpx;
  width: 670rpx;
  height: 398rpx;
  background: linear-gradient(180deg, #F2E7E1 0%, #FEFEFD 30%, #FFFFFF 100%);
  border-radius: 8rpx;
  margin-bottom: 30rpx;
  position: relative;
}
.list .item .edit {
  position: absolute;
  top: 0;
  right: 0;
  width: 112rpx;
  height: 60rpx;
  line-height: 58rpx;
  text-align: center;
  font-size: 26rpx;
  background: #B08771;
  border-radius: 0rpx 8rpx 0rpx 16rpx;
  color: #fff;
}
.list .item .name {
  font-weight: 500;
  font-size: 34rpx;
  color: #111111;
  margin-bottom: 30rpx;
}
.list .item .line {
  display: flex;
  margin-bottom: 20rpx;
}
.list .item .line .label {
  width: 140rpx;
  color: #666666;
}
.list .item .line .val {
  flex: 1;
}