u-loading-icon.wxss 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /* 水平间距 */
  2. /* 水平间距 */
  3. .u-empty.data-v-00752c6d,
  4. .u-empty__wrap.data-v-00752c6d,
  5. .u-tabs.data-v-00752c6d,
  6. .u-tabs__wrapper.data-v-00752c6d,
  7. .u-tabs__wrapper__scroll-view-wrapper.data-v-00752c6d,
  8. .u-tabs__wrapper__scroll-view.data-v-00752c6d,
  9. .u-tabs__wrapper__nav.data-v-00752c6d,
  10. .u-tabs__wrapper__nav__line.data-v-00752c6d {
  11. display: flex;
  12. flex-direction: column;
  13. flex-shrink: 0;
  14. flex-grow: 0;
  15. flex-basis: auto;
  16. align-items: stretch;
  17. align-content: flex-start;
  18. }
  19. .u-loading-icon.data-v-00752c6d {
  20. display: flex;
  21. flex-direction: row;
  22. align-items: center;
  23. justify-content: center;
  24. color: #c8c9cc;
  25. }
  26. .u-loading-icon__text.data-v-00752c6d {
  27. margin-left: 4px;
  28. color: #606266;
  29. font-size: 14px;
  30. line-height: 20px;
  31. }
  32. .u-loading-icon__spinner.data-v-00752c6d {
  33. width: 30px;
  34. height: 30px;
  35. position: relative;
  36. box-sizing: border-box;
  37. max-width: 100%;
  38. max-height: 100%;
  39. animation: u-rotate-00752c6d 1s linear infinite;
  40. }
  41. .u-loading-icon__spinner--semicircle.data-v-00752c6d {
  42. border-width: 2px;
  43. border-color: transparent;
  44. border-top-right-radius: 100px;
  45. border-top-left-radius: 100px;
  46. border-bottom-left-radius: 100px;
  47. border-bottom-right-radius: 100px;
  48. border-style: solid;
  49. }
  50. .u-loading-icon__spinner--circle.data-v-00752c6d {
  51. border-top-right-radius: 100px;
  52. border-top-left-radius: 100px;
  53. border-bottom-left-radius: 100px;
  54. border-bottom-right-radius: 100px;
  55. border-width: 2px;
  56. border-top-color: #e5e5e5;
  57. border-right-color: #e5e5e5;
  58. border-bottom-color: #e5e5e5;
  59. border-left-color: #e5e5e5;
  60. border-style: solid;
  61. }
  62. .u-loading-icon--vertical.data-v-00752c6d {
  63. flex-direction: column;
  64. }
  65. .data-v-00752c6d:host {
  66. font-size: 0px;
  67. line-height: 1;
  68. }
  69. .u-loading-icon__spinner--spinner.data-v-00752c6d {
  70. animation-timing-function: steps(12);
  71. }
  72. .u-loading-icon__text.data-v-00752c6d:empty {
  73. display: none;
  74. }
  75. .u-loading-icon--vertical .u-loading-icon__text.data-v-00752c6d {
  76. margin: 6px 0 0;
  77. color: #606266;
  78. }
  79. .u-loading-icon__dot.data-v-00752c6d {
  80. position: absolute;
  81. top: 0;
  82. left: 0;
  83. width: 100%;
  84. height: 100%;
  85. }
  86. .u-loading-icon__dot.data-v-00752c6d:before {
  87. display: block;
  88. width: 2px;
  89. height: 25%;
  90. margin: 0 auto;
  91. background-color: currentColor;
  92. border-radius: 40%;
  93. content: " ";
  94. }
  95. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(1) {
  96. transform: rotate(30deg);
  97. opacity: 1;
  98. }
  99. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(2) {
  100. transform: rotate(60deg);
  101. opacity: 0.9375;
  102. }
  103. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(3) {
  104. transform: rotate(90deg);
  105. opacity: 0.875;
  106. }
  107. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(4) {
  108. transform: rotate(120deg);
  109. opacity: 0.8125;
  110. }
  111. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(5) {
  112. transform: rotate(150deg);
  113. opacity: 0.75;
  114. }
  115. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(6) {
  116. transform: rotate(180deg);
  117. opacity: 0.6875;
  118. }
  119. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(7) {
  120. transform: rotate(210deg);
  121. opacity: 0.625;
  122. }
  123. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(8) {
  124. transform: rotate(240deg);
  125. opacity: 0.5625;
  126. }
  127. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(9) {
  128. transform: rotate(270deg);
  129. opacity: 0.5;
  130. }
  131. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(10) {
  132. transform: rotate(300deg);
  133. opacity: 0.4375;
  134. }
  135. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(11) {
  136. transform: rotate(330deg);
  137. opacity: 0.375;
  138. }
  139. .u-loading-icon__dot.data-v-00752c6d:nth-of-type(12) {
  140. transform: rotate(360deg);
  141. opacity: 0.3125;
  142. }
  143. @keyframes u-rotate-00752c6d {
  144. 0% {
  145. transform: rotate(0deg);
  146. }
  147. to {
  148. transform: rotate(1turn);
  149. }
  150. }