unicom.css 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  1. .loading {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. right: 0;
  6. bottom: 0;
  7. z-index: 9995;
  8. }
  9. .loading .content {
  10. color: rgba(255, 255, 255, 0.6);
  11. margin-top: 4rem;
  12. text-align: center;
  13. font-size: 0.3rem;
  14. }
  15. .lockScroll {
  16. overflow: hidden;
  17. }
  18. .dialog-alert {
  19. top: 50%;
  20. transform: translateY(-50%);
  21. left: 1.2rem;
  22. right: 1.2rem;
  23. z-index: 9998;
  24. position: fixed;
  25. animation: frames-top-center-01 300ms;
  26. border-radius: 0.1rem;
  27. min-height: auto;
  28. height: auto;
  29. background: white;
  30. color: black;
  31. }
  32. .dialog-alert h1 {
  33. font-size: 0.36rem;
  34. font-weight: bold;
  35. text-align: center;
  36. margin-top: 0.5rem;
  37. }
  38. .dialog-alert .content {
  39. min-height: 0.8rem;
  40. margin: 0.2rem 0.6rem;
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. font-size: 0.3rem;
  45. }
  46. .dialog-alert .actions {
  47. height: 1rem;
  48. display: flex;
  49. justify-content: center;
  50. }
  51. .dialog-alert .actions .btn {
  52. color: white;
  53. font-size: 0.36rem;
  54. background: linear-gradient(-90deg, #fa382f, #ff7453);
  55. height: 0.7rem;
  56. display: flex;
  57. align-items: center;
  58. justify-content: center;
  59. width: 2rem;
  60. border-radius: 0.4rem;
  61. padding: 0;
  62. margin: 0;
  63. }
  64. @keyframes frames-top-center-01 {
  65. 0% {
  66. top: -10%;
  67. }
  68. 100% {
  69. top: 50%;
  70. }
  71. }
  72. @keyframes frames-top-center-02 {
  73. 0% {
  74. top: 0%;
  75. }
  76. 92% {
  77. top: 50%;
  78. }
  79. 100% {
  80. top: 40%;
  81. }
  82. }
  83. @keyframes capauth-zoom-in {
  84. 0% {
  85. opacity: 0;
  86. }
  87. 80% {
  88. opacity: 0;
  89. }
  90. 100% {
  91. opacity: 1;
  92. }
  93. }
  94. .overlay {
  95. position: fixed;
  96. top: 0;
  97. right: 0;
  98. bottom: 0;
  99. left: 0;
  100. z-index: 9990;
  101. background-color: rgba(0, 0, 0, 0.7);
  102. min-height: 6.5rem;
  103. }
  104. .overlaysa {
  105. position: fixed;
  106. top: 0;
  107. right: 0;
  108. bottom: 0;
  109. left: 0;
  110. z-index: 9990;
  111. background-color: none;
  112. min-height: 6.5rem;
  113. }
  114. .overlay-alert {
  115. z-index: 9995;
  116. }
  117. .overlay-loading {
  118. z-index: 9995;
  119. }
  120. #uniauthframe {
  121. width: 100%;
  122. height: 100%;
  123. position: fixed;
  124. top: 0px;
  125. left: 0px;
  126. margin: 0px;
  127. padding: 0px;
  128. border: 0px;
  129. animation: capauth-zoom-in 600ms;
  130. z-index: 9990;
  131. }
  132. /*
  133. .dialog-alert .content {
  134. min-height: 1.2rem;
  135. margin: 0.2rem 0.6rem;
  136. display: flex;
  137. align-items: center;
  138. justify-content: center;
  139. }
  140. .actions {
  141. height: 1rem;
  142. display: flex;
  143. justify-content: center;
  144. .btn {
  145. background: red;
  146. height: 0.7rem;
  147. display: flex;
  148. align-items: center;
  149. justify-content: center;
  150. width: 2rem;
  151. border-radius: 0.4rem;
  152. }
  153. }
  154. */
  155. /*# sourceMappingURL=unicom.css.map */