index.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131
  1. .uni-calendar {
  2. /* background-color: #F5F9FF; */
  3. background-color: #0074FF !important;
  4. }
  5. .main {
  6. /* background: #F3F8FF; */
  7. padding: 40rpx 0;
  8. padding-bottom: env(safe-area-inset-bottom);
  9. }
  10. .cur-date {
  11. font-family: DIN, DIN;
  12. font-weight: 600;
  13. font-size: 40rpx;
  14. color: #2A3A5A;
  15. line-height: 40rpx;
  16. text-align: left;
  17. font-style: normal;
  18. padding-left: 32rpx;
  19. }
  20. .close-icon {
  21. width: 48rpx;
  22. height: 48rpx;
  23. position: absolute;
  24. right: 32rpx;
  25. top: 36rpx;
  26. }
  27. .calendar-wrap {
  28. margin-top: 40rpx;
  29. background: #F3F8FF;
  30. /* padding-bottom: 14rpx; */
  31. padding: 0 24rpx 14rpx;
  32. }
  33. .calendar-wrap .director {
  34. text-align: center;
  35. width: 40rpx;
  36. height: 20rpx;
  37. background: rgba(0,0,0,0.3);
  38. border-radius: 12rpx;
  39. margin: 0 auto;
  40. display: flex;
  41. align-items: center;
  42. justify-content: center;
  43. }
  44. .calendar-wrap .director .dot_1 {
  45. width: 16rpx;
  46. height: 12rpx;
  47. background: #FFFFFF;
  48. border-radius: 6rpx;
  49. margin-right: 4rpx;
  50. }
  51. .calendar-wrap .director .dot_2 {
  52. width: 12rpx;
  53. height: 12rpx;
  54. background: #FFFFFF;
  55. }
  56. .calendar-wrap .opc {
  57. opacity: 0.4;
  58. }
  59. .time-wrap {
  60. padding: 32rpx 50rpx;
  61. }
  62. .time-wrap .picker-text {
  63. font-family: PingFangSC, PingFang SC;
  64. font-weight: 500;
  65. font-size: 32rpx;
  66. color: #2A3A5A;
  67. line-height: 40rpx;
  68. text-align: center;
  69. font-style: normal;
  70. }
  71. .time-wrap .item-picker {
  72. font-family: DIN, DIN;
  73. font-weight: bold;
  74. font-size: 40rpx;
  75. color: #2A3A5A;
  76. line-height: 58rpx;
  77. text-align: center;
  78. font-style: normal;
  79. background: #F3F8FF;
  80. border-radius: 0rpx 16rpx 16rpx 0rpx;
  81. }
  82. .time-wrap .item-picker .unit {
  83. font-size: 28rpx;
  84. margin-left: 6rpx;
  85. }
  86. .bottom-row {
  87. display: flex;
  88. align-items: center;
  89. justify-content: space-between;
  90. padding: 0 32rpx;
  91. }
  92. .bottom-row .text {
  93. font-family: DIN, DIN;
  94. font-weight: 500;
  95. font-size: 36rpx;
  96. color: #2A3A5A;
  97. line-height: 32rpx;
  98. text-align: left;
  99. font-style: normal;
  100. }
  101. .custom-button{
  102. background-color: transparent; /* 取消背景颜色 */
  103. border: none; /* 取消边框 */
  104. color: inherit; /* 文字颜色继承 */
  105. padding: 0; /* 取消内边距 */
  106. font-size: inherit; /* 字体大小继承 */
  107. cursor: pointer; /* 鼠标指针设置为指针形状 */
  108. color: #FFFFFF;
  109. font-size: 32rpx;
  110. text-align: center;
  111. background-color: #060809;
  112. border-radius: 40rpx;
  113. height: 80rpx;
  114. line-height: 80rpx;
  115. padding-left: 78rpx;
  116. padding-right: 78rpx;
  117. margin: 0;
  118. width: 336rpx;
  119. }