app.wxss 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  1. page {
  2. background: #f8f8f8;
  3. }
  4. .maincolor {
  5. color: #2b9dff;
  6. }
  7. .mainbackcolcor {
  8. background: #2b9dff;
  9. }
  10. view {
  11. font-size: 28rpx;
  12. }
  13. .flexrow {
  14. display: flex;
  15. }
  16. .flex05 {
  17. flex: 0.5;
  18. }
  19. .flex1 {
  20. flex: 1;
  21. }
  22. .bottomborder {
  23. border-bottom: 1rpx solid #e6e6e6;
  24. }
  25. .placeholder {
  26. color: #c9c9c9;
  27. }
  28. .whitecover {
  29. position: fixed;
  30. z-index: 20;
  31. left: 0;
  32. right: 0;
  33. top: 0;
  34. bottom: 0;
  35. background: #fff;
  36. opacity: 0;
  37. }
  38. .blackcover {
  39. position: fixed;
  40. z-index: 20;
  41. left: 0;
  42. right: 0;
  43. top: 0;
  44. bottom: 0;
  45. background: #555;
  46. opacity: 0.8;
  47. }
  48. .title1 {
  49. text-align: center;
  50. font-size: 36rpx;
  51. font-weight: 800;
  52. }
  53. .title2 {
  54. font-size: 34rpx;
  55. font-weight: 600;
  56. }
  57. .title3 {
  58. color: #919191;
  59. }
  60. .titledl {
  61. margin-top: 30rpx;
  62. }
  63. .dztitle {
  64. font-size: 40rpx;
  65. line-height: 60rpx;
  66. margin-top: 20rpx;
  67. }
  68. .empty {
  69. height: 100rpx;
  70. }
  71. .vercenter {
  72. display: -webkit-flex;
  73. display: flex;
  74. -webkit-align-items: center;
  75. align-items: center;
  76. }
  77. .numbreak {
  78. word-wrap: break-word;
  79. word-break: break-all;
  80. }
  81. .navigator-arrow {
  82. padding-right: 30rpx;
  83. position: relative;
  84. }
  85. .navigator-arrow:after {
  86. content: " ";
  87. display: inline-block;
  88. height: 16rpx;
  89. width: 16rpx;
  90. border-width: 2rpx 2rpx 0 0;
  91. border-color: #888;
  92. border-style: solid;
  93. transform: matrix(0.71, 0.71, -0.71, 0.71, 0, 0);
  94. position: absolute;
  95. top: 50%;
  96. margin-top: -8rpx;
  97. }
  98. .navigator-arrow-down::after {
  99. transform: matrix(-0.71, 0.71, -0.71, -0.71, 0, 0) !important;
  100. margin-top: -10rpx !important;
  101. }
  102. .right {
  103. text-align: right;
  104. }
  105. .backcover {
  106. position: fixed;
  107. top: 0;
  108. bottom: 0;
  109. left: 0;
  110. right: 0;
  111. background: #555;
  112. opacity: 0.8;
  113. }
  114. .overflow {
  115. white-space: nowrap;
  116. text-overflow: ellipsis;
  117. -o-text-overflow: ellipsis;
  118. overflow: hidden;
  119. }
  120. .down-arrow {
  121. position: relative;
  122. }
  123. .down-arrow::after {
  124. border-left: 5px solid transparent;
  125. border-right: 5px solid transparent;
  126. border-top: 5px solid #555;
  127. content: "";
  128. position: relative;
  129. top: 26rpx;
  130. width: 0;
  131. left: 10rpx;
  132. }
  133. .up-arrow {
  134. position: relative;
  135. }
  136. .up-arrow::after {
  137. border-left: 5px solid transparent;
  138. border-right: 5px solid transparent;
  139. border-bottom: 5px solid #555;
  140. content: "";
  141. position: relative;
  142. bottom: 13px;
  143. width: 0;
  144. left: 10rpx;
  145. }
  146. .nodata {
  147. text-align: center;
  148. margin: 50rpx;
  149. }
  150. .sort {
  151. width: 40rpx;
  152. display: inline-block;
  153. position: relative;
  154. }
  155. .sort::before {
  156. border-left: 5px solid transparent;
  157. border-right: 5px solid transparent;
  158. border-bottom: 5px solid #555;
  159. content: "";
  160. position: absolute;
  161. bottom: 13px;
  162. width: 0;
  163. left: 10rpx;
  164. }
  165. .sort::after {
  166. border-left: 5px solid transparent;
  167. border-right: 5px solid transparent;
  168. border-top: 5px solid #555;
  169. content: "";
  170. position: absolute;
  171. top: 26rpx;
  172. width: 0;
  173. left: 10rpx;
  174. }
  175. .redstar {
  176. color: red;
  177. }