start-preview.wxss 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. .preview-contain {
  2. height: 100vh;
  3. background: url('https://swkz-1332577016.cos.ap-guangzhou.myqcloud.com/karamay/bg.png') no-repeat center center;
  4. background-size: cover;
  5. overflow: auto;
  6. }
  7. .time-select {
  8. padding: 32rpx;
  9. }
  10. .divider {
  11. width: 698rpx;
  12. height: 4rpx;
  13. background: linear-gradient(90deg, #5B472E 0%, rgba(91, 71, 46, 0) 100%);
  14. opacity: 0.5;
  15. margin-top: 32rpx;
  16. }
  17. .select-moon {
  18. margin-top: 32rpx;
  19. }
  20. .moon-time {
  21. color: #584735;
  22. font-size: 32rpx;
  23. font-weight: bold;
  24. margin-bottom: 32rpx;
  25. display: block;
  26. }
  27. .morning-moon {
  28. display: flex;
  29. flex-direction: column;
  30. gap: 24rpx;
  31. }
  32. .time-card {
  33. position: relative;
  34. background: transparent;
  35. display: flex;
  36. flex-direction: column;
  37. justify-content: center;
  38. align-items: center;
  39. border: 2rpx solid #B1967B;
  40. border-radius: 16rpx;
  41. padding: 32rpx 40rpx;
  42. transition: all 0.3s ease;
  43. }
  44. .time-card.active {
  45. background: rgba(177, 150, 123, 0.4);
  46. border-color: #B1967B;
  47. }
  48. .time-period {
  49. font-size: 32rpx;
  50. font-weight: bold;
  51. color: #584735;
  52. margin-bottom: 8rpx;
  53. }
  54. .time-range {
  55. font-size: 32rpx;
  56. color: #5B472E;
  57. margin-bottom: 16rpx;
  58. }
  59. .availability {
  60. font-size: 24rpx;
  61. color: #5B472E;
  62. }
  63. .check-icon {
  64. position: absolute;
  65. top: 50%;
  66. right: 40rpx;
  67. transform: translateY(-50%);
  68. width: 48rpx;
  69. height: 48rpx;
  70. background: #B1967B;
  71. color: white;
  72. border-radius: 50%;
  73. display: flex;
  74. align-items: center;
  75. justify-content: center;
  76. font-size: 28rpx;
  77. font-weight: bold;
  78. }
  79. .next-btn {
  80. display: flex;
  81. justify-content: center;
  82. align-items: center;
  83. background: #B1967B;
  84. color: white;
  85. border: none;
  86. border-radius: 16rpx;
  87. padding: 32rpx;
  88. font-size: 32rpx;
  89. font-weight: bold;
  90. margin-top: 40rpx;
  91. transition: all 0.3s ease;
  92. }
  93. .next-btn.disabled {
  94. background: #ccc;
  95. }
  96. .next-btn:not(.disabled):active {
  97. background: #9A8169;
  98. }