adminLogin.less 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489
  1. body {
  2. // background: #fff url(../../../image/bg.jpg) no-repeat;
  3. background-size: cover;
  4. }
  5. .content {
  6. margin-top: 100px;
  7. display: flex;
  8. flex-direction: row;
  9. justify-content: center;
  10. position: relative;
  11. }
  12. .login-box {
  13. width: 400px;
  14. height: 300px;
  15. padding: 50px 50px 0;
  16. border-radius: 10px;
  17. // background: rgba(0, 0, 0, 0.5);
  18. // background: rgba(255, 255, 255, 0.1);
  19. border: 1px solid rgba(0, 0, 0, .2);
  20. -moz-box-shadow: 0 0 13px 3px rgba(0, 0, 0, .5);
  21. -webkit-box-shadow: 0 0 13px 3px rgba(0, 0, 0, .5);
  22. box-shadow: 0 0 13px 3px rgba(0, 0, 0, .5);
  23. margin-left: 80px;
  24. .ant-spin-blur:after{
  25. background: transparent;
  26. }
  27. .ant-input {
  28. font-size: 18px;
  29. background-color: rgba(0, 0, 0, 0);
  30. color: #fff;
  31. border: none;
  32. box-shadow: none;
  33. border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  34. border-radius: 4px;
  35. &::placeholder {
  36. color: rgba(255, 255, 255, 0.5);
  37. }
  38. }
  39. .ant-input:focus {
  40. border: none;
  41. box-shadow: none;
  42. border-bottom: 1px solid #58a3ff;
  43. }
  44. input:-webkit-autofill {
  45. -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  46. transition: background-color 50000s ease-in-out 0s !important;
  47. -webkit-text-fill-color: #fff;
  48. }
  49. input {
  50. height: 36px;
  51. border-radius: 6px;
  52. font-size: 18px;
  53. }
  54. button {
  55. width: 298px;
  56. height: 36px;
  57. border-radius: 4px;
  58. margin-top: 20px;
  59. background: transparent;
  60. border: 1px solid #58a3ff;
  61. color: #58a3ff;
  62. }
  63. .ant-btn:hover,
  64. .ant-btn:focus,
  65. .ant-btn:active,
  66. .ant-btn.active {
  67. background: transparent;
  68. color: #58a3ff;
  69. }
  70. .ant-input-group-addon {
  71. font-size: 17px;
  72. }
  73. .user-box {
  74. margin-bottom: 20px;
  75. .ant-input {
  76. width: 300px;
  77. }
  78. }
  79. .pw-box {
  80. margin-bottom: 20px;
  81. .ant-input {
  82. width: 300px;
  83. }
  84. }
  85. }
  86. .ant-checkbox-wrapper {
  87. margin-bottom: 20px;
  88. font-size: 14px;
  89. color: #878787;
  90. }
  91. .ant-btn {
  92. font-size: 18px;
  93. }
  94. input::-webkit-input-placeholder,
  95. textarea::-webkit-input-placeholder {
  96. color: #333;
  97. }
  98. input:-moz-placeholder,
  99. textarea:-moz-placeholder {
  100. color: #333;
  101. }
  102. input::-moz-placeholder,
  103. textarea::-moz-placeholder {
  104. color: #333;
  105. }
  106. input:-ms-input-placeholder,
  107. textarea:-ms-input-placeholder {
  108. color: #333;
  109. }
  110. // 球
  111. @-webkit-keyframes cir1 {
  112. 0% {
  113. -webkit-transform: rotateY(0deg) rotateZ(10deg);
  114. }
  115. 100% {
  116. -webkit-transform: rotateY(-360deg) rotateZ(10deg);
  117. }
  118. }
  119. @keyframes cir1 {
  120. 0% {
  121. transform: rotateY(0deg) rotateZ(10deg);
  122. }
  123. 100% {
  124. transform: rotateY(-360deg) rotateZ(10deg);
  125. }
  126. }
  127. @-webkit-keyframes cir2 {
  128. 0% {
  129. -webkit-transform: rotateY(-60deg) rotateZ(10deg);
  130. }
  131. 100% {
  132. -webkit-transform: rotateY(-420deg) rotateZ(10deg);
  133. }
  134. }
  135. @keyframes cir2 {
  136. 0% {
  137. transform: rotateY(-60deg) rotateZ(10deg);
  138. }
  139. 100% {
  140. transform: rotateY(-420deg) rotateZ(10deg);
  141. }
  142. }
  143. @-webkit-keyframes cir3 {
  144. 0% {
  145. -webkit-transform: rotateY(-120deg) rotateZ(10deg);
  146. }
  147. 100% {
  148. -webkit-transform: rotateY(-480deg) rotateZ(10deg);
  149. }
  150. }
  151. @keyframes cir3 {
  152. 0% {
  153. transform: rotateY(-120deg) rotateZ(10deg);
  154. }
  155. 100% {
  156. transform: rotateY(-480deg) rotateZ(10deg);
  157. }
  158. }
  159. @-webkit-keyframes cir4 {
  160. 0% {
  161. -webkit-transform: rotateY(-180deg) rotateZ(10deg);
  162. }
  163. 100% {
  164. -webkit-transform: rotateY(-540deg) rotateZ(10deg);
  165. }
  166. }
  167. @keyframes cir4 {
  168. 0% {
  169. transform: rotateY(-180deg) rotateZ(10deg);
  170. }
  171. 100% {
  172. transform: rotateY(-540deg) rotateZ(10deg);
  173. }
  174. }
  175. @-webkit-keyframes cir5 {
  176. 0% {
  177. -webkit-transform: rotateY(-240deg) rotateZ(10deg);
  178. }
  179. 100% {
  180. -webkit-transform: rotateY(-600deg) rotateZ(10deg);
  181. }
  182. }
  183. @keyframes cir5 {
  184. 0% {
  185. transform: rotateY(-240deg) rotateZ(10deg);
  186. }
  187. 100% {
  188. transform: rotateY(-600deg) rotateZ(10deg);
  189. }
  190. }
  191. @-webkit-keyframes cir6 {
  192. 0% {
  193. -webkit-transform: rotateY(-300deg) rotateZ(10deg);
  194. }
  195. 100% {
  196. -webkit-transform: rotateY(-660deg) rotateZ(10deg);
  197. }
  198. }
  199. @keyframes cir6 {
  200. 0% {
  201. transform: rotateY(-300deg) rotateZ(10deg);
  202. }
  203. 100% {
  204. transform: rotateY(-660deg) rotateZ(10deg);
  205. }
  206. }
  207. @keyframes cir {
  208. 0% {
  209. transform: rotateX(80deg) rotateY(-10deg) rotateZ(0deg);
  210. }
  211. 100% {
  212. transform: rotateX(80deg) rotateY(-10deg) rotateZ(-360deg);
  213. }
  214. }
  215. @keyframes cir_p {
  216. 0% {
  217. transform: rotateZ(0deg);
  218. }
  219. 100% {
  220. transform: rotateZ(-360deg);
  221. }
  222. }
  223. @-webkit-keyframes cir {
  224. 0% {
  225. -webkit-transform: rotateX(80deg) rotateY(-10deg) rotateZ(0deg);
  226. }
  227. 100% {
  228. -webkit-transform: rotateX(80deg) rotateY(-10deg) rotateZ(-360deg);
  229. }
  230. }
  231. @-webkit-keyframes cir_p {
  232. 0% {
  233. -webkit-transform: rotateZ(0deg);
  234. }
  235. 100% {
  236. -webkit-transform: rotateZ(-360deg);
  237. }
  238. }
  239. .u_p3d {
  240. -webkit-transform-style: preserve-3d !important;
  241. transform-style: preserve-3d !important;
  242. }
  243. .ui_base {
  244. width: 400px;
  245. // height: 0px;
  246. -webkit-perspective: 1000px;
  247. -webkit-perspective-origin: 50% 0%;
  248. perspective: 1000px;
  249. perspective-origin: 50% 0%;
  250. }
  251. .base {
  252. -webkit-transform: rotateX(80deg) rotateY(-10deg);
  253. transform: rotateX(80deg) rotateY(-10deg);
  254. position: relative;
  255. width: 350px;
  256. height: 350px;
  257. -webkit-backface-visibility: hidden;
  258. backface-visibility: hidden;
  259. animation: cir 10s linear 0s infinite;
  260. }
  261. .ball_base {
  262. -webkit-transform-origin: 225px 0px;
  263. transform-origin: 225px 0px;
  264. position: absolute;
  265. top: 175px;
  266. left: -50px;
  267. width: 225px;
  268. height: 127px;
  269. }
  270. .ball {
  271. -webkit-transition: all 2s ease-out 0ms;
  272. transition: all 2s ease-out 0ms;
  273. -webkit-transform-origin: 50% 50%;
  274. transform-origin: 50% 50%;
  275. position: absolute;
  276. width: 90px;
  277. height: 90px;
  278. line-height: 90px;
  279. text-align: center;
  280. // background-image: url(../images/hovertreeball.png);
  281. border: 1px solid #fff;
  282. border-radius: 50%;
  283. background-size: 100% 100%;
  284. left: 0px;
  285. top: 0px;
  286. color: rgba(255, 255, 255, 0);
  287. font-size: 14px;
  288. opacity: 1;
  289. overflow: hidden;
  290. }
  291. .ball_c {
  292. -webkit-transform-origin: 50% 50%;
  293. transform-origin: 50% 50%;
  294. position: absolute;
  295. width: 157px;
  296. height: 157px;
  297. line-height: 157px;
  298. text-align: center;
  299. // background-image: url(../images/ball_center.png);
  300. border: 1px solid #fff;
  301. border-radius: 50%;
  302. left: 90px;
  303. top: 50px;
  304. color: #fff;
  305. font-size: 24px;
  306. }
  307. .pan {
  308. position: absolute;
  309. width: 100%;
  310. height: 100%;
  311. // background-image: url("../images/c.png");
  312. border: 1px solid #fff;
  313. border-radius: 50%;
  314. background-size: 100% 100%;
  315. -webkit-animation: cir_p 5s linear 0s infinite;
  316. animation: cir_p 5s linear 0s infinite;
  317. }
  318. .ball {
  319. color: #fff;
  320. opacity: 1;
  321. }
  322. .ball_1 .ball {
  323. transform: rotateY(10deg) rotateZ(10deg);
  324. animation: cir1 10s linear 0s infinite;
  325. -webkit-transition-delay: 1100ms !important;
  326. transition-delay: 1100ms !important;
  327. }
  328. .ball_2 .ball {
  329. -webkit-animation: cir2 10s linear 0s infinite;
  330. animation: cir2 10s linear 0s infinite;
  331. -webkit-transition-delay: 900ms !important;
  332. transition-delay: 900ms !important;
  333. }
  334. .ball_3 .ball {
  335. -webkit-animation: cir3 10s linear 0s infinite;
  336. animation: cir3 10s linear 0s infinite;
  337. -webkit-transition-delay: 700ms !important;
  338. transition-delay: 700ms !important;
  339. }
  340. .ball_4 .ball {
  341. -webkit-animation: cir4 10s linear 0s infinite;
  342. animation: cir4 10s linear 0s infinite;
  343. -webkit-transition-delay: 500ms !important;
  344. transition-delay: 500ms !important;
  345. }
  346. .ball_5 .ball {
  347. -webkit-animation: cir5 10s linear 0s infinite;
  348. animation: cir5 10s linear 0s infinite;
  349. -webkit-transition-delay: 300ms !important;
  350. transition-delay: 300ms !important;
  351. }
  352. .ball_6 .ball {
  353. -webkit-animation: cir6 10s linear 0s infinite;
  354. animation: cir6 10s linear 0s infinite;
  355. -webkit-transition-delay: 100ms !important;
  356. transition-delay: 100ms !important;
  357. }
  358. .ball_1 {
  359. -webkit-transform: rotateX(-90deg) rotateY(0deg) translateY(-70px);
  360. transform: rotateX(-90deg) rotateY(0deg) translateY(-70px);
  361. }
  362. .ball_2 {
  363. -webkit-transform: rotateX(-90deg) rotateY(60deg) translateY(-70px);
  364. transform: rotateX(-90deg) rotateY(60deg) translateY(-70px);
  365. }
  366. .ball_3 {
  367. -webkit-transform: rotateX(-90deg) rotateY(120deg) translateY(-70px);
  368. transform: rotateX(-90deg) rotateY(120deg) translateY(-70px);
  369. }
  370. .ball_4 {
  371. -webkit-transform: rotateX(-90deg) rotateY(180deg) translateY(-70px);
  372. transform: rotateX(-90deg) rotateY(180deg) translateY(-70px);
  373. }
  374. .ball_5 {
  375. -webkit-transform: rotateX(-90deg) rotateY(240deg) translateY(-70px);
  376. transform: rotateX(-90deg) rotateY(240deg) translateY(-70px);
  377. }
  378. .ball_6 {
  379. -webkit-transform: rotateX(-90deg) rotateY(300deg) translateY(-70px);
  380. transform: rotateX(-90deg) rotateY(300deg) translateY(-70px);
  381. }
  382. #title {
  383. position: absolute;
  384. bottom: -150px;
  385. left: 0;
  386. right: 0;
  387. color: #FFF;
  388. text-align: center;
  389. font-family: "lato", sans-serif;
  390. font-weight: 300;
  391. font-size: 70px;
  392. letter-spacing: 10px;
  393. padding-left: 10px;
  394. }
  395. #title span {
  396. background: -webkit-linear-gradient(white, #38495a);
  397. -webkit-background-clip: text;
  398. -webkit-text-fill-color: transparent;
  399. }