empty.wxss 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. /* components/empty/empty.wxss */
  2. .empty-wrap {
  3. display: flex;
  4. flex-direction: column;
  5. justify-content: center;
  6. align-items: center;
  7. min-height: 300rpx;
  8. }
  9. .is-absolute {
  10. position: absolute;
  11. top: 0;
  12. left: 0;
  13. bottom: 0;
  14. right: 0;
  15. z-index: 2;
  16. }
  17. .empty-wrap .img {
  18. width: 590rpx;
  19. height: 278rpx;
  20. margin-bottom: 40rpx;
  21. }
  22. .empty-wrap .tips {
  23. font-size: 32rpx;
  24. font-family: PingFangSC-Regular, PingFang SC;
  25. font-weight: 400;
  26. color: rgba(153, 153, 153, 1);
  27. }
  28. .empty-wrap .tips::after,
  29. .empty-wrap .tips::before {
  30. content: " - ";
  31. }
  32. .empty-wrap .sub-tips {
  33. font-size: 32rpx;
  34. font-family: PingFangSC-Regular, PingFang SC;
  35. font-weight: 400;
  36. color: rgba(153, 153, 153, 1);
  37. }
  38. .empty-wrap .btn {
  39. width: auto;
  40. min-width: 400rpx;
  41. height: 76rpx;
  42. line-height: 76rpx;
  43. font-size: 28rpx;
  44. font-family: PingFangSC-Regular, PingFang SC;
  45. font-weight: 400;
  46. color: rgba(255, 255, 255, 1);
  47. background: #3b7aff;
  48. border-radius: 4rpx;
  49. text-align: center;
  50. padding: 0 20rpx;
  51. border: 2rpx solid #3b7aff;
  52. margin-top: 60rpx;
  53. }
  54. .empty-wrap .tip {
  55. font-size: 34rpx;
  56. font-family: PingFangSC-Regular, PingFang SC;
  57. font-weight: 400;
  58. color: rgba(51, 51, 51, 1);
  59. padding: 32rpx 30rpx;
  60. }