CircadianDetailPopup.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230
  1. .detail_container {
  2. padding-left: 46px;
  3. padding-right: 46px;
  4. padding-top: 40px;
  5. padding-bottom: 80px;
  6. }
  7. .detail_popup_title {
  8. color: #fff;
  9. font-weight: bold;
  10. font-size: 48px;
  11. line-height: 48px;
  12. height: 48px;
  13. }
  14. .detail_popup_subttitle {
  15. font-size: 24px;
  16. line-height: 24px;
  17. color: #fff;
  18. opacity: 0.4;
  19. }
  20. .detail_tabbar {
  21. display: flex;
  22. flex-direction: row;
  23. align-items: center;
  24. margin-top: 32px;
  25. margin-bottom: 32px;
  26. }
  27. .detail_tabitem_nor {
  28. display: flex;
  29. align-items: center;
  30. justify-content: center;
  31. height: 56px;
  32. border-radius: 28px;
  33. padding-left: 22px;
  34. padding-right: 22px;
  35. box-sizing: border-box;
  36. color: #ffffff66;
  37. font-size: 32px;
  38. font-weight: bold;
  39. border-style: solid;
  40. border-color: #d8d8d8;
  41. border-width: 2px;
  42. margin-right: 40px;
  43. }
  44. .detail_tabitem_sel {
  45. display: flex;
  46. align-items: center;
  47. justify-content: center;
  48. height: 56px;
  49. border-radius: 28px;
  50. padding-left: 22px;
  51. padding-right: 22px;
  52. box-sizing: border-box;
  53. color: #1c1c1c;
  54. font-size: 32px;
  55. font-weight: bold;
  56. background-color: #D8D8D8;
  57. border-style: solid;
  58. border-color: #d8d8d8;
  59. border-width: 2px;
  60. margin-right: 40px;
  61. }
  62. .detail_bottom {
  63. display: flex;
  64. margin-top: 28px;
  65. align-items: center;
  66. justify-content: center;
  67. }
  68. /* #ifdef weapp */
  69. .detail_bottom_btn {
  70. display: flex;
  71. align-items: center;
  72. justify-content: center;
  73. width: 578px;
  74. height: 84px;
  75. border-radius: 42px;
  76. color: #090909;
  77. font-size: 32px;
  78. font-weight: bold;
  79. background: linear-gradient(90deg, #00FFFF 0%, #8961F5 100%);
  80. }
  81. /* #endif */
  82. /* #ifdef rn */
  83. .detail_bottom_btn {
  84. display: flex;
  85. align-items: center;
  86. justify-content: center;
  87. width: 578px;
  88. height: 84px;
  89. border-radius: 42px;
  90. color: #090909;
  91. font-size: 32px;
  92. font-weight: bold;
  93. }
  94. /* #endif */
  95. .pop_ring_bg {
  96. display: flex;
  97. flex-direction: row;
  98. align-items: center;
  99. border-top-style: solid;
  100. border-top-width: 2px;
  101. border-top-color: #ffffff25;
  102. padding-top: 20px;
  103. padding-bottom: 20px;
  104. }
  105. .pop_overview_bg {
  106. flex-direction: column;
  107. padding-top: 40px;
  108. padding-bottom: 40px;
  109. align-items: flex-start;
  110. }
  111. .pop_duration_bg {
  112. margin-left: 50px;
  113. display: flex;
  114. flex-direction: column;
  115. flex: 1;
  116. }
  117. .pop_duration_title {
  118. font-size: 32px;
  119. line-height: 32px;
  120. color: #fff;
  121. opacity: 0.6;
  122. font-weight: 400;
  123. }
  124. .pop_duration_value {
  125. margin-top: 2px;
  126. font-size: 36px;
  127. line-height: 36px;
  128. font-weight: 500;
  129. margin-bottom: 12px;
  130. }
  131. .pop_duration_txt{
  132. font-size: 48px;
  133. line-height: 48px;
  134. font-weight: bold;
  135. flex: 1;
  136. display: flex;
  137. color: #fff;
  138. }
  139. .minus{
  140. width: 72px;
  141. height: 72px;
  142. border-top-left-radius: 12px;
  143. border-bottom-left-radius: 12px;
  144. display: flex;
  145. align-items: center;
  146. justify-content: center;
  147. }
  148. .plus{
  149. width: 72px;
  150. height: 72px;
  151. border-top-right-radius: 12px;
  152. border-bottom-right-radius: 12px;
  153. display: flex;
  154. align-items: center;
  155. justify-content: center;
  156. }
  157. .arrow2 {
  158. width: 40px;
  159. height: 40px;
  160. opacity: 0.4;
  161. }
  162. .countdown_time_bg{
  163. width: 240px;
  164. display: flex;
  165. flex-direction: column;
  166. }
  167. .countdown_time_bg .title{
  168. font-size: 24px;
  169. line-height: 32px;
  170. color: #fff;
  171. opacity: 0.6;
  172. }
  173. .countdown_time_bg .value{
  174. font-size: 36px;
  175. line-height: 48px;
  176. font-weight: bold;
  177. }
  178. .free {
  179. height: 36px;
  180. line-height: 35px;
  181. border-radius: 18px;
  182. font-size: 20px;
  183. display: flex;
  184. // align-items: center;
  185. // justify-content: center;
  186. padding-left: 16px;
  187. padding-right: 16px;
  188. margin-left: 6px;
  189. }
  190. .day_night_pop_location{
  191. color: #fff;
  192. font-size: 24px;
  193. line-height: 24px;
  194. opacity: 0.6;
  195. }
  196. .day_night_pop_desc{
  197. color: #fff;
  198. opacity: 0.4;
  199. font-size: 20px;
  200. line-height: 28px;
  201. }
  202. .day_night_pop_choose{
  203. color: #fff;
  204. font-size: 20px;
  205. line-height: 32px;
  206. }