index.less 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179
  1. .mine {
  2. padding: 48px 20px;
  3. min-height: 100vh;
  4. background-color: #041129;
  5. .banner {
  6. position: relative;
  7. margin-top: 20px;
  8. .banner-content {
  9. position: relative;
  10. left: 50%;
  11. transform: translateX(-50%);
  12. width: 312px;
  13. height: 312px;
  14. .content-img {
  15. width: 100%;
  16. height: 100%;
  17. }
  18. .delete {
  19. position: absolute;
  20. right: -20px;
  21. top: -20px;
  22. width: 40px;
  23. height: 40px;
  24. }
  25. }
  26. .banner-tips {
  27. margin-top: 20px;
  28. text-align: center;
  29. font-size: 28px;
  30. font-family: PingFang SC;
  31. font-weight: bold;
  32. color: #FDFDFD;
  33. line-height: 40px;
  34. }
  35. }
  36. .model-list {
  37. margin-top: 20px;
  38. display: flex;
  39. flex-wrap: wrap;
  40. .model-info {
  41. position: relative;
  42. background-size: 100% 100%;
  43. margin-bottom: 16px;
  44. width: 220px;
  45. margin-left: 14px;
  46. height: 220px;
  47. display: block;
  48. -webkit-box-sizing: border-box;
  49. -moz-box-sizing: border-box;
  50. box-sizing: border-box;
  51. background-color: rgba(255, 255, 255, .05);
  52. border-radius: 16px;
  53. .model-info-bottom {
  54. position: absolute;
  55. z-index: 1;
  56. bottom: 0;
  57. left: 0;
  58. width: 100%;
  59. font-size: 32px;
  60. background-color: rgba(0, 0, 0, 0.4);
  61. ;
  62. color: #FFFFFF;
  63. text-align: center;
  64. }
  65. .moonlight {
  66. position: absolute;
  67. top: 0;
  68. left: 0;
  69. z-index: 2;
  70. width: 100%;
  71. height: 100%;
  72. background: rgba(0, 0, 0, 0.6);
  73. display: flex;
  74. justify-content: center;
  75. align-items: center;
  76. font-size: 28px;
  77. font-family: PingFang SC;
  78. font-weight: bold;
  79. color: #FFFFFF;
  80. }
  81. }
  82. }
  83. .isOpen {
  84. display: flex;
  85. justify-content: center;
  86. .open-content {
  87. width: 174px;
  88. height: 80px;
  89. background-color: rgba(255, 255, 255, .05);
  90. border-radius: 16px;
  91. display: flex;
  92. justify-content: center;
  93. align-items: center;
  94. .open-title {
  95. font-family: PingFangSC-Regular;
  96. font-size: 32px;
  97. color: #0F84EC;
  98. letter-spacing: 0;
  99. text-align: center;
  100. }
  101. .open-img {
  102. width: 40px;
  103. height: 40px;
  104. margin-left: 5px;
  105. display: block;
  106. }
  107. }
  108. }
  109. .update {
  110. margin-top: 40px;
  111. /* 定义动画 */
  112. @keyframes shrink {
  113. 0%, 100% {
  114. transform: translateY(0) scale(1);
  115. }
  116. 50% {
  117. transform: translateY(0px) scale(0.95);
  118. }
  119. }
  120. /* 应用动画 */
  121. .update-active {
  122. animation: shrink 1.2s ease-in-out infinite;
  123. }
  124. .update-button {
  125. background: linear-gradient(90deg, #038EFF, #3342FF);
  126. border-radius: 46px;
  127. width: 100%;
  128. height: 94px;
  129. display: flex;
  130. align-items: center;
  131. justify-content: center;
  132. font-size: 28px;
  133. font-family: PingFang SC;
  134. font-weight: bold;
  135. color: #FDFDFD;
  136. .update-img {
  137. width: 52px;
  138. height: 52px;
  139. display: block;
  140. }
  141. }
  142. }
  143. .tip-img {
  144. margin-top: 54px;
  145. width: 100%;
  146. display: flex;
  147. justify-content: center;
  148. .ps-image {
  149. width: 566px;
  150. height: 194px;
  151. }
  152. }
  153. }