app.wxss 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344
  1. /**app.wxss**/
  2. @import '/static/iconfont/iconfont.wxss';
  3. .container {
  4. height: 100%;
  5. display: flex;
  6. flex-direction: column;
  7. align-items: center;
  8. justify-content: space-between;
  9. padding: 200rpx 0;
  10. box-sizing: border-box;
  11. }
  12. navigator.disabled {
  13. pointer-events: none;
  14. }
  15. navigator.disabled>view {
  16. color: #b6b6b6 !important;
  17. }
  18. page {
  19. min-height: 100%;
  20. }
  21. rich-text .rich-img {
  22. max-width: 100%;
  23. max-height: auto;
  24. }
  25. .text1 {
  26. text-overflow: ellipsis;
  27. display: -webkit-box;
  28. -webkit-line-clamp: 1;
  29. -webkit-box-orient: vertical;
  30. overflow: hidden;
  31. }
  32. .text2 {
  33. text-overflow: ellipsis;
  34. display: -webkit-box;
  35. -webkit-line-clamp: 2;
  36. -webkit-box-orient: vertical;
  37. overflow: hidden;
  38. }
  39. .text3 {
  40. text-overflow: ellipsis;
  41. display: -webkit-box;
  42. -webkit-line-clamp: 3;
  43. -webkit-box-orient: vertical;
  44. overflow: hidden;
  45. }
  46. .text4 {
  47. text-overflow: ellipsis;
  48. display: -webkit-box;
  49. -webkit-line-clamp: 4;
  50. -webkit-box-orient: vertical;
  51. overflow: hidden;
  52. }
  53. .text5 {
  54. text-overflow: ellipsis;
  55. display: -webkit-box;
  56. -webkit-line-clamp: 5;
  57. -webkit-box-orient: vertical;
  58. overflow: hidden;
  59. }
  60. @keyframes abel-rotate {
  61. 0% {
  62. transform: rotate(0);
  63. }
  64. 100% {
  65. transform: rotate(360deg);
  66. }
  67. }
  68. .iconfont.icon-loadding {
  69. display: inline-block;
  70. -webkit-animation-name: abel-rotate;
  71. animation-name: abel-rotate;
  72. -webkit-animation-duration: 1s;
  73. animation-duration: 1s;
  74. -webkit-animation-timing-function: linear;
  75. animation-timing-function: linear;
  76. animation-iteration-count: infinite;
  77. animation-fill-mode: both;
  78. -webkit-font-smoothing: antialiased;
  79. }
  80. .wx-switch-input {
  81. width: 80rpx !important;
  82. height: 80rpx !important;
  83. }
  84. .wx-switch-input::before {
  85. width: 80rpx !important;
  86. height: 80rpx !important;
  87. }
  88. .wx-switch-input::after {
  89. width: 80rpx !important;
  90. height: 80rpx !important;
  91. }
  92. .rmb1 {
  93. font-size: 20rpx;
  94. }
  95. .rmb2 {
  96. font-size: 24rpx;
  97. }
  98. .rmb3 {
  99. font-size: 28rpx;
  100. }
  101. /* 弹窗 背景*/
  102. .dialogBg {
  103. position: fixed;
  104. left: 0;
  105. top: 0;
  106. bottom: 0;
  107. right: 0;
  108. background: rgba(0, 0, 0, 0.30);
  109. z-index: 999;
  110. }
  111. .drawer_content {
  112. overflow-y: auto;
  113. min-height: 200rpx;
  114. max-height: 80%;
  115. }
  116. /* 弹出*/
  117. .drawer_attr_box {
  118. width: 100%;
  119. overflow: hidden;
  120. position: fixed;
  121. bottom: 0;
  122. left: 0;
  123. z-index: 99999;
  124. background: #fff;
  125. border-radius: 8rpx 8rpx 0rpx 0rpx;
  126. /* transition: all 0.5s linear; */
  127. }
  128. .draw_attr_title {
  129. font-weight: 600;
  130. font-size: 32rpx;
  131. color: #000000;
  132. text-align: center;
  133. padding: 60rpx 0;
  134. }
  135. .keyboard_arrow_right ::after {
  136. content: "\e615";
  137. }
  138. .titleText {
  139. font-weight: 500;
  140. font-size: 28rpx;
  141. color: #000000;
  142. padding: 20rpx 0;
  143. }
  144. .pannel {
  145. padding: 20rpx 24rpx;
  146. background: #FFFFFF;
  147. margin-bottom: 20rpx;
  148. border-radius: 8rpx;
  149. }
  150. .pannel .cell {
  151. position: relative;
  152. min-height: 80rpx;
  153. display: flex;
  154. /* align-items: center; */
  155. align-content: flex-start;
  156. justify-content: space-between;
  157. }
  158. .pannel .cellText,
  159. .pannel .cell .cellText {
  160. position: relative;
  161. font-weight: 400;
  162. font-size: 28rpx;
  163. color: #202020;
  164. line-height: 80rpx;
  165. }
  166. .pannel .cellText::before,
  167. .pannel .cell .cellText::before {
  168. position: absolute;
  169. left: -15rpx;
  170. content: ' ';
  171. color: #FFFFFF;
  172. }
  173. .pannel .cellText.required::before,
  174. .pannel .cell .cellText.required::before {
  175. content: '*';
  176. color: #E60000;
  177. }
  178. .pannel .cell .cellInput {
  179. flex: 1;
  180. text-align: right;
  181. font-weight: 400;
  182. font-size: 28rpx;
  183. color: #202020;
  184. line-height: 80rpx;
  185. min-height: 80rpx;
  186. /* border: none; */
  187. }
  188. .pannel .cell .cellInput.disabled {
  189. color: #b6b6b6;
  190. }
  191. .pannel .cell .cellAvatar {
  192. width: 80rpx;
  193. height: 80rpx;
  194. background: #D9D9D9;
  195. border-radius: 50%;
  196. }
  197. .pannel .cell textarea {
  198. flex: 1;
  199. height: 120rpx;
  200. background-color: #F8F8F8;
  201. font-weight: 400;
  202. font-size: 28rpx;
  203. line-height: 1.2;
  204. padding: 24rpx;
  205. box-sizing: border-box;
  206. }
  207. .pannel .cell picker {
  208. flex: 1;
  209. text-align: right;
  210. padding-left: 20rpx;
  211. }
  212. .pannel .cell picker.cellInput.disabled {
  213. color: #b6b6b6 !important;
  214. }
  215. .pannel .cell picker.cellInput.disabled view{
  216. color: #b6b6b6 !important;
  217. }
  218. .pannel .cell .cellArrow {
  219. flex: 1;
  220. text-align: right;
  221. line-height: 80rpx;
  222. }
  223. .pannel .cell .cellArrow::after {
  224. /* position: absolute; */
  225. /* top: 30rpx; */
  226. font-weight: normal;
  227. content: "\e615";
  228. color: #000000;
  229. }
  230. .pannel .cell .keyboard_arrow_right {
  231. font-weight: 400;
  232. font-size: 28rpx;
  233. padding-right: 24rpx;
  234. color: #000000;
  235. }
  236. .pannel .cell .keyboard_arrow_right::after {
  237. position: absolute;
  238. top: 0;
  239. font-weight: normal;
  240. content: "\e615";
  241. color: #000000;
  242. line-height: 80rpx;
  243. }
  244. .xy-popup {
  245. position: fixed;
  246. width: 100%;
  247. height: 100%;
  248. left: 0;
  249. top: 0;
  250. z-index: 99;
  251. overflow: visible;
  252. background-color: transparent;
  253. }
  254. .listEmpty {
  255. width: 208rpx;
  256. height: 208rpx;
  257. }
  258. .loadMore {
  259. text-align: center;
  260. font-size: 18rpx;
  261. color: #000000;
  262. line-height: 25rpx;
  263. /* background: #F8F8F8; */
  264. }
  265. .noMore {
  266. text-align: center;
  267. font-size: 18rpx;
  268. color: #A2A2A2;
  269. line-height: 25rpx;
  270. }
  271. .noLogin {
  272. width: 100%;
  273. display: flex;
  274. align-items: center;
  275. flex-flow: column;
  276. padding-top: 200rpx;
  277. }
  278. .noLogin image {
  279. height: 120rpx;
  280. }
  281. .noLogin view {
  282. margin-top: 20rpx;
  283. color: #b6b6b6
  284. }
  285. .noLogin .loginText {
  286. color: #00BC8A;
  287. margin-left: 20rpx;
  288. }