tuijianren.vue 1.7 KB
<template>
	<view class="box">
		<view class="bangdingbox">
			<view class="bangtitle">绑定推荐人</view>
			<view class="tuiphone">
				<input placeholder='请输入推荐人手机号' placeholder-class='tuishouji' />
			</view>
			<view class="tuiwarn">该推荐人不存在,请重新输入</view>

			<view class="tuifoot">
				<view class="tuifootleft">取消</view>
				<view class="tuifootright">确定</view>
			</view>
		</view>
	</view>
</template>

<script>
	export default {
		data() {
			return {

			}
		},
		methods: {

		}
	}
</script>

<style>
	.bangdingbox {
		width: 686rpx;
		background: #fff;
		margin: 200rpx auto 0;
		padding: 58rpx 40rpx;
		box-sizing: border-box;
		border-radius: 10rpx;
	}

	.bangtitle {
		color: #06121E;
		font-size: 44rpx;
		font-weight: bold;
	}

	.tuiphone {
		width: 550rpx;
		border-bottom: 1rpx solid #EBEBEB;
		padding: 36rpx 0;
		box-sizing: border-box;
		margin-top: 80rpx;

	}

	.tuiphone input {
		color: #D2D2D2;
		font-size: 32rpx;
		text-align: center
	}

	.tuishouji {
		color: #D2D2D2;
		font-size: 32rpx;
	}

	.tuiwarn {
		color: #CE1500;
		font-size: 26rpx;
		margin-top: 20rpx;
	}

	.tuifoot {
		margin-top: 110rpx;
		display: flex;
		justify-content: space-between;
		align-items: center
	}

	.tuifootleft {
		width: 254rpx;
		height: 100rpx;
		border: 2rpx solid rgba(243, 152, 0, 1);
		opacity: 1;
		border-radius: 10rpx;
		color: #F39800;
		font-size: 32rpx;
		text-align: center;
		line-height: 100rpx;
	}

	.tuifootright {
		width: 254rpx;
		height: 100rpx;
		background: rgba(243, 152, 0, 1);
		box-shadow: 0rpx 4rpx 18rpx rgba(0, 0, 0, 0.04);
		opacity: 1;
		border-radius: 10rpx;
		color: #fff;
		font-size: 32rpx;
		text-align: center;
		line-height: 100rpx;
	}
</style>