u-toast.wxss 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. @charset "UTF-8";
  2. /* 这里是你自己写的全局css样式 */
  3. .page.data-v-509fd82b {
  4. background-color: #f3f4f6;
  5. padding: 20rpx;
  6. }
  7. .empty-wrap.data-v-509fd82b {
  8. margin-top: 200rpx;
  9. width: 100%;
  10. display: flex;
  11. justify-content: center;
  12. align-items: center;
  13. }
  14. .content-page.data-v-509fd82b {
  15. min-height: 100vh;
  16. background-color: #fff;
  17. }
  18. .footer.data-v-509fd82b {
  19. display: flex;
  20. align-items: center;
  21. color: #909399;
  22. width: 100%;
  23. padding: 20rpx 0;
  24. justify-content: center;
  25. }
  26. .box-shadow.data-v-509fd82b {
  27. box-shadow: 0rpx 2rpx 4rpx 0 rgba(0, 0, 0, 0.2);
  28. }
  29. .flex-empty.data-v-509fd82b {
  30. visibility: hidden;
  31. width: 120rpx;
  32. height: 0rpx;
  33. }
  34. .bwin-btn-100.data-v-509fd82b {
  35. width: 100%;
  36. }
  37. .bwin-popup.data-v-509fd82b {
  38. display: flex;
  39. flex-direction: column;
  40. width: 100%;
  41. position: relative;
  42. min-height: 100%;
  43. overflow: hidden;
  44. }
  45. .bwin-popup .popup-header.data-v-509fd82b {
  46. z-index: 2;
  47. width: 80%;
  48. position: fixed;
  49. padding: 20rpx 0;
  50. text-align: center;
  51. font-size: 32rpx;
  52. color: #fff;
  53. font-weight: bold;
  54. background-color: #2080f0;
  55. border-top-left-radius: 20rpx;
  56. border-top-right-radius: 20rpx;
  57. }
  58. .bwin-popup .popup-body.data-v-509fd82b {
  59. z-index: 1;
  60. position: relative;
  61. top: 90rpx;
  62. margin-bottom: 90rpx;
  63. padding: 20rpx;
  64. font-size: 32rpx;
  65. overflow-y: scroll;
  66. }
  67. .bwin-popup .popup-footer.data-v-509fd82b {
  68. position: relative;
  69. left: 0;
  70. bottom: 20rpx;
  71. width: 100%;
  72. display: flex;
  73. justify-content: space-around;
  74. }
  75. .u-toast.data-v-509fd82b {
  76. position: fixed;
  77. z-index: -1;
  78. transition: opacity 0.3s;
  79. text-align: center;
  80. color: #fff;
  81. border-radius: 8rpx;
  82. background: #585858;
  83. display: flex;
  84. flex-direction: row;
  85. align-items: center;
  86. justify-content: center;
  87. font-size: 28rpx;
  88. opacity: 0;
  89. pointer-events: none;
  90. padding: 18rpx 40rpx;
  91. }
  92. .u-toast.u-show.data-v-509fd82b {
  93. opacity: 1;
  94. }
  95. .u-icon.data-v-509fd82b {
  96. margin-right: 10rpx;
  97. display: flex;
  98. flex-direction: row;
  99. align-items: center;
  100. line-height: normal;
  101. }
  102. .u-position-center.data-v-509fd82b {
  103. left: 50%;
  104. top: 50%;
  105. -webkit-transform: translate(-50%, -50%);
  106. transform: translate(-50%, -50%);
  107. max-width: 70%;
  108. }
  109. .u-position-top.data-v-509fd82b {
  110. left: 50%;
  111. top: 20%;
  112. -webkit-transform: translate(-50%, -50%);
  113. transform: translate(-50%, -50%);
  114. }
  115. .u-position-bottom.data-v-509fd82b {
  116. left: 50%;
  117. bottom: 20%;
  118. -webkit-transform: translate(-50%, -50%);
  119. transform: translate(-50%, -50%);
  120. }
  121. .u-type-primary.data-v-509fd82b {
  122. color: #2979ff;
  123. background-color: #ecf5ff;
  124. border: 1px solid #d7eafe;
  125. }
  126. .u-type-success.data-v-509fd82b {
  127. color: #19be6b;
  128. background-color: #dbf1e1;
  129. border: 1px solid #BEF5C8;
  130. }
  131. .u-type-error.data-v-509fd82b {
  132. color: #fa3534;
  133. background-color: #fef0f0;
  134. border: 1px solid #fde2e2;
  135. }
  136. .u-type-warning.data-v-509fd82b {
  137. color: #ff9900;
  138. background-color: #fdf6ec;
  139. border: 1px solid #faecd8;
  140. }
  141. .u-type-info.data-v-509fd82b {
  142. color: #909399;
  143. background-color: #f4f4f5;
  144. border: 1px solid #ebeef5;
  145. }
  146. .u-type-default.data-v-509fd82b {
  147. color: #fff;
  148. background-color: #585858;
  149. }