unicom.scss 2.6 KB

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