| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- <template>
- <view class="content">
- <view class="box">
- <view class="item ">
- <text>姓名</text>
- <input type="text" value="" placeholder="请输入真实姓名" />
- </view>
- <view class="item top">
- <text>银行卡号</text>
- <input type="text" value="" placeholder="请输入银行卡账号" />
- </view>
- <view class="item">
- <text>所属银行</text>
- <input type="text" value="" placeholder="请输入银行" />
- </view>
- </view>
- <view class="button">确认</view>
- </view>
- </template>
- <script>
- export default {
- data() {
- return {};
- }
- };
- </script>
- <style lang="scss">
- page,
- .content {
- height: 100%;
- padding: 0;
- margin: 0;
- }
- .top {
- border-top: 1rpx solid #f3f3f3;
- border-bottom: 1rpx solid #f3f3f3;
- }
- .box {
- background: #ffffff;
- margin: 20rpx 0 70rpx 0;
- .item {
- display: flex;
- align-items: center;
- text {
- margin: 0 40rpx 0 25rpx;
- width: 150rpx;
- font-size: 30rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #333333;
- line-height: 100rpx;
- }
- input {
- font-size: 28rpx;
- font-family: PingFang SC;
- font-weight: 400;
- color: #999999;
- line-height: 100rpx;
- }
- }
- }
- .button {
- text-align: center;
- width: 560rpx;
- height: 80rpx;
- background: linear-gradient(0deg, #2e58ff, #32c6ff);
- border-radius: 40rpx;
- font-size: 30rpx;
- font-family: PingFangSC;
- font-weight: 500;
- color: #ffffff;
- line-height: 80rpx;
- margin: 0 auto;
- }
- </style>
|