index.css 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193
  1. body {
  2. margin: 0;
  3. padding: 0;
  4. font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
  5. 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
  6. sans-serif;
  7. -webkit-font-smoothing: antialiased;
  8. -moz-osx-font-smoothing: grayscale;
  9. }
  10. code {
  11. font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New',
  12. monospace;
  13. }
  14. .loader {
  15. font-size: 10px;
  16. margin: 0px auto;
  17. text-indent: -9999em;
  18. width: 2em;
  19. height: 2em;
  20. border-radius: 50%;
  21. background: #000000;
  22. background: -moz-linear-gradient(left, #000000 10%, rgba(255, 255, 255, 0) 42%);
  23. background: -webkit-linear-gradient(left, #000000 10%, rgba(255, 255, 255, 0) 42%);
  24. background: -o-linear-gradient(left, #000000 10%, rgba(255, 255, 255, 0) 42%);
  25. background: -ms-linear-gradient(left, #000000 10%, rgba(255, 255, 255, 0) 42%);
  26. background: linear-gradient(to right, #000000 10%, rgba(255, 255, 255, 0) 42%);
  27. position: relative;
  28. -webkit-animation: load3 1.4s infinite linear;
  29. animation: load3 1.4s infinite linear;
  30. -webkit-transform: translateZ(0);
  31. -ms-transform: translateZ(0);
  32. transform: translateZ(0);
  33. }
  34. .loader:before {
  35. width: 50%;
  36. height: 50%;
  37. background: #000000;
  38. border-radius: 100% 0 0 0;
  39. position: absolute;
  40. top: 0;
  41. left: 0;
  42. content: '';
  43. }
  44. .loader:after {
  45. background: #ffffff;
  46. width: 75%;
  47. height: 75%;
  48. border-radius: 50%;
  49. content: '';
  50. margin: auto;
  51. position: absolute;
  52. top: 0;
  53. left: 0;
  54. bottom: 0;
  55. right: 0;
  56. }
  57. @-webkit-keyframes load3 {
  58. 0% {
  59. -webkit-transform: rotate(0deg);
  60. transform: rotate(0deg);
  61. }
  62. 100% {
  63. -webkit-transform: rotate(360deg);
  64. transform: rotate(360deg);
  65. }
  66. }
  67. @keyframes load3 {
  68. 0% {
  69. -webkit-transform: rotate(0deg);
  70. transform: rotate(0deg);
  71. }
  72. 100% {
  73. -webkit-transform: rotate(360deg);
  74. transform: rotate(360deg);
  75. }
  76. }
  77. .loadingIndicator {
  78. position: fixed;
  79. padding: 10px;
  80. display: flex;
  81. flex-direction: row;
  82. background: #fff;
  83. margin: 10px;
  84. box-shadow: 0 0 11px -2px #000;
  85. border-radius: 2em;
  86. right: 0;
  87. }
  88. .loadingSpinner {
  89. margin-right: 10px;
  90. }
  91. .btnContainer {
  92. position: absolute;
  93. top: 0;
  94. left: 0;
  95. width: 100%;
  96. text-align: center;
  97. }
  98. .btnContainer button {
  99. margin: 5px;
  100. }
  101. .playBtn{
  102. position: fixed;
  103. right: 220px;
  104. top: 50%;
  105. transform: translateY(-50%);
  106. border-radius: 50%;
  107. width: 60px;
  108. line-height: 55px;
  109. height: 60px;
  110. border: 1px solid black;
  111. background: rgba(255, 255, 255, 0.8);
  112. }
  113. .playBtn:hover{
  114. background: rgba(12, 116, 165, 0.8);
  115. }
  116. .wapper{
  117. position: relative;
  118. width: 100%;
  119. height: 100%;
  120. }
  121. .wapper .layoutContainer{
  122. position: fixed;
  123. left: 0;
  124. top: 0;
  125. width: 100%;
  126. height: 100%;
  127. background-color: rgba(0,0,0,0.5);
  128. z-index: 9999;
  129. }
  130. .layoutContainer .activationBox{
  131. box-sizing: border-box;
  132. padding: 20px;
  133. position: absolute;
  134. left: 50%;
  135. top: 50%;
  136. transform: translate(-50%,-50%);
  137. background-color: white;
  138. }
  139. .layoutContainer .activationBox .title{
  140. font-size: 20px;
  141. }
  142. .layoutContainer .activationBox .iptWp{
  143. padding: 20px 0;
  144. }
  145. .iptWp input{
  146. width: 300px;
  147. height: 30px;
  148. }
  149. .layoutContainer .activationBox .btnWp{
  150. text-align: right;
  151. }
  152. .btnWp .btn{
  153. cursor: pointer;
  154. font-size: 14px;
  155. padding: 8px 20px;
  156. background-color: red;
  157. display: inline-block;
  158. background-color: #409eff;
  159. color: white;
  160. -webkit-user-select:none;/*webkit浏览器*/
  161. -moz-user-select:none;/*火狐*/
  162. -ms-user-select:none;/*IE10*/
  163. user-select:none;
  164. }
  165. .btnWp .btn:hover{
  166. background-color: #66b1ff;
  167. }
  168. .btnWp .btn:active{
  169. background-color: #3a8ee6;
  170. }
  171. .visibilityHidden{
  172. visibility: hidden;
  173. }
  174. .visibilityVisible{
  175. visibility: visible;
  176. }
  177. .toasterWp{
  178. z-index: 10000;
  179. }