微信小程序
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.

167 line
3.3 KiB

  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: env(safe-area-inset-bottom);
  11. }
  12. /**
  13. * 提示层 - 暂无数据
  14. */
  15. .error-page-tpl {
  16. position: fixed;
  17. left: 0;
  18. top: 35%;
  19. width: 100%;
  20. transform: translate(0, -50%);
  21. display: flex;
  22. flex-flow: column;
  23. justify-content: center;
  24. align-items: center;
  25. z-index: 2;
  26. }
  27. .error-page-tpl image {
  28. width: 400rpx;
  29. height: 400rpx;
  30. }
  31. .error-page-tpl .error-tpl-msg {
  32. margin-top: -30rpx;
  33. font-size: 24rpx;
  34. color: #999;
  35. word-wrap: break-word;
  36. word-break: normal;
  37. width: 100%;
  38. text-align: center;
  39. }
  40. .error-page-tpl .zb-back-live{
  41. display: block;
  42. /* width: 192rpx; */
  43. height: 64rpx;
  44. margin: 30rpx auto 0;
  45. line-height: 64rpx;
  46. text-align: center;
  47. font-size: 30rpx;
  48. color: var(--blueLight);
  49. background: #fff;
  50. border-radius: 32rpx;
  51. border: 1rpx solid #7AA6CC;
  52. padding: 0 32rpx;
  53. }
  54. /**
  55. * 全局 toast 提示层样式
  56. */
  57. .toast-container {
  58. position: fixed;
  59. left: 0;
  60. bottom: 20%;
  61. width: 100%;
  62. transform: translate(0, -50%);
  63. transform: translate3d(0, -50%, 10000rpx);
  64. z-index: 99999;
  65. text-align: center;
  66. overflow: hidden;
  67. }
  68. .toast-container text {
  69. display: inline-block;
  70. padding: 20rpx;
  71. font-size: 28rpx;
  72. line-height: 1.2;
  73. color: #FFF;
  74. background: rgba(0, 0, 0, 0.8);
  75. border-radius: 12rpx;
  76. }
  77. .modal-container {
  78. position: fixed;
  79. left: 0;
  80. top: 0;
  81. right: 0;
  82. bottom: 0;
  83. background: rgba(0, 0, 0, 0.5);
  84. display: flex;
  85. flex-flow: column;
  86. justify-content: center;
  87. align-items: center;
  88. z-index: 9999;
  89. transform: translateZ(100rpx);
  90. }
  91. .modal-container .modal-msg-container {
  92. width: 540rpx;
  93. background: #FFF;
  94. border-radius: 20rpx;
  95. }
  96. .modal-container .modal-msg-container .modal-msg {
  97. padding: 60rpx 20rpx;
  98. line-height: 40rpx;
  99. font-size: 32rpx;
  100. color: #444;
  101. text-align: center;
  102. }
  103. .modal-container .modal-msg-container .modal-btn-container {
  104. border-top: 2rpx solid #ededed;
  105. width: 100%;
  106. height: 96rpx;
  107. font-size: 32rpx;
  108. color: #444;
  109. display: flex;
  110. justify-content: center;
  111. align-items: center;
  112. overflow: hidden;
  113. }
  114. .modal-container .modal-msg-container .modal-btn-container view {
  115. flex: 1;
  116. text-align: center;
  117. line-height: 0;
  118. padding: 48rpx;
  119. }
  120. .modal-container .modal-msg-container .modal-btn-container .confirm-btn {
  121. color: #FF4752;
  122. }
  123. .modal-container .modal-msg-container .modal-btn-container .cancel-btn {
  124. border-right: 2rpx solid #ededed;
  125. }
  126. #global-loading {
  127. z-index: 9999999;
  128. position: fixed;
  129. top: 0%;
  130. left: 0%;
  131. width: 100%;
  132. height: 100%;
  133. background-color: rgba(255, 255, 255, 0.5);
  134. }
  135. #global-loading.hide-mask {
  136. background: transparent;
  137. }
  138. #global-loading image {
  139. position: absolute;
  140. top: 50%;
  141. left: 50%;
  142. width: 180rpx;
  143. height: 180rpx;
  144. -webkit-transform: translate(-90rpx, -90rpx);
  145. transform: translate(-90rpx, -90rpx);
  146. z-index: 99999999;
  147. }