index.acss 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. .empty-index {
  2. display: block;
  3. height: initial;
  4. }
  5. @import "../common/index.acss";
  6. .empty-index .van-empty {
  7. display: -webkit-flex;
  8. display: flex;
  9. -webkit-flex-direction: column;
  10. flex-direction: column;
  11. -webkit-align-items: center;
  12. align-items: center;
  13. -webkit-justify-content: center;
  14. justify-content: center;
  15. box-sizing: border-box;
  16. padding: 32px 0;
  17. }
  18. .empty-index .van-empty__image {
  19. width: 160px;
  20. height: 160px;
  21. }
  22. .empty-index .van-empty__image:empty {
  23. display: none;
  24. }
  25. .empty-index .van-empty__image__img {
  26. width: 100%;
  27. height: 100%;
  28. }
  29. .empty-index .van-empty__image:not(:empty) + .van-empty__image {
  30. display: none;
  31. }
  32. .empty-index .van-empty__description {
  33. margin-top: 16px;
  34. padding: 0 60px;
  35. color: #969799;
  36. font-size: 14px;
  37. line-height: 20px;
  38. }
  39. .empty-index .van-empty__description:empty,
  40. .empty-index .van-empty__description:not(:empty) + .van-empty__description {
  41. display: none;
  42. }
  43. .empty-index .van-empty__bottom {
  44. margin-top: 24px;
  45. }