index.module.scss 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. .A3selectDay {
  2. :global {
  3. .A3main {
  4. padding: 6% 0;
  5. height: calc(100% - 60px);
  6. .A3list {
  7. width: 100%;
  8. height: calc(100% - 80px);
  9. margin-bottom: 20px;
  10. & > div {
  11. height: 100%;
  12. overflow-y: auto;
  13. background-color: #fffaf3;
  14. .A3row {
  15. &:nth-of-type(2n) {
  16. background-color: #fff;
  17. }
  18. width: 100%;
  19. height: 150px;
  20. padding: 24px;
  21. .A3R1 {
  22. color: var(--themeColor);
  23. font-size: 18px;
  24. font-weight: 700;
  25. margin-bottom: 15px;
  26. }
  27. .A3R2 {
  28. display: flex;
  29. & > div {
  30. margin-right: 14px;
  31. width: 130px;
  32. height: 60px;
  33. border-radius: 4px;
  34. border: 1px solid #d9d9d9;
  35. color: #303030;
  36. font-size: 18px;
  37. display: flex;
  38. justify-content: center;
  39. align-items: center;
  40. }
  41. .A3ac {
  42. background-color: var(--themeColor);
  43. color: #fff;
  44. }
  45. .A3no {
  46. background-color: #d9d9d9;
  47. pointer-events: none;
  48. color: #aeaeae;
  49. }
  50. }
  51. }
  52. }
  53. }
  54. }
  55. .A3mainNoBtn {
  56. #ZFlooBtn {
  57. background-color: #d9d9d9;
  58. pointer-events: none;
  59. color: #aeaeae;
  60. }
  61. }
  62. }
  63. }