record_time.scss 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299
  1. .time_card_bg {
  2. display: flex;
  3. flex-direction: row;
  4. padding-left: 40px;
  5. padding-right: 40px;
  6. justify-content: space-between;
  7. box-sizing: border-box;
  8. width: 750px;
  9. margin-top: 170px;
  10. }
  11. .time_card {
  12. width: 320px;
  13. border-radius: 24px;
  14. background-color: rgba($color: #ffffff, $alpha: 0.25);
  15. padding: 30px 0;
  16. box-sizing: border-box;
  17. display: flex;
  18. flex-direction: column;
  19. align-items: center;
  20. }
  21. .progress_card {
  22. display: flex;
  23. flex-direction: column;
  24. align-items: center;
  25. overflow: hidden;
  26. width: 698px;
  27. padding-bottom: 60px;
  28. border-radius: 84px;
  29. background-color: rgba($color: #ffffff, $alpha: 0.25);
  30. position: relative;
  31. z-index: 1;
  32. }
  33. .eat_card {
  34. width: 698px;
  35. height: 156px;
  36. background-color: rgba($color: #ffffff, $alpha: 0.25);
  37. position: relative;
  38. border-radius: 42px;
  39. display: flex;
  40. flex-direction: column;
  41. align-items: center;
  42. justify-content: center;
  43. margin-top: 26px;
  44. }
  45. .eat_card_arrow {
  46. position: absolute;
  47. right: 30px;
  48. top: 0;
  49. bottom: 0;
  50. display: flex;
  51. align-items: center;
  52. justify-content: center;
  53. }
  54. .operate_content {
  55. display: flex;
  56. flex-direction: row;
  57. margin-bottom: 40px;
  58. }
  59. .share_operate_content {
  60. display: flex;
  61. flex-direction: row;
  62. margin-bottom: 40px;
  63. height: 172px;
  64. margin-top: -40px;
  65. }
  66. .operate_item_index {
  67. display: flex;
  68. flex-direction: column;
  69. align-items: center;
  70. justify-content: center;
  71. width: 320px;
  72. border-radius: 28px;
  73. height: 172px;
  74. position: relative;
  75. }
  76. .card_highlight {
  77. position: absolute;
  78. left: 0;
  79. right: 0;
  80. top: 0;
  81. bottom: 0;
  82. border-radius: 28px;
  83. }
  84. .start_card_show {
  85. background-color: rgba($color: #ffffff, $alpha: 0.5);
  86. animation: highlightShowAni 3s linear forwards;
  87. opacity: 0;
  88. }
  89. .end_card_show {
  90. background-color: rgba($color: #ffffff, $alpha: 0.25);
  91. animation: highlightShowAni 3s linear forwards;
  92. opacity: 0;
  93. }
  94. .start_card_hide {
  95. background-color: rgba($color: #ffffff, $alpha: 0.5);
  96. animation: highlightHideAni 0.3s 0.1s linear forwards;
  97. opacity: 1;
  98. }
  99. .end_card_hide {
  100. background-color: rgba($color: #ffffff, $alpha: 0.25);
  101. animation: highlightHideAni 0.3s 0.1s linear forwards;
  102. opacity: 1;
  103. }
  104. @keyframes highlightShowAni {
  105. 0% {
  106. opacity: 0;
  107. }
  108. 10% {
  109. opacity: 1;
  110. }
  111. 90% {
  112. opacity: 1;
  113. }
  114. 100% {
  115. opacity: 0;
  116. }
  117. }
  118. @keyframes highlightHideAni {
  119. 0% {
  120. opacity: 1;
  121. }
  122. 100% {
  123. opacity: 0;
  124. }
  125. }
  126. .share_icon {
  127. position: absolute;
  128. right: 48px;
  129. top: 48px;
  130. }
  131. /* #ifdef weapp */
  132. .share_bg {
  133. position: fixed;
  134. left: 0;
  135. top: 0;
  136. width: 100vw;
  137. height: 100vh;
  138. z-index: 100;
  139. background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
  140. display: flex;
  141. flex-direction: column;
  142. align-items: center;
  143. justify-content: center;
  144. }
  145. .navi_bar {
  146. position: fixed;
  147. left: 0;
  148. right: 0;
  149. top: 0;
  150. }
  151. /* #endif */
  152. /* #ifdef rn */
  153. .share_bg {
  154. position: absolute;
  155. left: 0;
  156. top: 0;
  157. width: 100%;
  158. height: 100%;
  159. z-index: 100;
  160. display: flex;
  161. flex-direction: column;
  162. align-items: center;
  163. justify-content: center;
  164. }
  165. .navi_bar {
  166. position: absolute;
  167. left: 0;
  168. right: 0;
  169. top: 0;
  170. }
  171. /* #endif */
  172. .share_card {
  173. width: 698px;
  174. height: 932px;
  175. display: flex;
  176. border-radius: 84px;
  177. margin-bottom: 26px;
  178. flex-direction: column;
  179. overflow: hidden;
  180. align-items: center;
  181. }
  182. .share_canvas {
  183. position: absolute;
  184. top: -1000px;
  185. }
  186. .share_card2 {
  187. width: 738px;
  188. height: 932px;
  189. display: flex;
  190. border-radius: 84px;
  191. margin-bottom: 26px;
  192. flex-direction: column;
  193. overflow: hidden;
  194. align-items: center;
  195. animation: heightAni 0.3s 0.1s linear forwards;
  196. }
  197. @keyframes heightAni {
  198. 0% {
  199. height: 932px;
  200. }
  201. 100% {
  202. height: 892px;
  203. }
  204. }
  205. .shareBtnAni {
  206. opacity: 0;
  207. animation: showAni 0.1s 0.1s linear forwards;
  208. }
  209. .eatBtnAni {
  210. opacity: 0;
  211. animation: showAni 0.1s 0.2s linear forwards;
  212. }
  213. .momentBtnAni {
  214. opacity: 0;
  215. width: 646px;
  216. height: 96px;
  217. border-radius: 48px;
  218. background-color: #fff;
  219. color: #000;
  220. animation: showAni 0.1s 0.3s linear forwards;
  221. display: flex;
  222. align-items: center;
  223. justify-content: center;
  224. }
  225. @keyframes showAni {
  226. 0% {
  227. opacity: 0;
  228. }
  229. 100% {
  230. opacity: 1;
  231. }
  232. }
  233. .share_btn1 {
  234. display: flex;
  235. flex-direction: row;
  236. align-items: center;
  237. justify-content: center;
  238. width: 698px;
  239. height: 108px;
  240. border-radius: 28px;
  241. }
  242. .time_record_card{
  243. width: 692px;
  244. height: 156px;
  245. border-radius: 42px;
  246. display: flex;
  247. align-items: center;
  248. justify-content: center;
  249. margin-top: 26px;
  250. background-color: rgba($color: #ffffff, $alpha: 0.25);
  251. font-size: 34px;
  252. position: relative;
  253. }
  254. .timer_record_card_arrow{
  255. position: absolute;
  256. width: 36px;
  257. height: 36px;
  258. top: 60px;
  259. right:50px;
  260. display: flex;
  261. align-items: center;
  262. justify-content: center;
  263. }