style.css 1.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117
  1. .wrapAnimate {
  2. animation: wrapAnimate 0.5s ease-in-out forwards;
  3. }
  4. @keyframes wrapAnimate {
  5. 0% {
  6. }
  7. 100% {
  8. background: rgba(0, 0, 0, 0.35);
  9. }
  10. }
  11. .wrapAnimateOut {
  12. animation: wrapAnimateOut 0.4s ease-in-out forwards;
  13. }
  14. @keyframes wrapAnimateOut {
  15. 0% {
  16. background: rgba(0, 0, 0, 0.35);
  17. }
  18. 100% {
  19. background: rgba(0, 0, 0, 0);
  20. }
  21. }
  22. .frameAnimate {
  23. animation: frameAnimate 0.5s ease forwards;
  24. }
  25. @keyframes frameAnimate {
  26. 0% {
  27. }
  28. 100% {
  29. opacity: 1;
  30. top: 0vh;
  31. }
  32. }
  33. .frameAnimateOut {
  34. animation: frameAnimateOut 0.5s ease forwards;
  35. }
  36. @keyframes frameAnimateOut {
  37. 0% {
  38. opacity: 2;
  39. top: 0vh;
  40. }
  41. 50% {
  42. opacity: 1;
  43. top: 50vh;
  44. }
  45. 100% {
  46. opacity: 0;
  47. top: 100vh;
  48. }
  49. }
  50. .frame-wrapper {
  51. position: fixed;
  52. height: 100vh;
  53. width: 100vw;
  54. z-index: 2;
  55. top: 50vh;
  56. }
  57. .frame {
  58. background: #fff;
  59. position: absolute;
  60. bottom: 0;
  61. width: 100%;
  62. padding: 2.9vw 2.9vw 0;
  63. border-top-left-radius: 20px;
  64. border-top-right-radius: 20px;
  65. z-index: 3;
  66. box-sizing: border-box;
  67. align-items: center;
  68. text-align: center;
  69. }
  70. .title-wrapper {
  71. justify-content: space-between;
  72. text-align: center;
  73. height: 28px;
  74. font-size: 35px;
  75. font-weight: 700;
  76. color: #202020;
  77. margin-bottom: 5.9vw;
  78. }
  79. .title-wrapper > image {
  80. width: 3.5vw;
  81. height: 3.5vw;
  82. padding: 0 5vw;
  83. margin-right: -5vw;
  84. }
  85. /* .flex {
  86. display: flex;
  87. align-items: center;
  88. } */
  89. .wrap {
  90. position: fixed;
  91. z-index: 1;
  92. top: 0;
  93. left: 0;
  94. right: 0;
  95. bottom: 0;
  96. }
  97. .bottom-text {
  98. margin-left: 40%;
  99. width: 100%;
  100. padding: 1.5em 0 1.5em 0;
  101. display: flex;
  102. align-items: center;
  103. }
  104. .bottom-text > image {
  105. width: 32px;
  106. height: 32px;
  107. }
  108. .bottom-text > text {
  109. width: 110px;
  110. font-size: 30px;
  111. font-weight: bold;
  112. color: #202020;
  113. }