time-pickers.css 950 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. /* components/time-pickers/time-pickers.wxss */
  2. .container {
  3. font-size: 28rpx;
  4. }
  5. .propTimeMain .propTop {
  6. padding: 20rpx 20rpx;
  7. display: flex;
  8. }
  9. .propTimeMain .propTop .expand {
  10. flex: 1;
  11. text-align: center;
  12. }
  13. .propTimeMain .propTop .noBtn {
  14. color: #666;
  15. width: 100rpx;
  16. }
  17. .propTimeMain .propTop .okBtn {
  18. color: #0084ff;
  19. width: 100rpx;
  20. text-align: right;
  21. }
  22. /* 弹出框 */
  23. .modals {
  24. position: fixed;
  25. z-index: 99;
  26. top: 0;
  27. left: 0;
  28. right: 0;
  29. bottom: 0;
  30. }
  31. .mask {
  32. position: absolute;
  33. z-index: 110;
  34. top: 0;
  35. left: 0;
  36. right: 0;
  37. bottom: 0;
  38. background-color: rgba(0, 0, 0, 0.5);
  39. opacity: 0;
  40. }
  41. .content {
  42. position: absolute;
  43. z-index: 120;
  44. bottom: 0;
  45. left: 0;
  46. right: 0;
  47. height: 580rpx;
  48. background-color: #fff;
  49. }
  50. /*动画前初始位置*/
  51. .bottom-pos {
  52. -webkit-transform: translateY(100%);
  53. transform: translateY(100%);
  54. }