refactor: 优化页面样式和交互逻辑 fix: 修复洗车券列表和详情页的数据展示问题 style: 调整用户页面按钮样式和布局 chore: 移除无用页面和代码,更新项目配置 docs: 更新单次启动页面的使用说明和注意事项 perf: 优化网络请求和数据处理逻辑 build: 更新依赖和配置文件 test: 更新测试用例以适应新功能 ci: 调整CI配置以适应新项目结构
34 lines
475 B
Plaintext
34 lines
475 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: 22rpx;
|
|
border-radius: 10rpx;
|
|
background-color: #fff;
|
|
border: 2rpx solid #eee;
|
|
box-shadow: 0 6rpx 10rpx rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.tips {
|
|
color: #999;
|
|
line-height: 2;
|
|
font-size: 28rpx;
|
|
} |