register.vue 2.2 KB
<template>
	<view class="page">
		<view class="box">
			<view class="item">
				<view class="left">
					<view class="title">手机号</view>
					<input type="text" class="fill" placeholder="请输入手机号">
				</view>
				<view class="right">
					
				</view>
			</view>
			<view class="item">
				<view class="left">
					<view class="title">验证码</view>
					<input type="text" class="fill" placeholder="请输入验证码">
				</view>
				<view class="right">
					
				</view>
			</view>
			<view class="item">
				<view class="left">
					<view class="title">短信验证码</view>
					<input type="text" class="fill" placeholder="请再次输入">
				</view>
				<view class="right">
					<view class="codebtn">获取验证码</view>
				</view>
			</view>
		</view>
		<view class="submit">下一步</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {
				
			}
		},
		methods: {
			
		}
	}
</script>

<style>
	page{
		background: #FEFEFE;
		padding-bottom: 128rpx;
		box-sizing: border-box;
	}
	.box{
		margin-top: 10rpx;
		padding: 0 32rpx;
		box-sizing: border-box;    
	}
	.item{
		height: 110rpx;
		display: flex;
		justify-content: space-between;
		align-items: center;
		border-bottom: 1px solid #EAEAEA;
	}
	.left,.right{
		display: flex;
		align-items: center;
	}
	.title{
		width: 140rpx;
		margin-right: 16rpx;
		font-size:28rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(61,69,76,1);
	}
	.fill{
		width: 168rpx;
		font-size:28rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(189,196,206,1);
	}
	.right image{
		width:180rpx;
	}
	.right .codebtn{
		width:180rpx;
		height:60rpx;
		border-radius:30rpx;
		border:2rpx solid rgba(238,238,238,1);
		font-size:28rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(255,148,23,1);
		display: flex;
		justify-content: center;
		align-items: center;
	}
	.submit{
		width:686rpx;
		height:88rpx;
		background: #C29445;
		border-radius: 10rpx;
		font-size:32rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(254,254,254,1);
		line-height:88rpx;
		text-align: center;
		position: fixed;
		left: 0;
		right: 0;
		bottom: 20rpx;
		margin: auto;
	}
</style>
s