123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372 |
- <!DOCTYPE html><html lang="en"><head><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge"><meta name="viewport" content="width=device-width,initial-scale=1"><link rel="icon" href="/favicon.ico"><title>Admin</title><style type="text/css">#pageInitLoading {
- top: 50%;
- left: 50%;
- position: absolute;
- -webkit-transform: translateY(-50%) translateX(-50%);
- transform: translateY(-50%) translateX(-50%);
- z-index: 100;
- }
- .la-pacman,
- .la-pacman > div {
- position: relative;
- -webkit-box-sizing: border-box;
- -moz-box-sizing: border-box;
- box-sizing: border-box;
- }
- .la-pacman {
- display: block;
- font-size: 0;
- color: #1890ff;
- }
- .la-pacman.la-dark {
- color: #333;
- }
- .la-pacman > div {
- display: inline-block;
- float: none;
- background-color: currentColor;
- border: 0 solid currentColor;
- }
- .la-pacman {
- width: 32px;
- height: 32px;
- }
- .la-pacman > div:nth-child(1),
- .la-pacman > div:nth-child(2) {
- width: 0;
- height: 0;
- background: transparent;
- border-style: solid;
- border-width: 16px;
- border-right-color: transparent;
- border-radius: 100%;
- -webkit-animation: pacman-rotate-half-up 0.5s 0s infinite;
- -moz-animation: pacman-rotate-half-up 0.5s 0s infinite;
- -o-animation: pacman-rotate-half-up 0.5s 0s infinite;
- animation: pacman-rotate-half-up 0.5s 0s infinite;
- }
- .la-pacman > div:nth-child(2) {
- margin-top: -32px;
- -webkit-animation-name: pacman-rotate-half-down;
- -moz-animation-name: pacman-rotate-half-down;
- -o-animation-name: pacman-rotate-half-down;
- animation-name: pacman-rotate-half-down;
- }
- .la-pacman > div:nth-child(3),
- .la-pacman > div:nth-child(4),
- .la-pacman > div:nth-child(5),
- .la-pacman > div:nth-child(6) {
- position: absolute;
- top: 50%;
- left: 200%;
- width: 8px;
- height: 8px;
- border-radius: 100%;
- opacity: 0;
- -webkit-animation: pacman-balls 2s 0s infinite linear;
- -moz-animation: pacman-balls 2s 0s infinite linear;
- -o-animation: pacman-balls 2s 0s infinite linear;
- animation: pacman-balls 2s 0s infinite linear;
- }
- .la-pacman > div:nth-child(3) {
- -webkit-animation-delay: -1.44s;
- -moz-animation-delay: -1.44s;
- -o-animation-delay: -1.44s;
- animation-delay: -1.44s;
- }
- .la-pacman > div:nth-child(4) {
- -webkit-animation-delay: -1.94s;
- -moz-animation-delay: -1.94s;
- -o-animation-delay: -1.94s;
- animation-delay: -1.94s;
- }
- .la-pacman > div:nth-child(5) {
- -webkit-animation-delay: -2.44s;
- -moz-animation-delay: -2.44s;
- -o-animation-delay: -2.44s;
- animation-delay: -2.44s;
- }
- .la-pacman > div:nth-child(6) {
- -webkit-animation-delay: -2.94s;
- -moz-animation-delay: -2.94s;
- -o-animation-delay: -2.94s;
- animation-delay: -2.94s;
- }
- .la-pacman.la-sm {
- width: 16px;
- height: 16px;
- }
- .la-pacman.la-sm > div:nth-child(1),
- .la-pacman.la-sm > div:nth-child(2) {
- border-width: 8px;
- }
- .la-pacman.la-sm > div:nth-child(2) {
- margin-top: -16px;
- }
- .la-pacman.la-sm > div:nth-child(3),
- .la-pacman.la-sm > div:nth-child(4),
- .la-pacman.la-sm > div:nth-child(5),
- .la-pacman.la-sm > div:nth-child(6) {
- width: 4px;
- height: 4px;
- }
- .la-pacman.la-2x {
- width: 64px;
- height: 64px;
- }
- .la-pacman.la-2x > div:nth-child(1),
- .la-pacman.la-2x > div:nth-child(2) {
- border-width: 32px;
- }
- .la-pacman.la-2x > div:nth-child(2) {
- margin-top: -64px;
- }
- .la-pacman.la-2x > div:nth-child(3),
- .la-pacman.la-2x > div:nth-child(4),
- .la-pacman.la-2x > div:nth-child(5),
- .la-pacman.la-2x > div:nth-child(6) {
- width: 16px;
- height: 16px;
- }
- @-webkit-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -webkit-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -webkit-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-moz-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -moz-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -moz-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-o-keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @keyframes pacman-rotate-half-up {
- 0%,
- 100% {
- -webkit-transform: rotate(270deg);
- -moz-transform: rotate(270deg);
- -o-transform: rotate(270deg);
- transform: rotate(270deg);
- }
- 50% {
- -webkit-transform: rotate(360deg);
- -moz-transform: rotate(360deg);
- -o-transform: rotate(360deg);
- transform: rotate(360deg);
- }
- }
- @-webkit-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -webkit-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -webkit-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-moz-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -moz-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -moz-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-o-keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -o-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @keyframes pacman-rotate-half-down {
- 0%,
- 100% {
- -webkit-transform: rotate(90deg);
- -moz-transform: rotate(90deg);
- -o-transform: rotate(90deg);
- transform: rotate(90deg);
- }
- 50% {
- -webkit-transform: rotate(0deg);
- -moz-transform: rotate(0deg);
- -o-transform: rotate(0deg);
- transform: rotate(0deg);
- }
- }
- @-webkit-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -webkit-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @-moz-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -moz-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -moz-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @-o-keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }
- @keyframes pacman-balls {
- 0% {
- left: 200%;
- opacity: 0;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- 5% {
- opacity: 0.5;
- }
- 66% {
- opacity: 1;
- }
- 67% {
- opacity: 0;
- }
- 100% {
- left: 0;
- -webkit-transform: translateY(-50%);
- -moz-transform: translateY(-50%);
- -o-transform: translateY(-50%);
- transform: translateY(-50%);
- }
- }</style><link href="/static/css/chunk-0bad8f1e.06f4a5db.css" rel="prefetch"><link href="/static/css/chunk-13635f7c.bd953cd2.css" rel="prefetch"><link href="/static/css/chunk-15ac5da4.9ba66bcc.css" rel="prefetch"><link href="/static/css/chunk-22c94016.58aecb3f.css" rel="prefetch"><link href="/static/css/chunk-2fb4caf0.0e4bfb17.css" rel="prefetch"><link href="/static/css/chunk-4575aa18.b4a122f8.css" rel="prefetch"><link href="/static/css/chunk-66760baa.06f4a5db.css" rel="prefetch"><link href="/static/css/chunk-77a2af58.06f4a5db.css" rel="prefetch"><link href="/static/css/chunk-e3e07c82.e19cf908.css" rel="prefetch"><link href="/static/css/chunk-eaed1b24.231e814a.css" rel="prefetch"><link href="/static/js/chunk-0bad8f1e.6ab300fd.js" rel="prefetch"><link href="/static/js/chunk-13635f7c.c9d49806.js" rel="prefetch"><link href="/static/js/chunk-15ac5da4.550ff1f1.js" rel="prefetch"><link href="/static/js/chunk-22c94016.cc549d31.js" rel="prefetch"><link href="/static/js/chunk-2d0c87ec.a0c80f70.js" rel="prefetch"><link href="/static/js/chunk-2d0daf00.f5b9850f.js" rel="prefetch"><link href="/static/js/chunk-2d0f0f76.678638ec.js" rel="prefetch"><link href="/static/js/chunk-2fb4caf0.726bc3bc.js" rel="prefetch"><link href="/static/js/chunk-4575aa18.53eff859.js" rel="prefetch"><link href="/static/js/chunk-66760baa.3d2042c3.js" rel="prefetch"><link href="/static/js/chunk-77a2af58.d1ab59b2.js" rel="prefetch"><link href="/static/js/chunk-e3e07c82.e848595b.js" rel="prefetch"><link href="/static/js/chunk-eaed1b24.45eb3e0a.js" rel="prefetch"><link href="/static/css/app.80ba0ca0.css" rel="preload" as="style"><link href="/static/css/chunk-vendors.1494e8e9.css" rel="preload" as="style"><link href="/static/js/app.6997716e.js" rel="preload" as="script"><link href="/static/js/chunk-vendors.3a5a0d48.js" rel="preload" as="script"><link href="/static/css/chunk-vendors.1494e8e9.css" rel="stylesheet"><link href="/static/css/app.80ba0ca0.css" rel="stylesheet"></head><body><noscript><strong>We're sorry but vue-antd-admin doesn't work properly without JavaScript enabled. Please enable it to continue.</strong></noscript><div id="pageInitLoading"><div class="la-pacman la-2x"><div></div><div></div><div></div><div></div><div></div><div></div></div></div><div id="popContainer"><div id="app"></div></div><script src="/static/js/chunk-vendors.3a5a0d48.js"></script><script src="/static/js/app.6997716e.js"></script></body></html>
|