setPassword.vue 1.4 KB
<template>
	<view class="page">
		<view class="box">
			<view class="item">
				<view class="title">密码</view>
				<input type="text" placeholder="6-16个字符以内,区分大小写" class="fill">
			</view>
			<view class="item">
				<view class="title">确认密码</view>
				<input type="text" placeholder="请再次输入" class="fill">
			</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;
		align-items: center;
		border-bottom: 1px solid #EAEAEA;
	}
	.title{
		width: 112rpx;
		font-size:28rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(61,69,76,1);
		margin-right: 16rpx;
	}
	.fill{
		width: 400rpx;
		font-size:28rpx;
		font-family:PingFangSC-Medium,PingFang SC;
		font-weight:500;
		color:rgba(189,196,206,1);
	}
	.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>