detePicker.scss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. .detePickerHeader {
  2. position: relative;
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. width: 750rpx;
  7. height: 100rpx;
  8. padding: 0 30rpx;
  9. box-sizing: border-box;
  10. text {
  11. font-size: 28rpx;
  12. font-family: PingFang SC-Regular, PingFang SC;
  13. color: var(--assist);
  14. }
  15. .type {
  16. display: flex;
  17. width: 384rpx;
  18. height: 80rpx;
  19. border: 1rpx solid var(--assist);
  20. box-sizing: border-box;
  21. position: absolute;
  22. top: 50%;
  23. left: 50%;
  24. transform: translate(-50%, -50%);
  25. border-radius: 4rpx;
  26. overflow: hidden;
  27. .option {
  28. height: 100%;
  29. width: 50%;
  30. padding: 10rpx 0 0 20rpx;
  31. box-sizing: border-box;
  32. font-size: 20rpx;
  33. font-family: PingFang SC-Regular, PingFang SC;
  34. color: var(--assist);
  35. .time {
  36. margin-top: 4rpx;
  37. }
  38. }
  39. .active-op {
  40. background-color: var(--assist);
  41. color: #fff;
  42. }
  43. }
  44. }