Blame view

pages/map/map.scss 3.79 KB
290144e9   易尊强   第一次
1
2
3
4
5
6
7
8
9
10
11
  .page{
  	width: 100%;
  	height: 100%;
  	background-color: #f4f4f4 !important;
  	
  }
  /* 搜索 */
  .search-head {
  	display: flex;
  	justify-content: center;
  	align-items: center;
8c5ff8ba   “wangming”   updatemap
12
13
  	width: 100%;
  	height: 84rpx;
290144e9   易尊强   第一次
14
15
16
17
18
  	margin: 0 auto;
  	// #ifdef APP-PLUS */
  	// height: calc(120rpx + var(--status-bar-height));
  	// /* #endif
  	// padding: 20rpx;
8c5ff8ba   “wangming”   updatemap
19
20
21
  	//box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  	border: 6rpx solid #efefef;
  	margin-top:20rpx;
290144e9   易尊强   第一次
22
23
24
25
26
  	background-color: #FFFFFF;
  	.search {
  		display: flex;
  		align-items: center;
  		width: 100%;
8c5ff8ba   “wangming”   updatemap
27
  		height: 78rpx;
290144e9   易尊强   第一次
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
  		// background: rgba(255, 255, 255, 1);
  		border: 0;
  		margin-left: 30rpx;
  		border-radius: 100rpx;
  		// padding:0 30rpx;
  		image {
  			width: 34rpx;
  			height: 34rpx;
  		}
  		// cover-image {
  		// 	width: 34rpx;
  		// 	height: 34rpx;
  		// }
  		text{
  			width: 2rpx;
  			height: 24rpx;
  			background-color:#D8D8D8;
  			margin: 0 18rpx;
  		}
  		input {
  			width: 72%;
  			height: 100%;
  			font-size: 28rpx;
  			color: #646464;
  		}
  	}
  	.btn {
  		display: flex;
  		align-items: center;
  		justify-content: center;
  		position: absolute;
8c5ff8ba   “wangming”   updatemap
59
  		right: 20rpx;
290144e9   易尊强   第一次
60
  		background-color: #D32D25;
8c5ff8ba   “wangming”   updatemap
61
62
63
  		border-radius: 10rpx;
  		width: 120rpx;;
  		padding: 12rpx;
290144e9   易尊强   第一次
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
  		text {
  			font-size: 28rpx;
  			color: #fff;
  		}
  	}
  }
  .bg {
  	width: 100%;
  	height: 100vh;
  	position: absolute;
  	z-index: 1;
  	/* #ifdef APP-PLUS */
  	width: 100%;
  	height: 100vh;
  	position: absolute;
  	z-index: 1;
  	/* #endif */
  	.map{
  		width: 100%;
  		height: 80vh;
  		position: absolute;
  	}
  	.marker {
  	  width: 40rpx;
  	  height: 40rpx;
  	  border-radius: 50%;
  	  background-color: #ccc;
  	  position: relative;
  	}
  }
  .content {
  	width: 100%;
  	position: relative;
  }
  /* 用户信息列表 */
  .map-content {
  	position: absolute;
  	z-index: 100;
  	width: 100%;
  	/* #ifdef APP-PLUS */
  	position: absolute;
  	z-index: 100;
  	width: 100%;
  	/* #endif */
  }
  .bottom {
  	margin: 20rpx 3%;
  	width: 94%;
  	position: fixed;
  	bottom: 0;
  	z-index: 100;
  	/* #ifdef APP-PLUS */
  	margin: 20rpx 3%;
  	width: 94%;
  	position: fixed;
  	bottom: 0;
  	z-index: 100;
  	/* #endif */
  }
  .file_upload{
  	display: flex;
  	padding: 20rpx;
  	flex-direction: column;
  	align-items: center;
  	justify-content: flex-start;
  	button{
  		margin: 0;
  	}
  }
8c5ff8ba   “wangming”   updatemap
133
  
290144e9   易尊强   第一次
134
  	.invitation-show{
8c5ff8ba   “wangming”   updatemap
135
136
  		position: absolute;
  		bottom: 60px;
290144e9   易尊强   第一次
137
138
  		display: flex;
  		align-items: center;
8c5ff8ba   “wangming”   updatemap
139
  		width: 95%;
290144e9   易尊强   第一次
140
141
142
  		background-color: #FFFFFF;
  		box-shadow: 0 0 10rpx rgba(0,0,0,0.1);
  		border-radius: 20rpx;
8c5ff8ba   “wangming”   updatemap
143
144
  		left: 50%;
  		transform: translateX(-50%);
290144e9   易尊强   第一次
145
  		padding: 20rpx;
8c5ff8ba   “wangming”   updatemap
146
  		height: 230rpx;
290144e9   易尊强   第一次
147
148
149
150
151
152
153
154
155
156
157
  		.icon{
  			display: flex;
  			justify-content: center;
  			width: 20%;
  			image {
  				width: 140rpx;
  				height: 140rpx;
  				border-radius: 10rpx;
  			}
  		}
  		.item{
8c5ff8ba   “wangming”   updatemap
158
  			width: 70%;
290144e9   易尊强   第一次
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
  			height: 80%;
  			padding-left: 20rpx;
  			padding-right: 20rpx;
  			.title-btn{
  				display: flex;
  				justify-content: space-between;
  				width: 100%;
  				margin-bottom: 10rpx;
  				.title{
  				display: flex;
  				.bt{
  						color: #222222;
  						font-size: 30rpx;
  						font-weight: bold;
  					}
  				}
  			}
  			.describe{
  				display: flex;
  				align-items: center;
8c5ff8ba   “wangming”   updatemap
179
180
  				height: 46rpx;
  				line-height: 46rpx;
290144e9   易尊强   第一次
181
182
183
184
185
186
187
188
189
190
191
192
  				text{
  					font-size: 24rpx;
  					color: #959595;
  				}
  				image {
  					width: 24rpx;
  					height: 24rpx;
  					margin-left: 10rpx;
  				}
  			}
  		}
  	}
8c5ff8ba   “wangming”   updatemap
193
  
290144e9   易尊强   第一次
194
195
196
197
198
199
200
201
202
203
204
205
206
  // .amap-marker{
  // 	margin-top: -5px !important;
  // }
  .navigation {
  					margin-top: 10rpx;
  					margin-bottom: 20rpx;
  					color: #2FA567;
  					image {
  						width: 24rpx;
  						height: 24rpx;
  					}
  				}
  .right {
8c5ff8ba   “wangming”   updatemap
207
  	width: 30%;
290144e9   易尊强   第一次
208
209
210
211
212
213
214
215
216
  	text-align: right;
  	color: #878787;
  }
  				.red-btn{
  					display:flex;
  					align-items: center;
  					justify-content: center;
  					width: 160rpx;
  					height: 50rpx;
8c5ff8ba   “wangming”   updatemap
217
  					background: #D32D25 !important;
290144e9   易尊强   第一次
218
219
  					border-radius: 60rpx;
  					float: right;
8c5ff8ba   “wangming”   updatemap
220
221
222
  					margin-top: 126rpx;
  					margin-right: 10rpx;
  					z-index: 999;
290144e9   易尊强   第一次
223
224
225
226
227
228
229
230
231
232
  					image {
  						width: 24rpx;
  						height: 24rpx;
  						margin-right: 10rpx;
  					}
  					text{
  						color: #FFFFFF;
  						font-size: 28rpx;
  					}
  				}