index_time.scss 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269
  1. .page_container {
  2. flex: 1;
  3. background-color: #fff;
  4. align-items: center;
  5. padding-top: 200px;
  6. }
  7. .btn_bg {
  8. display: flex;
  9. flex-direction: row;
  10. align-items: center;
  11. justify-content: center;
  12. width: 500px;
  13. height: 120px;
  14. background-color: #fff;
  15. border-radius: 60px;
  16. box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
  17. margin-top: 88px;
  18. position: relative;
  19. }
  20. .footer {
  21. position: absolute;
  22. bottom: 96px;
  23. display: flex;
  24. flex-direction: row;
  25. align-items: center;
  26. justify-content: center;
  27. }
  28. .footer_detail {
  29. flex-direction: row;
  30. align-items: center;
  31. }
  32. .footer_text {
  33. // font-weight: bold;
  34. font-size: 28px;
  35. color: #CACACA;
  36. }
  37. .footer_icon {
  38. width: 28px;
  39. height: 28px;
  40. }
  41. .ring_center {
  42. position: absolute;
  43. left: 0;
  44. right: 0;
  45. top: 0;
  46. bottom: 0;
  47. align-items: center;
  48. justify-content: center;
  49. }
  50. .sun {
  51. width: 48px;
  52. height: 48px;
  53. // background-color: red;
  54. // margin-top: 134px;
  55. margin-top: -16px;
  56. }
  57. .time {
  58. margin-top: 0px;
  59. font-weight: 700;
  60. font-size: 72px;
  61. color: #CACACA;
  62. // background-color: red;
  63. }
  64. .date1 {
  65. margin-top: 0px;
  66. font-weight: 500;
  67. font-size: 32px;
  68. // line-height: 36px;
  69. letter-spacing: -0.5;
  70. color: #CACACA;
  71. // background-color: red;
  72. padding-bottom: 6px;
  73. }
  74. .location {
  75. flex-direction: row;
  76. align-items: center;
  77. justify-content: center;
  78. margin-top: 124px;
  79. }
  80. .location_icon {
  81. width: 32px;
  82. height: 32px;
  83. }
  84. .location_text {
  85. font-weight: bold;
  86. color: #CACACA;
  87. font-size: 40px;
  88. margin-left: 8px;
  89. }
  90. .timezone {
  91. font-size: 24px;
  92. font-weight: bold;
  93. color: #CACACA;
  94. }
  95. .modal_bg {
  96. background-color: #EBEBEB;
  97. padding-bottom: 80px;
  98. padding-top: 60px;
  99. border-top-left-radius: 36px;
  100. border-top-right-radius: 36px;
  101. }
  102. .check {
  103. width: 48px;
  104. height: 48px;
  105. }
  106. .language_content {
  107. margin-left: 86px;
  108. margin-right: 46px;
  109. margin-top: 20px;
  110. display: flex;
  111. flex-direction: column;
  112. }
  113. .dst_content {
  114. margin-left: 20px;
  115. margin-right: 20px;
  116. flex-direction: row;
  117. }
  118. .dst_item {
  119. flex-direction: row;
  120. margin-bottom: 40px;
  121. }
  122. .dst_card {
  123. background-color: #fff;
  124. border-radius: 36px;
  125. display: flex;
  126. flex-direction: column;
  127. align-items: center;
  128. margin-right: 36px;
  129. width: 240px;
  130. padding-top: 20px;
  131. padding-bottom: 20px;
  132. }
  133. .language_item {
  134. flex-direction: row;
  135. align-items: center;
  136. justify-content: space-between;
  137. height: 96px;
  138. }
  139. .language_text {
  140. color: #262626;
  141. font-size: 28px;
  142. }
  143. .line {
  144. background-color: #262626;
  145. opacity: 0.2;
  146. height: 2px;
  147. transform: scaleY(0.5);
  148. }
  149. .month {
  150. color: #1C1C1C;
  151. font-size: 28px;
  152. line-height: 40px;
  153. }
  154. .week {
  155. color: #1C1C1C;
  156. font-size: 28px;
  157. line-height: 40px;
  158. }
  159. .day {
  160. font-size: 84px;
  161. line-height: 92px;
  162. color: #1C1C1C;
  163. font-weight: bold;
  164. }
  165. .year {
  166. font-size: 32px;
  167. line-height: 40px;
  168. color: #EAE9E9;
  169. }
  170. .dst_title {
  171. font-size: 36px;
  172. line-height: 48px;
  173. color: #1C1C1C;
  174. font-weight: bold;
  175. margin-top: 20px;
  176. }
  177. .dst_desc {
  178. font-size: 28px;
  179. line-height: 40px;
  180. margin-top: 10px;
  181. color: #9E9E9E;
  182. }
  183. .dst_note {
  184. color: #9E9E9E;
  185. font-size: 16px;
  186. line-height: 28px;
  187. }
  188. .history_item {
  189. display: flex;
  190. flex-direction: row;
  191. align-items: center;
  192. justify-content: space-between;
  193. height: 96px;
  194. margin-left: 66px;
  195. margin-right: 66px;
  196. border-bottom: solid 2px rgba(38, 38, 38, 0.2);
  197. }
  198. .btn_img_bg {
  199. width: 558px;
  200. height: 180px;
  201. }
  202. .btn_bg2 {
  203. margin-top: 20px;
  204. position: relative;
  205. }
  206. .more {
  207. width: 48px;
  208. height: 48px;
  209. position: absolute;
  210. right: 60px;
  211. top: 60px;
  212. }
  213. .btn_text_bg {
  214. left: 0;
  215. right: 0;
  216. top: 0;
  217. height: 160px;
  218. position: absolute;
  219. align-items: center;
  220. justify-content: center;
  221. display: flex;
  222. }
  223. .btn_text {
  224. color: #CACACA;
  225. font-weight: bold;
  226. font-size: 40px;
  227. text-align: center;
  228. display: flex;
  229. }