broadcast.wxss 710 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. page {
  2. background: #F3F5F9;
  3. }
  4. .form-item picker {
  5. font-size: 28rpx;
  6. color: #666;
  7. width: 500rpx;
  8. height: 70rpx;
  9. box-sizing: border-box;
  10. border-bottom: 2rpx dashed #eee;
  11. }
  12. picker view {
  13. width: 500rpx;
  14. height: 70rpx;
  15. }
  16. .content {
  17. height: 200rpx;
  18. }
  19. .content textarea {
  20. box-sizing: border-box;
  21. padding-top: 20rpx;
  22. line-height: 30rpx;
  23. }
  24. .checkBox {
  25. margin-left: 20rpx;
  26. }
  27. .mask {
  28. width: 100%;
  29. height: 100%;
  30. position: fixed;
  31. top: 0;
  32. left: 0;
  33. background: rgba(0, 0, 0, .4);
  34. }
  35. .dialog {
  36. box-sizing: border-box;
  37. padding: 30rpx 20rpx 30rpx 0;
  38. border-radius: 15rpx;
  39. left: 50rpx;
  40. top: 300rpx;
  41. position: fixed;
  42. width: 650rpx;
  43. background: white;
  44. z-index: 99;
  45. }