ChooseScenario.scss 4.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265
  1. @import '@/utils/common.scss';
  2. .item_choose {
  3. border-width: 4px;
  4. border-color: transparent;
  5. border-style: solid;
  6. margin-left: 46px;
  7. margin-right: 46px;
  8. margin-bottom: 40px;
  9. padding-left: 48px;
  10. padding-right: 40px;
  11. padding-top: 48px;
  12. padding-bottom: 40px;
  13. border-radius: 24px;
  14. background-color: #767676;
  15. color: #fff;
  16. position: relative;
  17. box-sizing: border-box;
  18. display: flex;
  19. flex-direction: column;
  20. }
  21. .item_choose_selected {
  22. border-width: 4px;
  23. border-color: $fastColor;
  24. border-style: solid;
  25. margin-left: 46px;
  26. margin-right: 46px;
  27. margin-bottom: 28px;
  28. padding-left: 48px;
  29. padding-right: 40px;
  30. padding-top: 48px;
  31. padding-bottom: 40px;
  32. border-radius: 24px;
  33. background-color: #767676;
  34. color: #fff;
  35. position: relative;
  36. box-sizing: border-box;
  37. }
  38. .item1 {
  39. border-width: 4px;
  40. border-color: transparent;
  41. border-style: solid;
  42. margin-left: 46px;
  43. margin-right: 46px;
  44. margin-bottom: 28px;
  45. padding-left: 30px;
  46. padding-right: 20px;
  47. padding-top: 40px;
  48. padding-bottom: 40px;
  49. border-radius: 24px;
  50. background-color: #1c1c1c;
  51. color: #fff;
  52. position: relative;
  53. display: flex;
  54. flex-direction: row;
  55. // align-items: center;
  56. box-sizing: border-box;
  57. }
  58. .item_sel1 {
  59. border-color: $fastColor;
  60. position: relative;
  61. }
  62. .choose_item_title {
  63. font-size: 40px;
  64. line-height: 48px;
  65. font-weight: bold;
  66. color: #fff;
  67. letter-spacing: 0;
  68. }
  69. .choose_item_desc {
  70. color: #fff;
  71. opacity: 0.4;
  72. letter-spacing: 0;
  73. font-size: 28px;
  74. line-height: 36px;
  75. font-weight: bold;
  76. }
  77. .item_sel2 {
  78. border-width: 4px;
  79. border-color: $sleepColor;
  80. border-style: solid;
  81. margin-left: 46px;
  82. margin-right: 46px;
  83. margin-bottom: 40px;
  84. padding: 40px;
  85. border-radius: 24px;
  86. box-sizing: border-box;
  87. background-color: #1c1c1c;
  88. color: #fff;
  89. }
  90. .target_title {
  91. margin-top: 24px;
  92. margin-left: 46px;
  93. margin-right: 46px;
  94. color: #fff;
  95. font-weight: bold;
  96. font-size: 48px;
  97. line-height: 72px;
  98. margin-bottom: 24px;
  99. }
  100. .target_desc {
  101. margin-left: 46px;
  102. margin-right: 46px;
  103. color: #fff;
  104. font-size: 32px;
  105. line-height: 48px;
  106. margin-top: 20px;
  107. margin-bottom: 20px;
  108. letter-spacing: 0;
  109. opacity: 0.4;
  110. }
  111. .suggest_footer {
  112. color: #fff;
  113. opacity: 0.4;
  114. margin-left: 46px;
  115. font-size: 20px;
  116. margin-top: 24px;
  117. letter-spacing: 0;
  118. }
  119. .suggest_footer_note {
  120. display: flex;
  121. font-size: 24px;
  122. line-height: 32px;
  123. letter-spacing: 0;
  124. margin-left: 86px;
  125. margin-right: 86px;
  126. color: #fff;
  127. opacity: 0.2;
  128. margin-top: 20px;
  129. margin-bottom: 20px;
  130. }
  131. .suggest_footer_btn {
  132. margin-top: 16px;
  133. height: 72px;
  134. line-height: 72px;
  135. font-size: 28px;
  136. color: #ffffff99;
  137. font-weight: bold;
  138. display: flex;
  139. }
  140. .suggest_item_title {
  141. font-size: 48px;
  142. line-height: 56px;
  143. color: #9E9E9E;
  144. font-weight: bold;
  145. display: flex;
  146. flex-direction: row;
  147. }
  148. .suggest_item_desc {
  149. font-weight: bold;
  150. font-size: 24px;
  151. line-height: 32px;
  152. color: #fff;
  153. opacity: 0.2;
  154. }
  155. .suggest_choose {
  156. display: flex;
  157. flex-direction: row;
  158. align-items: center;
  159. justify-content: space-between;
  160. margin-top: 8px;
  161. }
  162. .suggest_choose_text{
  163. font-size: 32px;
  164. font-weight: bold;
  165. line-height: 48px;
  166. }
  167. .choose_item_check_bg {
  168. position: absolute;
  169. right: 40px;
  170. bottom: 40px;
  171. }
  172. .choose_corner_tag {
  173. position: absolute;
  174. right: -4px;
  175. height: 36px;
  176. top: -18px;
  177. padding-left: 16px;
  178. padding-right: 16px;
  179. color: #000;
  180. letter-spacing: 0;
  181. font-size: 20px;
  182. display: flex;
  183. align-items: center;
  184. justify-content: center;
  185. background-color: $fastColor;
  186. border-top-left-radius: 18px;
  187. border-top-right-radius: 18px;
  188. border-bottom-left-radius: 18px;
  189. font-weight: bold;
  190. }
  191. .suggest_tag {
  192. position: absolute;
  193. right: 40px;
  194. top: 24px;
  195. height: 36px;
  196. padding-left: 16px;
  197. padding-right: 16px;
  198. border-radius: 18px;
  199. font-size: 20px;
  200. display: flex;
  201. align-items: center;
  202. justify-content: center;
  203. color: #000;
  204. font-weight: bold;
  205. }
  206. .suggest_fast_tag_bg {
  207. position: absolute;
  208. right: 40px;
  209. top: 24px;
  210. display: flex;
  211. flex-direction: row;
  212. }
  213. .suggest_fast_tag {
  214. height: 36px;
  215. padding-left: 16px;
  216. padding-right: 16px;
  217. border-radius: 18px;
  218. font-size: 20px;
  219. display: flex;
  220. align-items: center;
  221. justify-content: center;
  222. color: #000;
  223. margin-left: 20px;
  224. background-color: $fastColor;
  225. }
  226. /* #ifdef weapp */
  227. .limit_offer{
  228. background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
  229. }
  230. .fast_sleep_item_text{
  231. background: linear-gradient(90deg, $fastColor 0%, $sleepColor 100%);
  232. -webkit-background-clip: text;
  233. background-clip: text;
  234. color: transparent;
  235. }
  236. /* #endif */
  237. /* #ifdef rn */
  238. /* #endif */