installmentinfo.vue 32.1 KB
Newer Older
王建威's avatar
王建威 committed
1 2
<template>
	<view class="info_content">
郑秀明's avatar
郑秀明 committed
3
		<view class="topbar_icon_box" :class="bg_show && 'bg_show'">
王建威's avatar
王建威 committed
4
			<text class="info_icon back_icon" @click="backup()"></text>
王建威's avatar
王建威 committed
5
			<view>
王建威's avatar
王建威 committed
6 7 8
				<text class="info_icon home_icon" @click="jumpPhpPage()"></text>
				<text class="info_icon collection_icon" v-if="data.EquipmentInfo.collect_goods ===  1" @click="collectGoods(data.EquipmentInfo.goods_id, 0)"></text>
				<text class="info_icon uncollection_icon" v-if="data.EquipmentInfo.collect_goods ===  0" @click="collectGoods(data.EquipmentInfo.goods_id, 1)"></text>
王建威's avatar
王建威 committed
9 10 11
			</view>
		</view>
		<swiper class="img_swiper">
王建威's avatar
王建威 committed
12 13
			<swiper-item v-for="(val, index) in data.EquipmentImgs" :key="index">
				<image :src="val.img_url" class="img_item"></image>
王建威's avatar
王建威 committed
14 15 16 17 18
			</swiper-item>
		</swiper>
		<view class="goods_info">
			<view class="goods_info_flex">
				<view>
王建威's avatar
王建威 committed
19 20
					<text class="symbol" v-if="isLogin"></text>
					<text class="goods_price">{{isLogin ? e_info.equipment_price : '登录显示价格'}}</text>
王建威's avatar
王建威 committed
21 22 23
					<text class="goods_label">分期购 </text>
				</view>
			</view>
王建威's avatar
王建威 committed
24 25
			<view class="goods_name">{{data.EquipmentInfo.equipment_name}}</view>
			<view class="goods_subname">{{data.EquipmentInfo.goods_subname}}</view>
王建威's avatar
王建威 committed
26 27 28 29
		</view>
		<view class="freight common_item_bar">
			<view>
				<text class="info_commom_title">快递</text>
王建威's avatar
王建威 committed
30 31
				<text class="info_common_con">0.00</text>
				<text class="info_common_label">包邮</text>
王建威's avatar
王建威 committed
32
			</view>
王建威's avatar
王建威 committed
33
			<!-- <view class="info_operation">
王建威's avatar
王建威 committed
34 35
				<text>选择</text>
				<text class="right_arrow_icon"></text>
王建威's avatar
王建威 committed
36
			</view> -->
王建威's avatar
王建威 committed
37
		</view>
王建威's avatar
王建威 committed
38
		<!-- <view class="common_item_bar">
王建威's avatar
王建威 committed
39 40 41
			<view>
				<text class="info_commom_title">活动</text>
				<text class="info_common_label info_common_label2">分期</text>
zhengxiuming's avatar
zhengxiuming committed
42
				<text class="info_common_con">采购分期限时免息</text>
王建威's avatar
王建威 committed
43 44 45 46 47
			</view>
			<view class="info_operation">
				<text>查看</text>
				<text class="right_arrow_icon"></text>
			</view>
王建威's avatar
王建威 committed
48
		</view> -->
王建威's avatar
王建威 committed
49 50
		<view class="common_item_bar">
			<view>
王建威's avatar
王建威 committed
51
				<text class="info_commom_title">分期</text>
王建威's avatar
王建威 committed
52
				<text class="info_common_con">已选:x{{Number(e_info.periods_num)+1}}</text>
王建威's avatar
王建威 committed
53 54 55 56 57 58
			</view>
			<view class="info_operation" @click="open()">
				<text>选择</text>
				<text class="right_arrow_icon"></text>
			</view>
		</view>
王建威's avatar
王建威 committed
59 60 61 62 63 64 65 66 67
		<view v-if="isLogin">
			<view class="title_label">分期信息</view>
			<view class="installment_table_box">
				<view class="installment_table">
					<view class="table_title">
						<view>分期数</view>
						<view>定金 (元)</view>
						<view>第1期还款</view>
						<view>剩余每期还款</view>
王建威's avatar
王建威 committed
68
						<view>利率</view>
王建威's avatar
王建威 committed
69 70 71 72 73 74
					</view>
					<view class="table_item" v-for="(val, index) in data.Equipmentproperty" :key="index">
						<view>{{Number(val.periods_num)+1}}</view>
						<view>{{val.advance_payment}}</view>
						<view>{{val.first_payment}}</view>
						<view>{{val.remaining_payment}}</view>
王建威's avatar
王建威 committed
75
						<view>{{val.count*100}}%</view>
王建威's avatar
王建威 committed
76
					</view>
王建威's avatar
王建威 committed
77 78 79 80 81
				</view>
			</view>
		</view>
		<view class="entry_shop">
			<view>
王建威's avatar
王建威 committed
82 83
				<image class="shop_logo" :src="data.StoreInfo.store_logo || $defaultPortrait"></image>
				<view class="dlb dlb_box" @click="jumpPhpPage(`app=store&id=${data.StoreInfo.store_id}`)">
王建威's avatar
王建威 committed
84
					<view class="shop_name">{{data.StoreInfo.store_name}}<i class="right_arrow_icon"></i></view>
王建威's avatar
王建威 committed
85
					<view class="focus_num">{{data.StoreInfo.collect_count}}人关注</view>
王建威's avatar
王建威 committed
86 87
				</view>
			</view>
王建威's avatar
王建威 committed
88 89
			<text class="focus_shop" v-if="data.EquipmentInfo.collect_store === 0" @click="collectShop(data.StoreInfo.store_id, 1)">关注店铺</text>
			<text class="focus_shop" v-if="data.EquipmentInfo.collect_store === 1" @click="collectShop(data.StoreInfo.store_id, 0)">已关注</text>
王建威's avatar
王建威 committed
90 91
		</view>
		<view class="shop_goods">
王建威's avatar
王建威 committed
92
			<view class="shop_goods_item" v-for="(val, index) in data.EquipmentList" :key="index" @click="jumpDetail(val.equipment_id)">
王建威's avatar
王建威 committed
93 94
				<image :src="val.img_url"></image>
				<view class="shop_goods_name">{{val.equipment_name}}</view>
王建威's avatar
王建威 committed
95
				<view class="shop_goods_price"><text v-if="isLogin">¥</text>{{isLogin ? val.equipment_price : '登录显示价格'}}</view>
王建威's avatar
王建威 committed
96 97
			</view>
		</view>
王建威's avatar
王建威 committed
98
		<view class="equipment_detail">
王建威's avatar
王建威 committed
99
			<view class="title_label">产品信息</view>
王建威's avatar
王建威 committed
100 101
			<view v-if="equipment_detail" v-html="equipment_detail"></view>
			<view v-if="!equipment_detail" class="no_data">暂无产品信息</view>
王建威's avatar
王建威 committed
102 103 104 105 106 107
		</view>
		<view class="goods_info_bottom_bar">
			<view class="bottom_bar_tool">
				<view class="tool contact_tool"></view>
				<view class="tool_title">联系客服</view>
			</view>
王建威's avatar
王建威 committed
108
			<view class="bottom_bar_tool" @click="jumpPhpPage(`app=store&id=${data.StoreInfo.store_id}`)">
王建威's avatar
王建威 committed
109 110 111 112
				<view class="tool shop_tool"></view>
				<view class="tool_title">店铺</view>
			</view>
			<view class="bottom_bar_tool">
王建威's avatar
王建威 committed
113
				<view class="tool cart_tool" @click="jumpPhpPage('app=cart')"></view>
王建威's avatar
王建威 committed
114 115
				<view class="tool_title">购物车</view>
			</view>
王建威's avatar
王建威 committed
116
			<!-- <view class="bottom_btn join_cart">加入购物车</view> -->
王建威's avatar
王建威 committed
117
			<view class="bottom_btn join_buy" @click="open()">立即分期</view>
王建威's avatar
王建威 committed
118 119 120
		</view>
		<uni-popup ref="popup" type="bottom">
			<view class="poupp_content">
王建威's avatar
王建威 committed
121
				<text class="eosfont close" @click="close()">&#xe615;</text>
王建威's avatar
王建威 committed
122 123
				<view  :style="{padding: '0 24rpx'}">
					<view class="poupp_flex">
王建威's avatar
王建威 committed
124
						<image class="poupp_img" :src="data.EquipmentInfo.default_image || $noGoodsImg"></image>
王建威's avatar
王建威 committed
125
						<view class="dlb">
王建威's avatar
王建威 committed
126
							<view class="poupp_goods_name">{{data.StoreInfo.equipment_name}}</view>
王建威's avatar
王建威 committed
127
							<view class="poupp_goods_price">
王建威's avatar
王建威 committed
128
								<text class="symbol">¥</text>{{e_info.equipment_price}}
王建威's avatar
王建威 committed
129 130 131 132 133
								<text class="poupp_label">分期购</text>
							</view>
						</view>
					</view>
					<view class="poupp_nper">
王建威's avatar
王建威 committed
134 135 136
						<view><text class="dlb">期数</text>
						<!-- <text class="dlb limit_free">限时免息</text> -->
						</view>
王建威's avatar
王建威 committed
137
						<view class="poupp_nper_box">
王建威's avatar
王建威 committed
138
							<text v-for="(val,index) in data.Equipmentproperty" :key="index" :class="{act: periodTab === index}" @click="choosePeriod(index)">{{Number(val.periods_num)+1}}</text>
王建威's avatar
王建威 committed
139 140 141 142
						</view>
					</view>
					<view class="poupp_deposit">
						<text>定金</text>
王建威's avatar
王建威 committed
143
						<text>¥ {{e_info.advance_payment}}</text>
王建威's avatar
王建威 committed
144 145 146 147
					</view>
					<view class="poupp_nper_detail">
						<view>
							<text>第1期 支付</text>
王建威's avatar
王建威 committed
148
							<text>¥ {{(Number(e_info.first_payment)+(Number(e_info.equipment_price)-Number(e_info.advance_payment))*Number(e_info.count)).toFixed(2)}}</text>
王建威's avatar
王建威 committed
149 150
						</view>
						<view>
王建威's avatar
王建威 committed
151
							<text>剩余{{e_info.periods_num}}期 每期支付</text>
王建威's avatar
王建威 committed
152
							<text>¥ {{(Number(e_info.remaining_payment)+(Number(e_info.equipment_price)-Number(e_info.advance_payment))*Number(e_info.count)).toFixed(2)}}</text>
王建威's avatar
王建威 committed
153 154
						</view>
					</view>
王建威's avatar
王建威 committed
155
					<view class="profile">利息每期(元):¥{{((Number(e_info.equipment_price)-Number(e_info.advance_payment))*Number(e_info.count)).toFixed(2)}}</view>
王建威's avatar
王建威 committed
156 157 158 159
					<view class="sales_box">
						<text class="sales_name">销售人员:</text>
						<input class="sales_input" type="text" placeholder="销售人员姓名,选填" v-model="sales">
					</view>
王建威's avatar
王建威 committed
160 161
				</view>
				<view class="poupp_tips">金融分期需要上传金融资质, 包含法人信息/企业执照/银行流水等…</view>
王建威's avatar
王建威 committed
162
				<view class="poupp_btn" @click="buy_now()">立即分期</view>
王建威's avatar
王建威 committed
163 164 165 166 167 168 169
			</view>
		</uni-popup>
	</view>
</template>

<script>
	import uniPopup from "@/components/uni-popup/uni-popup.vue";
王建威's avatar
王建威 committed
170
	import { php, go } from '../../common/host.js';
王建威's avatar
王建威 committed
171 172 173
	export default {
		data() {
			return {
王建威's avatar
王建威 committed
174
				visible: false,
郑秀明's avatar
郑秀明 committed
175
				bg_show: false,
王建威's avatar
王建威 committed
176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191
				data: {
					EquipmentImgs: [],
					EquipmentInfo: {},
					EquipmentList: [],
					Equipmentproperty: [],
					StoreInfo: {}
				},
				e_info: {
					equipment_price: 0.00,
					advance_payment: 0.00,
					remaining_payment: 0.00,
					first_payment: 0.00
				},
				equipment_detail: '',
				periodTab: 0,
				isLogin: 0,
王建威's avatar
王建威 committed
192
				equipment_id: '',
王建威's avatar
王建威 committed
193
				is_auth: '0',
王建威's avatar
王建威 committed
194
				type: 2,
王建威's avatar
王建威 committed
195
				sales: '',
王建威's avatar
王建威 committed
196 197
				status: -1,
				enable_flg: -1
王建威's avatar
王建威 committed
198 199
			}
		},
郑秀明's avatar
郑秀明 committed
200 201 202 203 204 205 206 207
		onPageScroll(e){
			const {scrollTop} = e;
			if(scrollTop > 300){
				this.bg_show = true;
			}else{
				this.bg_show = false;
			}
		},
王建威's avatar
王建威 committed
208 209 210
		onLoad(option) {
			this.equipment_id = option.id;
			this.getData(option.id);
郑秀明's avatar
郑秀明 committed
211 212 213 214 215 216
			// #ifdef H5
			//默认请求微信分享
			if (this.$wechat && this.$wechat.isWechat()) {
				this.$wechat.share({titie: this.$getNavigationBarTitle()});
			}
			// #endif
王建威's avatar
王建威 committed
217
		},
王建威's avatar
王建威 committed
218 219
		methods: {
			open()  {
王建威's avatar
王建威 committed
220 221 222 223 224 225 226 227 228 229
				if(!this.isLogin) {
					uni.showToast({
						title: '请登录',
						icon: 'none'
					});
					setTimeout(() => {
						this.$jump(`${php}app=member&act=login`)
					}, 2000)
					return
				}
王建威's avatar
王建威 committed
230
				this.$refs.popup.open()
王建威's avatar
王建威 committed
231 232 233 234 235 236 237 238 239 240 241 242 243 244
			},
			close() {
				this.$refs.popup.close()
			},
			getData(id) {
				uni.request({
					url: `/uni/api/equipment_index/GetEquipmentDetail/${id}`,
					method: 'GET',
					dataType: 'json',
					success: (res) => {
						this.data = {
							...this.data,
							...res.data.data
						}
王建威's avatar
王建威 committed
245 246 247 248 249 250 251 252 253
						res.data.data.Equipmentproperty.forEach((item, index) => {
							if(item.is_def ==  1) {
								this.e_info = {
									...this.e_info,
									...item
								}
								this.periodTab = index
							}
						});
王建威's avatar
王建威 committed
254
						this.equipment_detail = res.data.data.EquipmentInfo.equipment_details ? res.data.data.EquipmentInfo.equipment_details.replace(/\<img/g, `<image style="max-width: 100%;width: auto !important;height: auto !important"`) : '';
王建威's avatar
王建威 committed
255
						this.isLogin = res.data.login_flg;
王建威's avatar
王建威 committed
256
						this.is_auth = res.data.data.is_auth;
王建威's avatar
王建威 committed
257
						this.type = res.data.data.EquipmentInfo.type;
王建威's avatar
王建威 committed
258 259
						this.status = res.data.data.status || -1;
						this.enable_flg = res.data.data.enable_flg || -1;
王建威's avatar
王建威 committed
260 261 262 263 264 265 266 267 268 269 270 271
					}
				});
			},
			choosePeriod(key) {
				this.e_info = this.data.Equipmentproperty[key];
				this.periodTab = key;
			},
			jumpPhpPage(url) {
				let link = url ? `${php}${url}` : php;
				window.location.href =  link;
			},
			backup() {
王建威's avatar
王建威 committed
272
				this.$backup();
王建威's avatar
王建威 committed
273 274 275 276 277 278
			},
			buy_now() {
				const data = {
					equipment_id: this.equipment_id,
					property_id: this.e_info.property_id
				}
王建威's avatar
王建威 committed
279
				if(this.sales) {
王建威's avatar
王建威 committed
280 281 282 283
					uni.setStorage({
						key: 'sales',
						data: this.sales
					});
王建威's avatar
王建威 committed
284
				}
王建威's avatar
王建威 committed
285 286 287 288
				uni.setStorage({
					key: 'advance_payment',
					data: this.e_info.advance_payment
				})
王建威's avatar
王建威 committed
289
				if(this.is_auth === '1') {
王建威's avatar
王建威 committed
290 291 292
					if(this.status === 0 || this.status === 2) {
						uni.navigateTo({
							 url: `/pages/theRights/theRights`
王建威's avatar
王建威 committed
293
						});
王建威's avatar
王建威 committed
294
						return
王建威's avatar
王建威 committed
295
					}
王建威's avatar
王建威 committed
296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
					uni.setStorage({
						key: 'installment',
						data: data,
						success: () => {
							uni.navigateTo({
								// url: '/pages/apply/choosetype'
								url: `/pages/apply/applypage1?property_id=${this.e_info.property_id}&equipment_id=${this.equipment_id}`
							});
						}
					});
				} else if (this.is_auth == 0) {
					uni.setStorage({
						key: 'installment',
						data: data,
						success: () => {
							uni.navigateTo({
								url: `/pages/theRights/theRights?is_auth=${this.is_auth}`
							});
						}
					});
王建威's avatar
王建威 committed
316
				} else {
王建威's avatar
王建威 committed
317 318
					if(this.enable_flg === '0') {
						this.close();
王建威's avatar
王建威 committed
319
						uni.showToast({
王建威's avatar
王建威 committed
320 321 322
							title: '您的白条已被禁用',
							icon: 'none',
							duration: 2000
王建威's avatar
王建威 committed
323
						})
王建威's avatar
王建威 committed
324
						return
王建威's avatar
王建威 committed
325
					}
王建威's avatar
王建威 committed
326 327 328 329 330 331 332 333 334
					uni.setStorage({
						key: 'installment',
						data: data,
						success: () => {
							uni.navigateTo({
								url: '/pages/signcontract/signcontract?type=1'
							});
						}
					});
王建威's avatar
王建威 committed
335
				}
王建威's avatar
王建威 committed
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367
			},
			collectGoods(id, type) {
				uni.request({
					url: `/uni/api/collect/UpdateCollectGoods`,
					method: 'POST',
					dataType: 'json',
					data: {
						flag: type,
						item_id: id
					},
					success: (res) => {
						if(res.data.code === 0) {
							this.data.EquipmentInfo.collect_goods = type;
						}
					}
				})
			},
			collectShop(id, type) {
				uni.request({
					url: `/uni/api/collect/UpdateCollectStore`,
					method: 'POST',
					dataType: 'json',
					data: {
						flag: type,
						item_id: id
					},
					success: (res) => {
						if(res.data.code === 0) {
							this.data.EquipmentInfo.collect_store = type;
						}
					}
				})
王建威's avatar
王建威 committed
368 369 370 371 372 373
			},
			jumpDetail(id) {
				uni.navigateTo({
					url: `/pages/installment/installmentinfo?id=${id}`,
				});
			},
王建威's avatar
王建威 committed
374 375 376 377 378 379 380 381 382 383
		},
		components: {
			uniPopup,
		}
	}
</script>

<style lang="less" scoped>
	.info_content {
		background: #F5F5F5;
王建威's avatar
王建威 committed
384
		padding-bottom: 100rpx;
王建威's avatar
王建威 committed
385 386 387 388 389 390 391
	}
	.topbar_icon_box {
		display: flex;
		justify-content: space-between;
		width: 100%;
		padding: 14rpx 20rpx;
		box-sizing: border-box;
郑秀明's avatar
郑秀明 committed
392
		position: fixed;
王建威's avatar
王建威 committed
393 394
		left: 0;
		top: 0;
郑秀明's avatar
郑秀明 committed
395
		background: rgba(255, 255, 255, 0);
王建威's avatar
王建威 committed
396
		z-index: 99;
郑秀明's avatar
郑秀明 committed
397
		// border-radius: 100%;
王建威's avatar
王建威 committed
398 399 400 401 402 403 404 405 406
		.info_icon {
			display: inline-block;
			vertical-align: middle;
			width: 60rpx;
			height: 60rpx;
		}
		.back_icon {
			background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAAAAAAfl4auAAABYUlEQVRIx6XXO46DMBAGYN9zBAWic7aOKFxQ0VJQcQgarkBLARdYbVZJGkiFkKiy5LEPssaD/f+l4ZMQ4PGMuGoz1kUWydD3QxllRT3q7xKatb5UHi3iqbLfhNvkRT590rK4UbQa1Rhxl5IxabeOq4CYBNUKnnLakHzS4SGmTYmH//iyp43ZX17xsNnOeljiKSaLxNMC52SV/C+uyDLVL+4CWxx0Pzgl66TfuCGHNE+sXLB64Ja5bXd41y23d5ww9nT91K0nN9x7nD2/aatDP+PSzRKVM1aOdn5lYvTM9rRmyRtFzdjd+uVaFM6WCpE5W8pE5GwpEtLZkhShs6VQ+PoLB96Sj2HosaEXBn0q6CeBfs/adVPdNga3Jc+mLQkVA6wMcQXwaCqAXOmVR0PpZYu+/DAUfei4wQ466IjFDneorcAaGqyVgpo4rH3EGlesZcaadXBMwAYUcDQChzKLcfALHjIc96F4z0sAAAAASUVORK5CYII=') no-repeat;
			background-size: 100% 100%;
郑秀明's avatar
郑秀明 committed
407
			border-radius: 100%;
王建威's avatar
王建威 committed
408 409 410 411 412
		}
		.home_icon {
			background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAAAAAAfl4auAAACjUlEQVRIx62Xz0sbQRTH5/98bKxpCpYtlWIgCXWFeAluK1EasAQCUqiXYgSDhx68aLAiRJtcpEUF0dJDN8HDdmWbZL89bH7s7M5skk6/p53vvA8sM2/evGEQymlUSzk9lUik9Fyp2nDEUUzgtWuGRpw0o9aeCm4VQuSAL7Qmwk2DpDKasbC1QbHasORwPUkTlKxLYLdMU6jsimA7T1Mpb0fhToamVKYThu2pWaKMzcNunmZQ3uXgMs2kchCu04yqj2FLsr/Zu7usZL+tESzJqy0XcLckuTaEm8LpuUMPZ2fwDueE080BLDwLi9fo7RDt9HC9KDwlPtwSza3ZeFglIlp9gL0mimgBDCgIZvb6uNT9T/0S/T1BSAFgaEfP/kIL3sHI1g48tBai1aENhlrEXrHgFING0YG1EgmrgUWXa7uL2yXeWrpFdzu6ZMwJ/XXyBDieDwfOHwMnoVTSHNbgnfQ9/lREi1vp4S7NWw1W5cabj8BHcU5dA4+bnFNlpeBw34OLihi+wk94+0GnxHLBodPfPZXD67t9J+jkmB4cLhsUA78lYzno6CwViomFeaVY4t/hhBqs9Nt6DPwk+yoO1vmt4uDnRy7Q+SCHc3ySBOEXv+B1bOBICpdC6RmAz3H/mqjSxTsZXA0fjBH80uumiYg+4ZsMbkSO5BAu4rtfCPFbAmtOpBgM4S18JSKip+hKYCNahqaHa9ECOITf4yIe1trR0nuKz6ZpmubBGDZN0zTNHyG4ICj6X0ZNg78P8+MW5I2g6PNLtnZ14+tq3TcOB+Ob82eC60Zy0U1Qc8IVG9vOTbzcY5o56/+0FWoNjVorpdTEqbWPao2rWsus1qwrPhPUHiiKTyPFR9kMz8G/v1mIKuFxp8YAAAAASUVORK5CYII=') no-repeat;
			background-size: 100% 100%;
			margin-right: 20rpx;
郑秀明's avatar
郑秀明 committed
413
			border-radius: 100%;
王建威's avatar
王建威 committed
414 415
		}
		.collection_icon {
王建威's avatar
王建威 committed
416 417
			background:url('data:image/jpeg;base64,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') no-repeat;
			background-size: 100% 100%;
郑秀明's avatar
郑秀明 committed
418
			border-radius: 100%;
王建威's avatar
王建威 committed
419 420
		}
		.uncollection_icon {
王建威's avatar
王建威 committed
421 422
			background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAA8CAAAAAAfl4auAAAC6ElEQVRIx6VXz0tqURA+/+eoSQkuDKIoyoWYbYQKyrIIixZh4creSyITIjIFCVx4N6HQpjaSPxBS8de931uovXuPc824s7oz53yXc+bMfDMjwEo7Hw97PS6Hw+XxhuP5Nr9LMLZawmcng9h9idpMYCUoIUf4oPIjuOAjU/EVpoKr+zRV9qvm4Mw8/SDzGRNwN0IzSKTLgZsBmkkCzUlwfZ1mlPW6DG7OjCVabxrB3QD9QgJdAzhCv5KIHpyhX0rmP7jKv68j2W4nHfx7V7/BJnH1FwD+mMTaGFzg190dhELouPnVwghskgtxFImKiJtkyRCsmITxF3aJdvFlEvAKIIAgvxjFBxHRB6L8ehAQqNl5V9dxRER0hDrvcHsNAgn+x6f4tBER2T5xyu9IQJi4y1bG+fDrHGWbictEmzn1gv8ki8bcUJlrIHviX2DO3RZ5g8G5E30oNjQA6nfk7KsAtEbxIbrjNGzOC8Mzrg05alBRErrb+BJKZTDkuDVDIIiwXn1F5enqYINxr2Pj4Oqpgle9LSy8erWHxWm5tIieXvUKj16t4XIa+BI1veoRLr16Bu3MHHumwbDqEsb7XUM1JZWIimujHyQw3UA95rHHKm4kJxqPTUS3UMMcNqziVjK5jA4jIkpiEJrEhgZIyjaP8amIiCiFvl+2+ftITWz0CuaMz8jJphyemZsIhmVCKMmmEpirxKXEGHFIWjalOT7Jcyn5OBlnl3jkUpIhgzfsyaY9vHFkwNBQC8uyaRktloYmCHARnTEXbW2NGagzkW/2Gke923gfUUgZKI8I5R3bHPVOkP4FskREgRLQaAClABFRFhcs6csuu0eMaPVFQyvmdMZa0F5WiWK4Z8uNXOjukF5K9dFPuomI3Mk++qmlNO74QieV2E0VgJZbGesrOQ2AusmXWLm4H1Z7iiE1/EqvemhW3C21FdYaGmutlKUmzlr7aK1xtdYyW2vWLY4J1gYUi6ORxaHsF+PgPyIWgG2yq3F6AAAAAElFTkSuQmCC') no-repeat;
			background-size: 100% 100%;
郑秀明's avatar
郑秀明 committed
423
			border-radius: 100%;
王建威's avatar
王建威 committed
424 425
		}
	}
郑秀明's avatar
郑秀明 committed
426 427 428
	.bg_show{
		background-color: #f8f8f8;
	}
王建威's avatar
王建威 committed
429 430 431 432 433 434 435 436 437 438 439 440 441
	.img_swiper {
		width: 750rpx;
		height: 716rpx;
		background: #fff;
		.img_item {
			max-width: 100%;
			max-height: 100%;
			position: absolute;
			top: 0;
			left: 0;
			bottom: 0;
			right: 0;
			margin: auto;
郑秀明's avatar
郑秀明 committed
442 443
			width: auto;
			height: auto;
王建威's avatar
王建威 committed
444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597
		}
	}
	.goods_info {
		width: 100%;
		height: 210rpx;
		padding: 24rpx;
		box-sizing: border-box;
		background: #fff;
		.goods_info_flex {
			display: flex;
			justify-content: space-between;
			align-items: center;
			.symbol {
				height: 42rpx;
				line-height: 42rpx;
				font-size: 30rpx;
			}
			.goods_price {
				height: 60rpx;
				line-height: 60rpx;
				font-size: 44rpx;
				font-family:PingFangSC-Medium,PingFang SC;
				font-weight:500;
			}
			.goods_label {
				width: 88rpx;
				height: 40rpx;
				line-height: 40rpx;
				background:rgba(234,218,191,1);
				border-radius:20rpx;
				font-size: 22rpx;
				color: #464646;
				text-align: center;
				display: inline-block;
				position: relative;
				bottom: 6rpx;
				margin-left: 10rpx;
			}
			.sales_num {
				color: #7C7C7C;
				height: 34rpx;
				line-height: 34rpx;
				font-size: 24rpx;
			}
		}
		.goods_name {
			height: 42rpx;
			line-height: 42rpx;
			font-size: 30rpx;
			font-family: PingFangSC-Medium,PingFang SC;
			font-weight: 500;
			margin-top: 16rpx;
			width: 100%;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
		}
		.goods_subname {
			color: #979797;
			font-size: 26rpx;
			height: 36rpx;
			line-height: 36rpx;
			width: 100%;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
			margin-top: 8rpx;
		}
	}
	.freight {
		margin-top: 20rpx;	
	}
	.common_item_bar {
		padding: 24rpx;
		width: 100%;
		box-sizing: border-box;
		height: 84rpx;
		display: flex;
		justify-content: space-between;
		align-items: center;
		background: #fff;
		position: relative;
	}
	.common_item_bar:after {
		width: 650rpx;
		height: 1px;
		background-color: #ECECEC;
		position: absolute;
		right: 0;
		bottom: 0;
		content: '';
	}
	.info_commom_title {
		height:36rpx;
		line-height: 36rpx;
		font-size:26rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		margin-right: 24rpx;
		color: #212121;
	}
	.info_common_con {
		height:36rpx;
		font-size:26rpx;
		color: #464646;
		margin-right: 26rpx;
	}
	.info_common_label {
		height:40rpx;
		line-height: 40rpx;
		background:rgba(254,244,232,1);
		border-radius:8rpx;
		padding: 0 12rpx;
		display: inline-block;
		color: #AE8A57;
		font-size: 26rpx;
	}
	.info_common_label2 {
		height: 30rpx;
		line-height: 30rpx;
		font-size: 22rpx;
		margin-right: 20rpx;
	}
	.info_operation {
		color: #AEAEAE;
		font-size: 26rpx;
		text {
			vertical-align: middle;
		}
	}
	.right_arrow_icon {
		display: inline-block;
		width: 24rpx;
		height: 24rpx;
		background:url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYBAMAAAASWSDLAAAAElBMVEVubm59fX1/f3+BgYHq6ur/////jxb0AAAAPklEQVQY02MIRQIMZHKCVZA4QYyuCE6IgAiSHkeoFEMokhTENKgUhBMioIqDg6wMxQBko1EsRXEOikMp8jYAjsJZhd56tsAAAAAASUVORK5CYII=') no-repeat;
		background-size: 100% 100%;
	}
	.title_label {
		height:44rpx;
		line-height: 44rpx;
		font-size:32rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		background: #fff;
		padding: 36rpx 0 36rpx 24rpx;
	}
	.installment_table_box {
		padding: 0 28rpx 40rpx;
		background: #fff;
		.installment_table {
			background: #FBFBFB;
			border-radius:16rpx;
			border:1px solid rgba(236,236,236,1);
			padding: 40rpx 40rpx 16rpx;
			display: flex;
王建威's avatar
王建威 committed
598
			overflow: scroll;
王建威's avatar
王建威 committed
599 600
			.table_title {
				margin-right: 20rpx;
王建威's avatar
王建威 committed
601
				min-width: 160rpx;
王建威's avatar
王建威 committed
602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671
				view {
					height:36rpx;
					line-height: 36rpx;
					font-size:26rpx;
					color: #7C7C7C;
					margin-bottom: 24rpx;
				}
			}
			.table_item {
				border-right: 1px solid #DCDCDC;
				view {
					height:34rpx;
					line-height: 34rpx;
					font-size:24rpx;
					color: #464646;
					margin-bottom: 26rpx;
					min-width: 120rpx;
					padding: 0 10rpx;
					text-align: center;
				}
			}
			.table_item:last-child {
				border-right: none;
			}
		}
	}
	.entry_shop {
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-radius: 16rpx;
		background: #fff;
		width: 750rpx;
		height: 120rpx;
		padding: 24rpx;
		box-sizing: border-box;
		color: #212121;
		margin-top: 20rpx;
		.shop_logo {
			width: 72rpx;
			height: 72rpx;
			vertical-align: middle;
			margin-right: 20rpx;
		}
		.dlb_box {
			.shop_name {
				height: 42rpx;
				line-height: 42rpx;
				font-size: 30rpx;
				font-family: PingFangSC-Medium,PingFang SC;
				font-weight: 500;
				margin-bottom: 2rpx;
			}
			.focus_num {
				height: 28rpx;
				line-height: 28rpx;
				font-size: 20rpx;
			}
		}
		.focus_shop {
			width: 124rpx;
			height: 52rpx;
			line-height: 52rpx;
			text-align: center;
			background-color: #FFCD00;
			border-radius: 16rpx;
			font-size: 24rpx;
			display: block;
		}
	}
王建威's avatar
王建威 committed
672 673 674
	.shop_goods::-webkit-scrollbar {
		display: none;
	}
王建威's avatar
王建威 committed
675 676
	.shop_goods {
		display: flex;
王建威's avatar
王建威 committed
677
		justify-content: flex-start;
王建威's avatar
王建威 committed
678 679
		padding: 40rpx 24rpx 24rpx;
		background: #FFFFFF;
王建威's avatar
王建威 committed
680
		overflow: scroll;
王建威's avatar
王建威 committed
681 682
		.shop_goods_item {
			width: 160rpx;
王建威's avatar
王建威 committed
683
			margin-right: 20rpx;
王建威's avatar
王建威 committed
684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712
			image {
				width: 120rpx;
				height: 120rpx;
				margin: 0 auto 16rpx;
				display: block;
			}
			.shop_goods_name {
				color: #464646;
				font-size: 24rpx;
				height: 34rpx;
				line-height: 34rpx;
				width: 100%;
				overflow: hidden;
				text-overflow: ellipsis;
				white-space: nowrap;
				text-align: center;
				margin-bottom: 10rpx;
			}
			.shop_goods_price {
				height: 36rpx;
				line-height: 36rpx;
				width: 100%;
				text-align: center;
				font-size: 26rpx;
				font-family: PingFangSC-Medium,PingFang SC;
				font-weight: 500;
				text-align: center;
			}
		}
王建威's avatar
王建威 committed
713 714 715
		.shop_goods_item:last-child {
			margin-right: 0;
		}
王建威's avatar
王建威 committed
716 717 718 719 720 721 722 723 724 725
	}
	.goods_info_bottom_bar {
		width: 100%;
		height: 100rpx;
		background-color: #fff;
		padding: 0 24rpx;
		box-sizing: border-box;
		display: flex;
		align-items: center;
		justify-content: space-between;
王建威's avatar
王建威 committed
726 727 728
		position: fixed;
		bottom: 0;
		left: 0;
王建威's avatar
王建威 committed
729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755
		.bottom_bar_tool {
			width: 72rpx;
			text-align: center;
			.tool_title {
				color: #6E6E6E;
				font-size: 18rpx;
				line-height: 26rpx;
			}
		}
		.tool {
			width: 48rpx;
			height: 48rpx;
			margin: 0 auto 2rpx;
		}
		.contact_tool {
			background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAAAAAByaaZbAAACBklEQVRIx+3Vy0sVcRTAcf+V7/gA9ZpFhYkJvSZRNwWFlRomtjCQoIgasDJz0Y1LcL0bb5nlIhSMe6lWRbjRopRC6WEKRbnxUVgIkZTjaTFzq/nd34y3luHZDed8GOb3O3NOlvxlZK0BN94nu2KxeHI6MzBkFeNGsTW8KnhYgScqBwPBfAMARnmddbapPBuAxk/+4PkGgPrEV+fxW6IRYOOYH3icCxyc+jP9pg7Ie6oHEwWQ3a9+5HUDCid1YK4UCkfTz3G4AMo+asARyBnRnfxoDjSlgwdAv/5ybwGDaWA31Pq1Qy1UqWAImPQDE8ATBZyGBtsP2PXQqoAigJJeXXnPZoD1XvDBbZ2T6fXH3dSMBwykmk3tNbmfyiQ9oAvWvVrYBydU0AI1X16E4JoHRKFNpA8qVbALBkQsiKkgIpIAUwXb4K5IB3T+j+CyyG0N2A53RC6oIA6mLefgsKZT22V5h3oPU8CWKuCGCrqB6hLgnbf5Tjn3b35XwdJOJ3NG6Va71QBqZkXEjptFoVBoa8dn51/PB4zzmiHQ1/tSRGRlf6rdyuZFRCwgMhcwW7t/z8ljIq8PAEcDh3E1ND8bHx+7ArnhCoC9S4GgFO6JiCym3tPyI3jcN8Omi+HwJdMp3/Notf0wYvz6hkORnpkMNlAiz61vz3RlLdzsjEajV9+uLfZ/Bj8BX6KDetsz+VEAAAAASUVORK5CYII=') no-repeat;
			background-size: 100% 100%;
		}
		.shop_tool {
			background: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAAAAAByaaZbAAABp0lEQVRIx+3Vz0sUcRjHcf+V97qiuZs/8MdFrSSNDuJBw0MJithBPFmXyAQ7mmguqKiFIN3cLYQEPawsYjriYXVvHepihRCLsESgMPZ4mN0VvvN8A0Vv+5w+h+9rhnmeZ2aK5JJVVACXA4dddXrVD52pYBhrxVRQZQfPNLAPLH9SahhCGohAi/qYmQB8UUArTOmNaYM3fpAGkjqYhSY/WIJKS+u/Aj99oB9e2oZVB+9N4JbCig28hscmWIPgqQ2sQ/DEAKP5izgVnX+8tBdu/J6/fdQAIZj20n2Y8dJAvtF98NYAd2HeS+F815vhhZd6IGKAEWh1RUQ2gIrfIiKbQMk3EZGDAKwawAF60yLx2wAPUiIrYYCGbZF4LdS65hyeAsF7Nbn9DJXm0q0ygDXf4P52ZA8Eos+zqfjjWE4tKMvnTpYDtO+JfG4GirtTIok2IPBoV3+n/21+iB168Sixkx3G8dZ25po+As7DUcuZdN+THwq4A44OpmFMAdUXwzFqCl4VwBVBEzR0qlUJ4wqY4D/laNs6aD1esqgvX/LdnFpLvwq/3ZsG53VVe7nay4EpAAAAAElFTkSuQmCC') no-repeat;
			background-size: 100% 100%;
		}
		.cart_tool {
			background: url('data:image/jpeg;base64,iVBORw0KGgoAAAANSUhEUgAAADAAAAAwCAYAAABXAvmHAAAAAXNSR0IArs4c6QAABQ5JREFUaAXtmEtoY2UUgPuYJk1bUCipoLFM2sQ6dpSBgFKluFAXs7DqxkHxgbhS8IHiRmdRR0FwREQZKIOoiy4EV74GHVwEwYUupD5qQk3TQQdLK0Odaottk9TvXO653NxX7o0pUzEX/p7zn/c5//kfaUdH+2tXoF2BdgXaFfg/V6BzPyU/Ojp6eHd391ViGtK4mJe7u7ufKZVK55Vmhwfsk0uNE+xLjKOOOHK1Wu1HaCccdGPa5UW8hLTrPXwvdXV1fexBN0j7poVyuVzP2traJitwoLOz84dyuXyDX9B2+r5ZAYJPS/BmcCV7kEG4KrhkMplMqlqtvkY1ki5m84Rz8Xj8eKFQWPYwkbHRfrbhgahvAgT/JJrHqEqggajMra2tX9GZ9tDLKg2foRMIaqGLarBVkNVcZZz1sWclwLEZOgHfFcBR0Vb9kxh92cdxaHIqldrM5/MVLwV8tTYBjq4CbaS+DnKRrOukWYiNIFVNYLNYLC5TwCBZi+fbQmw28WZkgLFDlsYeIOPj4zHMDotpfJUYoTeebwLz8/PbGCqb8Wanp6ddslz9Q+l0+sORkZEzcmqZsh3QJqF9xThl12P+NONrxiMqK7BSqaQB3SYtdP+LvCso04gB6MuCIMD47OysOKn7uOKfgDAF/yj4s8ok8deh3cx4HL07hE6CSeZCv5HpjFxcKr+zs6PtI6TWJUAgRXVCgNcqrpB9crniQE+cgA068DJkjMYGj3Fx9dl09yYBHFgJkMxe7gMrAZJr3QpQYSsBDLtWwFbBf4taCfT29gYeVU5HgXtgYGDA2AOmkisBktq0GfTEkdkQmVgsZkBTvkpx/lZdZDKCs8p/+TwzVNQFAxOYm5v7A6MrooUTVwsRxGn438MugJ+yWT8B/hu8M8PDw18IXQJj/gZjFdkXuRO2hM7mjgOMIxQfkaov+samEsTv40jMw7tV+NzGQzj+XfBWfdls9hDH6E+mvQ+WlpbujWI7cAXEEBWz2oib2dVGUZx5yVJ1q/9ZmUgbWOw1TAAZayPjwNVGXkFFoVEUK4FmWsj3MadBEHRR30Q4eIFb9EHltQgexK6airwCDRPgArNaCEey2YwNpx5bCWnXhaj2GrYQv01/wfC7GK5FNR5BvoaPmcXFxdUIOoZow1NIDcpxl0wmGyas8lHg+vp6VR6PUXRUNnQCqmC+JB9gLpuvSOXeoXLvKz8I8nq9hZZ8DpkjDPld/ElfX9/JZoMXX5ES4E54D52HRdHxvcn5/ZSDVjdF91EIpxl1q0gBvkkkEpPNJqFv8DpnXhOqdzeb+BXl4Vj6td+c3zQ4OPglL8xzyrdD+a2A7qfQ5NaV7wJDcEnmKi6yGrp58MhfXTWCtAngLuUT/P1s7iuAjykN/pTiTgjvNmhGsujMoJvs6enJge+IrN22U7fRPHQCGEqpsf7+/s8E54FmQJN+tfI9oMUj6LOM3YWFhe+Qk30gt71l20M3kNTwHrBpy6PtdplvbGy8RVu8vb29be974Xt+BGjxqPZxDoI/EZwE1zvF4nsaCCCG3sQ4vQaHc9hKOO0R4EVu7MM89M47eTKXI5jT51v0r/PiQ5viEPD9B66PjkEO3UL0rdySD0mwDoMXoN3nF7zIytMZmWOMupuWeYXxfLPBi+3QKyDC8o2NjV3JqXEnaJaqFqn8R2Fv0ImJicTKyso9rMQRAl9G93OS06e0Yb/9p12BdgXaFfhvVeAf8lrWllSlNkQAAAAASUVORK5CYII=') no-repeat;
			background-size: 100% 100%;
		}
		.bottom_btn {
王建威's avatar
王建威 committed
756
			width: 452rpx;
王建威's avatar
王建威 committed
757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779
			height: 68rpx;
			line-height: 68rpx;
			text-align: center;
			border-radius: 8rpx;
			font-size: 28rpx;
		}
		.join_cart {
			color: #fff;
			background-color: #000;
			margin-left: 12rpx;
		}
		.join_buy {
			color: #483E2E;
			background-color: #EADABF;
			font-weight: 500;
			font-family: PingFangSC-Medium,PingFang SC;
		}
	}
	.poupp_content {
		border-radius:24px 24px 0px 0px;
		background-color: #fff;
		padding: 40rpx 0 20rpx;
		color: #212121;
王建威's avatar
王建威 committed
780 781 782 783 784 785 786 787 788
		position: relative;
		.close {
			width: 28rpx;
			height: 28rpx;
			position: absolute;
			right: 48rpx;
			top: 26rpx;
			color: #212121;
		}
王建威's avatar
王建威 committed
789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862
		.poupp_flex {
			display: flex;
			padding-bottom: 40rpx;
			border-bottom: 1px solid #ececec;
			.poupp_img {
				width: 180rpx;
				height: 180rpx;
				margin-right: 20rpx;
			}
			.poupp_goods_name {
				width: 440rpx;
				height: 40rpx;
				line-height: 40rpx;
				font-size: 28rpx;
				overflow: hidden;
				text-overflow: ellipsis;
				white-space: nowrap;
				margin-bottom: 10rpx;
			}
			.poupp_goods_price {
				color: #000;
				font-size: 40rpx;
				line-height: 56rpx;
				.symbol {
					font-size: 28rpx;
					line-height: 40rpx;
				}
				.poupp_label {
					display: inline-block;
					height: 40rpx;
					line-height: 40rpx;
					background-color: #EADABF;
					padding: 0 12rpx;
					color: #483E2E;
					font-size: 22rpx;
					margin-left: 6rpx;
					border-radius: 20rpx;
					position: relative;
					bottom: 6rpx;
				}
			}
		}
		.poupp_nper {
			margin-top: 38rpx;
			font-size: 26rpx;
			text {
				height: 40rpx;
				line-height: 40rpx;
				vertical-align: middle;
			}
			.limit_free {
				padding: 0 12rpx;
				border-radius: 8rpx;
				margin-left: 20rpx;
				color: #AE8A57;
				border: 1px solid #CFAE7F;
				background-color: #FEF4E8;
			}
		}
		.poupp_nper_box {
			margin-top: 22rpx;
			display: flex;
			flex-wrap: wrap;
			text {
				width: 122rpx;
				height: 56rpx;
				line-height: 56rpx;
				border-radius: 28rpx;
				text-align: center;
				border: 1px solid #DCDCDC;
				color: #483E2E;
				font-size: 26rpx;
				margin-right: 20rpx;
			}
王建威's avatar
王建威 committed
863 864 865
			.act {
				border-color: #000000;
			}
王建威's avatar
王建威 committed
866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918
		}
		.poupp_deposit {
			height: 80rpx;
			background-color: #F8F8F8;
			padding: 22rpx 32rpx;
			box-sizing: border-box;
			display: flex;
			justify-content: space-between;
			font-size: 28rpx;
			color: #464646;
			border-radius: 16rpx;
			margin-top: 40rpx;
		}
		.poupp_nper_detail {
			padding: 36rpx 32rpx;
			background-color: #F8F8F8;
			border-radius: 16rpx;
			margin-top: 24rpx;
			view {
				display: flex;
				justify-content: space-between;
				color: #464646;
				font-size: 26rpx;
			}
			view:nth-of-type(2) {
				margin-top: 26rpx;
			}
		}
		.poupp_tips {
			width:100%;
			height:60rpx;
			line-height: 60rpx;
			background:rgba(252,248,240,1);
			border-radius:8rpx;
			color: #A79981;
			font-size: 24rpx;
			overflow: hidden;
			text-overflow: ellipsis;
			white-space: nowrap;
			padding: 0 14rpx 0 24rpx;
			box-sizing: border-box;
			margin-top: 172rpx;
		}
		.poupp_btn {
			width: 702rpx;
			height: 80rpx;
			line-height: 80rpx;
			text-align: center;
			border-radius: 16rpx;
			background-color: #EADABF;
			font-size: 28rpx;
			margin: 20rpx auto 0;
		}
王建威's avatar
王建威 committed
919 920 921 922 923 924 925
		.profile {
			color: #BDBDBD;
			font-size: 26rpx;
			height: 36rpx;
			line-height: 36rpx;
			margin-top: 24rpx;
		}
王建威's avatar
王建威 committed
926
	}
王建威's avatar
王建威 committed
927 928 929
	.no_data {
		font-size: 32rpx;
		padding: 24rpx;
王建威's avatar
王建威 committed
930
	}
王建威's avatar
王建威 committed
931 932 933 934 935 936 937 938 939 940 941
	.sales_box {
		display: flex;
		align-items: center;
		margin-top: 20rpx;
		.sales_name, .sales_input {
			font-size: 26rpx;
		}
		.sales_input {
			padding-left: 16rpx;
		}
	}
王建威's avatar
王建威 committed
942
</style>