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
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
129
130
131
132
133
134
135
.app_header {
  display: flex;
  align-items: center;
  height: 100rpx;
  background-color: #fff;
  padding: 0 40rpx;
}
.app_header .location {
  width: 30rpx;
}
.app_header .add {
  flex: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 10rpx;
  font-weight: 500;
  font-size: 30rpx;
}
.app_header .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  font-size: 26rpx;
  width: 160rpx;
}
.app_header .right image {
  width: 28rpx;
  margin-right: 10rpx;
}
.main_content {
  padding: 40rpx;
  min-height: calc(100vh - 100rpx);
  background-color: #F7F7F7;
}
.main_content .app_title {
  font-weight: 600;
  font-size: 36rpx;
  margin-bottom: 40rpx;
}
.main_content .shops .shop {
  width: 670rpx;
  height: 362rpx;
  background: linear-gradient(180deg, #F2E7E1 0%, #FEFEFD 30%, #FFFFFF 100%);
  border-radius: 8rpx;
  margin-bottom: 20rpx;
  padding: 30rpx;
}
.main_content .shops .shop .header {
  display: flex;
  align-items: center;
}
.main_content .shops .shop .header .left {
  flex: 1;
}
.main_content .shops .shop .header .left .title {
  width: 520rpx;
  font-weight: 500;
  font-size: 32rpx;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 16rpx;
}
.main_content .shops .shop .header .left .address {
  width: 520rpx;
  display: flex;
  align-items: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 26rpx;
  color: #888888;
}
.main_content .shops .shop .header .left .address image {
  width: 13rpx;
  margin-left: 8rpx;
}
.main_content .shops .shop .header .right {
  width: 60rpx;
  font-size: 24rpx;
  color: #333333;
  text-align: center;
  margin-left: 20rpx;
}
.main_content .shops .shop .header .right .phone {
  width: 60rpx;
  margin-bottom: 4rpx;
}
.main_content .shops .shop .user_list {
  display: flex;
  padding: 24rpx 10rpx;
}
.main_content .shops .shop .user_list .item {
  width: 240rpx;
  height: 180rpx;
  padding: 20rpx 0;
  background: #FFFFFF;
  box-shadow: 0rpx 0rpx 10rpx rgba(0, 0, 0, 0.12);
  border-radius: 8rpx;
  margin-right: 20rpx;
  flex-shrink: 0;
}
.main_content .shops .shop .user_list .item .info {
  display: flex;
  align-items: center;
  padding: 0 20rpx 14rpx;
  border-bottom: 1rpx solid #eeeeee;
}
.main_content .shops .shop .user_list .item .info .avatar {
  width: 72rpx;
  height: 72rpx;
  border-radius: 50%;
  margin-right: 16rpx;
}
.main_content .shops .shop .user_list .item .info .name {
  width: 120rpx;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.main_content .shops .shop .user_list .item .info .ex {
  font-size: 24rpx;
  color: #999999;
  margin-top: 4rpx;
}
.main_content .shops .shop .user_list .item .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 66rpx;
  font-weight: 500;
  font-size: 26rpx;
  color: var(--themeColor);
}