login.css 75 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435
  1. /*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
  2. /**
  3. * 1. Change the default font family in all browsers (opinionated).
  4. * 2. Correct the line height in all browsers.
  5. * 3. Prevent adjustments of font size after orientation changes in
  6. * IE on Windows Phone and in iOS.
  7. */
  8. /* Document
  9. ========================================================================== */
  10. html {
  11. font-family: sans-serif;
  12. /* 1 */
  13. line-height: 1.15;
  14. /* 2 */
  15. -ms-text-size-adjust: 100%;
  16. /* 3 */
  17. -webkit-text-size-adjust: 100%;
  18. /* 3 */
  19. }
  20. /* Sections
  21. ========================================================================== */
  22. /**
  23. * Remove the margin in all browsers (opinionated).
  24. */
  25. body {
  26. margin: 0;
  27. }
  28. /**
  29. * Add the correct display in IE 9-.
  30. */
  31. article,
  32. aside,
  33. footer,
  34. header,
  35. nav,
  36. section {
  37. display: block;
  38. }
  39. /**
  40. * Correct the font size and margin on `h1` elements within `section` and
  41. * `article` contexts in Chrome, Firefox, and Safari.
  42. */
  43. h1 {
  44. font-size: 2em;
  45. margin: 0.67em 0;
  46. }
  47. /* Grouping content
  48. ========================================================================== */
  49. /**
  50. * Add the correct display in IE 9-.
  51. * 1. Add the correct display in IE.
  52. */
  53. figcaption,
  54. figure,
  55. main {
  56. /* 1 */
  57. display: block;
  58. }
  59. /**
  60. * Add the correct margin in IE 8.
  61. */
  62. figure {
  63. margin: 1em 40px;
  64. }
  65. /**
  66. * 1. Add the correct box sizing in Firefox.
  67. * 2. Show the overflow in Edge and IE.
  68. */
  69. hr {
  70. box-sizing: content-box;
  71. /* 1 */
  72. height: 0;
  73. /* 1 */
  74. overflow: visible;
  75. /* 2 */
  76. }
  77. /**
  78. * 1. Correct the inheritance and scaling of font size in all browsers.
  79. * 2. Correct the odd `em` font sizing in all browsers.
  80. */
  81. pre {
  82. font-family: monospace, monospace;
  83. /* 1 */
  84. font-size: 1em;
  85. /* 2 */
  86. }
  87. /* Text-level semantics
  88. ========================================================================== */
  89. /**
  90. * 1. Remove the gray background on active links in IE 10.
  91. * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
  92. */
  93. a {
  94. background-color: transparent;
  95. /* 1 */
  96. -webkit-text-decoration-skip: objects;
  97. /* 2 */
  98. }
  99. /**
  100. * Remove the outline on focused links when they are also active or hovered
  101. * in all browsers (opinionated).
  102. */
  103. a:active,
  104. a:hover {
  105. outline-width: 0;
  106. }
  107. /**
  108. * 1. Remove the bottom border in Firefox 39-.
  109. * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
  110. */
  111. abbr[title] {
  112. border-bottom: none;
  113. /* 1 */
  114. text-decoration: underline;
  115. /* 2 */
  116. text-decoration: underline dotted;
  117. /* 2 */
  118. }
  119. /**
  120. * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
  121. */
  122. b,
  123. strong {
  124. font-weight: inherit;
  125. }
  126. /**
  127. * Add the correct font weight in Chrome, Edge, and Safari.
  128. */
  129. b,
  130. strong {
  131. font-weight: bolder;
  132. }
  133. /**
  134. * 1. Correct the inheritance and scaling of font size in all browsers.
  135. * 2. Correct the odd `em` font sizing in all browsers.
  136. */
  137. code,
  138. kbd,
  139. samp {
  140. font-family: monospace, monospace;
  141. /* 1 */
  142. font-size: 1em;
  143. /* 2 */
  144. }
  145. /**
  146. * Add the correct font style in Android 4.3-.
  147. */
  148. dfn {
  149. font-style: italic;
  150. }
  151. /**
  152. * Add the correct background and color in IE 9-.
  153. */
  154. mark {
  155. background-color: #ff0;
  156. color: #000;
  157. }
  158. /**
  159. * Add the correct font size in all browsers.
  160. */
  161. small {
  162. font-size: 80%;
  163. }
  164. /**
  165. * Prevent `sub` and `sup` elements from affecting the line height in
  166. * all browsers.
  167. */
  168. sub,
  169. sup {
  170. font-size: 75%;
  171. line-height: 0;
  172. position: relative;
  173. vertical-align: baseline;
  174. }
  175. sub {
  176. bottom: -0.25em;
  177. }
  178. sup {
  179. top: -0.5em;
  180. }
  181. /* Embedded content
  182. ========================================================================== */
  183. /**
  184. * Add the correct display in IE 9-.
  185. */
  186. audio,
  187. video {
  188. display: inline-block;
  189. }
  190. /**
  191. * Add the correct display in iOS 4-7.
  192. */
  193. audio:not([controls]) {
  194. display: none;
  195. height: 0;
  196. }
  197. /**
  198. * Remove the border on images inside links in IE 10-.
  199. */
  200. img {
  201. border-style: none;
  202. }
  203. /**
  204. * Hide the overflow in IE.
  205. */
  206. svg:not(:root) {
  207. overflow: hidden;
  208. }
  209. /* Forms
  210. ========================================================================== */
  211. /**
  212. * 1. Change the font styles in all browsers (opinionated).
  213. * 2. Remove the margin in Firefox and Safari.
  214. */
  215. button,
  216. input,
  217. optgroup,
  218. select,
  219. textarea {
  220. font-family: sans-serif;
  221. /* 1 */
  222. font-size: 100%;
  223. /* 1 */
  224. line-height: 1.15;
  225. /* 1 */
  226. margin: 0;
  227. /* 2 */
  228. }
  229. /**
  230. * Show the overflow in IE.
  231. * 1. Show the overflow in Edge.
  232. */
  233. button,
  234. input {
  235. /* 1 */
  236. overflow: visible;
  237. }
  238. /**
  239. * Remove the inheritance of text transform in Edge, Firefox, and IE.
  240. * 1. Remove the inheritance of text transform in Firefox.
  241. */
  242. button,
  243. select {
  244. /* 1 */
  245. text-transform: none;
  246. }
  247. /**
  248. * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
  249. * controls in Android 4.
  250. * 2. Correct the inability to style clickable types in iOS and Safari.
  251. */
  252. button,
  253. html [type="button"],
  254. [type="reset"],
  255. [type="submit"] {
  256. -webkit-appearance: button;
  257. /* 2 */
  258. }
  259. /**
  260. * Remove the inner border and padding in Firefox.
  261. */
  262. button::-moz-focus-inner,
  263. [type="button"]::-moz-focus-inner,
  264. [type="reset"]::-moz-focus-inner,
  265. [type="submit"]::-moz-focus-inner {
  266. border-style: none;
  267. padding: 0;
  268. }
  269. /**
  270. * Restore the focus styles unset by the previous rule.
  271. */
  272. button:-moz-focusring,
  273. [type="button"]:-moz-focusring,
  274. [type="reset"]:-moz-focusring,
  275. [type="submit"]:-moz-focusring {
  276. outline: 1px dotted ButtonText;
  277. }
  278. /**
  279. * Change the border, margin, and padding in all browsers (opinionated).
  280. */
  281. fieldset {
  282. border: 1px solid #c0c0c0;
  283. margin: 0 2px;
  284. padding: 0.35em 0.625em 0.75em;
  285. }
  286. /**
  287. * 1. Correct the text wrapping in Edge and IE.
  288. * 2. Correct the color inheritance from `fieldset` elements in IE.
  289. * 3. Remove the padding so developers are not caught out when they zero out
  290. * `fieldset` elements in all browsers.
  291. */
  292. legend {
  293. box-sizing: border-box;
  294. /* 1 */
  295. color: inherit;
  296. /* 2 */
  297. display: table;
  298. /* 1 */
  299. max-width: 100%;
  300. /* 1 */
  301. padding: 0;
  302. /* 3 */
  303. white-space: normal;
  304. /* 1 */
  305. }
  306. /**
  307. * 1. Add the correct display in IE 9-.
  308. * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
  309. */
  310. progress {
  311. display: inline-block;
  312. /* 1 */
  313. vertical-align: baseline;
  314. /* 2 */
  315. }
  316. /**
  317. * Remove the default vertical scrollbar in IE.
  318. */
  319. textarea {
  320. overflow: auto;
  321. }
  322. /**
  323. * 1. Add the correct box sizing in IE 10-.
  324. * 2. Remove the padding in IE 10-.
  325. */
  326. [type="checkbox"],
  327. [type="radio"] {
  328. box-sizing: border-box;
  329. /* 1 */
  330. padding: 0;
  331. /* 2 */
  332. }
  333. /**
  334. * Correct the cursor style of increment and decrement buttons in Chrome.
  335. */
  336. [type="number"]::-webkit-inner-spin-button,
  337. [type="number"]::-webkit-outer-spin-button {
  338. height: auto;
  339. }
  340. /**
  341. * 1. Correct the odd appearance in Chrome and Safari.
  342. * 2. Correct the outline style in Safari.
  343. */
  344. [type="search"] {
  345. -webkit-appearance: textfield;
  346. /* 1 */
  347. outline-offset: -2px;
  348. /* 2 */
  349. }
  350. /**
  351. * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
  352. */
  353. [type="search"]::-webkit-search-cancel-button,
  354. [type="search"]::-webkit-search-decoration {
  355. -webkit-appearance: none;
  356. }
  357. /**
  358. * 1. Correct the inability to style clickable types in iOS and Safari.
  359. * 2. Change font properties to `inherit` in Safari.
  360. */
  361. ::-webkit-file-upload-button {
  362. -webkit-appearance: button;
  363. /* 1 */
  364. font: inherit;
  365. /* 2 */
  366. }
  367. /* Interactive
  368. ========================================================================== */
  369. /*
  370. * Add the correct display in IE 9-.
  371. * 1. Add the correct display in Edge, IE, and Firefox.
  372. */
  373. details,
  374. menu {
  375. display: block;
  376. }
  377. /*
  378. * Add the correct display in all browsers.
  379. */
  380. summary {
  381. display: list-item;
  382. }
  383. /* Scripting
  384. ========================================================================== */
  385. /**
  386. * Add the correct display in IE 9-.
  387. */
  388. canvas {
  389. display: inline-block;
  390. }
  391. /**
  392. * Add the correct display in IE.
  393. */
  394. template {
  395. display: none;
  396. }
  397. /* Hidden
  398. ========================================================================== */
  399. /**
  400. * Add the correct display in IE 10-.
  401. */
  402. [hidden] {
  403. display: none;
  404. }
  405. * {
  406. box-sizing: border-box;
  407. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  408. }
  409. *:before,
  410. *:after {
  411. box-sizing: border-box;
  412. }
  413. html,
  414. body {
  415. width: 100%;
  416. height: 100%;
  417. }
  418. body {
  419. font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", SimSun, sans-serif;
  420. font-size: 12px;
  421. line-height: 1.5;
  422. color: #666;
  423. background-color: #fff;
  424. }
  425. body,
  426. div,
  427. dl,
  428. dt,
  429. dd,
  430. ul,
  431. ol,
  432. li,
  433. h1,
  434. h2,
  435. h3,
  436. h4,
  437. h5,
  438. h6,
  439. pre,
  440. code,
  441. form,
  442. fieldset,
  443. legend,
  444. input,
  445. textarea,
  446. p,
  447. blockquote,
  448. th,
  449. td,
  450. hr,
  451. button,
  452. article,
  453. aside,
  454. details,
  455. figcaption,
  456. figure,
  457. footer,
  458. header,
  459. hgroup,
  460. menu,
  461. nav,
  462. section {
  463. margin: 0;
  464. padding: 0;
  465. }
  466. button,
  467. input,
  468. select,
  469. textarea {
  470. font-family: inherit;
  471. font-size: inherit;
  472. line-height: inherit;
  473. color: inherit;
  474. }
  475. ul,
  476. ol {
  477. list-style: none;
  478. }
  479. input::-ms-clear,
  480. input::-ms-reveal {
  481. display: none;
  482. }
  483. ::selection {
  484. background: #58a3ff;
  485. color: #fff;
  486. }
  487. a {
  488. color: #58a3ff;
  489. background: transparent;
  490. text-decoration: none;
  491. outline: none;
  492. cursor: pointer;
  493. transition: color .3s ease;
  494. }
  495. a:hover {
  496. color: #79b5ff;
  497. }
  498. a:active {
  499. color: #549bf2;
  500. }
  501. a:active,
  502. a:hover {
  503. outline: 0;
  504. text-decoration: none;
  505. }
  506. a[disabled] {
  507. color: #ccc;
  508. cursor: not-allowed;
  509. pointer-events: none;
  510. }
  511. .ant-divider {
  512. margin: 0 6px;
  513. display: inline-block;
  514. height: 8px;
  515. width: 1px;
  516. background: #ccc;
  517. }
  518. code,
  519. kbd,
  520. pre,
  521. samp {
  522. font-family: Consolas, Menlo, Courier, monospace;
  523. }
  524. .clearfix {
  525. zoom: 1;
  526. }
  527. .clearfix:before,
  528. .clearfix:after {
  529. content: " ";
  530. display: table;
  531. }
  532. .clearfix:after {
  533. clear: both;
  534. visibility: hidden;
  535. font-size: 0;
  536. height: 0;
  537. }
  538. @font-face {
  539. font-family: 'anticon';
  540. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot');
  541. /* IE9*/
  542. src: url('https://at.alicdn.com/t/font_r5u29ls31bgldi.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.woff') format('woff'), /* chrome、firefox */ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.ttf') format('truetype'), /* chrome、firefox、opera、Safari, Android, iOS 4.2+*/ url('https://at.alicdn.com/t/font_r5u29ls31bgldi.svg#iconfont') format('svg');
  543. /* iOS 4.1- */
  544. }
  545. .anticon {
  546. display: inline-block;
  547. font-style: normal;
  548. vertical-align: baseline;
  549. text-align: center;
  550. text-transform: none;
  551. text-rendering: auto;
  552. line-height: 1;
  553. text-rendering: optimizeLegibility;
  554. -webkit-font-smoothing: antialiased;
  555. -moz-osx-font-smoothing: grayscale;
  556. }
  557. .anticon:before {
  558. display: block;
  559. font-family: "anticon" !important;
  560. }
  561. .anticon-step-forward:before {
  562. content: "\E600";
  563. }
  564. .anticon-step-backward:before {
  565. content: "\E601";
  566. }
  567. .anticon-forward:before {
  568. content: "\E602";
  569. }
  570. .anticon-backward:before {
  571. content: "\E603";
  572. }
  573. .anticon-caret-right:before {
  574. content: "\E604";
  575. }
  576. .anticon-caret-left:before {
  577. content: "\E605";
  578. }
  579. .anticon-caret-down:before {
  580. content: "\E606";
  581. }
  582. .anticon-caret-up:before {
  583. content: "\E607";
  584. }
  585. .anticon-right-circle:before {
  586. content: "\E608";
  587. }
  588. .anticon-circle-right:before {
  589. content: "\E608";
  590. }
  591. .anticon-caret-circle-right:before {
  592. content: "\E608";
  593. }
  594. .anticon-left-circle:before {
  595. content: "\E609";
  596. }
  597. .anticon-circle-left:before {
  598. content: "\E609";
  599. }
  600. .anticon-caret-circle-left:before {
  601. content: "\E609";
  602. }
  603. .anticon-up-circle:before {
  604. content: "\E60A";
  605. }
  606. .anticon-circle-up:before {
  607. content: "\E60A";
  608. }
  609. .anticon-caret-circle-up:before {
  610. content: "\E60A";
  611. }
  612. .anticon-down-circle:before {
  613. content: "\E60B";
  614. }
  615. .anticon-circle-down:before {
  616. content: "\E60B";
  617. }
  618. .anticon-caret-circle-down:before {
  619. content: "\E60B";
  620. }
  621. .anticon-right-circle-o:before {
  622. content: "\E60C";
  623. }
  624. .anticon-circle-o-right:before {
  625. content: "\E60C";
  626. }
  627. .anticon-caret-circle-o-right:before {
  628. content: "\E60C";
  629. }
  630. .anticon-left-circle-o:before {
  631. content: "\E60D";
  632. }
  633. .anticon-circle-o-left:before {
  634. content: "\E60D";
  635. }
  636. .anticon-caret-circle-o-left:before {
  637. content: "\E60D";
  638. }
  639. .anticon-up-circle-o:before {
  640. content: "\E60E";
  641. }
  642. .anticon-circle-o-up:before {
  643. content: "\E60E";
  644. }
  645. .anticon-caret-circle-o-up:before {
  646. content: "\E60E";
  647. }
  648. .anticon-down-circle-o:before {
  649. content: "\E60F";
  650. }
  651. .anticon-circle-o-down:before {
  652. content: "\E60F";
  653. }
  654. .anticon-caret-circle-o-down:before {
  655. content: "\E60F";
  656. }
  657. .anticon-verticle-left:before {
  658. content: "\E610";
  659. }
  660. .anticon-verticle-right:before {
  661. content: "\E611";
  662. }
  663. .anticon-rollback:before {
  664. content: "\E612";
  665. }
  666. .anticon-retweet:before {
  667. content: "\E613";
  668. }
  669. .anticon-shrink:before {
  670. content: "\E614";
  671. }
  672. .anticon-arrows-alt:before {
  673. content: "\E615";
  674. }
  675. .anticon-arrow-salt:before {
  676. content: "\E615";
  677. }
  678. .anticon-reload:before {
  679. content: "\E616";
  680. }
  681. .anticon-double-right:before {
  682. content: "\E617";
  683. }
  684. .anticon-double-left:before {
  685. content: "\E618";
  686. }
  687. .anticon-arrow-down:before {
  688. content: "\E619";
  689. }
  690. .anticon-arrow-up:before {
  691. content: "\E61A";
  692. }
  693. .anticon-arrow-right:before {
  694. content: "\E61B";
  695. }
  696. .anticon-arrow-left:before {
  697. content: "\E61C";
  698. }
  699. .anticon-down:before {
  700. content: "\E61D";
  701. }
  702. .anticon-up:before {
  703. content: "\E61E";
  704. }
  705. .anticon-right:before {
  706. content: "\E61F";
  707. }
  708. .anticon-left:before {
  709. content: "\E620";
  710. }
  711. .anticon-minus-square-o:before {
  712. content: "\E621";
  713. }
  714. .anticon-minus-circle:before {
  715. content: "\E622";
  716. }
  717. .anticon-minus-circle-o:before {
  718. content: "\E623";
  719. }
  720. .anticon-minus:before {
  721. content: "\E624";
  722. }
  723. .anticon-plus-circle-o:before {
  724. content: "\E625";
  725. }
  726. .anticon-plus-circle:before {
  727. content: "\E626";
  728. }
  729. .anticon-plus:before {
  730. content: "\E627";
  731. }
  732. .anticon-info-circle:before {
  733. content: "\E628";
  734. }
  735. .anticon-info-circle-o:before {
  736. content: "\E629";
  737. }
  738. .anticon-info:before {
  739. content: "\E62A";
  740. }
  741. .anticon-exclamation:before {
  742. content: "\E62B";
  743. }
  744. .anticon-exclamation-circle:before {
  745. content: "\E62C";
  746. }
  747. .anticon-exclamation-circle-o:before {
  748. content: "\E62D";
  749. }
  750. .anticon-close-circle:before {
  751. content: "\E62E";
  752. }
  753. .anticon-cross-circle:before {
  754. content: "\E62E";
  755. }
  756. .anticon-close-circle-o:before {
  757. content: "\E62F";
  758. }
  759. .anticon-cross-circle-o:before {
  760. content: "\E62F";
  761. }
  762. .anticon-check-circle:before {
  763. content: "\E630";
  764. }
  765. .anticon-check-circle-o:before {
  766. content: "\E631";
  767. }
  768. .anticon-check:before {
  769. content: "\E632";
  770. }
  771. .anticon-close:before {
  772. content: "\E633";
  773. }
  774. .anticon-cross:before {
  775. content: "\E633";
  776. }
  777. .anticon-customer-service:before {
  778. content: "\E634";
  779. }
  780. .anticon-customerservice:before {
  781. content: "\E634";
  782. }
  783. .anticon-credit-card:before {
  784. content: "\E635";
  785. }
  786. .anticon-code-o:before {
  787. content: "\E636";
  788. }
  789. .anticon-book:before {
  790. content: "\E637";
  791. }
  792. .anticon-bar-chart:before {
  793. content: "\E638";
  794. }
  795. .anticon-bars:before {
  796. content: "\E639";
  797. }
  798. .anticon-question:before {
  799. content: "\E63A";
  800. }
  801. .anticon-question-circle:before {
  802. content: "\E63B";
  803. }
  804. .anticon-question-circle-o:before {
  805. content: "\E63C";
  806. }
  807. .anticon-pause:before {
  808. content: "\E63D";
  809. }
  810. .anticon-pause-circle:before {
  811. content: "\E63E";
  812. }
  813. .anticon-pause-circle-o:before {
  814. content: "\E63F";
  815. }
  816. .anticon-clock-circle:before {
  817. content: "\E640";
  818. }
  819. .anticon-clock-circle-o:before {
  820. content: "\E641";
  821. }
  822. .anticon-swap:before {
  823. content: "\E642";
  824. }
  825. .anticon-swap-left:before {
  826. content: "\E643";
  827. }
  828. .anticon-swap-right:before {
  829. content: "\E644";
  830. }
  831. .anticon-plus-square-o:before {
  832. content: "\E645";
  833. }
  834. .anticon-frown:before {
  835. content: "\E646";
  836. }
  837. .anticon-frown-circle:before {
  838. content: "\E646";
  839. }
  840. .anticon-ellipsis:before {
  841. content: "\E647";
  842. }
  843. .anticon-copy:before {
  844. content: "\E648";
  845. }
  846. .anticon-menu-fold:before {
  847. content: "\E658";
  848. }
  849. .anticon-mail:before {
  850. content: "\E659";
  851. }
  852. .anticon-logout:before {
  853. content: "\E65A";
  854. }
  855. .anticon-link:before {
  856. content: "\E65B";
  857. }
  858. .anticon-area-chart:before {
  859. content: "\E65C";
  860. }
  861. .anticon-line-chart:before {
  862. content: "\E65D";
  863. }
  864. .anticon-home:before {
  865. content: "\E65E";
  866. }
  867. .anticon-laptop:before {
  868. content: "\E65F";
  869. }
  870. .anticon-star:before {
  871. content: "\E660";
  872. }
  873. .anticon-star-o:before {
  874. content: "\E661";
  875. }
  876. .anticon-folder:before {
  877. content: "\E662";
  878. }
  879. .anticon-filter:before {
  880. content: "\E663";
  881. }
  882. .anticon-file:before {
  883. content: "\E664";
  884. }
  885. .anticon-exception:before {
  886. content: "\E665";
  887. }
  888. .anticon-meh:before {
  889. content: "\E666";
  890. }
  891. .anticon-meh-circle:before {
  892. content: "\E666";
  893. }
  894. .anticon-meh-o:before {
  895. content: "\E667";
  896. }
  897. .anticon-shopping-cart:before {
  898. content: "\E668";
  899. }
  900. .anticon-save:before {
  901. content: "\E669";
  902. }
  903. .anticon-user:before {
  904. content: "\E66A";
  905. }
  906. .anticon-video-camera:before {
  907. content: "\E66B";
  908. }
  909. .anticon-to-top:before {
  910. content: "\E66C";
  911. }
  912. .anticon-team:before {
  913. content: "\E66D";
  914. }
  915. .anticon-tablet:before {
  916. content: "\E66E";
  917. }
  918. .anticon-solution:before {
  919. content: "\E66F";
  920. }
  921. .anticon-search:before {
  922. content: "\E670";
  923. }
  924. .anticon-share-alt:before {
  925. content: "\E671";
  926. }
  927. .anticon-setting:before {
  928. content: "\E672";
  929. }
  930. .anticon-poweroff:before {
  931. content: "\E6D5";
  932. }
  933. .anticon-picture:before {
  934. content: "\E674";
  935. }
  936. .anticon-phone:before {
  937. content: "\E675";
  938. }
  939. .anticon-paper-clip:before {
  940. content: "\E676";
  941. }
  942. .anticon-notification:before {
  943. content: "\E677";
  944. }
  945. .anticon-mobile:before {
  946. content: "\E678";
  947. }
  948. .anticon-menu-unfold:before {
  949. content: "\E679";
  950. }
  951. .anticon-inbox:before {
  952. content: "\E67A";
  953. }
  954. .anticon-lock:before {
  955. content: "\E67B";
  956. }
  957. .anticon-qrcode:before {
  958. content: "\E67C";
  959. }
  960. .anticon-play-circle:before {
  961. content: "\E6D0";
  962. }
  963. .anticon-play-circle-o:before {
  964. content: "\E6D1";
  965. }
  966. .anticon-tag:before {
  967. content: "\E6D2";
  968. }
  969. .anticon-tag-o:before {
  970. content: "\E6D3";
  971. }
  972. .anticon-tags:before {
  973. content: "\E67D";
  974. }
  975. .anticon-tags-o:before {
  976. content: "\E67E";
  977. }
  978. .anticon-cloud-o:before {
  979. content: "\E67F";
  980. }
  981. .anticon-cloud:before {
  982. content: "\E680";
  983. }
  984. .anticon-cloud-upload:before {
  985. content: "\E681";
  986. }
  987. .anticon-cloud-download:before {
  988. content: "\E682";
  989. }
  990. .anticon-cloud-download-o:before {
  991. content: "\E683";
  992. }
  993. .anticon-cloud-upload-o:before {
  994. content: "\E684";
  995. }
  996. .anticon-environment:before {
  997. content: "\E685";
  998. }
  999. .anticon-environment-o:before {
  1000. content: "\E686";
  1001. }
  1002. .anticon-eye:before {
  1003. content: "\E687";
  1004. }
  1005. .anticon-eye-o:before {
  1006. content: "\E688";
  1007. }
  1008. .anticon-camera:before {
  1009. content: "\E689";
  1010. }
  1011. .anticon-camera-o:before {
  1012. content: "\E68A";
  1013. }
  1014. .anticon-windows:before {
  1015. content: "\E68B";
  1016. }
  1017. .anticon-apple:before {
  1018. content: "\E68C";
  1019. }
  1020. .anticon-apple-o:before {
  1021. content: "\E6D4";
  1022. }
  1023. .anticon-android:before {
  1024. content: "\E68D";
  1025. }
  1026. .anticon-aliwangwang:before {
  1027. content: "\E68E";
  1028. }
  1029. .anticon-aliwangwang-o:before {
  1030. content: "\E68F";
  1031. }
  1032. .anticon-export:before {
  1033. content: "\E691";
  1034. }
  1035. .anticon-edit:before {
  1036. content: "\E692";
  1037. }
  1038. .anticon-circle-down-o:before {
  1039. content: "\E693";
  1040. }
  1041. .anticon-circle-down-:before {
  1042. content: "\E694";
  1043. }
  1044. .anticon-appstore-o:before {
  1045. content: "\E695";
  1046. }
  1047. .anticon-appstore:before {
  1048. content: "\E696";
  1049. }
  1050. .anticon-scan:before {
  1051. content: "\E697";
  1052. }
  1053. .anticon-file-text:before {
  1054. content: "\E698";
  1055. }
  1056. .anticon-folder-open:before {
  1057. content: "\E699";
  1058. }
  1059. .anticon-hdd:before {
  1060. content: "\E69A";
  1061. }
  1062. .anticon-ie:before {
  1063. content: "\E69B";
  1064. }
  1065. .anticon-file-jpg:before {
  1066. content: "\E69C";
  1067. }
  1068. .anticon-like:before {
  1069. content: "\E64C";
  1070. }
  1071. .anticon-like-o:before {
  1072. content: "\E69D";
  1073. }
  1074. .anticon-dislike:before {
  1075. content: "\E64B";
  1076. }
  1077. .anticon-dislike-o:before {
  1078. content: "\E69E";
  1079. }
  1080. .anticon-delete:before {
  1081. content: "\E69F";
  1082. }
  1083. .anticon-enter:before {
  1084. content: "\E6A0";
  1085. }
  1086. .anticon-pushpin-o:before {
  1087. content: "\E6A1";
  1088. }
  1089. .anticon-pushpin:before {
  1090. content: "\E6A2";
  1091. }
  1092. .anticon-heart:before {
  1093. content: "\E6A3";
  1094. }
  1095. .anticon-heart-o:before {
  1096. content: "\E6A4";
  1097. }
  1098. .anticon-pay-circle:before {
  1099. content: "\E6A5";
  1100. }
  1101. .anticon-pay-circle-o:before {
  1102. content: "\E6A6";
  1103. }
  1104. .anticon-smile:before {
  1105. content: "\E6A7";
  1106. }
  1107. .anticon-smile-circle:before {
  1108. content: "\E6A7";
  1109. }
  1110. .anticon-smile-o:before {
  1111. content: "\E6A8";
  1112. }
  1113. .anticon-frown-o:before {
  1114. content: "\E6A9";
  1115. }
  1116. .anticon-calculator:before {
  1117. content: "\E6AA";
  1118. }
  1119. .anticon-message:before {
  1120. content: "\E6AB";
  1121. }
  1122. .anticon-chrome:before {
  1123. content: "\E6AC";
  1124. }
  1125. .anticon-github:before {
  1126. content: "\E6AD";
  1127. }
  1128. .anticon-file-unknown:before {
  1129. content: "\E6AF";
  1130. }
  1131. .anticon-file-excel:before {
  1132. content: "\E6B0";
  1133. }
  1134. .anticon-file-ppt:before {
  1135. content: "\E6B1";
  1136. }
  1137. .anticon-file-word:before {
  1138. content: "\E6B2";
  1139. }
  1140. .anticon-file-pdf:before {
  1141. content: "\E6B3";
  1142. }
  1143. .anticon-desktop:before {
  1144. content: "\E6B4";
  1145. }
  1146. .anticon-upload:before {
  1147. content: "\E6B6";
  1148. }
  1149. .anticon-download:before {
  1150. content: "\E6B7";
  1151. }
  1152. .anticon-pie-chart:before {
  1153. content: "\E6B8";
  1154. }
  1155. .anticon-unlock:before {
  1156. content: "\E6BA";
  1157. }
  1158. .anticon-calendar:before {
  1159. content: "\E6BB";
  1160. }
  1161. .anticon-windows-o:before {
  1162. content: "\E6BC";
  1163. }
  1164. .anticon-dot-chart:before {
  1165. content: "\E6BD";
  1166. }
  1167. .anticon-bar-chart:before {
  1168. content: "\E6BE";
  1169. }
  1170. .anticon-code:before {
  1171. content: "\E6BF";
  1172. }
  1173. .anticon-plus-square:before {
  1174. content: "\E6C0";
  1175. }
  1176. .anticon-minus-square:before {
  1177. content: "\E6C1";
  1178. }
  1179. .anticon-close-square:before {
  1180. content: "\E6C2";
  1181. }
  1182. .anticon-close-square-o:before {
  1183. content: "\E6C3";
  1184. }
  1185. .anticon-check-square:before {
  1186. content: "\E6C4";
  1187. }
  1188. .anticon-check-square-o:before {
  1189. content: "\E6C5";
  1190. }
  1191. .anticon-fast-backward:before {
  1192. content: "\E6C6";
  1193. }
  1194. .anticon-fast-forward:before {
  1195. content: "\E6C7";
  1196. }
  1197. .anticon-up-square:before {
  1198. content: "\E6C8";
  1199. }
  1200. .anticon-down-square:before {
  1201. content: "\E6C9";
  1202. }
  1203. .anticon-left-square:before {
  1204. content: "\E6CA";
  1205. }
  1206. .anticon-right-square:before {
  1207. content: "\E6CB";
  1208. }
  1209. .anticon-right-square-o:before {
  1210. content: "\E6CC";
  1211. }
  1212. .anticon-left-square-o:before {
  1213. content: "\E6CD";
  1214. }
  1215. .anticon-down-square-o:before {
  1216. content: "\E6CE";
  1217. }
  1218. .anticon-up-square-o:before {
  1219. content: "\E6CF";
  1220. }
  1221. .anticon-loading:before {
  1222. content: "\E64D";
  1223. }
  1224. .anticon-loading-3-quarters:before {
  1225. content: "\E6AE";
  1226. }
  1227. .anticon-bulb:before {
  1228. content: "\E649";
  1229. }
  1230. .anticon-select:before {
  1231. content: "\E64A";
  1232. }
  1233. .anticon-addfile:before {
  1234. content: "\E910";
  1235. }
  1236. .anticon-addfolder:before {
  1237. content: "\E914";
  1238. }
  1239. .anticon-switcher:before {
  1240. content: "\E913";
  1241. }
  1242. .anticon-rocket:before {
  1243. content: "\E90F";
  1244. }
  1245. .anticon-dingding:before {
  1246. content: "\E923";
  1247. }
  1248. .anticon-dingding-o:before {
  1249. content: "\E925";
  1250. }
  1251. .anticon-spin:before {
  1252. display: inline-block;
  1253. animation: loadingCircle 1s infinite linear;
  1254. }
  1255. .fade-enter,
  1256. .fade-appear {
  1257. animation-duration: 0.2s;
  1258. animation-fill-mode: both;
  1259. animation-play-state: paused;
  1260. }
  1261. .fade-leave {
  1262. animation-duration: 0.2s;
  1263. animation-fill-mode: both;
  1264. animation-play-state: paused;
  1265. }
  1266. .fade-enter.fade-enter-active,
  1267. .fade-appear.fade-appear-active {
  1268. animation-name: antFadeIn;
  1269. animation-play-state: running;
  1270. }
  1271. .fade-leave.fade-leave-active {
  1272. animation-name: antFadeOut;
  1273. animation-play-state: running;
  1274. }
  1275. .fade-enter,
  1276. .fade-appear {
  1277. opacity: 0;
  1278. animation-timing-function: linear;
  1279. }
  1280. .fade-leave {
  1281. animation-timing-function: linear;
  1282. }
  1283. @keyframes antFadeIn {
  1284. 0% {
  1285. opacity: 0;
  1286. }
  1287. 100% {
  1288. opacity: 1;
  1289. }
  1290. }
  1291. @keyframes antFadeOut {
  1292. 0% {
  1293. opacity: 1;
  1294. }
  1295. 100% {
  1296. opacity: 0;
  1297. }
  1298. }
  1299. .move-up-enter,
  1300. .move-up-appear {
  1301. animation-duration: 0.2s;
  1302. animation-fill-mode: both;
  1303. animation-play-state: paused;
  1304. }
  1305. .move-up-leave {
  1306. animation-duration: 0.2s;
  1307. animation-fill-mode: both;
  1308. animation-play-state: paused;
  1309. }
  1310. .move-up-enter.move-up-enter-active,
  1311. .move-up-appear.move-up-appear-active {
  1312. animation-name: antMoveUpIn;
  1313. animation-play-state: running;
  1314. }
  1315. .move-up-leave.move-up-leave-active {
  1316. animation-name: antMoveUpOut;
  1317. animation-play-state: running;
  1318. }
  1319. .move-up-enter,
  1320. .move-up-appear {
  1321. opacity: 0;
  1322. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1323. }
  1324. .move-up-leave {
  1325. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1326. }
  1327. .move-down-enter,
  1328. .move-down-appear {
  1329. animation-duration: 0.2s;
  1330. animation-fill-mode: both;
  1331. animation-play-state: paused;
  1332. }
  1333. .move-down-leave {
  1334. animation-duration: 0.2s;
  1335. animation-fill-mode: both;
  1336. animation-play-state: paused;
  1337. }
  1338. .move-down-enter.move-down-enter-active,
  1339. .move-down-appear.move-down-appear-active {
  1340. animation-name: antMoveDownIn;
  1341. animation-play-state: running;
  1342. }
  1343. .move-down-leave.move-down-leave-active {
  1344. animation-name: antMoveDownOut;
  1345. animation-play-state: running;
  1346. }
  1347. .move-down-enter,
  1348. .move-down-appear {
  1349. opacity: 0;
  1350. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1351. }
  1352. .move-down-leave {
  1353. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1354. }
  1355. .move-left-enter,
  1356. .move-left-appear {
  1357. animation-duration: 0.2s;
  1358. animation-fill-mode: both;
  1359. animation-play-state: paused;
  1360. }
  1361. .move-left-leave {
  1362. animation-duration: 0.2s;
  1363. animation-fill-mode: both;
  1364. animation-play-state: paused;
  1365. }
  1366. .move-left-enter.move-left-enter-active,
  1367. .move-left-appear.move-left-appear-active {
  1368. animation-name: antMoveLeftIn;
  1369. animation-play-state: running;
  1370. }
  1371. .move-left-leave.move-left-leave-active {
  1372. animation-name: antMoveLeftOut;
  1373. animation-play-state: running;
  1374. }
  1375. .move-left-enter,
  1376. .move-left-appear {
  1377. opacity: 0;
  1378. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1379. }
  1380. .move-left-leave {
  1381. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1382. }
  1383. .move-right-enter,
  1384. .move-right-appear {
  1385. animation-duration: 0.2s;
  1386. animation-fill-mode: both;
  1387. animation-play-state: paused;
  1388. }
  1389. .move-right-leave {
  1390. animation-duration: 0.2s;
  1391. animation-fill-mode: both;
  1392. animation-play-state: paused;
  1393. }
  1394. .move-right-enter.move-right-enter-active,
  1395. .move-right-appear.move-right-appear-active {
  1396. animation-name: antMoveRightIn;
  1397. animation-play-state: running;
  1398. }
  1399. .move-right-leave.move-right-leave-active {
  1400. animation-name: antMoveRightOut;
  1401. animation-play-state: running;
  1402. }
  1403. .move-right-enter,
  1404. .move-right-appear {
  1405. opacity: 0;
  1406. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1407. }
  1408. .move-right-leave {
  1409. animation-timing-function: cubic-bezier(0.6, 0.04, 0.98, 0.34);
  1410. }
  1411. @keyframes antMoveDownIn {
  1412. 0% {
  1413. transform-origin: 0 0;
  1414. transform: translateY(100%);
  1415. opacity: 0;
  1416. }
  1417. 100% {
  1418. transform-origin: 0 0;
  1419. transform: translateY(0%);
  1420. opacity: 1;
  1421. }
  1422. }
  1423. @keyframes antMoveDownOut {
  1424. 0% {
  1425. transform-origin: 0 0;
  1426. transform: translateY(0%);
  1427. opacity: 1;
  1428. }
  1429. 100% {
  1430. transform-origin: 0 0;
  1431. transform: translateY(100%);
  1432. opacity: 0;
  1433. }
  1434. }
  1435. @keyframes antMoveLeftIn {
  1436. 0% {
  1437. transform-origin: 0 0;
  1438. transform: translateX(-100%);
  1439. opacity: 0;
  1440. }
  1441. 100% {
  1442. transform-origin: 0 0;
  1443. transform: translateX(0%);
  1444. opacity: 1;
  1445. }
  1446. }
  1447. @keyframes antMoveLeftOut {
  1448. 0% {
  1449. transform-origin: 0 0;
  1450. transform: translateX(0%);
  1451. opacity: 1;
  1452. }
  1453. 100% {
  1454. transform-origin: 0 0;
  1455. transform: translateX(-100%);
  1456. opacity: 0;
  1457. }
  1458. }
  1459. @keyframes antMoveRightIn {
  1460. 0% {
  1461. opacity: 0;
  1462. transform-origin: 0 0;
  1463. transform: translateX(100%);
  1464. }
  1465. 100% {
  1466. opacity: 1;
  1467. transform-origin: 0 0;
  1468. transform: translateX(0%);
  1469. }
  1470. }
  1471. @keyframes antMoveRightOut {
  1472. 0% {
  1473. transform-origin: 0 0;
  1474. transform: translateX(0%);
  1475. opacity: 1;
  1476. }
  1477. 100% {
  1478. transform-origin: 0 0;
  1479. transform: translateX(100%);
  1480. opacity: 0;
  1481. }
  1482. }
  1483. @keyframes antMoveUpIn {
  1484. 0% {
  1485. transform-origin: 0 0;
  1486. transform: translateY(-100%);
  1487. opacity: 0;
  1488. }
  1489. 100% {
  1490. transform-origin: 0 0;
  1491. transform: translateY(0%);
  1492. opacity: 1;
  1493. }
  1494. }
  1495. @keyframes antMoveUpOut {
  1496. 0% {
  1497. transform-origin: 0 0;
  1498. transform: translateY(0%);
  1499. opacity: 1;
  1500. }
  1501. 100% {
  1502. transform-origin: 0 0;
  1503. transform: translateY(-100%);
  1504. opacity: 0;
  1505. }
  1506. }
  1507. @keyframes loadingCircle {
  1508. 0% {
  1509. transform-origin: 50% 50%;
  1510. transform: rotate(0deg);
  1511. }
  1512. 100% {
  1513. transform-origin: 50% 50%;
  1514. transform: rotate(360deg);
  1515. }
  1516. }
  1517. .slide-up-enter,
  1518. .slide-up-appear {
  1519. animation-duration: 0.2s;
  1520. animation-fill-mode: both;
  1521. animation-play-state: paused;
  1522. }
  1523. .slide-up-leave {
  1524. animation-duration: 0.2s;
  1525. animation-fill-mode: both;
  1526. animation-play-state: paused;
  1527. }
  1528. .slide-up-enter.slide-up-enter-active,
  1529. .slide-up-appear.slide-up-appear-active {
  1530. animation-name: antSlideUpIn;
  1531. animation-play-state: running;
  1532. }
  1533. .slide-up-leave.slide-up-leave-active {
  1534. animation-name: antSlideUpOut;
  1535. animation-play-state: running;
  1536. }
  1537. .slide-up-enter,
  1538. .slide-up-appear {
  1539. opacity: 0;
  1540. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1541. }
  1542. .slide-up-leave {
  1543. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1544. }
  1545. .slide-down-enter,
  1546. .slide-down-appear {
  1547. animation-duration: 0.2s;
  1548. animation-fill-mode: both;
  1549. animation-play-state: paused;
  1550. }
  1551. .slide-down-leave {
  1552. animation-duration: 0.2s;
  1553. animation-fill-mode: both;
  1554. animation-play-state: paused;
  1555. }
  1556. .slide-down-enter.slide-down-enter-active,
  1557. .slide-down-appear.slide-down-appear-active {
  1558. animation-name: antSlideDownIn;
  1559. animation-play-state: running;
  1560. }
  1561. .slide-down-leave.slide-down-leave-active {
  1562. animation-name: antSlideDownOut;
  1563. animation-play-state: running;
  1564. }
  1565. .slide-down-enter,
  1566. .slide-down-appear {
  1567. opacity: 0;
  1568. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1569. }
  1570. .slide-down-leave {
  1571. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1572. }
  1573. .slide-left-enter,
  1574. .slide-left-appear {
  1575. animation-duration: 0.2s;
  1576. animation-fill-mode: both;
  1577. animation-play-state: paused;
  1578. }
  1579. .slide-left-leave {
  1580. animation-duration: 0.2s;
  1581. animation-fill-mode: both;
  1582. animation-play-state: paused;
  1583. }
  1584. .slide-left-enter.slide-left-enter-active,
  1585. .slide-left-appear.slide-left-appear-active {
  1586. animation-name: antSlideLeftIn;
  1587. animation-play-state: running;
  1588. }
  1589. .slide-left-leave.slide-left-leave-active {
  1590. animation-name: antSlideLeftOut;
  1591. animation-play-state: running;
  1592. }
  1593. .slide-left-enter,
  1594. .slide-left-appear {
  1595. opacity: 0;
  1596. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1597. }
  1598. .slide-left-leave {
  1599. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1600. }
  1601. .slide-right-enter,
  1602. .slide-right-appear {
  1603. animation-duration: 0.2s;
  1604. animation-fill-mode: both;
  1605. animation-play-state: paused;
  1606. }
  1607. .slide-right-leave {
  1608. animation-duration: 0.2s;
  1609. animation-fill-mode: both;
  1610. animation-play-state: paused;
  1611. }
  1612. .slide-right-enter.slide-right-enter-active,
  1613. .slide-right-appear.slide-right-appear-active {
  1614. animation-name: antSlideRightIn;
  1615. animation-play-state: running;
  1616. }
  1617. .slide-right-leave.slide-right-leave-active {
  1618. animation-name: antSlideRightOut;
  1619. animation-play-state: running;
  1620. }
  1621. .slide-right-enter,
  1622. .slide-right-appear {
  1623. opacity: 0;
  1624. animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
  1625. }
  1626. .slide-right-leave {
  1627. animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  1628. }
  1629. @keyframes antSlideUpIn {
  1630. 0% {
  1631. opacity: 0;
  1632. transform-origin: 0% 0%;
  1633. transform: scaleY(0.8);
  1634. }
  1635. 100% {
  1636. opacity: 1;
  1637. transform-origin: 0% 0%;
  1638. transform: scaleY(1);
  1639. }
  1640. }
  1641. @keyframes antSlideUpOut {
  1642. 0% {
  1643. opacity: 1;
  1644. transform-origin: 0% 0%;
  1645. transform: scaleY(1);
  1646. }
  1647. 100% {
  1648. opacity: 0;
  1649. transform-origin: 0% 0%;
  1650. transform: scaleY(0.8);
  1651. }
  1652. }
  1653. @keyframes antSlideDownIn {
  1654. 0% {
  1655. opacity: 0;
  1656. transform-origin: 100% 100%;
  1657. transform: scaleY(0.8);
  1658. }
  1659. 100% {
  1660. opacity: 1;
  1661. transform-origin: 100% 100%;
  1662. transform: scaleY(1);
  1663. }
  1664. }
  1665. @keyframes antSlideDownOut {
  1666. 0% {
  1667. opacity: 1;
  1668. transform-origin: 100% 100%;
  1669. transform: scaleY(1);
  1670. }
  1671. 100% {
  1672. opacity: 0;
  1673. transform-origin: 100% 100%;
  1674. transform: scaleY(0.8);
  1675. }
  1676. }
  1677. @keyframes antSlideLeftIn {
  1678. 0% {
  1679. opacity: 0;
  1680. transform-origin: 0% 0%;
  1681. transform: scaleX(0.8);
  1682. }
  1683. 100% {
  1684. opacity: 1;
  1685. transform-origin: 0% 0%;
  1686. transform: scaleX(1);
  1687. }
  1688. }
  1689. @keyframes antSlideLeftOut {
  1690. 0% {
  1691. opacity: 1;
  1692. transform-origin: 0% 0%;
  1693. transform: scaleX(1);
  1694. }
  1695. 100% {
  1696. opacity: 0;
  1697. transform-origin: 0% 0%;
  1698. transform: scaleX(0.8);
  1699. }
  1700. }
  1701. @keyframes antSlideRightIn {
  1702. 0% {
  1703. opacity: 0;
  1704. transform-origin: 100% 0%;
  1705. transform: scaleX(0.8);
  1706. }
  1707. 100% {
  1708. opacity: 1;
  1709. transform-origin: 100% 0%;
  1710. transform: scaleX(1);
  1711. }
  1712. }
  1713. @keyframes antSlideRightOut {
  1714. 0% {
  1715. opacity: 1;
  1716. transform-origin: 100% 0%;
  1717. transform: scaleX(1);
  1718. }
  1719. 100% {
  1720. opacity: 0;
  1721. transform-origin: 100% 0%;
  1722. transform: scaleX(0.8);
  1723. }
  1724. }
  1725. .swing-enter,
  1726. .swing-appear {
  1727. animation-duration: 0.2s;
  1728. animation-fill-mode: both;
  1729. animation-play-state: paused;
  1730. }
  1731. .swing-enter.swing-enter-active,
  1732. .swing-appear.swing-appear-active {
  1733. animation-name: antSwingIn;
  1734. animation-play-state: running;
  1735. }
  1736. @keyframes antSwingIn {
  1737. 0%,
  1738. 100% {
  1739. transform: translateX(0px);
  1740. }
  1741. 20% {
  1742. transform: translateX(-10px);
  1743. }
  1744. 40% {
  1745. transform: translateX(10px);
  1746. }
  1747. 60% {
  1748. transform: translateX(-5px);
  1749. }
  1750. 80% {
  1751. transform: translateX(5px);
  1752. }
  1753. }
  1754. .zoom-enter,
  1755. .zoom-appear {
  1756. animation-duration: 0.2s;
  1757. animation-fill-mode: both;
  1758. animation-play-state: paused;
  1759. }
  1760. .zoom-leave {
  1761. animation-duration: 0.2s;
  1762. animation-fill-mode: both;
  1763. animation-play-state: paused;
  1764. }
  1765. .zoom-enter.zoom-enter-active,
  1766. .zoom-appear.zoom-appear-active {
  1767. animation-name: antZoomIn;
  1768. animation-play-state: running;
  1769. }
  1770. .zoom-leave.zoom-leave-active {
  1771. animation-name: antZoomOut;
  1772. animation-play-state: running;
  1773. }
  1774. .zoom-enter,
  1775. .zoom-appear {
  1776. transform: scale(0);
  1777. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1778. }
  1779. .zoom-leave {
  1780. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1781. }
  1782. .zoom-big-enter,
  1783. .zoom-big-appear {
  1784. animation-duration: 0.2s;
  1785. animation-fill-mode: both;
  1786. animation-play-state: paused;
  1787. }
  1788. .zoom-big-leave {
  1789. animation-duration: 0.2s;
  1790. animation-fill-mode: both;
  1791. animation-play-state: paused;
  1792. }
  1793. .zoom-big-enter.zoom-big-enter-active,
  1794. .zoom-big-appear.zoom-big-appear-active {
  1795. animation-name: antZoomBigIn;
  1796. animation-play-state: running;
  1797. }
  1798. .zoom-big-leave.zoom-big-leave-active {
  1799. animation-name: antZoomBigOut;
  1800. animation-play-state: running;
  1801. }
  1802. .zoom-big-enter,
  1803. .zoom-big-appear {
  1804. transform: scale(0);
  1805. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1806. }
  1807. .zoom-big-leave {
  1808. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1809. }
  1810. .zoom-big-fast-enter,
  1811. .zoom-big-fast-appear {
  1812. animation-duration: 0.1s;
  1813. animation-fill-mode: both;
  1814. animation-play-state: paused;
  1815. }
  1816. .zoom-big-fast-leave {
  1817. animation-duration: 0.1s;
  1818. animation-fill-mode: both;
  1819. animation-play-state: paused;
  1820. }
  1821. .zoom-big-fast-enter.zoom-big-fast-enter-active,
  1822. .zoom-big-fast-appear.zoom-big-fast-appear-active {
  1823. animation-name: antZoomBigIn;
  1824. animation-play-state: running;
  1825. }
  1826. .zoom-big-fast-leave.zoom-big-fast-leave-active {
  1827. animation-name: antZoomBigOut;
  1828. animation-play-state: running;
  1829. }
  1830. .zoom-big-fast-enter,
  1831. .zoom-big-fast-appear {
  1832. transform: scale(0);
  1833. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1834. }
  1835. .zoom-big-fast-leave {
  1836. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1837. }
  1838. .zoom-up-enter,
  1839. .zoom-up-appear {
  1840. animation-duration: 0.2s;
  1841. animation-fill-mode: both;
  1842. animation-play-state: paused;
  1843. }
  1844. .zoom-up-leave {
  1845. animation-duration: 0.2s;
  1846. animation-fill-mode: both;
  1847. animation-play-state: paused;
  1848. }
  1849. .zoom-up-enter.zoom-up-enter-active,
  1850. .zoom-up-appear.zoom-up-appear-active {
  1851. animation-name: antZoomUpIn;
  1852. animation-play-state: running;
  1853. }
  1854. .zoom-up-leave.zoom-up-leave-active {
  1855. animation-name: antZoomUpOut;
  1856. animation-play-state: running;
  1857. }
  1858. .zoom-up-enter,
  1859. .zoom-up-appear {
  1860. transform: scale(0);
  1861. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1862. }
  1863. .zoom-up-leave {
  1864. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1865. }
  1866. .zoom-down-enter,
  1867. .zoom-down-appear {
  1868. animation-duration: 0.2s;
  1869. animation-fill-mode: both;
  1870. animation-play-state: paused;
  1871. }
  1872. .zoom-down-leave {
  1873. animation-duration: 0.2s;
  1874. animation-fill-mode: both;
  1875. animation-play-state: paused;
  1876. }
  1877. .zoom-down-enter.zoom-down-enter-active,
  1878. .zoom-down-appear.zoom-down-appear-active {
  1879. animation-name: antZoomDownIn;
  1880. animation-play-state: running;
  1881. }
  1882. .zoom-down-leave.zoom-down-leave-active {
  1883. animation-name: antZoomDownOut;
  1884. animation-play-state: running;
  1885. }
  1886. .zoom-down-enter,
  1887. .zoom-down-appear {
  1888. transform: scale(0);
  1889. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1890. }
  1891. .zoom-down-leave {
  1892. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1893. }
  1894. .zoom-left-enter,
  1895. .zoom-left-appear {
  1896. animation-duration: 0.2s;
  1897. animation-fill-mode: both;
  1898. animation-play-state: paused;
  1899. }
  1900. .zoom-left-leave {
  1901. animation-duration: 0.2s;
  1902. animation-fill-mode: both;
  1903. animation-play-state: paused;
  1904. }
  1905. .zoom-left-enter.zoom-left-enter-active,
  1906. .zoom-left-appear.zoom-left-appear-active {
  1907. animation-name: antZoomLeftIn;
  1908. animation-play-state: running;
  1909. }
  1910. .zoom-left-leave.zoom-left-leave-active {
  1911. animation-name: antZoomLeftOut;
  1912. animation-play-state: running;
  1913. }
  1914. .zoom-left-enter,
  1915. .zoom-left-appear {
  1916. transform: scale(0);
  1917. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1918. }
  1919. .zoom-left-leave {
  1920. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1921. }
  1922. .zoom-right-enter,
  1923. .zoom-right-appear {
  1924. animation-duration: 0.2s;
  1925. animation-fill-mode: both;
  1926. animation-play-state: paused;
  1927. }
  1928. .zoom-right-leave {
  1929. animation-duration: 0.2s;
  1930. animation-fill-mode: both;
  1931. animation-play-state: paused;
  1932. }
  1933. .zoom-right-enter.zoom-right-enter-active,
  1934. .zoom-right-appear.zoom-right-appear-active {
  1935. animation-name: antZoomRightIn;
  1936. animation-play-state: running;
  1937. }
  1938. .zoom-right-leave.zoom-right-leave-active {
  1939. animation-name: antZoomRightOut;
  1940. animation-play-state: running;
  1941. }
  1942. .zoom-right-enter,
  1943. .zoom-right-appear {
  1944. transform: scale(0);
  1945. animation-timing-function: cubic-bezier(0.08, 0.82, 0.17, 1);
  1946. }
  1947. .zoom-right-leave {
  1948. animation-timing-function: cubic-bezier(0.78, 0.14, 0.15, 0.86);
  1949. }
  1950. @keyframes antZoomIn {
  1951. 0% {
  1952. opacity: 0;
  1953. transform: scale(0.2);
  1954. }
  1955. 100% {
  1956. opacity: 1;
  1957. transform: scale(1);
  1958. }
  1959. }
  1960. @keyframes antZoomOut {
  1961. 0% {
  1962. transform: scale(1);
  1963. }
  1964. 100% {
  1965. opacity: 0;
  1966. transform: scale(0.2);
  1967. }
  1968. }
  1969. @keyframes antZoomBigIn {
  1970. 0% {
  1971. opacity: 0;
  1972. transform: scale(0.8);
  1973. }
  1974. 100% {
  1975. transform: scale(1);
  1976. }
  1977. }
  1978. @keyframes antZoomBigOut {
  1979. 0% {
  1980. transform: scale(1);
  1981. }
  1982. 100% {
  1983. opacity: 0;
  1984. transform: scale(0.8);
  1985. }
  1986. }
  1987. @keyframes antZoomUpIn {
  1988. 0% {
  1989. opacity: 0;
  1990. transform-origin: 50% 0%;
  1991. transform: scale(0.8);
  1992. }
  1993. 100% {
  1994. transform-origin: 50% 0%;
  1995. transform: scale(1);
  1996. }
  1997. }
  1998. @keyframes antZoomUpOut {
  1999. 0% {
  2000. transform-origin: 50% 0%;
  2001. transform: scale(1);
  2002. }
  2003. 100% {
  2004. opacity: 0;
  2005. transform-origin: 50% 0%;
  2006. transform: scale(0.8);
  2007. }
  2008. }
  2009. @keyframes antZoomLeftIn {
  2010. 0% {
  2011. opacity: 0;
  2012. transform-origin: 0% 50%;
  2013. transform: scale(0.8);
  2014. }
  2015. 100% {
  2016. transform-origin: 0% 50%;
  2017. transform: scale(1);
  2018. }
  2019. }
  2020. @keyframes antZoomLeftOut {
  2021. 0% {
  2022. transform-origin: 0% 50%;
  2023. transform: scale(1);
  2024. }
  2025. 100% {
  2026. opacity: 0;
  2027. transform-origin: 0% 50%;
  2028. transform: scale(0.8);
  2029. }
  2030. }
  2031. @keyframes antZoomRightIn {
  2032. 0% {
  2033. opacity: 0;
  2034. transform-origin: 100% 50%;
  2035. transform: scale(0.8);
  2036. }
  2037. 100% {
  2038. transform-origin: 100% 50%;
  2039. transform: scale(1);
  2040. }
  2041. }
  2042. @keyframes antZoomRightOut {
  2043. 0% {
  2044. transform-origin: 100% 50%;
  2045. transform: scale(1);
  2046. }
  2047. 100% {
  2048. opacity: 0;
  2049. transform-origin: 100% 50%;
  2050. transform: scale(0.8);
  2051. }
  2052. }
  2053. @keyframes antZoomDownIn {
  2054. 0% {
  2055. opacity: 0;
  2056. transform-origin: 50% 100%;
  2057. transform: scale(0.8);
  2058. }
  2059. 100% {
  2060. transform-origin: 50% 100%;
  2061. transform: scale(1);
  2062. }
  2063. }
  2064. @keyframes antZoomDownOut {
  2065. 0% {
  2066. transform-origin: 50% 100%;
  2067. transform: scale(1);
  2068. }
  2069. 100% {
  2070. opacity: 0;
  2071. transform-origin: 50% 100%;
  2072. transform: scale(0.8);
  2073. }
  2074. }
  2075. .ant-motion-collapse {
  2076. overflow: hidden;
  2077. }
  2078. .ant-motion-collapse-active {
  2079. transition: height 0.2s cubic-bezier(0.215, 0.61, 0.355, 1);
  2080. }
  2081. .ant-spin {
  2082. color: #58a3ff;
  2083. vertical-align: middle;
  2084. text-align: center;
  2085. opacity: 0;
  2086. position: absolute;
  2087. transition: transform 0.3s cubic-bezier(0.78, 0.14, 0.15, 0.86);
  2088. font-size: 12px;
  2089. display: none;
  2090. }
  2091. .ant-spin-spinning {
  2092. opacity: 1;
  2093. position: static;
  2094. display: inline-block;
  2095. }
  2096. .ant-spin-nested-loading {
  2097. position: relative;
  2098. }
  2099. .ant-spin-nested-loading .ant-spin {
  2100. position: absolute;
  2101. height: 100%;
  2102. width: 100%;
  2103. z-index: 4;
  2104. }
  2105. .ant-spin-nested-loading .ant-spin-dot {
  2106. position: absolute;
  2107. top: 50%;
  2108. left: 50%;
  2109. margin: -10px;
  2110. }
  2111. .ant-spin-nested-loading .ant-spin-sm .ant-spin-dot {
  2112. margin: -7px;
  2113. }
  2114. .ant-spin-nested-loading .ant-spin-lg .ant-spin-dot {
  2115. margin: -15px;
  2116. }
  2117. .ant-spin-nested-loading .ant-spin-show-text .ant-spin-dot {
  2118. margin: -16px;
  2119. }
  2120. .ant-spin-nested-loading .ant-spin-show-text.ant-spin-sm .ant-spin-dot {
  2121. margin: -13px;
  2122. }
  2123. .ant-spin-nested-loading .ant-spin-show-text.ant-spin-lg .ant-spin-dot {
  2124. margin: -21px;
  2125. }
  2126. .ant-spin-nested-loading .ant-spin-text {
  2127. position: absolute;
  2128. top: 50%;
  2129. width: 100%;
  2130. padding-top: 4px;
  2131. }
  2132. .ant-spin-nested-loading .ant-spin-sm .ant-spin-text {
  2133. padding-top: 1px;
  2134. }
  2135. .ant-spin-nested-loading .ant-spin-lg .ant-spin-text {
  2136. padding-top: 9px;
  2137. }
  2138. .ant-spin-container {
  2139. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2140. position: relative;
  2141. }
  2142. .ant-spin-blur {
  2143. opacity: 0.7;
  2144. -webkit-filter: blur(1px);
  2145. filter: blur(1px);
  2146. filter: progid\:DXImageTransform\.Microsoft\.Blur(PixelRadius\=1, MakeShadow\=false);
  2147. /* IE6~IE9 */
  2148. }
  2149. .ant-spin-blur:after {
  2150. content: '';
  2151. position: absolute;
  2152. left: 0;
  2153. right: 0;
  2154. top: 0;
  2155. bottom: 0;
  2156. background: transparent;
  2157. }
  2158. .ant-spin-tip {
  2159. color: #999;
  2160. }
  2161. .ant-spin-dot {
  2162. position: relative;
  2163. display: block;
  2164. width: 20px;
  2165. height: 20px;
  2166. transform: rotate(45deg);
  2167. animation: antRotate 3.2s infinite linear;
  2168. }
  2169. .ant-spin-dot i {
  2170. width: 8px;
  2171. height: 8px;
  2172. border-radius: 50%;
  2173. background-color: #58a3ff;
  2174. transform: scale(0.6);
  2175. display: block;
  2176. position: absolute;
  2177. opacity: 0.3;
  2178. animation: antSpinMove .8s infinite linear alternate;
  2179. transform-origin: 0 0;
  2180. }
  2181. .ant-spin-dot i:nth-child(1) {
  2182. left: 0;
  2183. top: 0;
  2184. }
  2185. .ant-spin-dot i:nth-child(2) {
  2186. right: 0;
  2187. top: 0;
  2188. animation-delay: 0.4s;
  2189. }
  2190. .ant-spin-dot i:nth-child(3) {
  2191. right: 0;
  2192. bottom: 0;
  2193. animation-delay: 0.8s;
  2194. }
  2195. .ant-spin-dot i:nth-child(4) {
  2196. left: 0;
  2197. bottom: 0;
  2198. animation-delay: 1.2s;
  2199. }
  2200. .ant-spin-sm .ant-spin-dot {
  2201. width: 14px;
  2202. height: 14px;
  2203. }
  2204. .ant-spin-sm .ant-spin-dot i {
  2205. width: 6px;
  2206. height: 6px;
  2207. }
  2208. .ant-spin-lg .ant-spin-dot {
  2209. width: 30px;
  2210. height: 30px;
  2211. }
  2212. .ant-spin-lg .ant-spin-dot i {
  2213. width: 12px;
  2214. height: 12px;
  2215. }
  2216. .ant-spin.ant-spin-show-text .ant-spin-text {
  2217. display: block;
  2218. }
  2219. @media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  2220. /* IE10+ */
  2221. .ant-spin-blur {
  2222. background: #fff;
  2223. opacity: 0.5;
  2224. }
  2225. }
  2226. @keyframes antSpinMove {
  2227. to {
  2228. transform: scale(1);
  2229. opacity: 1;
  2230. }
  2231. }
  2232. @keyframes antRotate {
  2233. to {
  2234. transform: rotate(405deg);
  2235. }
  2236. }
  2237. .ant-btn {
  2238. display: inline-block;
  2239. margin-bottom: 0;
  2240. font-weight: 500;
  2241. text-align: center;
  2242. touch-action: manipulation;
  2243. cursor: pointer;
  2244. background-image: none;
  2245. border: 1px solid transparent;
  2246. white-space: nowrap;
  2247. line-height: 1.5;
  2248. padding: 4px 15px;
  2249. font-size: 12px;
  2250. border-radius: 4px;
  2251. user-select: none;
  2252. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2253. position: relative;
  2254. color: #666;
  2255. background-color: #f7f7f7;
  2256. border-color: #d9d9d9;
  2257. }
  2258. .ant-btn > .anticon {
  2259. line-height: 1;
  2260. }
  2261. .ant-btn,
  2262. .ant-btn:active,
  2263. .ant-btn:focus {
  2264. outline: 0;
  2265. }
  2266. .ant-btn:not([disabled]):hover {
  2267. text-decoration: none;
  2268. }
  2269. .ant-btn:not([disabled]):active {
  2270. outline: 0;
  2271. transition: none;
  2272. }
  2273. .ant-btn.disabled,
  2274. .ant-btn[disabled] {
  2275. cursor: not-allowed;
  2276. }
  2277. .ant-btn.disabled > *,
  2278. .ant-btn[disabled] > * {
  2279. pointer-events: none;
  2280. }
  2281. .ant-btn-lg {
  2282. padding: 4px 15px 5px 15px;
  2283. font-size: 14px;
  2284. border-radius: 4px;
  2285. }
  2286. .ant-btn-sm {
  2287. padding: 1px 7px;
  2288. font-size: 12px;
  2289. border-radius: 2px;
  2290. }
  2291. .ant-btn > a:only-child {
  2292. color: currentColor;
  2293. }
  2294. .ant-btn > a:only-child:after {
  2295. content: '';
  2296. position: absolute;
  2297. top: 0;
  2298. left: 0;
  2299. bottom: 0;
  2300. right: 0;
  2301. background: transparent;
  2302. }
  2303. .ant-btn:hover,
  2304. .ant-btn:focus {
  2305. color: #79b5ff;
  2306. background-color: #f7f7f7;
  2307. border-color: #79b5ff;
  2308. }
  2309. .ant-btn:hover > a:only-child,
  2310. .ant-btn:focus > a:only-child {
  2311. color: currentColor;
  2312. }
  2313. .ant-btn:hover > a:only-child:after,
  2314. .ant-btn:focus > a:only-child:after {
  2315. content: '';
  2316. position: absolute;
  2317. top: 0;
  2318. left: 0;
  2319. bottom: 0;
  2320. right: 0;
  2321. background: transparent;
  2322. }
  2323. .ant-btn:active,
  2324. .ant-btn.active {
  2325. color: #549bf2;
  2326. background-color: #f7f7f7;
  2327. border-color: #549bf2;
  2328. }
  2329. .ant-btn:active > a:only-child,
  2330. .ant-btn.active > a:only-child {
  2331. color: currentColor;
  2332. }
  2333. .ant-btn:active > a:only-child:after,
  2334. .ant-btn.active > a:only-child:after {
  2335. content: '';
  2336. position: absolute;
  2337. top: 0;
  2338. left: 0;
  2339. bottom: 0;
  2340. right: 0;
  2341. background: transparent;
  2342. }
  2343. .ant-btn.disabled,
  2344. .ant-btn[disabled],
  2345. .ant-btn.disabled:hover,
  2346. .ant-btn[disabled]:hover,
  2347. .ant-btn.disabled:focus,
  2348. .ant-btn[disabled]:focus,
  2349. .ant-btn.disabled:active,
  2350. .ant-btn[disabled]:active,
  2351. .ant-btn.disabled.active,
  2352. .ant-btn[disabled].active {
  2353. color: #ccc;
  2354. background-color: #f7f7f7;
  2355. border-color: #d9d9d9;
  2356. }
  2357. .ant-btn.disabled > a:only-child,
  2358. .ant-btn[disabled] > a:only-child,
  2359. .ant-btn.disabled:hover > a:only-child,
  2360. .ant-btn[disabled]:hover > a:only-child,
  2361. .ant-btn.disabled:focus > a:only-child,
  2362. .ant-btn[disabled]:focus > a:only-child,
  2363. .ant-btn.disabled:active > a:only-child,
  2364. .ant-btn[disabled]:active > a:only-child,
  2365. .ant-btn.disabled.active > a:only-child,
  2366. .ant-btn[disabled].active > a:only-child {
  2367. color: currentColor;
  2368. }
  2369. .ant-btn.disabled > a:only-child:after,
  2370. .ant-btn[disabled] > a:only-child:after,
  2371. .ant-btn.disabled:hover > a:only-child:after,
  2372. .ant-btn[disabled]:hover > a:only-child:after,
  2373. .ant-btn.disabled:focus > a:only-child:after,
  2374. .ant-btn[disabled]:focus > a:only-child:after,
  2375. .ant-btn.disabled:active > a:only-child:after,
  2376. .ant-btn[disabled]:active > a:only-child:after,
  2377. .ant-btn.disabled.active > a:only-child:after,
  2378. .ant-btn[disabled].active > a:only-child:after {
  2379. content: '';
  2380. position: absolute;
  2381. top: 0;
  2382. left: 0;
  2383. bottom: 0;
  2384. right: 0;
  2385. background: transparent;
  2386. }
  2387. .ant-btn:hover,
  2388. .ant-btn:focus,
  2389. .ant-btn:active,
  2390. .ant-btn.active {
  2391. background: #fff;
  2392. }
  2393. .ant-btn-primary {
  2394. color: #fff;
  2395. background-color: #58a3ff;
  2396. border-color: #58a3ff;
  2397. }
  2398. .ant-btn-primary > a:only-child {
  2399. color: currentColor;
  2400. }
  2401. .ant-btn-primary > a:only-child:after {
  2402. content: '';
  2403. position: absolute;
  2404. top: 0;
  2405. left: 0;
  2406. bottom: 0;
  2407. right: 0;
  2408. background: transparent;
  2409. }
  2410. .ant-btn-primary:hover,
  2411. .ant-btn-primary:focus {
  2412. color: #fff;
  2413. background-color: #79b5ff;
  2414. border-color: #79b5ff;
  2415. }
  2416. .ant-btn-primary:hover > a:only-child,
  2417. .ant-btn-primary:focus > a:only-child {
  2418. color: currentColor;
  2419. }
  2420. .ant-btn-primary:hover > a:only-child:after,
  2421. .ant-btn-primary:focus > a:only-child:after {
  2422. content: '';
  2423. position: absolute;
  2424. top: 0;
  2425. left: 0;
  2426. bottom: 0;
  2427. right: 0;
  2428. background: transparent;
  2429. }
  2430. .ant-btn-primary:active,
  2431. .ant-btn-primary.active {
  2432. color: #fff;
  2433. background-color: #549bf2;
  2434. border-color: #549bf2;
  2435. }
  2436. .ant-btn-primary:active > a:only-child,
  2437. .ant-btn-primary.active > a:only-child {
  2438. color: currentColor;
  2439. }
  2440. .ant-btn-primary:active > a:only-child:after,
  2441. .ant-btn-primary.active > a:only-child:after {
  2442. content: '';
  2443. position: absolute;
  2444. top: 0;
  2445. left: 0;
  2446. bottom: 0;
  2447. right: 0;
  2448. background: transparent;
  2449. }
  2450. .ant-btn-primary.disabled,
  2451. .ant-btn-primary[disabled],
  2452. .ant-btn-primary.disabled:hover,
  2453. .ant-btn-primary[disabled]:hover,
  2454. .ant-btn-primary.disabled:focus,
  2455. .ant-btn-primary[disabled]:focus,
  2456. .ant-btn-primary.disabled:active,
  2457. .ant-btn-primary[disabled]:active,
  2458. .ant-btn-primary.disabled.active,
  2459. .ant-btn-primary[disabled].active {
  2460. color: #ccc;
  2461. background-color: #f7f7f7;
  2462. border-color: #d9d9d9;
  2463. }
  2464. .ant-btn-primary.disabled > a:only-child,
  2465. .ant-btn-primary[disabled] > a:only-child,
  2466. .ant-btn-primary.disabled:hover > a:only-child,
  2467. .ant-btn-primary[disabled]:hover > a:only-child,
  2468. .ant-btn-primary.disabled:focus > a:only-child,
  2469. .ant-btn-primary[disabled]:focus > a:only-child,
  2470. .ant-btn-primary.disabled:active > a:only-child,
  2471. .ant-btn-primary[disabled]:active > a:only-child,
  2472. .ant-btn-primary.disabled.active > a:only-child,
  2473. .ant-btn-primary[disabled].active > a:only-child {
  2474. color: currentColor;
  2475. }
  2476. .ant-btn-primary.disabled > a:only-child:after,
  2477. .ant-btn-primary[disabled] > a:only-child:after,
  2478. .ant-btn-primary.disabled:hover > a:only-child:after,
  2479. .ant-btn-primary[disabled]:hover > a:only-child:after,
  2480. .ant-btn-primary.disabled:focus > a:only-child:after,
  2481. .ant-btn-primary[disabled]:focus > a:only-child:after,
  2482. .ant-btn-primary.disabled:active > a:only-child:after,
  2483. .ant-btn-primary[disabled]:active > a:only-child:after,
  2484. .ant-btn-primary.disabled.active > a:only-child:after,
  2485. .ant-btn-primary[disabled].active > a:only-child:after {
  2486. content: '';
  2487. position: absolute;
  2488. top: 0;
  2489. left: 0;
  2490. bottom: 0;
  2491. right: 0;
  2492. background: transparent;
  2493. }
  2494. .ant-btn-group .ant-btn-primary:not(:first-child):not(:last-child) {
  2495. border-right-color: #549bf2;
  2496. border-left-color: #549bf2;
  2497. }
  2498. .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  2499. border-right-color: #549bf2;
  2500. }
  2501. .ant-btn-group .ant-btn-primary:first-child:not(:last-child)[disabled] {
  2502. border-right-color: #d9d9d9;
  2503. }
  2504. .ant-btn-group .ant-btn-primary:last-child:not(:first-child),
  2505. .ant-btn-group .ant-btn-primary + .ant-btn {
  2506. border-left-color: #549bf2;
  2507. }
  2508. .ant-btn-group .ant-btn-primary:last-child:not(:first-child)[disabled],
  2509. .ant-btn-group .ant-btn-primary + .ant-btn[disabled] {
  2510. border-left-color: #d9d9d9;
  2511. }
  2512. .ant-btn-ghost {
  2513. color: #666;
  2514. background-color: transparent;
  2515. border-color: #d9d9d9;
  2516. }
  2517. .ant-btn-ghost > a:only-child {
  2518. color: currentColor;
  2519. }
  2520. .ant-btn-ghost > a:only-child:after {
  2521. content: '';
  2522. position: absolute;
  2523. top: 0;
  2524. left: 0;
  2525. bottom: 0;
  2526. right: 0;
  2527. background: transparent;
  2528. }
  2529. .ant-btn-ghost:hover,
  2530. .ant-btn-ghost:focus {
  2531. color: #79b5ff;
  2532. background-color: transparent;
  2533. border-color: #79b5ff;
  2534. }
  2535. .ant-btn-ghost:hover > a:only-child,
  2536. .ant-btn-ghost:focus > a:only-child {
  2537. color: currentColor;
  2538. }
  2539. .ant-btn-ghost:hover > a:only-child:after,
  2540. .ant-btn-ghost:focus > a:only-child:after {
  2541. content: '';
  2542. position: absolute;
  2543. top: 0;
  2544. left: 0;
  2545. bottom: 0;
  2546. right: 0;
  2547. background: transparent;
  2548. }
  2549. .ant-btn-ghost:active,
  2550. .ant-btn-ghost.active {
  2551. color: #549bf2;
  2552. background-color: transparent;
  2553. border-color: #549bf2;
  2554. }
  2555. .ant-btn-ghost:active > a:only-child,
  2556. .ant-btn-ghost.active > a:only-child {
  2557. color: currentColor;
  2558. }
  2559. .ant-btn-ghost:active > a:only-child:after,
  2560. .ant-btn-ghost.active > a:only-child:after {
  2561. content: '';
  2562. position: absolute;
  2563. top: 0;
  2564. left: 0;
  2565. bottom: 0;
  2566. right: 0;
  2567. background: transparent;
  2568. }
  2569. .ant-btn-ghost.disabled,
  2570. .ant-btn-ghost[disabled],
  2571. .ant-btn-ghost.disabled:hover,
  2572. .ant-btn-ghost[disabled]:hover,
  2573. .ant-btn-ghost.disabled:focus,
  2574. .ant-btn-ghost[disabled]:focus,
  2575. .ant-btn-ghost.disabled:active,
  2576. .ant-btn-ghost[disabled]:active,
  2577. .ant-btn-ghost.disabled.active,
  2578. .ant-btn-ghost[disabled].active {
  2579. color: #ccc;
  2580. background-color: #f7f7f7;
  2581. border-color: #d9d9d9;
  2582. }
  2583. .ant-btn-ghost.disabled > a:only-child,
  2584. .ant-btn-ghost[disabled] > a:only-child,
  2585. .ant-btn-ghost.disabled:hover > a:only-child,
  2586. .ant-btn-ghost[disabled]:hover > a:only-child,
  2587. .ant-btn-ghost.disabled:focus > a:only-child,
  2588. .ant-btn-ghost[disabled]:focus > a:only-child,
  2589. .ant-btn-ghost.disabled:active > a:only-child,
  2590. .ant-btn-ghost[disabled]:active > a:only-child,
  2591. .ant-btn-ghost.disabled.active > a:only-child,
  2592. .ant-btn-ghost[disabled].active > a:only-child {
  2593. color: currentColor;
  2594. }
  2595. .ant-btn-ghost.disabled > a:only-child:after,
  2596. .ant-btn-ghost[disabled] > a:only-child:after,
  2597. .ant-btn-ghost.disabled:hover > a:only-child:after,
  2598. .ant-btn-ghost[disabled]:hover > a:only-child:after,
  2599. .ant-btn-ghost.disabled:focus > a:only-child:after,
  2600. .ant-btn-ghost[disabled]:focus > a:only-child:after,
  2601. .ant-btn-ghost.disabled:active > a:only-child:after,
  2602. .ant-btn-ghost[disabled]:active > a:only-child:after,
  2603. .ant-btn-ghost.disabled.active > a:only-child:after,
  2604. .ant-btn-ghost[disabled].active > a:only-child:after {
  2605. content: '';
  2606. position: absolute;
  2607. top: 0;
  2608. left: 0;
  2609. bottom: 0;
  2610. right: 0;
  2611. background: transparent;
  2612. }
  2613. .ant-btn-dashed {
  2614. color: #666;
  2615. background-color: transparent;
  2616. border-color: #d9d9d9;
  2617. border-style: dashed;
  2618. }
  2619. .ant-btn-dashed > a:only-child {
  2620. color: currentColor;
  2621. }
  2622. .ant-btn-dashed > a:only-child:after {
  2623. content: '';
  2624. position: absolute;
  2625. top: 0;
  2626. left: 0;
  2627. bottom: 0;
  2628. right: 0;
  2629. background: transparent;
  2630. }
  2631. .ant-btn-dashed:hover,
  2632. .ant-btn-dashed:focus {
  2633. color: #79b5ff;
  2634. background-color: transparent;
  2635. border-color: #79b5ff;
  2636. }
  2637. .ant-btn-dashed:hover > a:only-child,
  2638. .ant-btn-dashed:focus > a:only-child {
  2639. color: currentColor;
  2640. }
  2641. .ant-btn-dashed:hover > a:only-child:after,
  2642. .ant-btn-dashed:focus > a:only-child:after {
  2643. content: '';
  2644. position: absolute;
  2645. top: 0;
  2646. left: 0;
  2647. bottom: 0;
  2648. right: 0;
  2649. background: transparent;
  2650. }
  2651. .ant-btn-dashed:active,
  2652. .ant-btn-dashed.active {
  2653. color: #549bf2;
  2654. background-color: transparent;
  2655. border-color: #549bf2;
  2656. }
  2657. .ant-btn-dashed:active > a:only-child,
  2658. .ant-btn-dashed.active > a:only-child {
  2659. color: currentColor;
  2660. }
  2661. .ant-btn-dashed:active > a:only-child:after,
  2662. .ant-btn-dashed.active > a:only-child:after {
  2663. content: '';
  2664. position: absolute;
  2665. top: 0;
  2666. left: 0;
  2667. bottom: 0;
  2668. right: 0;
  2669. background: transparent;
  2670. }
  2671. .ant-btn-dashed.disabled,
  2672. .ant-btn-dashed[disabled],
  2673. .ant-btn-dashed.disabled:hover,
  2674. .ant-btn-dashed[disabled]:hover,
  2675. .ant-btn-dashed.disabled:focus,
  2676. .ant-btn-dashed[disabled]:focus,
  2677. .ant-btn-dashed.disabled:active,
  2678. .ant-btn-dashed[disabled]:active,
  2679. .ant-btn-dashed.disabled.active,
  2680. .ant-btn-dashed[disabled].active {
  2681. color: #ccc;
  2682. background-color: #f7f7f7;
  2683. border-color: #d9d9d9;
  2684. }
  2685. .ant-btn-dashed.disabled > a:only-child,
  2686. .ant-btn-dashed[disabled] > a:only-child,
  2687. .ant-btn-dashed.disabled:hover > a:only-child,
  2688. .ant-btn-dashed[disabled]:hover > a:only-child,
  2689. .ant-btn-dashed.disabled:focus > a:only-child,
  2690. .ant-btn-dashed[disabled]:focus > a:only-child,
  2691. .ant-btn-dashed.disabled:active > a:only-child,
  2692. .ant-btn-dashed[disabled]:active > a:only-child,
  2693. .ant-btn-dashed.disabled.active > a:only-child,
  2694. .ant-btn-dashed[disabled].active > a:only-child {
  2695. color: currentColor;
  2696. }
  2697. .ant-btn-dashed.disabled > a:only-child:after,
  2698. .ant-btn-dashed[disabled] > a:only-child:after,
  2699. .ant-btn-dashed.disabled:hover > a:only-child:after,
  2700. .ant-btn-dashed[disabled]:hover > a:only-child:after,
  2701. .ant-btn-dashed.disabled:focus > a:only-child:after,
  2702. .ant-btn-dashed[disabled]:focus > a:only-child:after,
  2703. .ant-btn-dashed.disabled:active > a:only-child:after,
  2704. .ant-btn-dashed[disabled]:active > a:only-child:after,
  2705. .ant-btn-dashed.disabled.active > a:only-child:after,
  2706. .ant-btn-dashed[disabled].active > a:only-child:after {
  2707. content: '';
  2708. position: absolute;
  2709. top: 0;
  2710. left: 0;
  2711. bottom: 0;
  2712. right: 0;
  2713. background: transparent;
  2714. }
  2715. .ant-btn-circle,
  2716. .ant-btn-circle-outline {
  2717. width: 28px;
  2718. height: 28px;
  2719. padding: 0;
  2720. font-size: 14px;
  2721. border-radius: 50%;
  2722. }
  2723. .ant-btn-circle.ant-btn-lg,
  2724. .ant-btn-circle-outline.ant-btn-lg {
  2725. width: 32px;
  2726. height: 32px;
  2727. padding: 0;
  2728. font-size: 16px;
  2729. border-radius: 50%;
  2730. }
  2731. .ant-btn-circle.ant-btn-sm,
  2732. .ant-btn-circle-outline.ant-btn-sm {
  2733. width: 22px;
  2734. height: 22px;
  2735. padding: 0;
  2736. font-size: 12px;
  2737. border-radius: 50%;
  2738. }
  2739. .ant-btn:before {
  2740. position: absolute;
  2741. top: -1px;
  2742. left: -1px;
  2743. bottom: -1px;
  2744. right: -1px;
  2745. background: #fff;
  2746. opacity: 0.35;
  2747. content: '';
  2748. border-radius: inherit;
  2749. z-index: 1;
  2750. transition: opacity .2s;
  2751. pointer-events: none;
  2752. display: none;
  2753. }
  2754. .ant-btn.ant-btn-loading {
  2755. padding-left: 29px;
  2756. pointer-events: none;
  2757. position: relative;
  2758. }
  2759. .ant-btn.ant-btn-loading .anticon {
  2760. margin-left: -14px;
  2761. transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  2762. }
  2763. .ant-btn.ant-btn-loading:before {
  2764. display: block;
  2765. }
  2766. .ant-btn-sm.ant-btn-loading {
  2767. padding-left: 24px;
  2768. }
  2769. .ant-btn-sm.ant-btn-loading .anticon {
  2770. margin-left: -17px;
  2771. }
  2772. .ant-btn-group {
  2773. position: relative;
  2774. display: inline-block;
  2775. }
  2776. .ant-btn-group > .ant-btn {
  2777. position: relative;
  2778. }
  2779. .ant-btn-group > .ant-btn:hover,
  2780. .ant-btn-group > .ant-btn:focus,
  2781. .ant-btn-group > .ant-btn:active,
  2782. .ant-btn-group > .ant-btn.active {
  2783. z-index: 2;
  2784. }
  2785. .ant-btn-group-lg > .ant-btn {
  2786. padding: 4px 15px 5px 15px;
  2787. font-size: 14px;
  2788. border-radius: 4px;
  2789. }
  2790. .ant-btn-group-sm > .ant-btn {
  2791. padding: 1px 7px;
  2792. font-size: 12px;
  2793. border-radius: 2px;
  2794. }
  2795. .ant-btn-group-sm > .ant-btn > .anticon {
  2796. font-size: 12px;
  2797. }
  2798. .ant-btn-group .ant-btn + .ant-btn,
  2799. .ant-btn + .ant-btn-group,
  2800. .ant-btn-group + .ant-btn,
  2801. .ant-btn-group + .ant-btn-group {
  2802. margin-left: -1px;
  2803. }
  2804. .ant-btn-group .ant-btn:not(:first-child):not(:last-child) {
  2805. border-radius: 0;
  2806. padding-left: 8px;
  2807. padding-right: 8px;
  2808. }
  2809. .ant-btn-group > .ant-btn:first-child {
  2810. margin-left: 0;
  2811. }
  2812. .ant-btn-group > .ant-btn:first-child:not(:last-child) {
  2813. border-bottom-right-radius: 0;
  2814. border-top-right-radius: 0;
  2815. padding-right: 8px;
  2816. }
  2817. .ant-btn-group > .ant-btn:last-child:not(:first-child) {
  2818. border-bottom-left-radius: 0;
  2819. border-top-left-radius: 0;
  2820. padding-left: 8px;
  2821. }
  2822. .ant-btn-group > .ant-btn-group {
  2823. float: left;
  2824. }
  2825. .ant-btn-group > .ant-btn-group:not(:first-child):not(:last-child) > .ant-btn {
  2826. border-radius: 0;
  2827. }
  2828. .ant-btn-group > .ant-btn-group:first-child:not(:last-child) > .ant-btn:last-child {
  2829. border-bottom-right-radius: 0;
  2830. border-top-right-radius: 0;
  2831. padding-right: 8px;
  2832. }
  2833. .ant-btn-group > .ant-btn-group:last-child:not(:first-child) > .ant-btn:first-child {
  2834. border-bottom-left-radius: 0;
  2835. border-top-left-radius: 0;
  2836. padding-left: 8px;
  2837. }
  2838. .ant-btn:not(.ant-btn-circle):not(.ant-btn-circle-outline).ant-btn-icon-only {
  2839. padding-left: 8px;
  2840. padding-right: 8px;
  2841. }
  2842. .ant-btn > .anticon + span,
  2843. .ant-btn > span + .anticon {
  2844. margin-left: 0.5em;
  2845. }
  2846. .ant-btn-clicked:after {
  2847. content: '';
  2848. position: absolute;
  2849. top: -1px;
  2850. left: -1px;
  2851. bottom: -1px;
  2852. right: -1px;
  2853. border-radius: inherit;
  2854. border: 0 solid #58a3ff;
  2855. opacity: 0.4;
  2856. animation: buttonEffect 0.36s ease-out forwards;
  2857. display: block;
  2858. }
  2859. @keyframes buttonEffect {
  2860. to {
  2861. opacity: 0;
  2862. top: -6px;
  2863. left: -6px;
  2864. bottom: -6px;
  2865. right: -6px;
  2866. border-width: 6px;
  2867. }
  2868. }
  2869. .ant-input-search-wrapper {
  2870. display: inline-block;
  2871. position: relative;
  2872. }
  2873. .ant-input-search-wrapper .ant-input-search {
  2874. transition: all .3s ease;
  2875. }
  2876. .ant-input-search-wrapper .ant-input-search-icon {
  2877. position: absolute;
  2878. right: 8px;
  2879. cursor: pointer;
  2880. transition: all .3s ease;
  2881. font-size: 14px;
  2882. height: 20px;
  2883. line-height: 20px;
  2884. top: 50%;
  2885. margin-top: -10px;
  2886. }
  2887. .ant-input-search-wrapper .ant-input-search-icon:hover {
  2888. color: #58a3ff;
  2889. }
  2890. .ant-input-search-wrapper:hover .ant-input-search:not[disabled] {
  2891. border: 1px solid #58a3ff;
  2892. }
  2893. .ant-search-input-wrapper {
  2894. display: inline-block;
  2895. vertical-align: middle;
  2896. }
  2897. .ant-search-input.ant-input-group .ant-input:first-child,
  2898. .ant-search-input.ant-input-group .ant-select:first-child {
  2899. border-radius: 4px;
  2900. position: absolute;
  2901. top: -1px;
  2902. width: 100%;
  2903. }
  2904. .ant-search-input.ant-input-group .ant-input:first-child {
  2905. padding-right: 36px;
  2906. }
  2907. .ant-search-input .ant-search-btn {
  2908. color: #666;
  2909. background-color: #f7f7f7;
  2910. border-color: #d9d9d9;
  2911. border-radius: 0 3px 3px 0;
  2912. left: -1px;
  2913. position: relative;
  2914. border-width: 0 0 0 1px;
  2915. z-index: 2;
  2916. padding-left: 8px;
  2917. padding-right: 8px;
  2918. }
  2919. .ant-search-input .ant-search-btn > a:only-child {
  2920. color: currentColor;
  2921. }
  2922. .ant-search-input .ant-search-btn > a:only-child:after {
  2923. content: '';
  2924. position: absolute;
  2925. top: 0;
  2926. left: 0;
  2927. bottom: 0;
  2928. right: 0;
  2929. background: transparent;
  2930. }
  2931. .ant-search-input .ant-search-btn:hover,
  2932. .ant-search-input .ant-search-btn:focus {
  2933. color: #79b5ff;
  2934. background-color: #f7f7f7;
  2935. border-color: #79b5ff;
  2936. }
  2937. .ant-search-input .ant-search-btn:hover > a:only-child,
  2938. .ant-search-input .ant-search-btn:focus > a:only-child {
  2939. color: currentColor;
  2940. }
  2941. .ant-search-input .ant-search-btn:hover > a:only-child:after,
  2942. .ant-search-input .ant-search-btn:focus > a:only-child:after {
  2943. content: '';
  2944. position: absolute;
  2945. top: 0;
  2946. left: 0;
  2947. bottom: 0;
  2948. right: 0;
  2949. background: transparent;
  2950. }
  2951. .ant-search-input .ant-search-btn:active,
  2952. .ant-search-input .ant-search-btn.active {
  2953. color: #549bf2;
  2954. background-color: #f7f7f7;
  2955. border-color: #549bf2;
  2956. }
  2957. .ant-search-input .ant-search-btn:active > a:only-child,
  2958. .ant-search-input .ant-search-btn.active > a:only-child {
  2959. color: currentColor;
  2960. }
  2961. .ant-search-input .ant-search-btn:active > a:only-child:after,
  2962. .ant-search-input .ant-search-btn.active > a:only-child:after {
  2963. content: '';
  2964. position: absolute;
  2965. top: 0;
  2966. left: 0;
  2967. bottom: 0;
  2968. right: 0;
  2969. background: transparent;
  2970. }
  2971. .ant-search-input .ant-search-btn.disabled,
  2972. .ant-search-input .ant-search-btn[disabled],
  2973. .ant-search-input .ant-search-btn.disabled:hover,
  2974. .ant-search-input .ant-search-btn[disabled]:hover,
  2975. .ant-search-input .ant-search-btn.disabled:focus,
  2976. .ant-search-input .ant-search-btn[disabled]:focus,
  2977. .ant-search-input .ant-search-btn.disabled:active,
  2978. .ant-search-input .ant-search-btn[disabled]:active,
  2979. .ant-search-input .ant-search-btn.disabled.active,
  2980. .ant-search-input .ant-search-btn[disabled].active {
  2981. color: #ccc;
  2982. background-color: #f7f7f7;
  2983. border-color: #d9d9d9;
  2984. }
  2985. .ant-search-input .ant-search-btn.disabled > a:only-child,
  2986. .ant-search-input .ant-search-btn[disabled] > a:only-child,
  2987. .ant-search-input .ant-search-btn.disabled:hover > a:only-child,
  2988. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child,
  2989. .ant-search-input .ant-search-btn.disabled:focus > a:only-child,
  2990. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child,
  2991. .ant-search-input .ant-search-btn.disabled:active > a:only-child,
  2992. .ant-search-input .ant-search-btn[disabled]:active > a:only-child,
  2993. .ant-search-input .ant-search-btn.disabled.active > a:only-child,
  2994. .ant-search-input .ant-search-btn[disabled].active > a:only-child {
  2995. color: currentColor;
  2996. }
  2997. .ant-search-input .ant-search-btn.disabled > a:only-child:after,
  2998. .ant-search-input .ant-search-btn[disabled] > a:only-child:after,
  2999. .ant-search-input .ant-search-btn.disabled:hover > a:only-child:after,
  3000. .ant-search-input .ant-search-btn[disabled]:hover > a:only-child:after,
  3001. .ant-search-input .ant-search-btn.disabled:focus > a:only-child:after,
  3002. .ant-search-input .ant-search-btn[disabled]:focus > a:only-child:after,
  3003. .ant-search-input .ant-search-btn.disabled:active > a:only-child:after,
  3004. .ant-search-input .ant-search-btn[disabled]:active > a:only-child:after,
  3005. .ant-search-input .ant-search-btn.disabled.active > a:only-child:after,
  3006. .ant-search-input .ant-search-btn[disabled].active > a:only-child:after {
  3007. content: '';
  3008. position: absolute;
  3009. top: 0;
  3010. left: 0;
  3011. bottom: 0;
  3012. right: 0;
  3013. background: transparent;
  3014. }
  3015. .ant-search-input .ant-search-btn:hover,
  3016. .ant-search-input .ant-search-btn:focus,
  3017. .ant-search-input .ant-search-btn:active,
  3018. .ant-search-input .ant-search-btn.active {
  3019. background: #fff;
  3020. }
  3021. .ant-search-input .ant-search-btn:hover {
  3022. border-color: #d9d9d9;
  3023. }
  3024. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty,
  3025. .ant-search-input:hover .ant-search-btn-noempty {
  3026. color: #fff;
  3027. background-color: #58a3ff;
  3028. border-color: #58a3ff;
  3029. }
  3030. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child,
  3031. .ant-search-input:hover .ant-search-btn-noempty > a:only-child {
  3032. color: currentColor;
  3033. }
  3034. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty > a:only-child:after,
  3035. .ant-search-input:hover .ant-search-btn-noempty > a:only-child:after {
  3036. content: '';
  3037. position: absolute;
  3038. top: 0;
  3039. left: 0;
  3040. bottom: 0;
  3041. right: 0;
  3042. background: transparent;
  3043. }
  3044. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover,
  3045. .ant-search-input:hover .ant-search-btn-noempty:hover,
  3046. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus,
  3047. .ant-search-input:hover .ant-search-btn-noempty:focus {
  3048. color: #fff;
  3049. background-color: #79b5ff;
  3050. border-color: #79b5ff;
  3051. }
  3052. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child,
  3053. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child,
  3054. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child,
  3055. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child {
  3056. color: currentColor;
  3057. }
  3058. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:hover > a:only-child:after,
  3059. .ant-search-input:hover .ant-search-btn-noempty:hover > a:only-child:after,
  3060. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:focus > a:only-child:after,
  3061. .ant-search-input:hover .ant-search-btn-noempty:focus > a:only-child:after {
  3062. content: '';
  3063. position: absolute;
  3064. top: 0;
  3065. left: 0;
  3066. bottom: 0;
  3067. right: 0;
  3068. background: transparent;
  3069. }
  3070. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active,
  3071. .ant-search-input:hover .ant-search-btn-noempty:active,
  3072. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active,
  3073. .ant-search-input:hover .ant-search-btn-noempty.active {
  3074. color: #fff;
  3075. background-color: #549bf2;
  3076. border-color: #549bf2;
  3077. }
  3078. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child,
  3079. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child,
  3080. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child,
  3081. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child {
  3082. color: currentColor;
  3083. }
  3084. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty:active > a:only-child:after,
  3085. .ant-search-input:hover .ant-search-btn-noempty:active > a:only-child:after,
  3086. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.active > a:only-child:after,
  3087. .ant-search-input:hover .ant-search-btn-noempty.active > a:only-child:after {
  3088. content: '';
  3089. position: absolute;
  3090. top: 0;
  3091. left: 0;
  3092. bottom: 0;
  3093. right: 0;
  3094. background: transparent;
  3095. }
  3096. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled,
  3097. .ant-search-input:hover .ant-search-btn-noempty.disabled,
  3098. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled],
  3099. .ant-search-input:hover .ant-search-btn-noempty[disabled],
  3100. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover,
  3101. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover,
  3102. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover,
  3103. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover,
  3104. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus,
  3105. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus,
  3106. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus,
  3107. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus,
  3108. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active,
  3109. .ant-search-input:hover .ant-search-btn-noempty.disabled:active,
  3110. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active,
  3111. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active,
  3112. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active,
  3113. .ant-search-input:hover .ant-search-btn-noempty.disabled.active,
  3114. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active,
  3115. .ant-search-input:hover .ant-search-btn-noempty[disabled].active {
  3116. color: #ccc;
  3117. background-color: #f7f7f7;
  3118. border-color: #d9d9d9;
  3119. }
  3120. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child,
  3121. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child,
  3122. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child,
  3123. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child,
  3124. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child,
  3125. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child,
  3126. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3127. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child,
  3128. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child,
  3129. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child,
  3130. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3131. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child,
  3132. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child,
  3133. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child,
  3134. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child,
  3135. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child,
  3136. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child,
  3137. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child,
  3138. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child,
  3139. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child {
  3140. color: currentColor;
  3141. }
  3142. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled > a:only-child:after,
  3143. .ant-search-input:hover .ant-search-btn-noempty.disabled > a:only-child:after,
  3144. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled] > a:only-child:after,
  3145. .ant-search-input:hover .ant-search-btn-noempty[disabled] > a:only-child:after,
  3146. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3147. .ant-search-input:hover .ant-search-btn-noempty.disabled:hover > a:only-child:after,
  3148. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3149. .ant-search-input:hover .ant-search-btn-noempty[disabled]:hover > a:only-child:after,
  3150. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3151. .ant-search-input:hover .ant-search-btn-noempty.disabled:focus > a:only-child:after,
  3152. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3153. .ant-search-input:hover .ant-search-btn-noempty[disabled]:focus > a:only-child:after,
  3154. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3155. .ant-search-input:hover .ant-search-btn-noempty.disabled:active > a:only-child:after,
  3156. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3157. .ant-search-input:hover .ant-search-btn-noempty[disabled]:active > a:only-child:after,
  3158. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3159. .ant-search-input:hover .ant-search-btn-noempty.disabled.active > a:only-child:after,
  3160. .ant-search-input.ant-search-input-focus .ant-search-btn-noempty[disabled].active > a:only-child:after,
  3161. .ant-search-input:hover .ant-search-btn-noempty[disabled].active > a:only-child:after {
  3162. content: '';
  3163. position: absolute;
  3164. top: 0;
  3165. left: 0;
  3166. bottom: 0;
  3167. right: 0;
  3168. background: transparent;
  3169. }
  3170. .ant-search-input .ant-select-combobox .ant-select-selection__rendered {
  3171. margin-right: 29px;
  3172. }
  3173. .ant-input {
  3174. position: relative;
  3175. display: inline-block;
  3176. padding: 4px 7px;
  3177. width: 100%;
  3178. height: 28px;
  3179. cursor: text;
  3180. font-size: 12px;
  3181. line-height: 1.5;
  3182. color: #666;
  3183. background-color: #fff;
  3184. background-image: none;
  3185. border: 1px solid #d9d9d9;
  3186. border-radius: 4px;
  3187. transition: all .3s;
  3188. }
  3189. .ant-input::-moz-placeholder {
  3190. color: #ccc;
  3191. opacity: 1;
  3192. }
  3193. .ant-input:-ms-input-placeholder {
  3194. color: #ccc;
  3195. }
  3196. .ant-input::-webkit-input-placeholder {
  3197. color: #ccc;
  3198. }
  3199. .ant-input:hover {
  3200. border-color: #79b5ff;
  3201. }
  3202. .ant-input:focus {
  3203. border-color: #79b5ff;
  3204. outline: 0;
  3205. box-shadow: 0 0 0 2px rgba(88, 163, 255, 0.2);
  3206. }
  3207. .ant-input[disabled] {
  3208. background-color: #f7f7f7;
  3209. opacity: 1;
  3210. cursor: not-allowed;
  3211. color: #ccc;
  3212. }
  3213. .ant-input[disabled]:hover {
  3214. border-color: #e1e1e1;
  3215. }
  3216. textarea.ant-input {
  3217. max-width: 100%;
  3218. height: auto;
  3219. vertical-align: bottom;
  3220. }
  3221. .ant-input-lg {
  3222. padding: 6px 7px;
  3223. height: 32px;
  3224. }
  3225. .ant-input-sm {
  3226. padding: 1px 7px;
  3227. height: 22px;
  3228. border-radius: 2px;
  3229. }
  3230. .ant-input-group {
  3231. position: relative;
  3232. display: table;
  3233. border-collapse: separate;
  3234. border-spacing: 0;
  3235. width: 100%;
  3236. }
  3237. .ant-input-group[class*="col-"] {
  3238. float: none;
  3239. padding-left: 0;
  3240. padding-right: 0;
  3241. }
  3242. .ant-input-group > [class*="col-"] {
  3243. padding-right: 8px;
  3244. }
  3245. .ant-input-group-addon,
  3246. .ant-input-group-wrap,
  3247. .ant-input-group > .ant-input {
  3248. display: table-cell;
  3249. }
  3250. .ant-input-group-addon:not(:first-child):not(:last-child),
  3251. .ant-input-group-wrap:not(:first-child):not(:last-child),
  3252. .ant-input-group > .ant-input:not(:first-child):not(:last-child) {
  3253. border-radius: 0;
  3254. }
  3255. .ant-input-group-addon,
  3256. .ant-input-group-wrap {
  3257. width: 1px;
  3258. white-space: nowrap;
  3259. vertical-align: middle;
  3260. }
  3261. .ant-input-group-wrap > * {
  3262. display: block !important;
  3263. }
  3264. .ant-input-group .ant-input {
  3265. position: relative;
  3266. z-index: 2;
  3267. float: left;
  3268. width: 100%;
  3269. margin-bottom: 0;
  3270. }
  3271. .ant-input-group-addon {
  3272. padding: 4px 7px;
  3273. font-size: 12px;
  3274. font-weight: normal;
  3275. line-height: 1;
  3276. color: #666;
  3277. text-align: center;
  3278. background-color: #eee;
  3279. border: 1px solid #d9d9d9;
  3280. border-radius: 4px;
  3281. position: relative;
  3282. transition: all .3s;
  3283. }
  3284. .ant-input-group-addon .ant-select {
  3285. margin: -5px -7px;
  3286. }
  3287. .ant-input-group-addon .ant-select .ant-select-selection {
  3288. background-color: inherit;
  3289. border: 0;
  3290. margin: -1px;
  3291. border: 1px solid transparent;
  3292. box-shadow: none;
  3293. }
  3294. .ant-input-group-addon .ant-select-open .ant-select-selection,
  3295. .ant-input-group-addon .ant-select-focused .ant-select-selection {
  3296. color: #58a3ff;
  3297. }
  3298. .ant-input-group-addon > i:only-child:after {
  3299. position: absolute;
  3300. content: '';
  3301. top: 0;
  3302. left: 0;
  3303. right: 0;
  3304. bottom: 0;
  3305. }
  3306. .ant-input-group > span > .ant-input:first-child,
  3307. .ant-input-group > .ant-input:first-child,
  3308. .ant-input-group-addon:first-child {
  3309. border-bottom-right-radius: 0;
  3310. border-top-right-radius: 0;
  3311. }
  3312. .ant-input-group > span > .ant-input:first-child .ant-select .ant-select-selection,
  3313. .ant-input-group > .ant-input:first-child .ant-select .ant-select-selection,
  3314. .ant-input-group-addon:first-child .ant-select .ant-select-selection {
  3315. border-bottom-right-radius: 0;
  3316. border-top-right-radius: 0;
  3317. }
  3318. .ant-input-group-addon:first-child {
  3319. border-right: 0;
  3320. }
  3321. .ant-input-group-addon:last-child {
  3322. border-left: 0;
  3323. }
  3324. .ant-input-group > .ant-input:last-child,
  3325. .ant-input-group-addon:last-child {
  3326. border-bottom-left-radius: 0;
  3327. border-top-left-radius: 0;
  3328. }
  3329. .ant-input-group > .ant-input:last-child .ant-select .ant-select-selection,
  3330. .ant-input-group-addon:last-child .ant-select .ant-select-selection {
  3331. border-bottom-left-radius: 0;
  3332. border-top-left-radius: 0;
  3333. }
  3334. .ant-input-group-lg .ant-input,
  3335. .ant-input-group-lg > .ant-input-group-addon {
  3336. padding: 6px 7px;
  3337. height: 32px;
  3338. }
  3339. .ant-input-group-sm .ant-input,
  3340. .ant-input-group-sm > .ant-input-group-addon {
  3341. padding: 1px 7px;
  3342. height: 22px;
  3343. border-radius: 2px;
  3344. }
  3345. .ant-message {
  3346. font-size: 12px;
  3347. position: fixed;
  3348. z-index: 1010;
  3349. width: 100%;
  3350. top: 16px;
  3351. left: 0;
  3352. }
  3353. .ant-message-notice {
  3354. width: auto;
  3355. vertical-align: middle;
  3356. position: absolute;
  3357. left: 50%;
  3358. }
  3359. .ant-message-notice-content {
  3360. position: relative;
  3361. right: 50%;
  3362. padding: 8px 16px;
  3363. border-radius: 4px;
  3364. box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  3365. background: #fff;
  3366. display: block;
  3367. }
  3368. .ant-message-success .anticon {
  3369. color: #87d068;
  3370. }
  3371. .ant-message-error .anticon {
  3372. color: #f50;
  3373. }
  3374. .ant-message-warning .anticon {
  3375. color: #fa0;
  3376. }
  3377. .ant-message-info .anticon,
  3378. .ant-message-loading .anticon {
  3379. color: #58a3ff;
  3380. }
  3381. .ant-message .anticon {
  3382. margin-right: 8px;
  3383. font-size: 14px;
  3384. top: 1px;
  3385. position: relative;
  3386. }
  3387. .login-box {
  3388. width: 400px;
  3389. height: 320px;
  3390. padding: 50px 50px 0 50px;
  3391. background: #fff;
  3392. margin: 0 auto;
  3393. }
  3394. .login-box input {
  3395. height: 36px;
  3396. border-radius: 0px;
  3397. }
  3398. .login-box button {
  3399. width: 300px;
  3400. height: 36px;
  3401. }
  3402. .login-box .ant-input-group-addon {
  3403. font-size: 17px;
  3404. }
  3405. .login-box .user-box {
  3406. margin-bottom: 20px;
  3407. }
  3408. .login-box .pw-box {
  3409. margin-bottom: 20px;
  3410. }
  3411. .ant-checkbox-wrapper {
  3412. margin-bottom: 20px;
  3413. font-size: 14px;
  3414. color: #878787;
  3415. }
  3416. .ant-btn {
  3417. font-size: 18px;
  3418. }
  3419. input::-webkit-input-placeholder,
  3420. textarea::-webkit-input-placeholder {
  3421. color: #333;
  3422. }
  3423. input:-moz-placeholder,
  3424. textarea:-moz-placeholder {
  3425. color: #333;
  3426. }
  3427. input::-moz-placeholder,
  3428. textarea::-moz-placeholder {
  3429. color: #333;
  3430. }
  3431. input:-ms-input-placeholder,
  3432. textarea:-ms-input-placeholder {
  3433. color: #333;
  3434. }