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
| .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;
| .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;
|
| }
| .name{
| font-weight: 500;
| font-size: 34rpx;
| color: #111111;
| margin-bottom: 30rpx;
| }
| .line{
| display: flex;
| margin-bottom: 20rpx;
| .label{
| width: 140rpx;
| color: #666666;
| }
| .val{
| flex: 1;
| }
| }
| }
| }
|
|