微信小程序
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

normalTextPrompt.wxss 853 B

3 年之前
1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /**
  2. * 提示层 - 没有更多了
  3. */
  4. .noMore {
  5. width: 100%;
  6. font-size: 24rpx;
  7. color: #CCC;
  8. text-align: center;
  9. padding: 20rpx 0;
  10. padding-bottom:calc(20rpx + constant(safe-area-inset-bottom));
  11. padding-bottom:calc(20rpx + env(safe-area-inset-bottom));
  12. }
  13. /**
  14. * 提示层 - 暂无数据
  15. */
  16. .error-page-tpl {
  17. position: fixed;
  18. left: 0;
  19. top: 35%;
  20. width: 100%;
  21. transform: translate(0, -50%);
  22. display: flex;
  23. flex-flow: column;
  24. justify-content: center;
  25. align-items: center;
  26. z-index: 2;
  27. }
  28. .error-page-tpl image {
  29. width: 400rpx;
  30. height: 400rpx;
  31. }
  32. .error-page-tpl .error-tpl-msg {
  33. margin-top: -30rpx;
  34. font-size: 24rpx;
  35. color: #999;
  36. word-wrap: break-word;
  37. word-break: normal;
  38. width: 100%;
  39. text-align: center;
  40. }