<template>
	<view class="flex-col page">
	  <text class="self-center text">预约须知</text>
	  <view class="flex-col self-stretch group">
	    <text class="font">
	      1.成功预约的顾客需按照预定时间前往店内挑选相应级别的服装。为确保衣物在体验过程中的完好无损,顾客需根据所选服装的级别补缴尾款以及相应的押金。拍摄结束后,店铺将依据衣物的实际状况评估是否扣除押金。
	    </text>
	    <text class="mt-14 font">
	      2.其中部分物品商家可提供,属于增值服务(如一次性隐形眼镜、
	      一次性粉扑等属于服务费以外的赠送服务,买家可选择自带用品,不影响服务价格),需要买家自己准备的,客服需要提前告诉买家(如胸贴等贴身物品)
	    </text>
	    <text class="mt-14 font">
	      3.用户可以在预约的试穿时间内到店试穿预定的服装。试穿时请小心爱护服装,避免弄脏或损坏。如果试穿后发现尺码不合适或者对服装不满意,可在符合规定的时间内联系客服进行更换或者取消订单。
	    </text>
	  </view>
	  <view @click="closeBookingTips" class="flex-col justify-start items-center self-stretch text-wrapper">
	    <text class="text_2">我知道了</text>
	  </view>
	</view>
</template>

<script setup lang="ts">
import emitter from '../../../utils/emitter';
	const closeBookingTips = () => {
		emitter.emit('closeBookingTips')
	}
</script>

<style scoped lang="scss">
	.page {
	  padding: 41.67rpx 62.5rpx;
	  background-color: #ffffff;
	  border-radius: 41.1rpx;
	  box-shadow: 0rpx 8.33rpx 8.33rpx #00000061;
	  width: 100%;
	  overflow-y: auto;
	  overflow-x: hidden;
	  height: 100%;
	}
	.text {
	  color: #000000;
	  font-size: 37.5rpx;
	  font-family: FZSongKeBenXiuKaiS-R-GB;
	  line-height: 34.42rpx;
	}
	.group {
	  margin-top: 33.33rpx;
	}
	.font {
	  font-size: 29.17rpx;
	  font-family: FZSongKeBenXiuKaiS-R-GB;
	  line-height: 35.42rpx;
	  color: #323232;
	}
	.text-wrapper {
	  margin: 50rpx 20.83rpx 0 4.17rpx;
	  padding: 25rpx 0;
	  background-color: #e79ea1;
	  border-radius: 83.33rpx;
	}
	.text_2 {
	  color: #ffffff;
	  font-size: 33.33rpx;
	  font-family: FZSongKeBenXiuKaiS-R-GB;
	  line-height: 32.17rpx;
	}
	@import url(../../../common/css/global.css);
</style>