aui.css 61 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715
  1. /*
  2. * =========================================================================
  3. * APIClud - AUI UI 框架 流浪男 QQ:343757327 http://www.auicss.com
  4. * Verson 2.1
  5. * =========================================================================
  6. */
  7. /*初始化类*/
  8. @charset "UTF-8";
  9. html{
  10. font-family: "Helvetica Neue", Helvetica, sans-serif;
  11. font-size: 20px;
  12. }
  13. html,body {
  14. -webkit-touch-callout:none;
  15. -webkit-text-size-adjust:none;
  16. -webkit-tap-highlight-color:rgba(0, 0, 0, 0);
  17. -webkit-user-select:none;
  18. width: 100%;
  19. }
  20. body {
  21. line-height: 1.5;
  22. font-size: 0.8rem;
  23. color: #212121;
  24. background-color: #f5f5f5;
  25. outline: 0;
  26. }
  27. html,body,header,section,footer,div,ul,ol,li,img,a,span,em,del,legend,center,strong,var,fieldset,form,label,dl,dt,dd,cite,input,hr,time,mark,code,figcaption,figure,textarea,h1,h2,h3,h4,h5,h6,p{
  28. margin:0;
  29. border:0;
  30. padding:0;
  31. font-style:normal;
  32. }
  33. * {
  34. -webkit-box-sizing: border-box;
  35. box-sizing: border-box;
  36. -webkit-user-select: none;
  37. -webkit-tap-highlight-color: transparent;
  38. outline: none;
  39. }
  40. @media only screen and (min-width: 400px) {
  41. html {
  42. font-size: 21.33333333px !important;
  43. }
  44. }
  45. @media only screen and (min-width: 414px) {
  46. html {
  47. font-size: 21px !important;
  48. }
  49. }
  50. @media only screen and (min-width: 480px) {
  51. html {
  52. font-size: 25.6px !important;
  53. }
  54. }
  55. ul, li {
  56. list-style: none;
  57. }
  58. p {
  59. font-size: 0.7rem;
  60. color: #757575;
  61. }
  62. a {
  63. color: #0062cc;
  64. text-decoration: none;
  65. background-color: transparent;
  66. }
  67. textarea {
  68. overflow: hidden;
  69. resize: none;
  70. }
  71. button {
  72. overflow: visible;
  73. }
  74. button,select {
  75. text-transform: none;
  76. }
  77. button,input,select,textarea {
  78. font: inherit;
  79. color: inherit;
  80. }
  81. /*自动隐藏文字*/
  82. .aui-ellipsis-1 {
  83. overflow: hidden;
  84. white-space: nowrap;
  85. text-overflow: ellipsis;
  86. }
  87. .aui-ellipsis {
  88. display: -webkit-box;
  89. overflow: hidden;
  90. text-overflow: ellipsis;
  91. word-wrap: break-word;
  92. word-break: break-all;
  93. white-space: normal !important;
  94. -webkit-line-clamp: 1;
  95. -webkit-box-orient: vertical;
  96. }
  97. .aui-ellipsis-2 {
  98. display: -webkit-box;
  99. overflow: hidden;
  100. text-overflow: ellipsis;
  101. word-wrap: break-word;
  102. word-break: break-all;
  103. white-space: normal !important;
  104. -webkit-line-clamp: 2;
  105. -webkit-box-orient: vertical;
  106. }
  107. /*水平线*/
  108. .aui-hr {
  109. width: 100%;
  110. position: relative;
  111. border-top: 1px solid #dddddd;
  112. height: 1px;
  113. }
  114. @media screen and (-webkit-min-device-pixel-ratio:1.5) {
  115. .aui-hr{
  116. border: none;
  117. background-size: 100% 1px;
  118. background-repeat: no-repeat;
  119. background-position: top;
  120. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  121. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  122. }
  123. }
  124. /*内外边距类*/
  125. .aui-padded-0 {
  126. padding: 0 !important;
  127. }
  128. .aui-padded-5 {
  129. padding: 0.25rem !important;
  130. }
  131. .aui-padded-10 {
  132. padding: 0.5rem !important;
  133. }
  134. .aui-padded-15 {
  135. padding: 0.75rem !important;
  136. }
  137. .aui-padded-t-0 {
  138. padding-top: 0 !important;
  139. }
  140. .aui-padded-t-5 {
  141. padding-top: 0.25rem !important;
  142. }
  143. .aui-padded-t-10 {
  144. padding-top: 0.5rem !important;
  145. }
  146. .aui-padded-t-15 {
  147. padding-top: 0.75rem !important;
  148. }
  149. .aui-padded-b-0 {
  150. padding-bottom: 0 !important;
  151. }
  152. .aui-padded-b-5 {
  153. padding-bottom: 0.25rem !important;
  154. }
  155. .aui-padded-b-10 {
  156. padding-bottom: 0.5rem !important;
  157. }
  158. .aui-padded-b-15 {
  159. padding-bottom: 0.75rem !important;
  160. }
  161. .aui-padded-l-0 {
  162. padding-left: 0 !important;
  163. }
  164. .aui-padded-l-5 {
  165. padding-left: 0.25rem !important;
  166. }
  167. .aui-padded-l-10 {
  168. padding-left: 0.5rem !important;
  169. }
  170. .aui-padded-l-15 {
  171. padding-left: 0.75rem !important;
  172. }
  173. .aui-padded-r-0 {
  174. padding-right: 0 !important;
  175. }
  176. .aui-padded-r-5 {
  177. padding-right: 0.25rem !important;
  178. }
  179. .aui-padded-r-10 {
  180. padding-right: 0.5rem !important;
  181. }
  182. .aui-padded-r-15 {
  183. padding-right: 0.75rem !important;
  184. }
  185. .aui-margin-0 {
  186. margin: 0 !important;
  187. }
  188. .aui-margin-5 {
  189. margin: 0.25rem !important;
  190. }
  191. .aui-margin-10 {
  192. margin: 0.5rem !important;
  193. }
  194. .aui-margin-15 {
  195. margin: 0.75rem !important;
  196. }
  197. .aui-margin-t-0 {
  198. margin-top: 0.25rem !important;
  199. }
  200. .aui-margin-t-5 {
  201. margin-top: 0 !important;
  202. }
  203. .aui-margin-t-10 {
  204. margin-top: 0.5rem !important;
  205. }
  206. .aui-margin-t-15 {
  207. margin-top: 0.75rem !important;
  208. }
  209. .aui-margin-b-0 {
  210. margin-bottom: 0 !important;
  211. }
  212. .aui-margin-b-5 {
  213. margin-bottom: 0.25rem !important;
  214. }
  215. .aui-margin-b-10 {
  216. margin-bottom: 0.5rem !important;
  217. }
  218. .aui-margin-b-15 {
  219. margin-bottom: 0.75rem !important;
  220. }
  221. .aui-margin-l-0 {
  222. margin-left: 0 !important;
  223. }
  224. .aui-margin-l-5 {
  225. margin-left: 0.25rem !important;
  226. }
  227. .aui-margin-l-10 {
  228. margin-left: 0.5rem !important;
  229. }
  230. .aui-margin-l-15 {
  231. margin-left: 0.75rem !important;
  232. }
  233. .aui-margin-r-0 {
  234. margin-right: 0 !important;
  235. }
  236. .aui-margin-r-5 {
  237. margin-right: 0.25rem !important;
  238. }
  239. .aui-margin-r-10 {
  240. margin-right: 0.5rem !important;
  241. }
  242. .aui-margin-r-15 {
  243. margin-right: 0.75rem !important;
  244. }
  245. .aui-clearfix {
  246. clear: both;
  247. }
  248. .aui-clearfix:before {
  249. display: table;
  250. content: " ";
  251. }
  252. .aui-clearfix:after {
  253. clear: both;
  254. }
  255. /*文字对齐*/
  256. .aui-text-left {
  257. text-align: left !important;
  258. }
  259. .aui-text-center {
  260. text-align: center !important;
  261. }
  262. .aui-text-justify {
  263. text-align: justify !important;
  264. }
  265. .aui-text-right {
  266. text-align: right !important;
  267. }
  268. /*文字、背景颜色*/
  269. h1,h2,h3,h4,h5,h6 {
  270. font-weight: 400;
  271. }
  272. h1 {
  273. font-size: 1.2rem;
  274. }
  275. h2 {
  276. font-size: 1rem;
  277. }
  278. h3 {
  279. font-size: 0.8rem;
  280. }
  281. h4 {
  282. font-size: 0.7rem;
  283. }
  284. h5 {
  285. font-size: 0.7rem;
  286. font-weight: normal;
  287. color: #757575;
  288. }
  289. h6 {
  290. font-size: 0.7rem;
  291. font-weight: normal;
  292. color: #757575;
  293. }
  294. h1 small,h2 small,h3 small,h4 small {
  295. font-weight: normal;
  296. line-height: 1;
  297. color: #757575;
  298. }
  299. h5 small,h6 small {
  300. font-weight: normal;
  301. line-height: 1;
  302. color: #757575;
  303. }
  304. h1 small,h2 small,h3 small {
  305. font-size: 65%;
  306. }
  307. h4 small,h5 small,h6 small {
  308. font-size: 75%;
  309. }
  310. img {
  311. max-width: 100%;
  312. display: block;
  313. }
  314. .aui-font-size-12 {
  315. font-size: 0.6rem !important;
  316. }
  317. .aui-font-size-14 {
  318. font-size: 0.7rem !important;
  319. }
  320. .aui-font-size-16 {
  321. font-size: 0.8rem !important;
  322. }
  323. .aui-font-size-18 {
  324. font-size: 0.9rem !important;
  325. }
  326. .aui-font-size-20 {
  327. font-size: 1rem !important;
  328. }
  329. .aui-text-default {
  330. color: #212121 !important;
  331. }
  332. .aui-text-white {
  333. color: #ffffff !important;
  334. }
  335. .aui-text-primary {
  336. color: #00bcd4 !important;
  337. }
  338. .aui-text-success {
  339. color: #009688 !important;
  340. }
  341. .aui-text-info {
  342. color: #03a9f4 !important;
  343. }
  344. .aui-text-warning {
  345. color: #ffc107 !important;
  346. }
  347. .aui-text-danger {
  348. color: #e51c23 !important;
  349. }
  350. .aui-text-pink {
  351. color: #e91e63 !important;
  352. }
  353. .aui-text-purple {
  354. color: #673ab7 !important;
  355. }
  356. .aui-text-indigo {
  357. color: #3f51b5 !important;
  358. }
  359. .aui-bg-default {
  360. background-color: #f5f5f5 !important;
  361. }
  362. .aui-bg-primary {
  363. background-color: #00bcd4 !important;
  364. }
  365. .aui-bg-success {
  366. background-color: #009688 !important;
  367. }
  368. .aui-bg-info {
  369. background-color: #03a9f4 !important;
  370. }
  371. .aui-bg-warning {
  372. background-color: #f1c40f !important;
  373. }
  374. .aui-bg-danger {
  375. background-color: #e51c23 !important;
  376. }
  377. .aui-bg-pink {
  378. background-color: #e91e63 !important;
  379. }
  380. .aui-bg-purple {
  381. background-color: #673ab7 !important;
  382. }
  383. .aui-bg-indigo {
  384. background-color: #3f51b5 !important;
  385. }
  386. /*警告、成功颜色*/
  387. .aui-warning,
  388. .aui-warning label,
  389. .aui-warning .aui-input,
  390. .aui-warning .aui-iconfont {
  391. color: #e51c23 !important;
  392. }
  393. .aui-success,
  394. .aui-success label,
  395. .aui-success .aui-input,
  396. .aui-success .aui-iconfont {
  397. color: #009688 !important;
  398. }
  399. /*对齐,显示,隐藏等*/
  400. .aui-pull-right {
  401. float: right !important;
  402. }
  403. .aui-pull-left {
  404. float: left !important;
  405. }
  406. .aui-hide {
  407. display: none !important;
  408. }
  409. .aui-show {
  410. display: block !important;
  411. }
  412. .aui-invisible {
  413. visibility: hidden;
  414. }
  415. .aui-inline {
  416. display: inline-block;
  417. vertical-align: top;
  418. }
  419. .aui-mask {
  420. position: fixed;
  421. width: 100%;
  422. height: 100%;
  423. top: 0;
  424. left: 0;
  425. background: rgba(0, 0, 0, 0.3);
  426. opacity: 0;
  427. z-index: 8;
  428. visibility: hidden;
  429. -webkit-transition: opacity .3s,-webkit-transform .3s;
  430. transition: opacity .3s,transform .3s;
  431. }
  432. .aui-mask.aui-mask-in {
  433. visibility: visible;
  434. opacity: 1;
  435. }
  436. .aui-mask.aui-mask-out {
  437. opacity: 0;
  438. }
  439. img.aui-img-round {
  440. border-radius: 50%;
  441. }
  442. /*基本容器*/
  443. .aui-content {
  444. -webkit-overflow-scrolling: touch;
  445. overflow-x: hidden;
  446. word-break: break-all;
  447. }
  448. .aui-content-padded {
  449. margin: 0.75rem;
  450. position: relative;
  451. word-break: break-all;
  452. -webkit-overflow-scrolling: touch;
  453. }
  454. /*栅格类*/
  455. .aui-row {
  456. overflow: hidden;
  457. margin: 0;
  458. }
  459. .aui-row-padded {
  460. margin-left: -0.125rem;
  461. margin-right: -0.125rem;
  462. }
  463. .aui-row-padded [class*=aui-col-xs-] {
  464. padding: 0.125rem;
  465. }
  466. .aui-col-xs-1,.aui-col-xs-2,.aui-col-xs-3,.aui-col-xs-4,.aui-col-xs-5,.aui-col-xs-6,.aui-col-xs-7,.aui-col-xs-8,.aui-col-xs-9,.aui-col-xs-10,.aui-col-xs-11,.aui-col-5 {
  467. position: relative;
  468. float: left;
  469. }
  470. .aui-col-xs-12 {
  471. width: 100%;
  472. position: relative;
  473. }
  474. .aui-col-xs-11 {
  475. width: 91.66666667%;
  476. }
  477. .aui-col-xs-10 {
  478. width: 83.33333333%;
  479. }
  480. .aui-col-xs-9 {
  481. width: 75%;
  482. }
  483. .aui-col-xs-8 {
  484. width: 66.66666667%;
  485. }
  486. .aui-col-xs-7 {
  487. width: 58.33333333%;
  488. }
  489. .aui-col-xs-6 {
  490. width: 50%;
  491. }
  492. .aui-col-xs-5 {
  493. width: 41.66666667%;
  494. }
  495. .aui-col-xs-4 {
  496. width: 33.33333333%;
  497. }
  498. .aui-col-xs-3 {
  499. width: 25%;
  500. }
  501. .aui-col-xs-2 {
  502. width: 16.66666667%;
  503. }
  504. .aui-col-xs-1 {
  505. width: 8.33333333%;
  506. }
  507. .aui-col-5 {
  508. width: 20%;
  509. }
  510. /*标签*/
  511. .aui-label {
  512. display: inline-block;
  513. padding: 0.2em 0.25em;
  514. font-size: 0.6rem;
  515. line-height: 1;
  516. color: #616161;
  517. background-color: #dddddd;
  518. text-align: center;
  519. white-space: nowrap;
  520. vertical-align: middle;
  521. border-radius: 0.15em;
  522. position: relative;
  523. }
  524. .aui-label-primary {
  525. color: #ffffff;
  526. background-color: #00bcd4;
  527. }
  528. .aui-label-success {
  529. color: #ffffff;
  530. background-color: #009688;
  531. }
  532. .aui-label-info {
  533. color: #ffffff;
  534. background-color: #03a9f4;
  535. }
  536. .aui-label-warning {
  537. color: #ffffff;
  538. background-color: #ffc107;
  539. }
  540. .aui-label-danger {
  541. color: #ffffff;
  542. background-color: #e51c23;
  543. }
  544. .aui-label-outlined {
  545. background-color: transparent;
  546. position: relative;
  547. }
  548. .aui-label-outlined:after {
  549. -webkit-border-radius: 2px;
  550. border-radius: 2px;
  551. height: 200%;
  552. content: '';
  553. width: 200%;
  554. border: 1px solid #d9d9d9;
  555. position: absolute;
  556. top: -1px;
  557. left: -1px;
  558. transform: scale(0.5);
  559. -webkit-transform: scale(0.5);
  560. transform-origin: 0 0;
  561. -webkit-transform-origin: 0 0;
  562. z-index: 1;
  563. }
  564. .aui-label-outlined.aui-label-primary,
  565. .aui-label-outlined.aui-label-primary:after {
  566. color: #00bcd4;
  567. border-color: #00bcd4;
  568. }
  569. .aui-label-outlined.aui-label-success,
  570. .aui-label-outlined.aui-label-success:after {
  571. color: #009688;
  572. border-color: #009688;
  573. }
  574. .aui-label-outlined.aui-label-info,
  575. .aui-label-outlined.aui-label-info:after {
  576. color: #03a9f4;
  577. border-color: #03a9f4;
  578. }
  579. .aui-label-outlined.aui-label-warning,
  580. .aui-label-outlined.aui-label-warning:after {
  581. color: #ffc107;
  582. border-color: #ffc107;
  583. }
  584. .aui-label-outlined.aui-label-danger,
  585. .aui-label-outlined.aui-label-danger:after {
  586. color: #e51c23;
  587. border-color: #e51c23;
  588. }
  589. .aui-label .aui-iconfont {
  590. font-size: 0.6rem;
  591. }
  592. /*角标*/
  593. .aui-badge {
  594. display: inline-block;
  595. width: auto;
  596. text-align: center;
  597. min-width: 0.8rem;
  598. height: 0.8rem;
  599. line-height: 0.8rem;
  600. padding: 0 0.2rem;
  601. font-size: 0.6rem;
  602. color: #ffffff;
  603. background-color: #ff2600;
  604. border-radius: 0.4rem;
  605. position: absolute;
  606. top: 0.2rem;
  607. left: 60%;
  608. z-index: 99;
  609. }
  610. .aui-dot {
  611. display: inline-block;
  612. width: 0.4rem;
  613. height: 0.4rem;
  614. background: #ff2600;
  615. border-radius: 0.5rem;
  616. position: absolute;
  617. top: 0.3rem;
  618. right: 20%;
  619. z-index: 99;
  620. }
  621. /*按钮样式*/
  622. button, .aui-btn {
  623. position: relative;
  624. display: inline-block;
  625. font-size: 0.7rem;
  626. font-weight: 400;
  627. font-family: inherit;
  628. text-decoration: none;
  629. text-align: center;
  630. margin: 0;
  631. background: #dddddd;
  632. padding: 0 0.6rem;
  633. height: 1.5rem;
  634. line-height: 1.5rem;
  635. border-radius: 0.2rem;
  636. white-space: nowrap;
  637. text-overflow: ellipsis;
  638. vertical-align: middle;
  639. -webkit-box-sizing: border-box;
  640. box-sizing: border-box;
  641. -webkit-user-select: none;
  642. user-select: none;
  643. }
  644. .aui-btn:active {
  645. color: #212121;
  646. background-color: #bdbdbd;
  647. }
  648. .aui-btn-primary {
  649. color: #ffffff;
  650. background-color: #00bcd4;
  651. }
  652. .aui-btn-primary.aui-active, .aui-btn-primary:active {
  653. color: #ffffff;
  654. background-color: #00acc1;
  655. }
  656. .aui-btn-success {
  657. color: #ffffff;
  658. background-color: #009688;
  659. }
  660. .aui-btn-success.aui-active, .aui-btn-success:active {
  661. color: #fff;
  662. background-color: #00897b;
  663. }
  664. .aui-btn-info {
  665. color: #ffffff !important;
  666. background-color: #03a9f4 !important;
  667. }
  668. .aui-btn-info.aui-active, .aui-btn-info:active {
  669. color: #fff !important;
  670. background-color: #039be5 !important;
  671. }
  672. .aui-btn-warning {
  673. color: #ffffff !important;
  674. background-color: #ffc107 !important;
  675. }
  676. .aui-btn-warning.aui-active, .aui-btn-warning:active {
  677. color: #ffffff !important;
  678. background-color: #ffb300 !important;
  679. }
  680. .aui-btn-danger {
  681. color: #ffffff !important;
  682. background-color: #e51c23 !important;
  683. }
  684. .aui-btn-danger.aui-active, .aui-btn-danger:active {
  685. color: #ffffff !important;
  686. background-color: #dd191b !important;
  687. }
  688. .aui-btn-block {
  689. display: block;
  690. width: 100%;
  691. height: 2.5rem;
  692. line-height: 2.55rem;
  693. margin-bottom: 0;
  694. font-size: 0.9rem;
  695. }
  696. .aui-btn-block.aui-btn-sm {
  697. font-size: 0.7rem;
  698. height: 1.8rem;
  699. line-height: 1.85rem;
  700. }
  701. .aui-btn .aui-iconfont, .aui-btn-block .aui-iconfont {
  702. margin-right: 0.3rem;
  703. }
  704. .aui-btn .aui-badge, .aui-btn-block .aui-badge {
  705. margin-left: 0.3rem;
  706. }
  707. .aui-btn-outlined {
  708. background: transparent !important;
  709. border: 1px solid #bdbdbd;
  710. }
  711. .aui-btn-outlined:active {
  712. background: transparent !important;
  713. }
  714. .aui-btn-default.aui-btn-outlined {
  715. color: #bdc3c7 !important;
  716. border: 1px solid #dcdcdc !important;
  717. }
  718. .aui-btn-primary.aui-btn-outlined {
  719. color: #00bcd4 !important;
  720. border: 1px solid #00bcd4 !important;
  721. }
  722. .aui-btn-success.aui-btn-outlined {
  723. color: #009688 !important;
  724. border: 1px solid #009688 !important;
  725. }
  726. .aui-btn-info.aui-btn-outlined {
  727. color: #03a9f4 !important;
  728. border: 1px solid #03a9f4 !important;
  729. }
  730. .aui-btn-warning.aui-btn-outlined {
  731. color: #ffc107 !important;
  732. border: 1px solid #ffc107 !important;
  733. }
  734. .aui-btn-danger.aui-btn-outlined {
  735. color: #e51c23 !important;
  736. border: 1px solid #e51c23 !important;
  737. }
  738. /*
  739. *表单类\输入框\radio\checkbox
  740. **/
  741. .aui-input,
  742. input[type="password"],
  743. input[type="search"],
  744. input[type="email"],
  745. input[type="tel"],
  746. input[type="url"],
  747. input[type="date"],
  748. input[type="datetime-local"],
  749. input[type="time"],
  750. input[type="number"],
  751. textarea {
  752. border: none;
  753. background-color: transparent;
  754. border-radius: 0;
  755. box-shadow: none;
  756. display: block;
  757. padding: 0;
  758. margin: 0;
  759. width: 100%;
  760. height: 2.2rem;
  761. line-height: normal;
  762. color: #424242;
  763. font-size: 0.8rem;
  764. font-family: inherit;
  765. box-sizing: border-box;
  766. -webkit-user-select: text;
  767. user-select: text;
  768. -webkit-appearance: none;
  769. appearance: none;
  770. }
  771. input[type="text"]{
  772. background-color: transparent;
  773. border-radius: 0;
  774. box-shadow: none;
  775. display: block;
  776. padding: 0;
  777. margin: 0;
  778. width: 100%;
  779. height: 2.2rem;
  780. line-height: normal;
  781. color: #424242;
  782. font-size: 0.8rem;
  783. font-family: inherit;
  784. box-sizing: border-box;
  785. -webkit-user-select: text;
  786. user-select: text;
  787. -webkit-appearance: none;
  788. appearance: none;
  789. }
  790. select{
  791. border: none;
  792. background-color: transparent;
  793. border-radius: 0;
  794. box-shadow: none;
  795. display: block;
  796. padding: 0;
  797. margin: 0;
  798. width: 100%;
  799. line-height: normal;
  800. color: #424242;
  801. font-size: 0.8rem;
  802. font-family: inherit;
  803. box-sizing: border-box;
  804. -webkit-user-select: text;
  805. user-select: text;
  806. -webkit-appearance: none;
  807. appearance: none;
  808. }
  809. input[type="search"]::-webkit-search-cancel-button {
  810. display: none;
  811. }
  812. .aui-scroll-x {
  813. position: relative;
  814. overflow-y: auto;
  815. -webkit-overflow-scrolling: touch;
  816. }
  817. .aui-scroll-y {
  818. position: relative;
  819. width: 100%;
  820. overflow-x: auto;
  821. -webkit-overflow-scrolling: touch;
  822. }
  823. ::-webkit-scrollbar{
  824. width:0px;
  825. }
  826. /*列表*/
  827. .aui-list {
  828. position: relative;
  829. font-size: 0.8rem;
  830. background-color: #ffffff;
  831. border-top: 1px solid #dddddd;
  832. }
  833. .aui-list .aui-content {
  834. overflow: hidden;
  835. }
  836. .aui-list.aui-list-noborder,
  837. .aui-list.aui-list-noborder {
  838. border-top: none;
  839. }
  840. .aui-list .aui-list-header {
  841. background-color: #dddddd;
  842. color: #212121;
  843. position: relative;
  844. font-size: 0.6rem;
  845. padding: 0.4rem 0.75rem;
  846. -webkit-box-sizing: border-box;
  847. box-sizing: border-box;
  848. display: -webkit-box;
  849. display: -webkit-flex;
  850. display: flex;
  851. -webkit-box-pack: justify;
  852. -webkit-justify-content: space-between;
  853. justify-content: space-between;
  854. -webkit-box-align: center;
  855. -webkit-align-items: center;
  856. align-items: center;
  857. }
  858. .aui-list .aui-list-item {
  859. list-style: none;
  860. margin: 0;
  861. padding: 0;
  862. padding-left: 0.75rem;
  863. color: #212121;
  864. border-bottom: 1px solid #dddddd;
  865. position: relative;
  866. min-height: 2.2rem;
  867. -webkit-box-sizing: border-box;
  868. box-sizing: border-box;
  869. display: -webkit-box;
  870. display: -webkit-flex;
  871. display: flex;
  872. -webkit-box-pack: justify;
  873. -webkit-justify-content: space-between;
  874. justify-content: space-between;
  875. }
  876. .aui-list.aui-list-noborder .aui-list-item:last-child {
  877. border-bottom: 0;
  878. }
  879. .aui-list .aui-list-item-inner {
  880. position: relative;
  881. min-height: 2.2rem;
  882. padding-right: 0.75rem;
  883. width: 100%;
  884. -webkit-box-sizing: border-box;
  885. box-sizing: border-box;
  886. display: -webkit-box;
  887. display: -webkit-flex;
  888. display: flex;
  889. -webkit-box-flex: 1;
  890. -webkit-box-pack: justify;
  891. -webkit-justify-content: space-between;
  892. justify-content: space-between;
  893. -webkit-box-align: center;
  894. -webkit-align-items: center;
  895. align-items: center;
  896. }
  897. .aui-list .aui-list-item:active {
  898. background-color: #f5f5f5;
  899. }
  900. .aui-list .aui-list-item-text {
  901. font-size: 0.7rem;
  902. color: #757575;
  903. position: relative;
  904. -webkit-box-sizing: border-box;
  905. box-sizing: border-box;
  906. display: -webkit-box;
  907. display: -webkit-flex;
  908. display: flex;
  909. -webkit-box-pack: justify;
  910. -webkit-justify-content: space-between;
  911. justify-content: space-between;
  912. -webkit-align-items: center;
  913. align-items: center;
  914. }
  915. .aui-list .aui-list-item-title {
  916. font-size: 0.8rem;
  917. position: relative;
  918. max-width: 100%;
  919. color: #212121;
  920. }
  921. .aui-list .aui-list-item-right,
  922. .aui-list-item-title-row em {
  923. max-width: 50%;
  924. position: relative;
  925. font-size: 0.6rem;
  926. color: #757575;
  927. margin-left: 0.25rem;
  928. }
  929. .aui-list .aui-list-item-inner p {
  930. overflow: hidden;
  931. }
  932. .aui-list .aui-list-media-list {
  933. -webkit-box-orient: vertical;
  934. -webkit-box-direction: normal;
  935. -webkit-flex-direction: column;
  936. flex-direction: column;
  937. }
  938. .aui-media-list-item-inner {
  939. -webkit-box-sizing: border-box;
  940. box-sizing: border-box;
  941. display: -webkit-box;
  942. display: -webkit-flex;
  943. display: flex;
  944. }
  945. .aui-media-list .aui-list-item {
  946. display: block;
  947. }
  948. .aui-media-list .aui-list-item-inner {
  949. display: block;
  950. padding-top: 0.5rem;
  951. padding-bottom: 0.5rem;
  952. }
  953. .aui-media-list-item-inner + .aui-info {
  954. margin-right: 0.75rem;
  955. }
  956. .aui-list .aui-list-item-media {
  957. width: 4.5rem;
  958. position: relative;
  959. padding: 0.5rem 0;
  960. padding-right: 0.75rem;
  961. display: inherit;
  962. -webkit-flex-shrink: 0;
  963. flex-shrink: 0;
  964. -webkit-flex-wrap: nowrap;
  965. flex-wrap: nowrap;
  966. -webkit-box-align: center;
  967. -webkit-align-items: flex-start;
  968. align-items: flex-start;
  969. }
  970. .aui-list .aui-list-item-media img {
  971. width: 100%;
  972. display: block;
  973. }
  974. .aui-list .aui-list-item-media-list {
  975. margin-top: 0.25rem;
  976. padding-right: 0;
  977. display: block;
  978. }
  979. .aui-list [class*=aui-col-xs-] img{
  980. max-width: 100%;
  981. width: 100%;
  982. display: block;
  983. }
  984. .aui-list-item-middle .aui-list-item-inner:after {
  985. display: block;
  986. }
  987. .aui-list .aui-list-item-middle > .aui-list-item-media,
  988. .aui-list .aui-list-item-middle > .aui-list-item-inner,
  989. .aui-list .aui-list-item-middle > * {
  990. -webkit-box-align: center;
  991. box-align: center;
  992. -webkit-align-items: center;
  993. align-items: center;
  994. }
  995. .aui-list .aui-list-item-center > .aui-list-item-media,
  996. .aui-list .aui-list-item-center > .aui-list-item-inner,
  997. .aui-list .aui-list-item-center {
  998. -webkit-box-pack: center;
  999. -webkit-justify-content: center;
  1000. justify-content: center;
  1001. }
  1002. .aui-list .aui-list-item i.aui-iconfont {
  1003. -webkit-align-self: center;
  1004. align-self: center;
  1005. font-size: 0.8rem;
  1006. }
  1007. .aui-list-item-inner.aui-list-item-arrow {
  1008. overflow: hidden;
  1009. padding-right: 1.5rem;
  1010. }
  1011. .aui-list-item-arrow:before {
  1012. content: '';
  1013. width: 0.4rem;
  1014. height: 0.4rem;
  1015. position: absolute;
  1016. top: 50%;
  1017. right: 0.75rem;
  1018. margin-top: -0.2rem;
  1019. background: transparent;
  1020. border: 1px solid #dddddd;
  1021. border-top: none;
  1022. border-right: none;
  1023. z-index: 2;
  1024. -webkit-border-radius: 0;
  1025. border-radius: 0;
  1026. -webkit-transform: rotate(-135deg);
  1027. transform: rotate(-135deg);
  1028. }
  1029. .aui-list-item.aui-list-item-arrow {
  1030. padding-right: 0.75rem;
  1031. }
  1032. .aui-list label {
  1033. line-height: 1.3rem;
  1034. }
  1035. .aui-list.aui-form-list .aui-list-item:active {
  1036. background-color: #ffffff;
  1037. }
  1038. .aui-list.aui-form-list .aui-list-item-inner {
  1039. -webkit-box-sizing: border-box;
  1040. box-sizing: border-box;
  1041. display: -webkit-box;
  1042. display: -webkit-flex;
  1043. display: flex;
  1044. padding: 0;
  1045. }
  1046. .aui-list .aui-list-item-label,
  1047. .aui-list .aui-list-item-label-icon {
  1048. color: #212121;
  1049. width: 35%;
  1050. min-width: 1.5rem;
  1051. margin: 0;
  1052. padding: 0;
  1053. padding-right: 0.25rem;
  1054. line-height: 2.2rem;
  1055. position: relative;
  1056. overflow: hidden;
  1057. white-space: nowrap;
  1058. max-width: 100%;
  1059. -webkit-box-sizing: border-box;
  1060. box-sizing: border-box;
  1061. display: -webkit-box;
  1062. display: -webkit-flex;
  1063. display: flex;
  1064. -webkit-align-items: center;
  1065. align-items: center;
  1066. }
  1067. .aui-list .aui-list-item-label-icon {
  1068. width: auto;
  1069. padding-right: 0.75rem;
  1070. }
  1071. .aui-list .aui-list-item-input {
  1072. width: 100%;
  1073. padding: 0;
  1074. padding-right: 0.75rem;
  1075. -webkit-box-flex: 1;
  1076. box-flex: 1;
  1077. -webkit-flex-shrink: 1;
  1078. flex-shrink: 1;
  1079. }
  1080. .aui-list.aui-select-list .aui-list-item:active {
  1081. background-color: #ffffff;
  1082. }
  1083. .aui-list.aui-select-list .aui-list-item-inner {
  1084. display: block;
  1085. padding-top: 0.5rem;
  1086. padding-bottom: 0.5rem;
  1087. -webkit-align-self: stretch;
  1088. align-self: stretch;
  1089. }
  1090. .aui-list.aui-select-list .aui-list-item-label {
  1091. width: auto;
  1092. min-width: 2.2rem;
  1093. padding: 0.5rem 0;
  1094. padding-right: 0.75rem;
  1095. }
  1096. .aui-list.aui-form-list .aui-list-item-btn {
  1097. padding: 0.75rem 0.75rem 0.75rem 0;
  1098. }
  1099. .aui-list textarea {
  1100. overflow: auto;
  1101. margin: 0.5rem 0;
  1102. height: 3rem;
  1103. line-height: 1rem;
  1104. resize: none;
  1105. }
  1106. .aui-list .aui-list-item-right .aui-badge,
  1107. .aui-list .aui-list-item-right .aui-dot {
  1108. display: inherit;
  1109. }
  1110. @media screen and (-webkit-min-device-pixel-ratio:1.5) {
  1111. .aui-list {
  1112. border: none;
  1113. background-size: 100% 1px;
  1114. background-repeat: no-repeat;
  1115. background-position: top;
  1116. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  1117. }
  1118. .aui-list .aui-list-item {
  1119. border: none;
  1120. background-size: 100% 1px;
  1121. background-repeat: no-repeat;
  1122. background-position: bottom;
  1123. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  1124. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  1125. }
  1126. .aui-list.aui-list-in .aui-list-item {
  1127. border: none;
  1128. background-size: 100% 1px;
  1129. background-repeat: no-repeat;
  1130. background-position: 0.75rem bottom;
  1131. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  1132. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  1133. }
  1134. .aui-list.aui-list-in .aui-list-item:last-child {
  1135. background-position: bottom;
  1136. }
  1137. .aui-list.aui-list-noborder,
  1138. .aui-list.aui-list-noborder .aui-list-item:last-child {
  1139. border: none;
  1140. background-size: 100% 0;
  1141. background-image: none;
  1142. }
  1143. }
  1144. /*tab切换类*/
  1145. .aui-tab {
  1146. position: relative;
  1147. background-color: #ffffff;
  1148. display: -webkit-box;
  1149. display: -webkit-flex;
  1150. display: flex;
  1151. -webkit-flex-wrap: nowrap;
  1152. flex-wrap: nowrap;
  1153. -webkit-align-self: center;
  1154. align-self: center;
  1155. }
  1156. .aui-tab-item {
  1157. width: 100%;
  1158. height: 2.2rem;
  1159. line-height: 2.2rem;
  1160. position: relative;
  1161. font-size: 0.7rem;
  1162. text-align: center;
  1163. color: #212121;
  1164. margin-left: -1px;
  1165. -webkit-box-flex: 1;
  1166. box-flex: 1;
  1167. }
  1168. .aui-tab-item.aui-active {
  1169. color: #039be5;
  1170. border-bottom: 2px solid #039be5;
  1171. }
  1172. /*卡片列表布局*/
  1173. .aui-card-list {
  1174. position: relative;
  1175. margin-bottom: 0.75rem;
  1176. background: #ffffff;
  1177. }
  1178. .aui-card-list-header,
  1179. .aui-card-list-footer {
  1180. position: relative;
  1181. min-height: 2.2rem;
  1182. padding: 0.5rem 0.75rem;
  1183. -webkit-box-sizing: border-box;
  1184. box-sizing: border-box;
  1185. display: -webkit-box;
  1186. display: -webkit-flex;
  1187. display: flex;
  1188. -webkit-box-pack: justify;
  1189. -webkit-justify-content: space-between;
  1190. justify-content: space-between;
  1191. -webkit-box-align: center;
  1192. -webkit-align-items: center;
  1193. align-items: center;
  1194. }
  1195. .aui-card-list-header {
  1196. font-size: 0.8rem;
  1197. color: #212121;
  1198. }
  1199. .aui-card-list-header.aui-card-list-user {
  1200. display: block;
  1201. }
  1202. .aui-card-list-user-avatar {
  1203. width: 2rem;
  1204. float: left;
  1205. margin-right: 0.5rem;
  1206. }
  1207. .aui-card-list-user-avatar img {
  1208. width: 100%;
  1209. display: block;
  1210. }
  1211. .aui-card-list-user-name {
  1212. color: #212121;
  1213. position: relative;
  1214. font-size: 0.7rem;
  1215. -webkit-box-sizing: border-box;
  1216. box-sizing: border-box;
  1217. display: -webkit-box;
  1218. display: -webkit-flex;
  1219. display: flex;
  1220. -webkit-box-pack: justify;
  1221. -webkit-justify-content: space-between;
  1222. justify-content: space-between;
  1223. -webkit-box-align: center;
  1224. -webkit-align-items: center;
  1225. align-items: center;
  1226. }
  1227. .aui-card-list-user-name > *,
  1228. .aui-card-list-user-name small {
  1229. position: relative;
  1230. }
  1231. .aui-card-list-user-name small {
  1232. color: #757575;
  1233. }
  1234. .aui-card-list-user-info {
  1235. color: #757575;
  1236. font-size: 0.6rem;
  1237. }
  1238. .aui-card-list-content {
  1239. position: relative;
  1240. }
  1241. .aui-card-list-content-padded {
  1242. position: relative;
  1243. padding: 0.5rem 0.75rem;
  1244. }
  1245. .aui-card-list-content,
  1246. .aui-card-list-content-padded {
  1247. word-break: break-all;
  1248. font-size: 0.7rem;
  1249. color: #212121;
  1250. }
  1251. .aui-card-list-content img,
  1252. .aui-card-list-content-padded img {
  1253. width: 100%;
  1254. display: block;
  1255. }
  1256. .aui-card-list-footer {
  1257. font-size: 0.7rem;
  1258. color: #757575;
  1259. }
  1260. .aui-card-list-footer > * {
  1261. position: relative;
  1262. }
  1263. .aui-card-list-footer.aui-text-center {
  1264. display: -webkit-box;
  1265. display: -webkit-flex;
  1266. display: flex;
  1267. -webkit-box-pack: center;
  1268. box-pack: center;
  1269. -webkit-justify-content: center;
  1270. justify-content: center;
  1271. }
  1272. .aui-card-list-footer .aui-iconfont {
  1273. font-size: 0.9rem;
  1274. }
  1275. /*宫格布局*/
  1276. .aui-grid {
  1277. width: 100%;
  1278. background-color: #ffffff;
  1279. display: table;
  1280. table-layout: fixed;
  1281. }
  1282. .aui-grid [class*=aui-col-] {
  1283. display: table-cell;
  1284. position: relative;
  1285. text-align: center;
  1286. vertical-align: middle;
  1287. padding:5px;
  1288. }
  1289. .aui-grid [class*=aui-col-xs-]:active {
  1290. background-color: #f5f5f5;
  1291. }
  1292. .aui-grid .aui-iconfont {
  1293. position: relative;
  1294. z-index: 20;
  1295. top: 0;
  1296. height: 1.4rem;
  1297. font-size: 1.4rem;
  1298. line-height: 1.4rem;
  1299. }
  1300. .aui-grid .aui-grid-label {
  1301. display: block;
  1302. font-size: 0.7rem;
  1303. position: relative;
  1304. margin-top: 0.25rem;
  1305. }
  1306. .aui-grid .aui-badge {
  1307. position: absolute;
  1308. top: 0.5rem;
  1309. left: 60%;
  1310. z-index: 99;
  1311. }
  1312. .aui-grid .aui-dot {
  1313. position: absolute;
  1314. top: 0.5rem;
  1315. right: 20%;
  1316. z-index: 99;
  1317. }
  1318. /*单选、多选、开关*/
  1319. .aui-radio,
  1320. .aui-checkbox {
  1321. width: 1.2rem;
  1322. height: 1.2rem;
  1323. background-color: #ffffff;
  1324. border: solid 1px #dddddd;
  1325. -webkit-border-radius: 0.6rem;
  1326. border-radius: 0.6rem;
  1327. font-size: 0.8rem;
  1328. margin: 0;
  1329. padding: 0;
  1330. position: relative;
  1331. display: inline-block;
  1332. vertical-align: top;
  1333. cursor: default;
  1334. -webkit-appearance: none;
  1335. -webkit-user-select: none;
  1336. user-select: none;
  1337. -webkit-transition: background-color ease 0.1s;
  1338. transition: background-color ease 0.1s;
  1339. }
  1340. .aui-checkbox {
  1341. border-radius: 0.1rem;
  1342. }
  1343. .aui-radio:checked,
  1344. .aui-radio.aui-checked,
  1345. .aui-checkbox:checked,
  1346. .aui-checkbox.aui-checked {
  1347. background-color: #03a9f4;
  1348. border: solid 1px #03a9f4;
  1349. text-align: center;
  1350. background-clip: padding-box;
  1351. }
  1352. .aui-radio:checked:before,
  1353. .aui-radio.aui-checked:before,
  1354. .aui-checkbox:checked:before,
  1355. .aui-checkbox.aui-checked:before,
  1356. .aui-radio:checked:after,
  1357. .aui-radio.aui-checked:after,
  1358. .aui-checkbox:checked:after,
  1359. .aui-checkbox.aui-checked:after {
  1360. content: '';
  1361. width: 0.5rem;
  1362. height: 0.3rem;
  1363. position: absolute;
  1364. top: 50%;
  1365. left: 50%;
  1366. margin-left: -0.25rem;
  1367. margin-top: -0.25rem;
  1368. background: transparent;
  1369. border: 1px solid #ffffff;
  1370. border-top: none;
  1371. border-right: none;
  1372. z-index: 2;
  1373. -webkit-border-radius: 0;
  1374. border-radius: 0;
  1375. -webkit-transform: rotate(-45deg);
  1376. transform: rotate(-45deg);
  1377. }
  1378. .aui-radio:disabled,
  1379. .aui-radio.aui-disabled,
  1380. .aui-checkbox:disabled,
  1381. .aui-checkbox.aui-disabled {
  1382. background-color: #dddddd;
  1383. border: solid 1px #dddddd;
  1384. }
  1385. .aui-radio:disabled:before,
  1386. .aui-radio.aui-disabled:before,
  1387. .aui-radio:disabled:after,
  1388. .aui-radio.aui-disabled:after,
  1389. .aui-checkbox:disabled:before,
  1390. .aui-checkbox.aui-disabled:before,
  1391. .aui-checkbox:disabled:after,
  1392. .aui-checkbox.aui-disabled:after {
  1393. content: '';
  1394. width: 0.5rem;
  1395. height: 0.3rem;
  1396. position: absolute;
  1397. top: 50%;
  1398. left: 50%;
  1399. margin-left: -0.25rem;
  1400. margin-top: -0.25rem;
  1401. background: transparent;
  1402. border: 1px solid #ffffff;
  1403. border-top: none;
  1404. border-right: none;
  1405. z-index: 2;
  1406. -webkit-border-radius: 0;
  1407. border-radius: 0;
  1408. -webkit-transform: rotate(-45deg);
  1409. transform: rotate(-45deg);
  1410. }
  1411. .aui-switch {
  1412. width: 2.3rem;
  1413. height: 1.2rem;
  1414. position: relative;
  1415. vertical-align: top;
  1416. border: 1px solid #dddddd;
  1417. background-color: #dddddd;
  1418. border-radius: 0.6rem;
  1419. background-clip: content-box;
  1420. display: inline-block;
  1421. outline: none;
  1422. -webkit-appearance: none;
  1423. appearance: none;
  1424. -webkit-user-select: none;
  1425. user-select: none;
  1426. -webkit-box-sizing: border-box;
  1427. box-sizing: border-box;
  1428. -webkit-background-clip: padding-box;
  1429. background-clip: padding-box;
  1430. -webkit-transition: all 0.2s linear;
  1431. transition: all 0.2s linear;
  1432. }
  1433. .aui-switch:before {
  1434. width: 1.1rem;
  1435. height: 1.1rem;
  1436. position: absolute;
  1437. top: 0;
  1438. left: 0;
  1439. border-radius: 0.6rem;
  1440. background-color: #fff;
  1441. content: '';
  1442. -webkit-transition: left 0.2s;
  1443. transition: left 0.2s;
  1444. }
  1445. .aui-switch:checked {
  1446. border-color: #03a9f4;
  1447. background-color: #03a9f4;
  1448. }
  1449. .aui-switch:checked:before {
  1450. left: 1.1rem;
  1451. }
  1452. /*导航栏*/
  1453. .aui-bar {
  1454. position: relative;
  1455. top: 0;
  1456. right: 0;
  1457. left: 0;
  1458. width: 100%;
  1459. min-height: 2.25rem;
  1460. font-size: 0.9rem;
  1461. text-align: center;
  1462. display: table;
  1463. }
  1464. .aui-bar-nav {
  1465. top: 0;
  1466. line-height: 2.25rem;
  1467. background-color: #03a9f4;
  1468. color: #ffffff;
  1469. }
  1470. .aui-bar-nav1 {
  1471. top: 0;
  1472. line-height: 2.25rem;
  1473. background-color: #fff;
  1474. color: #ffffff;
  1475. }
  1476. .aui-title a {
  1477. color: inherit;
  1478. }
  1479. .aui-bar-nav .aui-title {
  1480. min-height: 2.25rem;
  1481. position: absolute;
  1482. margin: 0;
  1483. text-align: center;
  1484. white-space: nowrap;
  1485. right: 5rem;
  1486. left: 5rem;
  1487. width: auto;
  1488. overflow: hidden;
  1489. text-overflow: ellipsis;
  1490. z-index: 2;
  1491. }
  1492. .aui-bar-nav a {
  1493. color: #ffffff;
  1494. }
  1495. .aui-bar-nav .aui-iconfont {
  1496. position: relative;
  1497. z-index: 20;
  1498. font-size: 0.9rem;
  1499. color: #ffffff;
  1500. font-weight: 400;
  1501. line-height: 2.25rem;
  1502. }
  1503. .aui-bar-nav .aui-pull-left {
  1504. padding: 0 0.5rem;
  1505. font-size: 0.8rem;
  1506. font-weight: 400;
  1507. z-index: 2;
  1508. -webkit-box-sizing: border-box;
  1509. box-sizing: border-box;
  1510. display: -webkit-box;
  1511. display: -webkit-flex;
  1512. display: flex;
  1513. -webkit-align-items: center;
  1514. align-items: center;
  1515. }
  1516. .aui-bar-nav .aui-pull-right {
  1517. padding: 0 0.5rem;
  1518. font-size: 0.8rem;
  1519. font-weight: 400;
  1520. z-index: 2;
  1521. -webkit-box-sizing: border-box;
  1522. box-sizing: border-box;
  1523. display: -webkit-box;
  1524. display: -webkit-flex;
  1525. display: flex;
  1526. -webkit-align-items: center;
  1527. align-items: center;
  1528. }
  1529. .aui-bar-nav .aui-btn {
  1530. position: relative;
  1531. z-index: 20;
  1532. height: 2.25rem;
  1533. line-height: 2.25rem;
  1534. padding-top: 0;
  1535. padding-bottom: 0;
  1536. margin: 0;
  1537. border-radius: 0.1rem;
  1538. border-width: 0;
  1539. background: transparent !important;
  1540. }
  1541. .aui-bar-nav .aui-btn.aui-btn-outlined {
  1542. position: relative;
  1543. padding: 0 0.15rem;
  1544. margin: 0.5rem;
  1545. height: 1.25rem;
  1546. line-height: 1.25rem;
  1547. border-width: 1px;
  1548. background: transparent !important;
  1549. border-color: #ffffff;
  1550. }
  1551. .aui-bar-nav .aui-btn:active {
  1552. background: none;
  1553. }
  1554. .aui-bar-nav .aui-btn .aui-iconfont {
  1555. font-size: 0.9rem;
  1556. line-height: 1.25rem;
  1557. padding: 0;
  1558. margin: 0;
  1559. color: #ffffff;
  1560. }
  1561. .aui-bar-light {
  1562. color: #03a9f4;
  1563. background-color: #ffffff;
  1564. border-bottom: 1px solid #dddddd;
  1565. }
  1566. .aui-bar-nav.aui-bar-light .aui-iconfont {
  1567. color: #03a9f4;
  1568. }
  1569. .aui-bar-nav.aui-bar-light .aui-btn-outlined {
  1570. border-color: #03a9f4;
  1571. }
  1572. @media screen and (-webkit-min-device-pixel-ratio:1.5) {
  1573. .aui-bar.aui-bar-light {
  1574. border: none;
  1575. background-size: 100% 1px;
  1576. background-repeat: no-repeat;
  1577. background-position: bottom;
  1578. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  1579. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  1580. }
  1581. }
  1582. /*底部切换栏*/
  1583. .aui-bar-tab {
  1584. position: fixed;
  1585. top: auto;
  1586. bottom: 0;
  1587. table-layout: fixed;
  1588. background-color: #ffffff;
  1589. color: #757575;
  1590. }
  1591. .aui-bar-tab .aui-bar-tab-item {
  1592. display: table-cell;
  1593. position: relative;
  1594. width: 1%;
  1595. height: 2.5rem;
  1596. text-align: center;
  1597. vertical-align: middle;
  1598. }
  1599. .aui-bar-tab .aui-active {
  1600. color: #039be5;
  1601. }
  1602. .aui-bar-tab .aui-bar-tab-item .aui-iconfont {
  1603. position: relative;
  1604. z-index: 20;
  1605. top: 0.1rem;
  1606. height: 1.2rem;
  1607. font-size: 1rem;
  1608. line-height: 1rem;
  1609. }
  1610. .aui-bar-tab .aui-bar-tab-label {
  1611. display: block;
  1612. font-size: 0.6rem;
  1613. position: relative;
  1614. }
  1615. .aui-bar-tab .aui-badge {
  1616. position: absolute;
  1617. top: 0.1rem;
  1618. left: 55%;
  1619. z-index: 99;
  1620. }
  1621. .aui-bar-tab .aui-dot {
  1622. position: absolute;
  1623. top: 0.1rem;
  1624. right: 30%;
  1625. z-index: 99;
  1626. }
  1627. /*按钮工具栏*/
  1628. .aui-bar-btn {
  1629. position: relative;
  1630. font-size: 0.7rem;
  1631. display: table;
  1632. white-space: nowrap;
  1633. margin: 0 auto;
  1634. padding: 0;
  1635. border: none;
  1636. width: 100%;
  1637. min-height: 1.8rem;
  1638. }
  1639. .aui-bar-btn-item {
  1640. display: table-cell;
  1641. position: relative;
  1642. width: 1%;
  1643. line-height: 1.6rem;
  1644. text-align: center;
  1645. vertical-align: middle;
  1646. border-radius: 0;
  1647. position: relative;
  1648. border-width: 1px;
  1649. border-style: solid;
  1650. border-color: #03a9f4;
  1651. border-left-width: 0;
  1652. }
  1653. .aui-bar-btn .aui-input,
  1654. .aui-bar-btn input,
  1655. .aui-bar-btn select {
  1656. padding-left: 0.25rem;
  1657. padding-right: 0.25rem;
  1658. height: 1.8rem;
  1659. }
  1660. .aui-bar-btn-sm {
  1661. min-height: 1.3rem;
  1662. }
  1663. .aui-bar-btn.aui-bar-btn-sm .aui-input,
  1664. .aui-bar-btn.aui-bar-btn-sm input,
  1665. .aui-bar-btn.aui-bar-btn-sm select {
  1666. height: 1.2rem;
  1667. }
  1668. .aui-bar-btn-sm .aui-bar-btn-item {
  1669. line-height: 1.3rem;
  1670. font-size: 0.6rem;
  1671. }
  1672. .aui-bar-btn-item.aui-active {
  1673. background-color: #03a9f4;
  1674. color: #ffffff;
  1675. }
  1676. .aui-bar-btn-item:first-child {
  1677. border-left-width: 1px;
  1678. border-top-left-radius: 0.2rem;
  1679. border-bottom-left-radius: 0.2rem;
  1680. }
  1681. .aui-bar-btn-item:last-child {
  1682. border-top-right-radius: 0.2rem;
  1683. border-bottom-right-radius: 0.2rem;
  1684. border-left: 0px;
  1685. }
  1686. .aui-bar-btn.aui-bar-btn-full .aui-bar-btn-item:first-child {
  1687. border-left-width: 0;
  1688. border-top-left-radius: 0;
  1689. border-bottom-left-radius: 0;
  1690. }
  1691. .aui-bar-btn.aui-bar-btn-full .aui-bar-btn-item:last-child {
  1692. border-right-width: 0;
  1693. border-top-right-radius: 0;
  1694. border-bottom-right-radius: 0;
  1695. }
  1696. .aui-bar-btn.aui-bar-btn-round .aui-bar-btn-item:first-child {
  1697. border-top-left-radius: 1.5rem;
  1698. border-bottom-left-radius: 1.5rem;
  1699. }
  1700. .aui-bar-btn.aui-bar-btn-round .aui-bar-btn-item:last-child {
  1701. border-top-right-radius: 1.5rem;
  1702. border-bottom-right-radius: 1.5rem;
  1703. }
  1704. .aui-bar-nav .aui-bar-btn {
  1705. margin-top: 0.45rem;
  1706. margin-bottom: 0.4rem;
  1707. min-height: 1.3rem;
  1708. }
  1709. .aui-bar-nav .aui-bar-btn-item {
  1710. line-height: 1.3rem;
  1711. border-color: #ffffff;
  1712. }
  1713. .aui-bar-nav .aui-bar-btn-item.aui-active {
  1714. background-color: #ffffff;
  1715. color: #03a9f4;
  1716. }
  1717. .aui-bar-nav.aui-bar-light .aui-bar-btn-item {
  1718. border-color: #03a9f4;
  1719. }
  1720. .aui-bar-nav.aui-bar-light .aui-bar-btn-item.aui-active {
  1721. background-color: #03a9f4;
  1722. color: #ffffff;
  1723. }
  1724. .aui-bar-nav > .aui-bar-btn {
  1725. width: 50%;
  1726. }
  1727. .aui-info {
  1728. position: relative;
  1729. padding: 0.5rem 0;
  1730. font-size: 0.7rem;
  1731. color: #757575;
  1732. background-color: transparent;
  1733. -webkit-box-sizing: border-box;
  1734. box-sizing: border-box;
  1735. display: -webkit-box;
  1736. display: -webkit-flex;
  1737. display: flex;
  1738. -webkit-box-pack: justify;
  1739. -webkit-justify-content: space-between;
  1740. justify-content: space-between;
  1741. -webkit-box-align: center;
  1742. -webkit-align-items: center;
  1743. align-items: center;
  1744. }
  1745. .aui-info-item {
  1746. -webkit-box-sizing: border-box;
  1747. box-sizing: border-box;
  1748. display: -webkit-box;
  1749. display: -webkit-flex;
  1750. display: flex;
  1751. -webkit-box-align: center;
  1752. -webkit-align-items: center;
  1753. align-items: center;
  1754. }
  1755. .aui-info-item > *,
  1756. .aui-info > * {
  1757. display: inherit;
  1758. position: relative;
  1759. }
  1760. /*进度条*/
  1761. .aui-progress {
  1762. width: 100%;
  1763. height: 1rem;
  1764. border-radius: 0.2rem;
  1765. overflow: hidden;
  1766. background-color: #f0f0f0;
  1767. }
  1768. .aui-progress-bar {
  1769. float: left;
  1770. width: 0;
  1771. height: 100%;
  1772. font-size: 0.6rem;
  1773. line-height: 1rem;
  1774. color: #ffffff;
  1775. text-align: center;
  1776. background-color: #03a9f4;
  1777. }
  1778. .aui-progress.sm,
  1779. .aui-progress-sm {
  1780. height: 0.5rem;
  1781. }
  1782. .aui-progress.sm,
  1783. .aui-progress-sm,
  1784. .aui-progress.sm .aui-progress-bar,
  1785. .aui-progress-sm .aui-progress-bar {
  1786. border-radius: 1px;
  1787. }
  1788. .aui-progress.xs,
  1789. .aui-progress-xs {
  1790. height: 0.35rem;
  1791. }
  1792. .aui-progress.xs,
  1793. .aui-progress-xs,
  1794. .aui-progress.xs .progress-bar,
  1795. .aui-progress-xs .progress-bar {
  1796. border-radius: 1px;
  1797. }
  1798. .aui-progress.xxs,
  1799. .aui-progress-xxs {
  1800. height: 0.15rem;
  1801. }
  1802. .aui-progress.xxs,
  1803. .aui-progress-xxs,
  1804. .aui-progress.xxs .progress-bar,
  1805. .aui-progress-xxs .progress-bar {
  1806. border-radius: 1px;
  1807. }
  1808. /*滑块*/
  1809. .aui-range {
  1810. position: relative;
  1811. display: inline-block;
  1812. }
  1813. .aui-range input[type='range']{
  1814. height: 0.2rem;
  1815. border: 0;
  1816. border-radius: 2px;
  1817. background-color: #f0f0f0;
  1818. position: relative;
  1819. -webkit-appearance: none !important;
  1820. }
  1821. .aui-range input[type='range']::-webkit-slider-thumb {
  1822. width: 1.2rem;
  1823. height: 1.2rem;
  1824. border-radius: 50%;
  1825. border-color: #03a9f4;
  1826. background-color: #03a9f4;
  1827. -webkit-appearance: none !important;
  1828. }
  1829. .aui-range .aui-range-tip {
  1830. font-size: 1rem;
  1831. position: absolute;
  1832. z-index: 999;
  1833. top: -1.5rem;
  1834. width: 2.4rem;
  1835. height: 1.5rem;
  1836. line-height: 1.5rem;
  1837. text-align: center;
  1838. color: #666666;
  1839. border: 1px solid #dddddd;
  1840. border-radius: 0.3rem;
  1841. background-color: #ffffff;
  1842. }
  1843. .aui-input-row .aui-range input[type='range'] {
  1844. width: 90%;
  1845. margin-left: 5%;
  1846. }
  1847. /*搜索条*/
  1848. .aui-searchbar {
  1849. display: -webkit-box;
  1850. -webkit-box-pack: center;
  1851. -webkit-box-align: center;
  1852. height: 2.2rem;
  1853. overflow: hidden;
  1854. width: 100%;
  1855. background-color: #ebeced;
  1856. color: #9e9e9e;
  1857. -webkit-backface-visibility: hidden;
  1858. backface-visibility: hidden;
  1859. }
  1860. .aui-searchbar.focus {
  1861. -webkit-box-pack: start;
  1862. }
  1863. .aui-searchbar-input {
  1864. margin: 0 0.5rem;
  1865. background-color: #ffffff;
  1866. border-radius: 0.25rem;
  1867. height: 1.4rem;
  1868. line-height: 1.4rem;
  1869. font-size: 0.7rem;
  1870. position: relative;
  1871. padding-left: 0.5rem;
  1872. display: -webkit-box;
  1873. -webkit-box-flex: 1;
  1874. }
  1875. .aui-searchbar form {
  1876. width: 90%;
  1877. }
  1878. .aui-searchbar-input input {
  1879. color: #666666;
  1880. width: 80%;
  1881. padding: 0;
  1882. margin: 0;
  1883. height: 1.4rem;
  1884. line-height: normal;
  1885. border: 0;
  1886. -webkit-appearance: none;
  1887. font-size: 0.7rem;
  1888. }
  1889. .aui-searchbar input::-webkit-input-placeholder {
  1890. color: #ccc;
  1891. }
  1892. .aui-searchbar .aui-iconfont {
  1893. line-height: 1.4rem;
  1894. margin-right: 0.25rem;
  1895. color: #9e9e9e !important;
  1896. }
  1897. .aui-searchbar .aui-searchbar-btn {
  1898. font-size: 0.7rem;
  1899. color: #666666;
  1900. margin-right: -2.2rem;
  1901. width: 2.2rem;
  1902. height: 1.4rem;
  1903. padding-right: 0.5rem;
  1904. line-height: 1.4rem;
  1905. text-align: center;
  1906. -webkit-transition: all .3s;
  1907. transition: all .3s;
  1908. }
  1909. .aui-searchbar-clear-btn {
  1910. position: absolute;
  1911. right: 5px;
  1912. top: 3px;
  1913. width: 1.1rem;
  1914. height: 1.1rem;
  1915. background: #eeeeee;
  1916. border-radius: 50%;
  1917. line-height: 0.6rem;
  1918. text-align: center;
  1919. display: none;
  1920. }
  1921. .aui-searchbar-clear-btn .aui-iconfont {
  1922. font-size: 0.6rem;
  1923. margin: 0 auto;
  1924. position: relative;
  1925. top: -2px;
  1926. }
  1927. .aui-searchbar .aui-searchbar-btn .aui-iconfont {
  1928. color: #666666;
  1929. }
  1930. /*信息提示条*/
  1931. .aui-tips {
  1932. padding: 0 0.75rem;
  1933. width: 100%;
  1934. z-index: 99;
  1935. height: 1.9rem;
  1936. line-height: 1.9rem;
  1937. position: relative;
  1938. background-color: rgba(0,0,0,.6);
  1939. color: #ffffff;
  1940. display: -webkit-box;
  1941. display: -webkit-flex;
  1942. display: flex;
  1943. -webkit-box-pack: justify;
  1944. -webkit-justify-content: space-between;
  1945. justify-content: space-between;
  1946. -webkit-align-items: center;
  1947. align-items: center;
  1948. }
  1949. .aui-tips .aui-tips-title {
  1950. padding: 0 0.5rem;
  1951. font-size: 0.7rem;
  1952. position: relative;
  1953. max-width: 100%;
  1954. }
  1955. /*toast*/
  1956. .aui-toast {
  1957. background: rgba(0, 0, 0, 0.7);
  1958. text-align: center;
  1959. border-radius: 0.25rem;
  1960. color: #ffffff;
  1961. position: fixed;
  1962. z-index: 3;
  1963. top: 45%;
  1964. left: 50%;
  1965. width: 7.5em;
  1966. min-height: 6em;
  1967. margin-left: -3.75em;
  1968. margin-top: -4rem;
  1969. display: none;
  1970. }
  1971. .aui-toast .aui-iconfont {
  1972. margin-top: 0.2rem;
  1973. display: block;
  1974. font-size: 2.6rem;
  1975. }
  1976. .aui-toast-content {
  1977. margin: 0 0 0.75rem;
  1978. }
  1979. .aui-toast-loading {
  1980. background-color: #ffffff;
  1981. border-radius: 100%;
  1982. margin: 0.75rem 0;
  1983. -webkit-animation-fill-mode: both;
  1984. animation-fill-mode: both;
  1985. border: 2px solid #ffffff;
  1986. border-bottom-color: transparent;
  1987. height: 2.25rem;
  1988. width: 2.25rem;
  1989. background: transparent !important;
  1990. display: inline-block;
  1991. -webkit-animation: rotate 1s 0s linear infinite;
  1992. animation: rotate 1s 0s linear infinite;
  1993. }
  1994. /*dialog*/
  1995. .aui-dialog {
  1996. width: 13.5rem;
  1997. text-align: center;
  1998. position: fixed;
  1999. z-index: 999;
  2000. left: 50%;
  2001. margin-left: -6.75rem;
  2002. margin-top: 0;
  2003. top: 45%;
  2004. border-radius: 0.3rem;
  2005. opacity: 0;
  2006. background-color: #ffffff;
  2007. -webkit-transform: translate3d(0, 0, 0) scale(1.2);
  2008. transform: translate3d(0, 0, 0) scale(1.2);
  2009. -webkit-transition-property: -webkit-transform, opacity;
  2010. transition-property: transform, opacity;
  2011. /*display: none;*/
  2012. }
  2013. .aui-dialog-header {
  2014. padding: 0.5rem 0.75rem 0 0.75rem;
  2015. text-align: center;
  2016. font-size: 1em;
  2017. color: #212121;
  2018. }
  2019. .aui-dialog-body {
  2020. padding: 0.75rem;
  2021. overflow: hidden;
  2022. font-size: 0.875em;
  2023. color: #757575;
  2024. }
  2025. .aui-dialog-body input {
  2026. border: 1px solid #dddddd;
  2027. height: 1.8rem;
  2028. line-height: 1.8rem;
  2029. min-height: 1.8rem;
  2030. padding-left: 0.25rem;
  2031. padding-right: 0.25rem;
  2032. }
  2033. .aui-dialog-footer {
  2034. position: relative;
  2035. font-size: 1em;
  2036. border-top: 1px solid #dddddd;
  2037. display: -webkit-box;
  2038. display: -webkit-flex;
  2039. display: flex;
  2040. -webkit-box-pack: center;
  2041. -webkit-justify-content: center;
  2042. justify-content: center;
  2043. }
  2044. .aui-dialog-btn {
  2045. position: relative;
  2046. display: block;
  2047. width: 100%;
  2048. padding: 0 0.25rem;
  2049. height: 2.2rem;
  2050. font-size: 0.8rem;
  2051. line-height: 2.2rem;
  2052. text-align: center;
  2053. color: #0894ec;
  2054. border-right: 1px solid #dddddd;
  2055. white-space: nowrap;
  2056. text-overflow: ellipsis;
  2057. overflow: hidden;
  2058. -webkit-box-sizing: border-box;
  2059. box-sizing: border-box;
  2060. -webkit-box-flex: 1;
  2061. box-flex: 1;
  2062. }
  2063. .aui-dialog-btn:last-child {
  2064. border-right: none;
  2065. }
  2066. .aui-dialog.aui-dialog-in {
  2067. opacity: 1;
  2068. -webkit-transition-duration: 300ms;
  2069. transition-duration: 300ms;
  2070. -webkit-transform: translate3d(0, 0, 0) scale(1);
  2071. transform: translate3d(0, 0, 0) scale(1);
  2072. }
  2073. .aui-dialog.aui-dialog-out {
  2074. opacity: 0;
  2075. -webkit-transition-duration: 300ms;
  2076. transition-duration: 300ms;
  2077. -webkit-transform: translate3d(0, 0, 0) scale(0.815);
  2078. transform: translate3d(0, 0, 0) scale(0.815);
  2079. }
  2080. @media only screen and (-webkit-min-device-pixel-ratio: 1.5) {
  2081. .aui-dialog-footer {
  2082. border: none;
  2083. background-size: 100% 1px;
  2084. background-repeat: no-repeat;
  2085. background-position: top;
  2086. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  2087. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  2088. }
  2089. .aui-dialog-btn {
  2090. border: none;
  2091. background-image: -webkit-linear-gradient(0deg, #dddddd, #dddddd 50%, transparent 50%);
  2092. background-image: linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%);
  2093. background-size: 1px 100%;
  2094. background-repeat: no-repeat;
  2095. background-position: right;
  2096. }
  2097. .aui-dialog-btn:last-child {
  2098. border: none;
  2099. background-size: 0 100%;
  2100. }
  2101. .aui-dialog-body input {
  2102. border: none;
  2103. background-image: -webkit-linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(180deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(90deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(0, #dddddd, #dddddd 50%, transparent 50%);
  2104. background-image: linear-gradient(180deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(0deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(90deg, #dddddd, #dddddd 50%, transparent 50%);
  2105. background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  2106. background-repeat: no-repeat;
  2107. background-position: top, right top, bottom, left top;
  2108. }
  2109. }
  2110. /*popup*/
  2111. .aui-popup {
  2112. padding: 0;
  2113. margin: 0;
  2114. background: transparent;
  2115. position: fixed;
  2116. height: auto;
  2117. min-width: 7rem;
  2118. min-height: 4.5rem;
  2119. z-index: 999;
  2120. opacity: 0;
  2121. -webkit-transition-property: -webkit-transform, opacity;
  2122. transition-property: transform, opacity;
  2123. }
  2124. .aui-popup.aui-popup-in {
  2125. opacity: 1;
  2126. -webkit-transition-duration: 300ms;
  2127. transition-duration: 300ms;
  2128. }
  2129. .aui-popup.aui-popup-out {
  2130. opacity: 0;
  2131. -webkit-transition-duration: 300ms;
  2132. transition-duration: 300ms;
  2133. }
  2134. .aui-popup-right {
  2135. right: 0.75rem;
  2136. }
  2137. .aui-popup-content {
  2138. background-color: #ffffff;
  2139. border-radius: 0.2rem;
  2140. overflow: hidden;
  2141. min-height: 4.5rem;
  2142. height: 100%;
  2143. }
  2144. .aui-popup-top,
  2145. .aui-popup-top-left,
  2146. .aui-popup-top-right {
  2147. top: 0.45rem;
  2148. }
  2149. .aui-popup-top {
  2150. left: 50%;
  2151. margin-left: -3.5rem;
  2152. }
  2153. .aui-popup-top-left {
  2154. left: 0.45rem;
  2155. }
  2156. .aui-popup-top-right {
  2157. right: 0.45rem;
  2158. }
  2159. .aui-popup-arrow {
  2160. position: absolute;
  2161. width: 10px;
  2162. height: 10px;
  2163. -webkit-transform-origin: 50% 50% 0;
  2164. transform-origin: 50% 50% 0;
  2165. background-color: transparent;
  2166. background-image: -webkit-linear-gradient(45deg, #ffffff, #ffffff 50%, transparent 50%);
  2167. background-image: linear-gradient(45deg, #ffffff, #ffffff 50%, transparent 50%);
  2168. }
  2169. .aui-popup-top .aui-popup-arrow,
  2170. .aui-popup-top-left .aui-popup-arrow,
  2171. .aui-popup-top-right .aui-popup-arrow {
  2172. top: 0.2rem;
  2173. -webkit-transform: rotate(135deg);
  2174. transform: rotate(135deg);
  2175. }
  2176. .aui-popup-top .aui-popup-arrow {
  2177. left: 50%;
  2178. margin-left: -0.25rem;
  2179. margin-top: -0.4rem;
  2180. }
  2181. .aui-popup-top-left .aui-popup-arrow {
  2182. left: 0.25rem;
  2183. margin-top: -0.4rem;
  2184. }
  2185. .aui-popup-top-right .aui-popup-arrow {
  2186. right: 0.25rem;
  2187. margin-top: -0.4rem;
  2188. }
  2189. .aui-popup-bottom,
  2190. .aui-popup-bottom-left,
  2191. .aui-popup-bottom-right {
  2192. bottom: 0.45rem;
  2193. }
  2194. .aui-popup-bottom {
  2195. left: 50%;
  2196. margin-left: -3.5rem;
  2197. }
  2198. .aui-popup-bottom-left {
  2199. left: 0.45rem;
  2200. }
  2201. .aui-popup-bottom-right {
  2202. right: 0.45rem;
  2203. }
  2204. .aui-popup-bottom .aui-popup-arrow,
  2205. .aui-popup-bottom-left .aui-popup-arrow,
  2206. .aui-popup-bottom-right .aui-popup-arrow {
  2207. -webkit-transform: rotate(-45deg);
  2208. transform: rotate(-45deg);
  2209. bottom: 0.2rem;
  2210. }
  2211. .aui-popup-bottom .aui-popup-arrow {
  2212. left: 50%;
  2213. margin-left: -0.25rem;
  2214. margin-bottom: -0.4rem;
  2215. }
  2216. .aui-popup-bottom-left .aui-popup-arrow {
  2217. left: 0.25rem;
  2218. margin-bottom: -0.4rem;
  2219. }
  2220. .aui-popup-bottom-right .aui-popup-arrow {
  2221. right: 0.25rem;
  2222. margin-bottom: -0.4rem;
  2223. }
  2224. .aui-popup .aui-list {
  2225. background: transparent;
  2226. }
  2227. .aui-popup-content .aui-list img {
  2228. display: block;
  2229. width: 1rem;
  2230. }
  2231. /*actionsheet*/
  2232. .aui-actionsheet {
  2233. width: 100%;
  2234. position: fixed;
  2235. bottom: 0;
  2236. left: 0;
  2237. padding: 0 0.5rem;
  2238. z-index: 999;
  2239. opacity: 0;
  2240. -webkit-transition: opacity .3s,-webkit-transform .3s;
  2241. transition: opacity .3s,transform .3s;
  2242. -webkit-transform: translate3d(0,100%,0);
  2243. transform: translate3d(0,100%,0);
  2244. }
  2245. .aui-actionsheet-btn {
  2246. background-color: #ffffff;
  2247. border-radius: 6px;
  2248. text-align: center;
  2249. margin-bottom: 0.5rem;
  2250. }
  2251. .aui-actionsheet-title {
  2252. font-size: 0.6rem;
  2253. color: #999999;
  2254. line-height: 1.8rem;
  2255. }
  2256. .aui-actionsheet-btn-item {
  2257. height: 2.2rem;
  2258. line-height: 2.2rem;
  2259. color: #0075f0;
  2260. }
  2261. /*sharebox*/
  2262. .aui-sharebox {
  2263. width: 100%;
  2264. position: fixed;
  2265. bottom: 0;
  2266. left: 0;
  2267. z-index: 999;
  2268. background-color: #ffffff;
  2269. opacity: 0;
  2270. -webkit-transition: opacity .3s,-webkit-transform .3s;
  2271. transition: opacity .3s,transform .3s;
  2272. -webkit-transform: translate3d(0,100%,0);
  2273. transform: translate3d(0,100%,0);
  2274. }
  2275. .aui-sharebox .aui-row {
  2276. padding: 0.5rem 0;
  2277. }
  2278. .aui-sharebox img {
  2279. display: block;
  2280. width: 50%;
  2281. margin: 0 auto;
  2282. }
  2283. .aui-sharebox.aui-grid [class*=aui-col-] {
  2284. padding: 0.5rem 0;
  2285. }
  2286. .aui-sharebox.aui-grid .aui-grid-label {
  2287. font-size: 0.6rem;
  2288. color: #757575;
  2289. }
  2290. .aui-sharebox-close-btn {
  2291. width: 100%;
  2292. height: 2.2rem;
  2293. line-height: 2.2rem;
  2294. color: #757575;
  2295. text-align: center;
  2296. font-size: 0.7rem;
  2297. }
  2298. /*折叠菜单*/
  2299. .aui-collapse-header.aui-active {
  2300. background: #ececec;
  2301. }
  2302. .aui-collapse .aui-list-item:active{
  2303. background: #ececec;
  2304. }
  2305. .aui-collapse-content {
  2306. display: none;
  2307. }
  2308. .aui-collapse-content .aui-list-item:last-child {
  2309. border-bottom: 0;
  2310. }
  2311. @media screen and (-webkit-min-device-pixel-ratio:1.5) {
  2312. .aui-collapse-content .aui-list-item:last-child {
  2313. background-position: bottom;
  2314. }
  2315. .aui-list.aui-collapse.aui-list-noborder,
  2316. .aui-list.aui-collapse.aui-list-noborder .aui-collapse-content:last-child .aui-list-item:last-child {
  2317. border: none;
  2318. background-size: 100% 1px;
  2319. background-repeat: no-repeat;
  2320. background-position: 0 bottom;
  2321. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  2322. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  2323. }
  2324. .aui-list.aui-collapse.aui-list-noborder,
  2325. .aui-list.aui-collapse.aui-list-noborder .aui-collapse-item:last-child .aui-list-item:last-child {
  2326. border: none;
  2327. background-size: 100% 0;
  2328. background-image: none;
  2329. }
  2330. .aui-list.aui-collapse.aui-list-noborder .aui-collapse-item:last-child .aui-list-item.aui-collapse-header,
  2331. .aui-list.aui-collapse.aui-list-noborder .aui-collapse-content .aui-list-item:last-child {
  2332. border: none;
  2333. background-size: 100% 0;
  2334. background-image: none;
  2335. }
  2336. }
  2337. .aui-collapse-header.aui-active .aui-collapse-arrow {
  2338. display: block;
  2339. transform: rotate(180deg);
  2340. -webkit-transform: rotate(180deg);
  2341. }
  2342. /*聊天气泡*/
  2343. .aui-chat {
  2344. width: 100%;
  2345. height: 100%;
  2346. padding: 0.5rem;
  2347. }
  2348. .aui-chat .aui-chat-item {
  2349. position: relative;
  2350. width: 100%;
  2351. margin-bottom: 0.75rem;
  2352. overflow: hidden;
  2353. display: block;
  2354. }
  2355. .aui-chat .aui-chat-header {
  2356. width: 100%;
  2357. text-align: center;
  2358. margin-bottom: 0.75rem;
  2359. font-size: 0.6rem;
  2360. color: #757575;
  2361. }
  2362. .aui-chat .aui-chat-left {
  2363. float: left;
  2364. }
  2365. .aui-chat .aui-chat-right {
  2366. float: right;
  2367. }
  2368. .aui-chat .aui-chat-media {
  2369. display: inline-block;
  2370. max-width: 2rem;
  2371. }
  2372. .aui-chat .aui-chat-media img {
  2373. width: 100%;
  2374. border-radius: 50%;
  2375. }
  2376. .aui-chat .aui-chat-inner {
  2377. position: relative;
  2378. overflow: hidden;
  2379. display: inherit;
  2380. }
  2381. .aui-chat .aui-chat-arrow {
  2382. content: '';
  2383. position: absolute;
  2384. width: 0.6rem;
  2385. height: 0.6rem;
  2386. top: 0.2rem;
  2387. -webkit-transform-origin: 50% 50% 0;
  2388. transform-origin: 50% 50% 0;
  2389. background-color: transparent;
  2390. }
  2391. .aui-chat .aui-chat-left .aui-chat-arrow {
  2392. background-image: -webkit-linear-gradient(45deg, #b3e5fc, #b3e5fc 50%, transparent 50%);
  2393. background-image: linear-gradient(45deg, #b3e5fc, #b3e5fc 50%, transparent 50%);
  2394. -webkit-transform: rotate(45deg);
  2395. transform: rotate(45deg);
  2396. left: -0.25rem;
  2397. }
  2398. .aui-chat .aui-chat-right .aui-chat-arrow {
  2399. background-image: -webkit-linear-gradient(45deg, #ffffff, #ffffff 50%, transparent 50%);
  2400. background-image: linear-gradient(45deg, #ffffff, #ffffff 50%, transparent 50%);
  2401. -webkit-transform: rotate(-135deg);
  2402. transform: rotate(-135deg);
  2403. right: -0.25rem;
  2404. }
  2405. .aui-chat .aui-chat-content {
  2406. color: #212121;
  2407. font-size: 0.7rem;
  2408. border-radius: 0.2rem;
  2409. min-height: 2rem;
  2410. position: relative;
  2411. padding: 0.5rem;
  2412. max-width: 80%;
  2413. word-break: break-all;
  2414. word-wrap: break-word;
  2415. }
  2416. .aui-chat .aui-chat-content img {
  2417. max-width: 100%;
  2418. display: block;
  2419. }
  2420. .aui-chat .aui-chat-status {
  2421. position: relative;
  2422. width: 2rem;
  2423. height: 2rem;
  2424. line-height: 2rem;
  2425. text-align: center;
  2426. }
  2427. .aui-chat .aui-chat-name {
  2428. width: 100%;
  2429. position: relative;
  2430. font-size: 0.6rem;
  2431. color: #757575;
  2432. margin-bottom: 0.25rem;
  2433. }
  2434. .aui-chat .aui-chat-left .aui-chat-name {
  2435. left: 0.5rem;
  2436. }
  2437. .aui-chat .aui-chat-left .aui-chat-status {
  2438. left: 0.5rem;
  2439. float: left;
  2440. }
  2441. .aui-chat .aui-chat-left .aui-chat-media {
  2442. width: 2rem;
  2443. float: left;
  2444. }
  2445. .aui-chat .aui-chat-left .aui-chat-inner {
  2446. max-width: 70%;
  2447. }
  2448. .aui-chat .aui-chat-left .aui-chat-content{
  2449. background-color: #b3e5fc;
  2450. float: left;
  2451. left: 0.5rem;
  2452. }
  2453. .aui-chat .aui-chat-right .aui-chat-media {
  2454. width: 2rem;
  2455. float: right;
  2456. }
  2457. .aui-chat .aui-chat-right .aui-chat-inner {
  2458. float: right;
  2459. max-width: 70%;
  2460. }
  2461. .aui-chat .aui-chat-right .aui-chat-name {
  2462. float: right;
  2463. right: 0.5rem;
  2464. text-align: right;
  2465. }
  2466. .aui-chat .aui-chat-right .aui-chat-content {
  2467. background-color: #ffffff;
  2468. right: 0.5rem;
  2469. float: right;
  2470. }
  2471. .aui-chat .aui-chat-right .aui-chat-status {
  2472. float: right;
  2473. right: 0.5rem;
  2474. }
  2475. /*边框样式*/
  2476. .aui-border-l {
  2477. border-left: 1px solid #dddddd;
  2478. }
  2479. .aui-border-r {
  2480. border-right: 1px solid #dddddd;
  2481. }
  2482. .aui-border-t {
  2483. border-top: 1px solid #dddddd;
  2484. }
  2485. .aui-border-b {
  2486. border-bottom: 1px solid #dddddd;
  2487. }
  2488. .aui-border {
  2489. border: 1px solid #dddddd;
  2490. }
  2491. @media screen and (-webkit-min-device-pixel-ratio:1.5) {
  2492. .aui-border-l {
  2493. border: none;
  2494. background-image: -webkit-linear-gradient(0deg, #dddddd, #dddddd 50%, transparent 50%);
  2495. background-image: linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%);
  2496. background-size: 1px 100%;
  2497. background-repeat: no-repeat;
  2498. background-position: left;
  2499. }
  2500. .aui-border-r {
  2501. border: none;
  2502. background-image: -webkit-linear-gradient(0deg, #dddddd, #dddddd 50%, transparent 50%);
  2503. background-image: linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%);
  2504. background-size: 1px 100%;
  2505. background-repeat: no-repeat;
  2506. background-position: right;
  2507. }
  2508. .aui-border-t{
  2509. border: none;
  2510. background-size: 100% 1px;
  2511. background-repeat: no-repeat;
  2512. background-position: top;
  2513. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  2514. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  2515. }
  2516. .aui-border-b {
  2517. border: none;
  2518. background-size: 100% 1px;
  2519. background-repeat: no-repeat;
  2520. background-position: bottom;
  2521. background-image: linear-gradient(0,#dddddd,#dddddd 50%,transparent 50%);
  2522. background-image: -webkit-linear-gradient(90deg,#dddddd,#dddddd 50%,transparent 50%);
  2523. }
  2524. .aui-border{
  2525. border: none;
  2526. background-image: -webkit-linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(180deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(90deg, #dddddd, #dddddd 50%, transparent 50%), -webkit-linear-gradient(0, #dddddd, #dddddd 50%, transparent 50%);
  2527. background-image: linear-gradient(180deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(270deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(0deg, #dddddd, #dddddd 50%, transparent 50%), linear-gradient(90deg, #dddddd, #dddddd 50%, transparent 50%);
  2528. background-size: 100% 1px, 1px 100%, 100% 1px, 1px 100%;
  2529. background-repeat: no-repeat;
  2530. background-position: top, right top, bottom, left top;
  2531. }
  2532. }
  2533. /*时间轴*/
  2534. .aui-timeline {
  2535. position: relative;
  2536. padding: 0;
  2537. list-style: none;
  2538. }
  2539. .aui-timeline:before {
  2540. content: '';
  2541. position: absolute;
  2542. top: 0;
  2543. left: 1.85rem;
  2544. width: 2px;
  2545. height: 100%;
  2546. background: #ececec;
  2547. z-index: 0;
  2548. }
  2549. .aui-timeline .aui-timeline-item {
  2550. position: relative;
  2551. margin-bottom: 0.75rem;
  2552. }
  2553. .aui-timeline .aui-timeline-item-header {
  2554. background-color: #ececec;
  2555. padding: 0.2rem 0.5rem;
  2556. margin: 0.75rem;
  2557. text-align: center;
  2558. display: inline-block;
  2559. position: relative;
  2560. z-index: 1;
  2561. font-size: 0.7rem;
  2562. }
  2563. .aui-timeline .aui-timeline-item-label {
  2564. width: 2.5rem;
  2565. height: 1.5rem;
  2566. line-height: 1.5rem;
  2567. font-size: 0.7em;
  2568. background-color: #ececec;
  2569. position: absolute;
  2570. text-align: center;
  2571. left: 0.75rem;
  2572. top: 0;
  2573. }
  2574. .aui-timeline .aui-timeline-item-label-icon {
  2575. width: 1.5rem;
  2576. height: 1.5rem;
  2577. font-size: 0.7rem;
  2578. line-height: 1.5rem;
  2579. background-color: #ececec;
  2580. position: absolute;
  2581. border-radius: 50%;
  2582. text-align: center;
  2583. left: 1.15rem;
  2584. top: 0;
  2585. }
  2586. .aui-timeline .aui-timeline-item-inner {
  2587. margin-left: 3.75rem;
  2588. margin-right: 0.75rem;
  2589. padding: 0;
  2590. position: relative;
  2591. }
  2592. /*基础动画类*/
  2593. @keyframes rotate {
  2594. 0% {
  2595. -webkit-transform: rotate(0deg) scale(1);
  2596. transform: rotate(0deg) scale(1);
  2597. }
  2598. 50% {
  2599. -webkit-transform: rotate(180deg) scale(1);
  2600. transform: rotate(180deg) scale(1);
  2601. }
  2602. 100% {
  2603. -webkit-transform: rotate(360deg) scale(1);
  2604. transform: rotate(360deg) scale(1);
  2605. }
  2606. }
  2607. @-webkit-keyframes rotate {
  2608. 0% {
  2609. -webkit-transform: rotate(0deg) scale(1);
  2610. transform: rotate(0deg) scale(1);
  2611. }
  2612. 50% {
  2613. -webkit-transform: rotate(180deg) scale(1);
  2614. transform: rotate(180deg) scale(1);
  2615. }
  2616. 100% {
  2617. -webkit-transform: rotate(360deg) scale(1);
  2618. transform: rotate(360deg) scale(1);
  2619. }
  2620. }
  2621. @keyframes bounce {
  2622. 0%, 100% {
  2623. -webkit-transform: scale(0.0);
  2624. transform: scale(0.0);
  2625. }
  2626. 50% {
  2627. -webkit-transform: scale(1.0);
  2628. transform: scale(1.0);
  2629. }
  2630. }
  2631. @-webkit-keyframes bounce {
  2632. 0%, 100% {
  2633. -webkit-transform: scale(0.0);
  2634. transform: scale(0.0);
  2635. }
  2636. 50% {
  2637. -webkit-transform: scale(1.0);
  2638. transform: scale(1.0);
  2639. }
  2640. }
  2641. @keyframes fadeIn {
  2642. from { opacity: 0.3; }
  2643. to { opacity: 1; }
  2644. }
  2645. @-webkit-keyframes fadeIn {
  2646. from { opacity: 0.3; }
  2647. to { opacity: 1; }
  2648. }
  2649. @font-face {
  2650. font-family: "aui_iconfont";
  2651. src: url('aui-iconfont.ttf') format('truetype');
  2652. }
  2653. .aui-iconfont {
  2654. position: relative;
  2655. font-family:"aui_iconfont" !important;
  2656. font-size: 0.7rem;
  2657. font-style:normal;
  2658. -webkit-font-smoothing: antialiased;
  2659. -moz-osx-font-smoothing: grayscale;
  2660. }
  2661. .aui-icon-menu:before { content: "\e6eb"; }
  2662. .aui-icon-paper:before { content: "\e6ec"; }
  2663. .aui-icon-info:before { content: "\e6ed"; }
  2664. .aui-icon-question:before { content: "\e6ee"; }
  2665. .aui-icon-left:before { content: "\e6f4"; }
  2666. .aui-icon-right:before { content: "\e6f5"; }
  2667. .aui-icon-top:before { content: "\e6f6"; }
  2668. .aui-icon-down:before { content: "\e6f7"; }
  2669. .aui-icon-share:before { content: "\e700"; }
  2670. .aui-icon-comment:before { content: "\e701"; }
  2671. .aui-icon-edit:before { content: "\e6d3"; }
  2672. .aui-icon-trash:before { content: "\e6d4"; }
  2673. .aui-icon-recovery:before { content: "\e6dc"; }
  2674. .aui-icon-refresh:before { content: "\e6dd"; }
  2675. .aui-icon-close:before { content: "\e6d8"; }
  2676. .aui-icon-cart:before { content: "\e6df"; }
  2677. .aui-icon-star:before { content: "\e6e0"; }
  2678. .aui-icon-plus:before { content: "\e6e3"; }
  2679. .aui-icon-minus:before { content: "\e62d"; }
  2680. .aui-icon-correct:before { content: "\e6e5"; }
  2681. .aui-icon-search:before { content: "\e6e6"; }
  2682. .aui-icon-gear:before { content: "\e6e8"; }
  2683. .aui-icon-map:before { content: "\e6d2"; }
  2684. .aui-icon-location:before { content: "\e6d1"; }
  2685. .aui-icon-image:before { content: "\e6ce"; }
  2686. .aui-icon-phone:before { content: "\e6c4"; }
  2687. .aui-icon-camera:before { content: "\e6cd"; }
  2688. .aui-icon-video:before { content: "\e6cc"; }
  2689. .aui-icon-qq:before { content: "\e6cb"; }
  2690. .aui-icon-wechat:before { content: "\e6c9"; }
  2691. .aui-icon-weibo:before { content: "\e6c8"; }
  2692. .aui-icon-note:before { content: "\e6c6"; }
  2693. .aui-icon-mail:before { content: "\e6c5"; }
  2694. .aui-icon-wechat-circle:before { content: "\e6ca"; }
  2695. .aui-icon-home:before { content: "\e706"; }
  2696. .aui-icon-forward:before { content: "\e6d9"; }
  2697. .aui-icon-back:before { content: "\e6da"; }
  2698. .aui-icon-laud:before { content: "\e64b"; }
  2699. .aui-icon-lock:before { content: "\e6ef"; }
  2700. .aui-icon-unlock:before { content: "\e62f"; }
  2701. .aui-icon-like:before { content: "\e62b"; }
  2702. .aui-icon-my:before { content: "\e610"; }
  2703. .aui-icon-more:before { content: "\e625"; }
  2704. .aui-icon-mobile:before { content: "\e697"; }
  2705. .aui-icon-calendar:before { content: "\e68a"; }
  2706. .aui-icon-date:before { content: "\e68c"; }
  2707. .aui-icon-display:before { content: "\e612"; }
  2708. .aui-icon-hide:before { content: "\e624"; }
  2709. .aui-icon-pencil:before { content: "\e615"; }
  2710. .aui-icon-flag:before { content: "\e6f1"; }
  2711. .aui-icon-cert:before { content: "\e704"; }