time_record.scss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. .navi_bar {
  2. position: fixed;
  3. left: 0;
  4. right: 0;
  5. top: 0;
  6. }
  7. .time_card_bg {
  8. display: flex;
  9. flex-direction: row;
  10. padding-left: 40px;
  11. padding-right: 40px;
  12. justify-content: space-between;
  13. box-sizing: border-box;
  14. width: 750px;
  15. margin-top: 170px;
  16. }
  17. .time_card {
  18. width: 320px;
  19. border-radius: 24px;
  20. background-color: rgba($color: #ffffff, $alpha: 0.25);
  21. padding: 30px 0;
  22. box-sizing: border-box;
  23. display: flex;
  24. flex-direction: column;
  25. align-items: center;
  26. }
  27. .progress_card {
  28. display: flex;
  29. flex-direction: column;
  30. align-items: center;
  31. overflow: hidden;
  32. width: 698px;
  33. padding-bottom: 60px;
  34. border-radius: 84px;
  35. background-color: rgba($color: #ffffff, $alpha: 0.25);
  36. position: relative;
  37. z-index: 1;
  38. }
  39. .eat_card {
  40. width: 698px;
  41. height: 168px;
  42. background-color: rgba($color: #ffffff, $alpha: 0.25);
  43. position: relative;
  44. border-radius: 42px;
  45. display: flex;
  46. flex-direction: column;
  47. align-items: center;
  48. justify-content: center;
  49. margin-top: 26px;
  50. }
  51. .eat_card_arrow {
  52. position: absolute;
  53. right: 30px;
  54. top: 0;
  55. bottom: 0;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. }
  60. .operate_content {
  61. display: flex;
  62. flex-direction: row;
  63. margin-bottom: 40px;
  64. }
  65. .share_operate_content {
  66. display: flex;
  67. flex-direction: row;
  68. margin-bottom: 40px;
  69. height: 172px;
  70. margin-top: -40px;
  71. }
  72. .operate_item {
  73. display: flex;
  74. flex-direction: column;
  75. align-items: center;
  76. width: 320px;
  77. border-radius: 28px;
  78. }
  79. .share_icon {
  80. position: absolute;
  81. right: 48px;
  82. top: 48px;
  83. }
  84. .share_bg {
  85. position: fixed;
  86. left: 0;
  87. top: 0;
  88. width: 100vw;
  89. height: 100vh;
  90. z-index: 100;
  91. background: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
  92. display: flex;
  93. flex-direction: column;
  94. align-items: center;
  95. justify-content: center;
  96. }
  97. .share_card {
  98. width: 698px;
  99. height: 932px;
  100. display: flex;
  101. border-radius: 84px;
  102. margin-bottom: 26px;
  103. flex-direction: column;
  104. overflow: hidden;
  105. align-items: center;
  106. }
  107. .share_canvas {
  108. position: absolute;
  109. top: -1000px;
  110. }
  111. .share_card2 {
  112. width: 738px;
  113. height: 932px;
  114. display: flex;
  115. border-radius: 84px;
  116. margin-bottom: 26px;
  117. flex-direction: column;
  118. overflow: hidden;
  119. align-items: center;
  120. animation: heightAni 0.3s 0.5s linear forwards;
  121. }
  122. @keyframes heightAni {
  123. 0% {
  124. height: 932px;
  125. }
  126. 100% {
  127. height: 892px;
  128. }
  129. }