index.less 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. .mine {
  2. width: 100vw;
  3. min-height: 100vh;
  4. .mine-content {
  5. padding: 36px 30px;
  6. .search {
  7. // width: 100%;
  8. display: flex;
  9. padding: 0 20px;
  10. height: 70px;
  11. align-items: center;
  12. background: #EAEAEF;
  13. border-radius: 35px;
  14. .search-img {
  15. width: 36px;
  16. height: 36px;
  17. display: flex;
  18. }
  19. .search-input {
  20. margin-left: 6px;
  21. flex: 1;
  22. font-size: 24px;
  23. font-family: PingFang SC;
  24. font-weight: bold;
  25. color: rgba(0, 0, 0, 0.4);
  26. line-height: 82px;
  27. }
  28. }
  29. .recharge {
  30. margin-top: 30px;
  31. width: 100%;
  32. white-space: nowrap;
  33. .recharge-list {
  34. display: inline-block;
  35. position: relative;
  36. padding-right: 52px;
  37. .recharge-info {
  38. font-size: 28px;
  39. font-family: PingFang SC;
  40. font-weight: 800;
  41. color: #888888;
  42. line-height: 60px;
  43. }
  44. .recharge-info-active {
  45. font-size: 32px;
  46. font-family: PingFang SC;
  47. font-weight: 800;
  48. color: #363636;
  49. line-height: 60px;
  50. }
  51. .recharge-tips {
  52. position: relative;
  53. left: 50%;
  54. transform: translateX(-50%);
  55. width: 30rpx;
  56. border: 2px solid #E04A4A;
  57. }
  58. }
  59. }
  60. .book-content {
  61. padding: 20px 66px 50px 20px;
  62. .book-list {
  63. .book-info {
  64. display: flex;
  65. margin-bottom: 30px;
  66. .book-info-left {
  67. .book-img {
  68. width: 158px;
  69. height: 220px;
  70. display: block;
  71. border-radius: 10px;
  72. }
  73. }
  74. .book-right {
  75. margin-left: 20px;
  76. .book-title {
  77. font-size: 26px;
  78. font-family: PingFang SC;
  79. font-weight: 800;
  80. color: #363636;
  81. }
  82. .book-tips {
  83. font-size: 22px;
  84. margin-top: 22px;
  85. font-family: PingFang SC;
  86. font-weight: bold;
  87. color: #888888;
  88. }
  89. .book-label-list {
  90. display: flex;
  91. margin-top: 28px;
  92. .book-label-info {
  93. margin-left: 10px;
  94. padding: 6px 12px;
  95. border-radius: 10px;
  96. font-size: 18px;
  97. font-family: PingFang SC;
  98. font-weight: 800;
  99. letter-spacing: 1px;
  100. background:rgb(212 242 245 / 54%);
  101. color: #4ec7da;
  102. }
  103. }
  104. }
  105. }
  106. }
  107. }
  108. }
  109. .share {
  110. position: fixed;
  111. right: 20px;
  112. bottom: 68px;
  113. .share-img {
  114. width: 150px;
  115. }
  116. }
  117. /* 定义动画 */
  118. @keyframes shrink {
  119. 0%,
  120. 100% {
  121. transform: translateY(0) scale(1);
  122. }
  123. 50% {
  124. transform: translateY(0px) scale(0.95);
  125. }
  126. }
  127. /* 应用动画 */
  128. .update-active {
  129. animation: shrink 1.2s ease-in-out infinite;
  130. }
  131. }