jiangping
2024-07-16 b0b94a084ed6c1a685caebb8dfb1a0d65fdd9ef6
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
126
127
128
.header {
  width: 670rpx;
  margin: 40rpx auto 48rpx;
  height: 224rpx;
  background: #FFFFFF;
  box-shadow: 0rpx 4rpx 16rpx 0rpx rgba(176, 135, 113, 0.2);
  border-radius: 8rpx;
  padding: 30rpx;
 
  .name {
    font-weight: 500;
    font-size: 36rpx;
  }
 
  .desc {
    font-size: 26rpx;
    color: #666666;
    margin: 16rpx 0 24rpx;
  }
 
  .addr {
    font-size: 26rpx;
    color: #888888;
  }
}
.bg_wrap{
  width: 750rpx;
  height: 400rpx;
  background-color: #333333;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.main_content {
  padding: 0 40rpx 40rpx;
 
  .title {
    font-weight: 600;
    font-size: 36rpx;
    margin-bottom: 38rpx;
  }
 
  .list {
    .item {
      width: 670rpx;
      height: 148rpx;
      background: rgba(176, 135, 113, 0.05) #FFFFFF;
      box-shadow: 0rpx 4rpx 12rpx 0rpx rgba(0, 0, 0, 0.12);
      border-radius: 8rpx;
      padding: 0 30rpx;
      display: flex;
      align-items: center;
      margin-bottom: 30rpx;
 
      .content {
        flex: 1;
 
        .name {
          font-size: 30rpx;
          margin-bottom: 12rpx;
        }
 
        .desc {
          font-size: 24rpx;
          color: #999999;
        }
      }
 
      .avatar {
        width: 88rpx;
        height: 88rpx;
        border-radius: 50%;
        border: 1rpx solid #cccccc;
        margin-right: 24rpx;
      }
 
      .btn {
        width: 118rpx;
        height: 56rpx;
        line-height: 52rpx;
        text-align: center;
        background: #FFFFFF;
        border-radius: 8rpx;
        font-weight: 500;
        font-size: 26rpx;
        color: var(--themeColor);
        border: 1rpx solid var(--themeColor);
      }
    }
  }
}
.footer{
  display: flex;
  align-items: center;
  height: 100rpx;
  position: fixed;
  bottom: 0;
  left: 0rpx;
  width: 750rpx;
  padding: 20rpx 40rpx 0;
  box-shadow: 0rpx -4rpx 8rpx 0rpx rgba(0,0,0,0.14);
  .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 500;
    background-color: #fff;
    font-size: 32rpx;
    height: 88rpx;
    border-radius: 8rpx;
    color: var(--themeColor);
    border: 1rpx solid var(--themeColor);
    flex: 1;
    image{
      width: 28rpx;
      margin-right: 12rpx;
    }
  }
  .phone{
    background-color: var(--themeColor);
    color: #fff;
    margin-left: 20rpx;
    image{
      width: 32rpx;
    }
  }
}