JMApp/pages/duiquan/duiquan.wxss
XiaoMo 0fd71a66ec fix(duiquan): 调整输入框样式及启动成功后的跳转逻辑
调整输入框的样式,增加高度和行高,并修改启动成功后的跳转逻辑,使用 `redirectTo` 替代 `navigateTo`,避免页面堆栈问题
2025-04-17 12:01:25 +08:00

37 lines
531 B
Plaintext

.contain {
box-sizing: border-box;
min-height: 100vh;
background-color: #fafafa;
}
.pic {
width: 100%;
}
.content {
padding: 60rpx 40rpx;
}
.title {
font-size: 36rpx;
line-height: 1;
font-weight: 700;
color: #0056A3;
}
.input {
margin: 30rpx 0;
padding: 0 22rpx;
height: 88rpx;
line-height: 88rpx;
border-radius: 10rpx;
background-color: #fff;
border: 2rpx solid #eee;
box-shadow: 0 6rpx 10rpx rgba(0, 0, 0, 0.1);
color: #333;
}
.tips {
color: #999;
line-height: 2;
font-size: 28rpx;
}