1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- page {
- background: #F3F5F9;
- }
- .form-item picker {
- font-size: 28rpx;
- color: #666;
- width: 500rpx;
- height: 70rpx;
- box-sizing: border-box;
- border-bottom: 2rpx dashed #eee;
- }
- picker view {
- width: 500rpx;
- height: 70rpx;
- }
- .content {
- height: 200rpx;
- }
- .content textarea {
- box-sizing: border-box;
- padding-top: 20rpx;
- line-height: 30rpx;
- }
- .checkBox {
- margin-left: 20rpx;
- }
- .mask {
- width: 100%;
- height: 100%;
- position: fixed;
- top: 0;
- left: 0;
- background: rgba(0, 0, 0, .4);
- }
- .dialog {
- box-sizing: border-box;
- padding: 30rpx 20rpx 30rpx 0;
- border-radius: 15rpx;
- left: 50rpx;
- top: 300rpx;
- position: fixed;
- width: 650rpx;
- background: white;
- z-index: 99;
- }
|