index.css 903 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. .date-selector {
  2. width: 100%;
  3. font-size: 12px;
  4. color: #333;
  5. }
  6. .select-date-wrapper {
  7. margin-bottom: 8px;
  8. display: flex;
  9. justify-content: space-between;
  10. align-items: center;
  11. }
  12. .select-date {
  13. padding: 10px;
  14. flex: 1;
  15. border-radius: 2px;
  16. border: 1px solid rgba(6, 7, 46, 0.05);
  17. font-size: 12px;
  18. }
  19. .select-date.active {
  20. border-color: #6a7bff;
  21. }
  22. .select-date-placeholder {
  23. color: rgba(6, 7, 46, 0.3);
  24. }
  25. .btn-group {
  26. display: flex;
  27. margin: 48rpx 0;
  28. justify-content: space-between;
  29. }
  30. .btn-confirm {
  31. width: 180px;
  32. height: 40px;
  33. line-height: 40px;
  34. background: rgba(33, 58, 255, 0.85);
  35. border-radius: 4px;
  36. font-size: 14px;
  37. color: #fff;
  38. text-align: center;
  39. }
  40. .btn-cancel {
  41. width: 144px;
  42. height: 40px;
  43. line-height: 38px;
  44. text-align: center;
  45. background: #fff;
  46. border-radius: 4px;
  47. border: 1px solid #979797;
  48. font-size: 14px;
  49. color: #06072e;
  50. }