index.acss 854 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. .exception-tip {
  2. position: absolute;
  3. top: 0;
  4. right: 0;
  5. left: 0;
  6. display: flex;
  7. flex-direction: column;
  8. align-items: center;
  9. margin-top: 45vh;
  10. color: #999;
  11. transform: translateY(-50%);
  12. }
  13. .exception-tip .img-exception {
  14. box-sizing: border-box;
  15. width: 200rpx;
  16. height: 200rpx;
  17. background-image: url('/assets/img-exception-2x.png');
  18. background-repeat: no-repeat;
  19. background-size: contain;
  20. }
  21. .exception-tip .exception-title {
  22. margin-top: 24rpx;
  23. font-size: 30rpx;
  24. }
  25. .exception-tip .exception-sub-title {
  26. margin: 16rpx 0 40rpx;
  27. font-size: 24rpx;
  28. }
  29. .exception-tip .exception-btn {
  30. display: inline-flex;
  31. box-sizing: border-box;
  32. height: auto;
  33. padding: 8rpx 24rpx;
  34. color: #1677ff;
  35. font-size: 24rpx;
  36. line-height: 24rpx;
  37. text-align: center;
  38. border: none;
  39. border: 2rpx solid #1677ff;
  40. border-radius: 8rpx;
  41. }