You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
<template> <view class="content"> <image class="img" src="../../static/images/register.png"></image> <button class="btn" hover-class="lf-opacity">点击授权注册</button> <view class="desc"> <text>已阅读并同意《</text> <text class="lf-color-primary">相亲交友服务协议</text> <text>》</text> </view> </view></template>
<script> export default { data(){ return { } }, onLoad(){ }, methods: { } }</script>
<style> page{ overflow: hidden; }</style><style lang="scss" scoped="scoped"> .content{ width: 750rpx; height: max-content; box-sizing: border-box; padding: 30rpx 32rpx; display: flex; justify-content: center; flex-direction: column; align-items: center; .img{ width: 686rpx; height: 457rpx; } .btn{ margin-top: 60rpx; width: 686rpx; background-color: #e21196; border-radius: 12rpx; color: #FFFFFF; } .desc{ margin-top: 30rpx; font-size: 24rpx; color: #777777; } }</style>
|