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
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
.container {
  padding: 44rpx 40rpx;
}
 
.home_title {
  font-weight: 600;
  font-size: 36rpx;
  color: #111111;
  line-height: 50rpx;
  margin-bottom: 32rpx;
}
 
.content {
  width: 670rpx;
  background: #F7F7F7;
  border-radius: 8rpx;
  padding: 34rpx 40rpx 40rpx;
 
  .time {
    font-weight: 500;
    font-size: 30rpx;
    color: #222222;
    line-height: 42rpx;
    margin-bottom: 18rpx;
  }
 
  .text {
    font-weight: 300;
    font-size: 26rpx;
    color: #333333;
    line-height: 44rpx;
    margin-bottom: 40rpx;
  }
  .imgs{
    display: flex;
    flex-wrap: wrap;
    .img_wrap{
      width: 184rpx;
      height: 326rpx;
      border-radius: 8rpx;
      position: relative;
      margin-right: 19rpx;
      margin-bottom: 20rpx;
      &:nth-of-type(3n){
        margin-right: 0;
      }
      .img{
        width: 100%;
        height: 100%;
      }
      .icon{
        position: absolute;
        top: 0;
        left: 0;
        width: 76rpx;
      }
    }
    
  }
  .footer{
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 62rpx;
    margin-top: 40rpx;
    .left{
      display: flex;
      align-items: center;
      font-size: 24rpx;
      color: #333333;
      .icon{
        width: 30rpx;
        margin-right: 12rpx;
      }
    }
    .btn{
      width: 164rpx;
      height: 62rpx;
      line-height: 60rpx;
      text-align: center;
      background: #B08771;
      border-radius: 8rpx;
      color: #fff;
    }
  }
}