addCard.vue 1.5 KB
<template>
	<view class="page">
		<view class="title">请绑定持卡人本人的银行卡</view>
		<view class="box">
			<view class="item">
				<text class="name">持卡人</text>
				<input type="text" value="" placeholder="mingzi" class="fill"/>
			</view>
			<view class="item">
				<text class="name">卡号</text>
				<input type="text" value="" placeholder="mingzi" class="fill"/>
			</view>
			<view class="item">
				<text class="name">开户行</text>
				<input type="text" value="" placeholder="mingzi" class="fill"/>
			</view>
			<view class="item">
				<text class="name">手机号</text>
				<input type="text" value="" placeholder="mingzi" class="fill"/>
			</view>
		</view>
	</view>
</template>

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

<style>
	.title{
		font-size:28rpx;
		font-family:PingFangHK-Regular,PingFangHK;
		font-weight:400;
		color:rgba(61,69,76,1);
		line-height: 104rpx;
		padding: 0 40rpx;
		box-sizing: border-box;
	}
	.box{
		background: #fff;
		padding:  0 40rpx;
		box-sizing: border-box;
	}
	.item{
		height: 108rpx;
		display: flex;
		align-items: center;
		border-bottom: 1px solid #EEEEEE;
	}
	.name{
		width: 84rpx;
		font-size:28rpx;
		font-family:PingFangHK-Medium,PingFangHK;
		font-weight:600;
		color:rgba(8,18,31,1);
		margin-right: 16rpx;
	}
	.fill{
		width:232rpx;
		font-size:28rpx;
		font-family:PingFangHK-Regular,PingFangHK;
		font-weight:400;
		color:rgba(91,94,100,1);
	}
</style>