app.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200
  1. /**app.wxss**/
  2. @import '/static/font/iconfont.wxss';
  3. @import '/static/css/animate.wxss';
  4. view,
  5. image,
  6. text,
  7. navigator {
  8. box-sizing: border-box;
  9. padding: 0;
  10. margin: 0;
  11. }
  12. page {
  13. background-color: #f5f5f5;
  14. font-size: 28rpx;
  15. font-family: HarmonyOS Sans SC-Regular, HarmonyOS Sans SC;
  16. font-weight: 400;
  17. color: #333;
  18. }
  19. .jhx_bg0 {
  20. background: #fff;
  21. }
  22. .acea-row {
  23. display: flex;
  24. flex-wrap: wrap;
  25. }
  26. .acea-row.row-top {
  27. align-items: flex-start;
  28. }
  29. .acea-row.row-middle {
  30. align-items: center;
  31. }
  32. .acea-row.row-bottom {
  33. align-items: flex-end;
  34. }
  35. .acea-row.row-left {
  36. justify-content: flex-start;
  37. }
  38. .acea-row.row-center {
  39. justify-content: center;
  40. }
  41. .acea-row.row-right {
  42. justify-content: flex-end;
  43. }
  44. .acea-row.row-between {
  45. justify-content: space-between;
  46. }
  47. .acea-row.row-around {
  48. justify-content: space-around;
  49. }
  50. .acea-row.row-evenly {
  51. justify-content: space-evenly;
  52. }
  53. .acea-row.row-column {
  54. flex-direction: column;
  55. }
  56. .acea-row.row-column-between {
  57. flex-direction: column;
  58. justify-content: space-between;
  59. }
  60. .acea-row.row-column-around {
  61. flex-direction: column;
  62. justify-content: space-around;
  63. }
  64. .acea-row.row-center-wrapper {
  65. align-items: center;
  66. justify-content: center;
  67. }
  68. .acea-row.row-between-wrapper {
  69. align-items: center;
  70. justify-content: space-between;
  71. }
  72. .line1 {
  73. overflow: hidden;
  74. text-overflow: ellipsis;
  75. white-space: nowrap;
  76. }
  77. .line2 {
  78. word-break: break-all;
  79. display: -webkit-box;
  80. -webkit-line-clamp: 2;
  81. -webkit-box-orient: vertical;
  82. white-space: normal;
  83. }
  84. @keyframes load {
  85. from {
  86. transform: rotate(0deg);
  87. }
  88. to {
  89. transform: rotate(360deg);
  90. }
  91. }
  92. @keyframes show {
  93. 0% { opacity: 0; }
  94. 100% { opacity: 1; }
  95. }
  96. @keyframes hide {
  97. 0% { opacity: 1; }
  98. 100% { opacity: 0; }
  99. }
  100. @keyframes left-open {
  101. from { transform: rotateY(0deg); }
  102. to { transform: rotateY(-130deg); }
  103. }
  104. @keyframes right-open {
  105. from { transform: rotateY(0deg); }
  106. to { transform: rotateY(130deg); }
  107. }
  108. @keyframes left-close {
  109. from { transform: rotateY(-130deg); }
  110. to { transform: rotateY(0deg); }
  111. }
  112. @keyframes right-close {
  113. from { transform: rotateY(130deg); }
  114. to { transform: rotateY(0deg); }
  115. }
  116. @keyframes signInBtn {
  117. 0% { transform: scale(1); }
  118. 50% { transform: scale(1.2); }
  119. 100% { transform: scale(1); }
  120. }
  121. .share-btn {
  122. margin: 0;
  123. padding: 0;
  124. background-color: transparent;
  125. }
  126. .share-btn::after {
  127. border: 0;
  128. }
  129. .van-popup {
  130. width: 80%;
  131. height: 50%;
  132. border-radius: 12rpx;
  133. line-height: 40rpx;
  134. }
  135. .van-popup.van-popup--bottom {
  136. border-radius: 12rpx 12rpx 0 0;
  137. }
  138. .van-popup .title {
  139. padding: 30rpx 0;
  140. border-bottom: 2rpx solid rgba(110, 123, 143, 0.16);
  141. text-align: center;
  142. font-size: 32rpx;
  143. font-weight: 500;
  144. font-family: HarmonyOS Sans SC-Medium, HarmonyOS Sans SC;
  145. color: #060606;
  146. }
  147. .van-popup .scroll-y {
  148. height: calc(100% - 102rpx);
  149. }
  150. .van-popup .btn {
  151. width: calc(100% - 48rpx);
  152. position: fixed;
  153. bottom: 56rpx;
  154. background: #D32D2F;
  155. border-radius: 90rpx;
  156. text-align: center;
  157. line-height: 80rpx;
  158. font-size: 28rpx;
  159. color: #fff;
  160. }
  161. .van-empty {
  162. min-height: 960rpx;
  163. }