index.css 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. .date-selector {
  2. width: 100%;
  3. font-size: 12px;
  4. color: #333;
  5. }
  6. .popup-box {
  7. min-height: 290px;
  8. background: #FFFFFF;
  9. padding: 0 27upx;
  10. border-radius: 24upx 24upx 0px 0px;
  11. }
  12. .popup-title {
  13. padding: 22upx 0;
  14. text-align: center;
  15. font-weight: 700;
  16. font-size: 26upx;
  17. color: #333333;
  18. border-bottom: 1px solid #EEEEEE;
  19. }
  20. .select-date-wrapper {
  21. margin-bottom: 8px;
  22. display: flex;
  23. justify-content: space-between;
  24. align-items: center;
  25. }
  26. .select-date {
  27. padding: 10px;
  28. flex: 1;
  29. border-radius: 2px;
  30. font-weight: bold;
  31. text-align: center;
  32. /* border: 1px solid rgba(6, 7, 46, 0.05); */
  33. font-size: 30upx;
  34. }
  35. .select-date.active {
  36. /* border-color: #6a7bff; */
  37. color: #449AFF ;
  38. }
  39. .select-date-placeholder {
  40. color: rgba(6, 7, 46, 0.3);
  41. }
  42. .btn-group {
  43. display: flex;
  44. margin: 48rpx 0;
  45. justify-content: space-between;
  46. }
  47. .btn-confirm {
  48. width: 180px;
  49. height: 40px;
  50. line-height: 40px;
  51. background: rgba(33, 58, 255, 0.85);
  52. border-radius: 4px;
  53. font-size: 14px;
  54. color: #fff;
  55. text-align: center;
  56. }
  57. .btn-cancel {
  58. width: 144px;
  59. height: 40px;
  60. line-height: 38px;
  61. text-align: center;
  62. background: #fff;
  63. border-radius: 4px;
  64. border: 1px solid #979797;
  65. font-size: 14px;
  66. color: #06072e;
  67. }