|                                                                                  |  | <template>	<view class="page">					<image :src="configList.img_1"		class="page-bg"		mode="aspectFill"></image>				<image :src="configList.img_6"		class="logo"		mode="widthFix"></image>				<view class="service">						<view class="top4">				专属品鉴之旅告一段落			</view>						<view class="title">				Genius Journey Club			</view>						<view class="stext">				期待与您的 				<br />				再次见面 				<br />				...			</view>		</view>				<image :src="configList.img_7"		class="logo"		style="margin: 75rpx;"		mode="widthFix"></image>					</view></template>
<script>	export default {		data() {			return {			}		},		onLoad() {		},		methods: {		}	}</script>
<style scoped lang="scss">.page{	.logo{		width: 600rpx;		margin: 150rpx 75rpx;	}	.service{		display: flex;		flex-direction: column;		align-items: center;		text-align: center;		color: #6A3F1F;		.img_2{			margin: 0 auto;			width: 100rpx;		}		.title{			font-weight: 900;			margin: 30rpx 0;		}		.stext{			width: 600rpx;			margin-bottom: 150rpx;			line-height: 50rpx;			font-size: 26rpx;			color: #777;		}	}}</style>
 |