CircadianDetailPopup.scss 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180
  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. }
  13. .detail_popup_subttitle {
  14. font-size: 24px;
  15. line-height: 24px;
  16. color: #fff;
  17. opacity: 0.4;
  18. }
  19. .detail_tabbar {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. margin-top: 32px;
  24. margin-bottom: 32px;
  25. }
  26. .detail_tabitem_nor {
  27. display: flex;
  28. align-items: center;
  29. justify-content: center;
  30. height: 56px;
  31. border-radius: 28px;
  32. padding-left: 22px;
  33. padding-right: 22px;
  34. box-sizing: border-box;
  35. color: #ffffff66;
  36. font-size: 32px;
  37. font-weight: bold;
  38. border-style: solid;
  39. border-color: #d8d8d8;
  40. border-width: 2px;
  41. margin-right: 40px;
  42. }
  43. .detail_tabitem_sel {
  44. display: flex;
  45. align-items: center;
  46. justify-content: center;
  47. height: 56px;
  48. border-radius: 28px;
  49. padding-left: 22px;
  50. padding-right: 22px;
  51. box-sizing: border-box;
  52. color: #1c1c1c;
  53. font-size: 32px;
  54. font-weight: bold;
  55. background-color: #D8D8D8;
  56. border-style: solid;
  57. border-color: #d8d8d8;
  58. border-width: 2px;
  59. margin-right: 40px;
  60. }
  61. .detail_bottom {
  62. display: flex;
  63. margin-top: 28px;
  64. align-items: center;
  65. justify-content: center;
  66. }
  67. .detail_bottom_btn {
  68. display: flex;
  69. align-items: center;
  70. justify-content: center;
  71. width: 578px;
  72. height: 84px;
  73. border-radius: 42px;
  74. color: #090909;
  75. font-size: 32px;
  76. font-weight: bold;
  77. background: linear-gradient(90deg, #00FFFF 0%, #8961F5 100%);
  78. }
  79. .pop_ring_bg {
  80. display: flex;
  81. flex-direction: row;
  82. align-items: center;
  83. border-top-style: solid;
  84. border-top-width: 2px;
  85. border-top-color: #ffffff25;
  86. padding-top: 20px;
  87. padding-bottom: 20px;
  88. }
  89. .pop_overview_bg {
  90. flex-direction: column;
  91. padding-top: 40px;
  92. padding-bottom: 40px;
  93. align-items: flex-start;
  94. }
  95. .pop_duration_bg {
  96. margin-left: 50px;
  97. display: flex;
  98. flex-direction: column;
  99. flex: 1;
  100. }
  101. .pop_duration_title {
  102. font-size: 32px;
  103. line-height: 32px;
  104. color: #fff;
  105. opacity: 0.6;
  106. font-weight: 400;
  107. }
  108. .pop_duration_value {
  109. margin-top: 2px;
  110. font-size: 36px;
  111. line-height: 36px;
  112. font-weight: 500;
  113. margin-bottom: 12px;
  114. }
  115. .pop_duration_txt{
  116. font-size: 48px;
  117. line-height: 48px;
  118. font-weight: bold;
  119. flex: 1;
  120. display: flex;
  121. color: #fff;
  122. }
  123. .minus{
  124. width: 72px;
  125. height: 72px;
  126. border-top-left-radius: 12px;
  127. border-bottom-left-radius: 12px;
  128. display: flex;
  129. align-items: center;
  130. justify-content: center;
  131. }
  132. .plus{
  133. width: 72px;
  134. height: 72px;
  135. border-top-right-radius: 12px;
  136. border-bottom-right-radius: 12px;
  137. display: flex;
  138. align-items: center;
  139. justify-content: center;
  140. }
  141. .arrow2 {
  142. width: 40px;
  143. height: 40px;
  144. opacity: 0.2;
  145. }
  146. .countdown_time_bg{
  147. width: 200px;
  148. display: flex;
  149. flex-direction: column;
  150. }
  151. .countdown_time_bg .title{
  152. font-size: 24px;
  153. line-height: 32px;
  154. color: #fff;
  155. opacity: 0.6;
  156. }
  157. .countdown_time_bg .value{
  158. font-size: 36px;
  159. line-height: 48px;
  160. font-weight: bold;
  161. }