app.css 44 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469
  1. /* Write your styles */
  2. html,
  3. body {
  4. background: #e9ecf3;
  5. overflow: inherit;
  6. }
  7. ul,
  8. li {
  9. margin: 0;
  10. padding: 0;
  11. list-style: none;
  12. }
  13. input {
  14. border: none;
  15. }
  16. a {
  17. color: #337ab7;
  18. }
  19. a:hover {
  20. cursor: pointer;
  21. color: #23527c;
  22. }
  23. .am-breadcrumb {
  24. padding: 0;
  25. margin-top: 10px;
  26. }
  27. .am-topbar-inverse {
  28. background: #fff;
  29. border-color: #e9ecf3;
  30. }
  31. .am-topbar-brand {
  32. color: #337ab7;
  33. margin-right: 20px;
  34. }
  35. .am-topbar-brand {
  36. height: 75px;
  37. line-height: 75px;
  38. }
  39. .am-topbar {
  40. min-height: 75px;
  41. line-height: 75px;
  42. }
  43. .am-topbar-inverse .am-topbar-nav>li>a {
  44. height: 75px;
  45. line-height: 75px;
  46. padding: 0 12px;
  47. }
  48. .am-topbar-inverse .am-topbar-nav>li>a:focus,
  49. .am-topbar-inverse .am-topbar-nav>li>a:hover {
  50. background: none;
  51. color: initial;
  52. }
  53. .am-topbar-inverse .am-topbar-nav>li>a:after {
  54. border-bottom: none;
  55. }
  56. .am-topbar-inverse .am-topbar-nav>li>a:focus:after,
  57. .am-topbar-inverse .am-topbar-nav>li>a:hover:after {
  58. border-bottom: none;
  59. }
  60. .am-topbar-inverse .am-topbar-nav>li>a {}
  61. .am-nav-pills>li+li {
  62. margin-left: 0;
  63. }
  64. .am-topbar-inverse .am-topbar-nav>li.am-active>a,
  65. .am-topbar-inverse .am-topbar-nav>li.am-active>a:focus,
  66. .am-topbar-inverse .am-topbar-nav>li.am-active>a:hover {
  67. background-color: #f9fafc;
  68. }
  69. ul.am-dropdown-content>li>a:focus,
  70. ul.am-dropdown-content>li>a:hover {
  71. background: none;
  72. }
  73. ul.am-dropdown-content>li>a {
  74. color: #96a5aa;
  75. padding: 12px 8px 12px 18px;
  76. white-space: initial;
  77. font-size: 12px;
  78. display: table-cell;
  79. }
  80. .admin-sidebar-list li a {
  81. color: #485a6a;
  82. font-size: 14px;
  83. }
  84. .tpl-color-success {
  85. color: #36c6d3;
  86. }
  87. .tpl-color-danger {
  88. color: #ed6b75;
  89. }
  90. .tpl-color-warning {
  91. color: #F1C40F;
  92. }
  93. .tpl-color-primary {
  94. color: #8E44AD;
  95. }
  96. .tpl-badge-success {
  97. background-color: #36c6d3!important;
  98. }
  99. .tpl-badge-danger {
  100. background-color: #ed6b75!important;
  101. }
  102. .tpl-badge-warning {
  103. background-color: #F1C40F!important;
  104. }
  105. .tpl-badge-primary {
  106. background-color: #8E44AD!important;
  107. }
  108. .tpl-header-list li {
  109. color: #999;
  110. border-bottom: 1px solid #F1F4F7;
  111. }
  112. .tpl-header-list li:last-child {
  113. border-bottom: none;
  114. }
  115. .tpl-header-list li:hover {
  116. background: #f9fafc;
  117. }
  118. .tpl-header-list-link {
  119. color: #999!important;
  120. }
  121. .tpl-header-list-user-nick {
  122. color: #7FB0DA;
  123. }
  124. .tpl-header-list-user-nick {
  125. color: #7FB0DA;
  126. }
  127. .tpl-header-list-user-ico img {
  128. margin-left: 5px;
  129. margin-top: -4px;
  130. height: 39px;
  131. display: inline-block;
  132. border-radius: 50%;
  133. }
  134. .tpl-header-list-ico-out-size {
  135. font-size: 16px;
  136. }
  137. ul.tpl-dropdown-content {
  138. width: 260px;
  139. padding: 8px;
  140. }
  141. ul.tpl-dropdown-content li>a.tpl-dropdown-content-message {
  142. padding: 16px 12px;
  143. display: block;
  144. border-bottom: 1px solid #F1F4F7;
  145. }
  146. ul.tpl-dropdown-content li>a.tpl-dropdown-content-message:last-child {
  147. border-bottom: none;
  148. }
  149. .tpl-dropdown-content-photo {
  150. float: left;
  151. margin: 0 6px 6px 0;
  152. }
  153. .tpl-dropdown-content-photo img {
  154. height: 40px;
  155. width: 40px;
  156. -webkit-border-radius: 50%!important;
  157. -moz-border-radius: 50%!important;
  158. -ms-border-radius: 50%!important;
  159. -o-border-radius: 50%!important;
  160. border-radius: 50%!important;
  161. }
  162. .tpl-dropdown-content-subject {
  163. display: block;
  164. margin-left: 46px;
  165. }
  166. .tpl-dropdown-content-external {
  167. display: block;
  168. overflow: hidden;
  169. padding: 10px;
  170. letter-spacing: .5px;
  171. border-bottom: 1px solid #F1F4F7;
  172. }
  173. .tpl-dropdown-content-external a {
  174. padding: 0!important;
  175. display: block!important;
  176. float: right;
  177. clear: none!important;
  178. }
  179. .tpl-dropdown-content-external h3 {
  180. margin: 0;
  181. padding: 0;
  182. font-size: 13px;
  183. color: #96a5aa;
  184. font-weight: normal;
  185. /*display: inline-block;*/
  186. float: left;
  187. }
  188. .tpl-dropdown-content-external h3 span {
  189. font-weight: 600;
  190. font-size: 16px;
  191. }
  192. .tpl-dropdown-content-from {
  193. font-size: 13px;
  194. font-weight: 600;
  195. }
  196. .tpl-dropdown-content-time {
  197. font-size: 12px;
  198. font-weight: 400;
  199. opacity: .5;
  200. filter: alpha(opacity=50);
  201. float: right;
  202. }
  203. .tpl-dropdown-content-font {
  204. display: block!important;
  205. font-size: 12px;
  206. line-height: 22px;
  207. margin-left: 46px;
  208. }
  209. .tpl-dropdown-ico-btn-size {
  210. width: 18px;
  211. height: 18px;
  212. line-height: 18px;
  213. font-size: 8px;
  214. color: #fff;
  215. }
  216. .tpl-dropdown-list-fl {
  217. width: 70%;
  218. position: relative;
  219. }
  220. .tpl-dropdown-list-fr {
  221. width: 30%;
  222. display: table-cell;
  223. font-size: 12px;
  224. text-align: right;
  225. line-height: initial;
  226. vertical-align: middle;
  227. padding-right: 20px;
  228. }
  229. .tpl-dropdown-list-bdbc {
  230. border-bottom: 1px solid #F1F4F7;
  231. }
  232. .tpl-dropdown-list-bdbc:last-child {
  233. border-bottom: none;
  234. }
  235. .tpl-logo {
  236. display: inline-block;
  237. vertical-align: middle;
  238. margin-top: -5px;
  239. padding-left: 18px;
  240. width: 160px;
  241. }
  242. .tpl-logo img {
  243. display: block;
  244. width: 100%;
  245. }
  246. .tpl-dropdown-content .task {
  247. margin-bottom: 5px;
  248. }
  249. .tpl-dropdown-content .desc {
  250. font-size: 13px;
  251. font-weight: 300;
  252. }
  253. .tpl-dropdown-content .percent {
  254. float: right;
  255. font-weight: 600;
  256. display: inline-block;
  257. }
  258. .tpl-dropdown-content-progress {
  259. display: block!important;
  260. }
  261. .tpl-dropdown-content .progress {
  262. display: block;
  263. background-color: #f5f5f5;
  264. margin: 8px 0 2px;
  265. }
  266. .tpl-progress {
  267. height: 16px;
  268. margin-bottom: 0;
  269. }
  270. .tpl-dropdown-content .progress-bar {
  271. float: left;
  272. width: 0%;
  273. height: 100%;
  274. font-size: 12px;
  275. line-height: 20px;
  276. color: #fff;
  277. text-align: center;
  278. background-color: #337ab7;
  279. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  280. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.15);
  281. -webkit-transition: width 0.6s ease;
  282. -o-transition: width 0.6s ease;
  283. transition: width 0.6s ease;
  284. }
  285. .tpl-page-container {
  286. margin: 0;
  287. padding: 20px 20px 0;
  288. }
  289. .tpl-page-header-fixed {
  290. margin-top: 75px;
  291. }
  292. .tpl-navbar-collapse {
  293. width: 235px;
  294. float: left;
  295. background: #fff;
  296. border-radius: 6px;
  297. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  298. padding-bottom: 20px;
  299. }
  300. .admin-offcanvas-bar {
  301. border-radius: 2px;
  302. overflow: hidden;
  303. }
  304. .tpl-page-container-nav-heading {
  305. height: 50px;
  306. padding: 25px 15px 10px;
  307. color: #5C9ACF;
  308. font-size: 13px;
  309. font-weight: 600;
  310. }
  311. .admin-sidebar-sub {
  312. background: none;
  313. padding-left: 0;
  314. }
  315. .admin-sidebar-list .admin-sidebar-sub li {
  316. padding-left: 0;
  317. }
  318. .admin-sidebar-sub li:first-child {
  319. border-top: none;
  320. }
  321. .admin-sidebar-list li {
  322. position: relative;
  323. border: none;
  324. padding-left: 24px;
  325. border-left: 3px solid #fff;
  326. }
  327. .admin-sidebar-list .admin-parent li {}
  328. .tpl-page-container-ico {
  329. font-size: 20px;
  330. position: absolute;
  331. top: 6px;
  332. left: 18px;
  333. padding-right: 10px;
  334. color: #a7bdcd;
  335. }
  336. .tpl-sidebar-list {}
  337. .tpl-sidebar-list li.tpl-sidebar-list-hover:hover a,
  338. .tpl-sidebar-list li.tpl-sidebar-list-hover.active a {
  339. color: #5b9bd1;
  340. }
  341. .tpl-sidebar-list li.tpl-sidebar-list-hover:hover .tpl-page-container-ico,
  342. .tpl-sidebar-list li.tpl-sidebar-list-hover.active .tpl-page-container-ico {
  343. color: #5b9bd1;
  344. }
  345. .tpl-sidebar-list li.tpl-sidebar-list-hover:hover,
  346. .tpl-sidebar-list li.tpl-sidebar-list-hover.active {
  347. background: #f2f6f9;
  348. border-left: 3px solid #5C9ACF!important;
  349. }
  350. .tpl-sidebar-list-hover-show .tpl-sidebar-list-hover-show-font:hover,
  351. .tpl-sidebar-list-hover-show .tpl-sidebar-list-hover-show-font:hover .tpl-page-container-ico {
  352. color: #5b9bd1;
  353. }
  354. .tpl-sidebar-list-hover-show.active .tpl-sidebar-list-hover-show-font,
  355. .tpl-sidebar-list-hover-show.active .tpl-sidebar-list-hover-show-font .tpl-page-container-ico {
  356. color: #5b9bd1;
  357. }
  358. .tpl-sidebar-list-hover-show:hover,
  359. .tpl-sidebar-list-hover-show.active {
  360. background: #f2f6f9;
  361. border-left: 3px solid #f2f6f9;
  362. }
  363. .admin-sidebar-sub li:hover,
  364. .admin-sidebar-sub li.active {
  365. background: #f2f6f9;
  366. border-left: 3px solid #f2f6f9;
  367. }
  368. .admin-sidebar-sub li:hover a,
  369. .admin-sidebar-sub li.active a {
  370. color: #5b9bd1;
  371. }
  372. .tpl-topbar-list-button {
  373. float: left;
  374. color: #C0CDDC;
  375. font-size: 18px;
  376. }
  377. .tpl-topbar-list-button span {
  378. cursor: pointer;
  379. }
  380. .tpl-content-wrapper {
  381. padding-left: 255px;
  382. /*padding-top: 10px;*/
  383. }
  384. .tpl-content-wrapper-hover {
  385. padding-left: 0px;
  386. }
  387. .tpl-content-page-title {
  388. color: #697882;
  389. font-size: 22px;
  390. font-weight: 400;
  391. }
  392. .tpl-left-nav {
  393. width: 235px;
  394. float: left;
  395. background: #fff;
  396. border-radius: 6px;
  397. box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
  398. padding-bottom: 20px;
  399. }
  400. .tpl-left-nav-title {
  401. height: 50px;
  402. padding: 25px 15px 10px;
  403. color: #5C9ACF;
  404. font-size: 13px;
  405. font-weight: 600;
  406. }
  407. .tpl-left-nav-list {
  408. width: 235px;
  409. }
  410. .tpl-left-nav-item {}
  411. .tpl-left-nav-item .nav-link {
  412. display: block;
  413. position: relative;
  414. margin: 1px 0 0;
  415. border: 0;
  416. padding: 12px 15px;
  417. /*padding-top: 6px;*/
  418. text-decoration: none;
  419. color: #485a6a;
  420. font-size: 14px;
  421. }
  422. .tpl-left-nav-item .nav-link span,
  423. .tpl-left-nav-sub-menu a span {
  424. font-size: 14px;
  425. font-weight: 400;
  426. color: #485a6a;
  427. }
  428. .tpl-left-nav-item .nav-link i,
  429. .tpl-left-nav-sub-menu a i {
  430. font-size: 20px;
  431. position: relative;
  432. text-shadow: none;
  433. font-weight: 300;
  434. top: 2px;
  435. margin-left: 1px;
  436. margin-right: 6px;
  437. color: #a7bdcd;
  438. }
  439. .tpl-left-nav-item .nav-link:hover {
  440. background: #f2f6f9;
  441. color: #5b9bd1;
  442. border-left: 3px solid #5C9ACF!important;
  443. margin-left: -3px;
  444. padding-left: 15px;
  445. }
  446. .tpl-left-nav-item .nav-link:hover i,
  447. .tpl-left-nav-sub-menu a:hover i {
  448. color: #5b9bd1;
  449. }
  450. .tpl-left-nav-item .nav-link:hover span,
  451. .tpl-left-nav-sub-menu a:hover span {
  452. color: #5b9bd1;
  453. font-weight: bold;
  454. }
  455. .tpl-left-nav-item .nav-link.active {
  456. border-left: 3px solid #5C9ACF!important;
  457. background: #f2f6f9;
  458. margin-left: -3px;
  459. padding-left: 15px;
  460. }
  461. .tpl-left-nav-item .nav-link.active span,
  462. .tpl-left-nav-item .nav-link.active i {
  463. color: #5b9bd1;
  464. }
  465. .tpl-left-nav-sub-menu {
  466. list-style: none;
  467. display: none;
  468. padding: 0;
  469. margin: 0;
  470. }
  471. .tpl-header-nav-hover-ico {
  472. color: #C0CDDC!important;
  473. font-size: 19px!important;
  474. }
  475. .tpl-left-nav-more-ico {
  476. -webkit-transition: all 300ms;
  477. transition: all 300ms;
  478. font-size: 16px!important;
  479. top: 4px!important;
  480. }
  481. .tpl-left-nav-more-ico-rotate {
  482. -webkit-transform: rotate(90deg);
  483. transform: rotate(90deg);
  484. -webkit-transition: all 300ms;
  485. transition: all 300ms;
  486. }
  487. .tpl-left-nav-sub-menu a {
  488. display: block;
  489. margin: 0;
  490. padding: 4px 14px 9px 30px;
  491. text-decoration: none;
  492. font-size: 14px;
  493. font-weight: 400;
  494. background: 0 0;
  495. }
  496. .tpl-left-nav-sub-menu a:hover,
  497. .tpl-left-nav-sub-menu a.active {
  498. color: #5b9bd1;
  499. background: #f2f6f9!important;
  500. }
  501. .tpl-left-nav-sub-menu a.active i,
  502. .tpl-left-nav-sub-menu a.active span {
  503. color: #5b9bd1;
  504. background: #f2f6f9!important;
  505. }
  506. .tpl-left-nav-content-ico {
  507. font-size: 14px!important;
  508. position: relative;
  509. top: 8px!important;
  510. color: #ffbe40!important;
  511. }
  512. .tpl-left-nav-content {
  513. background-color: #36c6d3;
  514. border-radius: 1000px;
  515. color: #fff!important;
  516. padding: 0px 8px!important;
  517. float: right;
  518. position: relative;
  519. font-style: normal;
  520. font-family: "微软雅黑";
  521. top: 10px!important;
  522. font-size: 12px!important;
  523. }
  524. .tpl-content-scope {}
  525. .note {
  526. margin: 0 0 20px;
  527. padding: 15px 30px 15px 15px;
  528. border-left: 5px solid #eee;
  529. border-radius: 0 4px 4px 0;
  530. font-size: 13px;
  531. }
  532. .note h3 {
  533. margin-bottom: 10px;
  534. font-size: 20px;
  535. font-weight: 500;
  536. }
  537. .note p {
  538. margin: 0;
  539. font-size: 14px;
  540. line-height: 26px;
  541. }
  542. .note-info {
  543. background-color: #f5f8fd;
  544. border-color: #8bb4e7;
  545. color: #010407;
  546. }
  547. .label-danger {
  548. background-color: #ed6b75;
  549. }
  550. .label {
  551. display: inline;
  552. padding: 0.2em 0.6em 0.3em;
  553. font-size: 75%;
  554. font-weight: bold;
  555. line-height: 1;
  556. color: #fff;
  557. text-align: center;
  558. white-space: nowrap;
  559. vertical-align: baseline;
  560. border-radius: .25em;
  561. }
  562. .dashboard-stat .visual {
  563. width: 80px;
  564. height: 80px;
  565. display: block;
  566. float: left;
  567. padding-top: 10px;
  568. padding-left: 15px;
  569. margin-bottom: 15px;
  570. font-size: 35px;
  571. line-height: 35px;
  572. }
  573. .dashboard-stat.blue .visual>i {
  574. color: #FFF;
  575. opacity: .1;
  576. filter: alpha(opacity=10);
  577. }
  578. .dashboard-stat .visual>i {
  579. margin-left: -35px;
  580. font-size: 110px;
  581. line-height: 110px;
  582. }
  583. .dashboard-stat .details {
  584. position: absolute;
  585. right: 15px;
  586. padding-right: 15px;
  587. }
  588. .dashboard-stat.blue .details .number {
  589. color: #FFF;
  590. }
  591. .dashboard-stat .details .number {
  592. padding-top: 25px;
  593. text-align: right;
  594. font-size: 34px;
  595. line-height: 36px;
  596. letter-spacing: -1px;
  597. margin-bottom: 0;
  598. font-weight: 300;
  599. }
  600. .dashboard-stat.blue .details .desc {
  601. color: #FFF;
  602. opacity: 1;
  603. filter: alpha(opacity=100);
  604. }
  605. .dashboard-stat .details .desc {
  606. text-align: right;
  607. font-size: 16px;
  608. letter-spacing: 0;
  609. font-weight: 300;
  610. }
  611. .dashboard-stat.blue .more {
  612. color: #FFF;
  613. background-color: #258fd7;
  614. }
  615. .dashboard-stat {
  616. display: block;
  617. margin-bottom: 25px;
  618. overflow: hidden;
  619. border-radius: 4px;
  620. }
  621. .dashboard-stat .more {
  622. clear: both;
  623. display: block;
  624. padding: 6px 10px;
  625. position: relative;
  626. text-transform: uppercase;
  627. font-weight: 300;
  628. font-size: 11px;
  629. opacity: .7;
  630. filter: alpha(opacity=70);
  631. }
  632. .row {
  633. margin-left: -18px;
  634. margin-right: -18px;
  635. overflow: hidden;
  636. }
  637. .row-mb {
  638. margin-bottom: 25px;
  639. }
  640. .dashboard-stat.blue {
  641. background-color: #3598dc;
  642. }
  643. .dashboard-stat.red {
  644. background-color: #e7505a;
  645. }
  646. .dashboard-stat.green {
  647. background-color: #32c5d2;
  648. }
  649. .dashboard-stat.purple {
  650. background-color: #8E44AD;
  651. }
  652. .dashboard-stat .more>i {
  653. display: inline-block;
  654. margin-top: 1px;
  655. float: right;
  656. }
  657. .m-icon-swapright {
  658. background-position: -27px -10px;
  659. }
  660. .m-icon-white {
  661. background-image: url(../img/syncfusion-icons-white.png);
  662. }
  663. .dashboard-stat.red .more {
  664. color: #fff;
  665. background-color: #e53e49;
  666. }
  667. .dashboard-stat.red .visual>i {
  668. color: #fff;
  669. opacity: .1;
  670. filter: alpha(opacity=10);
  671. }
  672. .dashboard-stat.red .details .number {
  673. color: #fff;
  674. }
  675. .dashboard-stat.red .details .desc {
  676. color: #fff;
  677. opacity: 1;
  678. filter: alpha(opacity=100);
  679. }
  680. [class^=m-icon-] {
  681. width: 14px;
  682. height: 14px;
  683. margin-top: 3px;
  684. line-height: 14px;
  685. vertical-align: top;
  686. }
  687. .dashboard-stat.green .details .number {
  688. color: #FFF;
  689. }
  690. .dashboard-stat.green .details .desc {
  691. color: #FFF;
  692. opacity: 1;
  693. filter: alpha(opacity=100);
  694. }
  695. .dashboard-stat.green .more {
  696. color: #FFF;
  697. background-color: #2bb8c4;
  698. }
  699. .dashboard-stat.green .visual>i {
  700. color: #FFF;
  701. opacity: .1;
  702. filter: alpha(opacity=10);
  703. }
  704. .dashboard-stat.purple .visual>i {
  705. color: #fff;
  706. opacity: .1;
  707. filter: alpha(opacity=10);
  708. }
  709. .dashboard-stat.purple .details .number {
  710. color: #fff;
  711. }
  712. .dashboard-stat.purple .details .desc {
  713. color: #fff;
  714. opacity: 1;
  715. filter: alpha(opacity=100);
  716. }
  717. .dashboard-stat.purple .more {
  718. color: #fff;
  719. background-color: #823e9e;
  720. }
  721. .tpl-portlet {
  722. padding: 12px 20px 15px;
  723. background-color: #fff;
  724. border-radius: 4px;
  725. }
  726. .tpl-portlet-title {
  727. padding: 0;
  728. min-height: 48px;
  729. border-bottom: 1px solid #eef1f5;
  730. margin-bottom: 10px;
  731. overflow: hidden;
  732. }
  733. .tpl-caption {
  734. color: #666;
  735. padding: 10px 0;
  736. float: left;
  737. display: inline-block;
  738. font-size: 16px;
  739. line-height: 18px;
  740. }
  741. .font-green {
  742. color: #32c5d2!important;
  743. }
  744. .font-red {
  745. color: #e7505a!important;
  746. }
  747. .bold {
  748. font-weight: 700!important;
  749. }
  750. .actions {
  751. float: right;
  752. display: inline-block;
  753. padding: 6px 0 14px;
  754. }
  755. .actions-btn {
  756. width: 100%;
  757. }
  758. .actions-btn li {
  759. display: inline-block;
  760. padding: 4px 14px;
  761. font-size: 12px;
  762. line-height: 1.5;
  763. color: #e7505a;
  764. border: 1px solid #e7505a;
  765. border-radius: 60px;
  766. cursor: pointer;
  767. }
  768. .actions-btn li:hover {
  769. transition: all .3s;
  770. }
  771. .actions-btn li.red {
  772. border-color: #e7505a;
  773. color: #e7505a;
  774. background: 0 0;
  775. }
  776. .actions-btn li.red:hover,
  777. .actions-btn li.red-on {
  778. border-color: #e7505a;
  779. color: #fff;
  780. background-color: #e7505a;
  781. }
  782. .actions-btn li.green {
  783. border-color: #32c5d2;
  784. color: #32c5d2;
  785. background: 0 0;
  786. }
  787. .actions-btn li.green:hover,
  788. .actions-btn li.green-on {
  789. border-color: #32c5d2;
  790. color: #FFF;
  791. background-color: #32c5d2;
  792. }
  793. .actions-btn li.purple {
  794. border-color: #8E44AD;
  795. color: #8E44AD;
  796. background: 0 0;
  797. }
  798. .actions-btn li.purple:hover,
  799. .actions-btn li.purple-on {
  800. border-color: #8E44AD;
  801. color: #FFF;
  802. background-color: #8E44AD;
  803. }
  804. .actions-btn li.dark {
  805. border-color: #2f353b;
  806. color: #2f353b;
  807. background: 0 0;
  808. }
  809. .actions-btn li.dark:hover,
  810. .actions-btn li.dark-on {
  811. border-color: #2f353b;
  812. color: #FFF;
  813. background-color: #2f353b;
  814. }
  815. .actions-btn li.blue {
  816. border-color: #3598dc;
  817. color: #3598dc;
  818. background: 0 0;
  819. }
  820. .actions-btn li.blue:hover,
  821. .actions-btn li.blue-on {
  822. border-color: #3598dc;
  823. color: #FFF;
  824. background-color: #3598dc;
  825. }
  826. .tpl-echarts {
  827. width: 100%;
  828. min-height: 400px;
  829. }
  830. .tpl-scrollable {
  831. width: 100%;
  832. min-height: 400px;
  833. }
  834. .number-stats {}
  835. .number-stats {
  836. padding: 10px 0 16px;
  837. overflow: hidden;
  838. }
  839. .number-stats .stat-number .title {
  840. font-size: 13px;
  841. margin-bottom: 3px;
  842. color: #B8C3C7;
  843. }
  844. .number-stats .stat-number .number {
  845. font-size: 27px;
  846. line-height: 27px;
  847. }
  848. .tpl-table-uppercase {
  849. font-weight: 600;
  850. font-size: 13px;
  851. color: #93a2a9;
  852. border: 0;
  853. border-bottom: none;
  854. }
  855. .tpl-table-uppercase>th {
  856. border: none!important;
  857. }
  858. .tpl-table-uppercase td {
  859. border-top: 1px solid #F2F5F8!important;
  860. }
  861. .tpl-table .user-pic {
  862. display: inline-block;
  863. vertical-align: middle;
  864. height: 30px;
  865. -webkit-border-radius: 100%;
  866. -moz-border-radius: 100%;
  867. -ms-border-radius: 100%;
  868. -o-border-radius: 100%;
  869. border-radius: 100%;
  870. }
  871. .tpl-table .user-name {
  872. font-size: 12px;
  873. }
  874. .tpl-table {
  875. margin-bottom: 0;
  876. }
  877. .am-table>tbody>tr>td,
  878. .am-table>tbody>tr>th,
  879. .am-table>tfoot>tr>td,
  880. .am-table>tfoot>tr>th,
  881. .am-table>thead>tr>td,
  882. .am-table>thead>tr>th {
  883. border-top: 1px solid #F2F5F8;
  884. color: #93a2a9;
  885. }
  886. .font-green {
  887. color: #32c5d2!important;
  888. }
  889. .caption-helper {
  890. padding: 0;
  891. margin: 0;
  892. line-height: 13px;
  893. color: #9eacb4;
  894. font-size: 13px;
  895. font-weight: 400;
  896. }
  897. .input-inline {
  898. display: inline-block;
  899. width: auto;
  900. vertical-align: middle;
  901. }
  902. .input-small {
  903. width: 145px!important;
  904. }
  905. .input-icon {
  906. position: relative;
  907. left: 0;
  908. }
  909. .input-icon i {
  910. font-size: 14px;
  911. margin-top: 9px;
  912. }
  913. .input-icon>i {
  914. color: #ccc;
  915. position: absolute;
  916. margin-top: 2px;
  917. z-index: 3;
  918. width: 16px;
  919. font-size: 16px;
  920. text-align: center;
  921. left: 0;
  922. left: auto;
  923. right: 8px;
  924. float: right;
  925. }
  926. .form-control {
  927. display: block;
  928. width: 100%;
  929. height: 34px;
  930. padding: 6px 12px;
  931. font-size: 14px;
  932. line-height: 1.42857;
  933. color: #4d6b8a;
  934. background-color: #fff;
  935. background-image: none;
  936. border: 1px solid #c2cad8;
  937. border-radius: 4px;
  938. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  939. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  940. -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  941. -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  942. transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  943. outline: none;
  944. }
  945. .form-control {
  946. height: 30px;
  947. padding: 2px 26px 3px 10px;
  948. font-size: 13px;
  949. }
  950. .input-icon.right {
  951. left: auto;
  952. right: 0;
  953. }
  954. .tpl-portlet-input {
  955. float: right;
  956. display: inline-block;
  957. padding: 4px 0;
  958. }
  959. .wrapper {
  960. z-index: 1;
  961. height: 400px;
  962. width: 100%;
  963. background: #fff;
  964. overflow: hidden;
  965. position: relative;
  966. }
  967. .scroller {
  968. position: absolute;
  969. z-index: 1;
  970. -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  971. width: 100%;
  972. -webkit-transform: translateZ(0);
  973. -moz-transform: translateZ(0);
  974. -ms-transform: translateZ(0);
  975. -o-transform: translateZ(0);
  976. transform: translateZ(0);
  977. -webkit-touch-callout: none;
  978. -webkit-user-select: none;
  979. -moz-user-select: none;
  980. -ms-user-select: none;
  981. user-select: none;
  982. -webkit-text-size-adjust: none;
  983. -moz-text-size-adjust: none;
  984. -ms-text-size-adjust: none;
  985. -o-text-size-adjust: none;
  986. text-size-adjust: none;
  987. }
  988. .scroller ul {
  989. list-style: none;
  990. padding: 0;
  991. margin: 0;
  992. width: 100%;
  993. text-align: left;
  994. }
  995. .scroller li {
  996. padding: 0 10px;
  997. height: 40px;
  998. line-height: 40px;
  999. font-size: 14px;
  1000. }
  1001. .iScrollIndicator {
  1002. background: rgb(215, 220, 226)!important;
  1003. border: none!important;
  1004. border-radius: 0!important;
  1005. opacity: 1!important;
  1006. }
  1007. .iScrollVerticalScrollbar {
  1008. opacity: 1!important;
  1009. }
  1010. .tpl-task-list {
  1011. list-style: none;
  1012. padding: 0;
  1013. margin: 0;
  1014. }
  1015. .tpl-task-list li {
  1016. position: relative;
  1017. padding: 10px!important;
  1018. border-bottom: 1px solid #F4F6F9;
  1019. height: auto!important;
  1020. font-size: 14px!important;
  1021. line-height: 22px!important;
  1022. }
  1023. .task-checkbox {
  1024. float: left;
  1025. width: 30px;
  1026. }
  1027. .task-title {
  1028. color: #838FA1;
  1029. margin-right: 10px;
  1030. }
  1031. .task-title-sp {
  1032. margin-right: 5px;
  1033. }
  1034. .label-sm {
  1035. font-size: 13px;
  1036. padding: 2px 5px;
  1037. }
  1038. .label-success {
  1039. background-color: #36c6d3;
  1040. }
  1041. .label {
  1042. text-shadow: none!important;
  1043. font-size: 14px;
  1044. font-weight: 300;
  1045. padding: 3px 6px;
  1046. color: #fff;
  1047. }
  1048. .task-config {
  1049. display: none;
  1050. position: absolute;
  1051. top: 1px;
  1052. right: 10px;
  1053. }
  1054. .tpl-task-list li:hover .task-config {
  1055. display: block;
  1056. margin-bottom: 0!important;
  1057. }
  1058. .tpl-task-list-hover {
  1059. padding: 2px 12px;
  1060. color: #666;
  1061. border-radius: 3px;
  1062. background-color: #e1e5ec;
  1063. border-color: #e1e5ec;
  1064. }
  1065. .tpl-task-list-hover:hover {
  1066. color: #999;
  1067. }
  1068. .tpl-task-list-dropdown {
  1069. position: absolute;
  1070. top: 10px;
  1071. left: -85px;
  1072. }
  1073. .tpl-task-list-dropdown-ul {
  1074. width: 80px!important;
  1075. min-width: 80px!important;
  1076. }
  1077. .tpl-task-list-dropdown-ul li {
  1078. /*padding: 0!important;*/
  1079. text-align: center;
  1080. }
  1081. .tpl-task-list>li:hover {
  1082. background: #F4F6F9;
  1083. }
  1084. .tpl-task-list-dropdown-ul li a {
  1085. padding: 0!important;
  1086. display: inherit!important;
  1087. }
  1088. .label-danger {
  1089. background-color: #ed6b75;
  1090. }
  1091. .label-warning {
  1092. background-color: #F1C40F;
  1093. }
  1094. .label-default {
  1095. background-color: #bac3d0;
  1096. }
  1097. .tpl-index-tabs {
  1098. position: relative;
  1099. }
  1100. .tpl-index-tabs .am-nav-tabs {
  1101. border: none;
  1102. position: absolute;
  1103. top: -55px;
  1104. right: 0;
  1105. }
  1106. .tpl-index-tabs .am-nav-tabs li a {
  1107. color: #333;
  1108. font-size: 13px;
  1109. border: none;
  1110. padding-bottom: 16px;
  1111. }
  1112. .tpl-index-tabs .am-nav-tabs li a:hover {
  1113. background: transparent;
  1114. border: none;
  1115. border-bottom: 4px solid #36c6d3;
  1116. }
  1117. .tpl-index-tabs .am-nav-tabs>li.am-active>a,
  1118. .tpl-index-tabs .am-nav-tabs>li.am-active>a:focus,
  1119. .tpl-index-tabs .am-nav-tabs>li.am-active>a:hover {
  1120. border: none;
  1121. }
  1122. .tpl-index-tabs .am-nav-tabs li.am-active {
  1123. border: none;
  1124. border-bottom: 4px solid #36c6d3;
  1125. }
  1126. .tpl-index-tabs .am-tabs-bd .am-tab-panel {
  1127. padding: 0;
  1128. }
  1129. .tpl-index-tabs .am-tabs-bd {
  1130. border: none;
  1131. }
  1132. .tpl-task-remind {}
  1133. .tpl-task-remind li {
  1134. color: #82949a;
  1135. margin-bottom: 7px;
  1136. }
  1137. .tpl-task-remind li .cosA {
  1138. margin-right: 80px;
  1139. }
  1140. .tpl-task-remind li .cosB {
  1141. float: right;
  1142. width: 75px;
  1143. margin-left: -75px;
  1144. text-align: right;
  1145. font-style: italic;
  1146. color: #c1cbd0;
  1147. }
  1148. .tpl-label-info {
  1149. font-size: 13px;
  1150. padding: 2px 5px;
  1151. background-color: #659be0;
  1152. color: #fff;
  1153. text-align: center;
  1154. white-space: nowrap;
  1155. vertical-align: baseline;
  1156. border-radius: .25em;
  1157. }
  1158. .tpl-task-remind li .cosA .cosIco {
  1159. display: inline-block;
  1160. width: 24px;
  1161. height: 24px;
  1162. vertical-align: middle;
  1163. color: #fff;
  1164. text-align: center;
  1165. border-radius: 3px;
  1166. background-color: #36c6d3;
  1167. }
  1168. .label-danger {
  1169. background-color: #ed6b75!important;
  1170. }
  1171. .label-info {
  1172. background-color: #659be0!important;
  1173. }
  1174. .label-warning {
  1175. background-color: #F1C40F!important;
  1176. }
  1177. .tpl-portlet-components {
  1178. border: 1px solid #e7ecf1;
  1179. padding: 12px 20px 15px;
  1180. background-color: #fff;
  1181. margin-top: 0;
  1182. margin-bottom: 25px;
  1183. overflow: hidden;
  1184. }
  1185. .tpl-portlet-components .portlet-title {
  1186. border-bottom: 1px solid #eef1f5;
  1187. padding: 0;
  1188. min-height: 48px;
  1189. margin-bottom: 10px;
  1190. }
  1191. .tpl-portlet-components .portlet-title .caption {
  1192. float: left;
  1193. display: inline-block;
  1194. font-size: 18px;
  1195. line-height: 18px;
  1196. color: #666;
  1197. padding: 10px 0;
  1198. }
  1199. .tpl-block {
  1200. padding-top: 10px;
  1201. padding-bottom: 10px;
  1202. font-size: 18px;
  1203. }
  1204. .tpl-alert {
  1205. padding: 15px;
  1206. margin-bottom: 20px;
  1207. border: 1px solid transparent;
  1208. border-radius: 4px;
  1209. }
  1210. .tpl-fz-ml {
  1211. margin-left: 30px;
  1212. }
  1213. .tpl-table-fz-check {
  1214. border: 1px solid transparent;
  1215. height: 12px;
  1216. width: 12px;
  1217. background: #fff;
  1218. }
  1219. .am-table-striped>tbody>tr:nth-child(odd)>td,
  1220. .am-table-striped>tbody>tr:nth-child(odd)>th {
  1221. background: #f3f4f6;
  1222. }
  1223. .am-selected-btn.am-btn-default {
  1224. border-radius: 3px;
  1225. }
  1226. .am-input-group {
  1227. border-radius: 3px;
  1228. overflow: hidden;
  1229. }
  1230. .tpl-am-btn-success {
  1231. border-color: #5eb95e!important;
  1232. }
  1233. .tpl-pagination .am-disabled a,
  1234. .tpl-pagination li a {
  1235. color: #23abf0;
  1236. border-radius: 3px;
  1237. padding: 6px 12px;
  1238. }
  1239. .tpl-pagination .am-active a {
  1240. background: #23abf0;
  1241. color: #fff;
  1242. border: 1px solid #23abf0;
  1243. padding: 6px 12px;
  1244. }
  1245. .tpl-table-images {}
  1246. .tpl-table-images-content {
  1247. width: 100%;
  1248. border: 1px solid #e7ecf1;
  1249. padding: 26px;
  1250. margin-bottom: 30px;
  1251. }
  1252. .tpl-table-images-content-i {
  1253. position: relative;
  1254. display: block;
  1255. width: 100%;
  1256. }
  1257. .tpl-table-images-content-i-time {
  1258. width: 100%;
  1259. font-size: 12px;
  1260. color: #666;
  1261. padding-bottom: 10px;
  1262. border-bottom: 1px solid #e7ecf1;
  1263. margin-bottom: 10px;
  1264. }
  1265. .tpl-table-images-content-i-shadow {
  1266. background: url(../img/lbbg.png) bottom repeat-x;
  1267. position: absolute;
  1268. left: 0;
  1269. right: 0;
  1270. bottom: 0;
  1271. top: 0;
  1272. }
  1273. .tpl-table-images-content-i-info {
  1274. position: absolute;
  1275. left: 10px;
  1276. right: 0;
  1277. bottom: 10px;
  1278. z-index: 2;
  1279. }
  1280. .tpl-table-images-content-i-info span.ico {
  1281. line-height: 40px;
  1282. display: inline-block;
  1283. color: #fff;
  1284. font-size: 14px;
  1285. }
  1286. .tpl-table-images-content-i-info span.ico img {
  1287. border-radius: 50%;
  1288. width: 40px;
  1289. display: inline-block;
  1290. margin-right: 10px;
  1291. }
  1292. .tpl-table-images-content-i img {
  1293. display: block;
  1294. width: 100%;
  1295. }
  1296. .tpl-table-images-content-block {
  1297. width: 100%;
  1298. padding-top: 10px;
  1299. color: #333;
  1300. }
  1301. .tpl-table-images-content .tpl-i-title {
  1302. font-size: 14px;
  1303. padding-bottom: 10px;
  1304. }
  1305. .tpl-table-images-content .tpl-i-font {
  1306. font-size: 14px;
  1307. color: #666;
  1308. overflow: hidden;
  1309. text-overflow: ellipsis;
  1310. display: -webkit-box;
  1311. -webkit-box-orient: vertical;
  1312. line-height: 1.6em;
  1313. -webkit-line-clamp: 2;
  1314. max-height: 3em;
  1315. }
  1316. .tpl-table-images-content .tpl-i-more {}
  1317. .tpl-table-images-content .tpl-i-more ul {
  1318. border-top: 1px solid #e7ecf1;
  1319. border-bottom: 1px solid #e7ecf1;
  1320. margin-top: 10px;
  1321. width: 100%;
  1322. overflow: hidden;
  1323. padding: 10px 0px;
  1324. }
  1325. .tpl-table-images-content .tpl-i-more li {
  1326. text-align: center;
  1327. width: 33.3333%;
  1328. font-size: 14px;
  1329. float: left;
  1330. }
  1331. .tpl-edit-content-btn {
  1332. width: 100%;
  1333. }
  1334. .tpl-edit-content-btn button {
  1335. width: 25%!important;
  1336. }
  1337. .tpl-form-body {
  1338. padding: 20px;
  1339. }
  1340. .tpl-form-line {}
  1341. .tpl-form-line-form {}
  1342. .tpl-form-line-form input[type=number]:focus,
  1343. .tpl-form-line-form input[type=search]:focus,
  1344. .tpl-form-line-form input[type=text]:focus,
  1345. .tpl-form-line-form input[type=password]:focus,
  1346. .tpl-form-line-form input[type=datetime]:focus,
  1347. .tpl-form-line-form input[type=datetime-local]:focus,
  1348. .tpl-form-line-form input[type=date]:focus,
  1349. .tpl-form-line-form input[type=month]:focus,
  1350. .tpl-form-line-form input[type=time]:focus,
  1351. .tpl-form-line-form input[type=week]:focus,
  1352. .tpl-form-line-form input[type=email]:focus,
  1353. .tpl-form-line-form input[type=url]:focus,
  1354. .tpl-form-line-form input[type=tel]:focus,
  1355. .tpl-form-line-form input[type=color]:focus,
  1356. .tpl-form-line-form select:focus,
  1357. .tpl-form-line-form textarea:focus,
  1358. .am-form-field:focus {
  1359. -webkit-box-shadow: none;
  1360. box-shadow: none;
  1361. }
  1362. .tpl-form-line-form input[type=number],
  1363. .tpl-form-line-form input[type=search],
  1364. .tpl-form-line-form input[type=text],
  1365. .tpl-form-line-form input[type=password],
  1366. .tpl-form-line-form input[type=datetime],
  1367. .tpl-form-line-form input[type=datetime-local],
  1368. .tpl-form-line-form input[type=date],
  1369. .tpl-form-line-form input[type=month],
  1370. .tpl-form-line-form input[type=time],
  1371. .tpl-form-line-form input[type=week],
  1372. .tpl-form-line-form input[type=email],
  1373. .tpl-form-line-form input[type=url],
  1374. .tpl-form-line-form input[type=tel],
  1375. .tpl-form-line-form input[type=color],
  1376. .tpl-form-line-form select,
  1377. .tpl-form-line-form textarea,
  1378. .am-form-field {
  1379. display: block;
  1380. width: 100%;
  1381. padding: 6px 12px;
  1382. font-size: 14px;
  1383. line-height: 1.42857;
  1384. color: #4d6b8a;
  1385. background-color: #fff;
  1386. background-image: none;
  1387. border: 1px solid #c2cad8;
  1388. border-radius: 4px;
  1389. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1390. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1391. -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1392. -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1393. transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  1394. background: 0 0;
  1395. border: 0;
  1396. border-bottom: 1px solid #c2cad8;
  1397. -webkit-border-radius: 0;
  1398. -moz-border-radius: 0;
  1399. -ms-border-radius: 0;
  1400. -o-border-radius: 0;
  1401. border-radius: 0;
  1402. color: #555;
  1403. box-shadow: none;
  1404. padding-left: 0;
  1405. padding-right: 0;
  1406. font-size: 14px;
  1407. }
  1408. .tpl-amazeui-form {}
  1409. .tpl-amazeui-form .am-form-label {
  1410. color: #999;
  1411. font-weight: normal;
  1412. font-size: 14px;
  1413. }
  1414. .tpl-amazeui-form input::-webkit-input-placeholder {
  1415. font-size: 12px;
  1416. }
  1417. .tpl-amazeui-form textarea::-webkit-input-placeholder {
  1418. font-size: 12px;
  1419. }
  1420. .tpl-amazeui-form small {
  1421. font-size: 12px;
  1422. }
  1423. .tpl-form-line-form .am-checkbox,
  1424. .tpl-form-line-form .am-checkbox-inline,
  1425. .tpl-form-line-form .am-form-label,
  1426. .tpl-form-line-form .am-radio,
  1427. .tpl-form-line-form .am-radio-inline {
  1428. margin-top: 0;
  1429. margin-bottom: 0;
  1430. }
  1431. .tpl-form-line-form .am-form-group:after {
  1432. clear: both;
  1433. }
  1434. .tpl-form-line-form .am-form-group:after,
  1435. .tpl-form-line-form .am-form-group:before {
  1436. content: " ";
  1437. display: table;
  1438. }
  1439. .tpl-form-line-form .am-form-label {
  1440. padding-top: 5px;
  1441. font-size: 16px;
  1442. color: #888;
  1443. font-weight: inherit;
  1444. text-align: right;
  1445. }
  1446. .tpl-form-line-form .am-form-group {
  1447. /*padding: 20px 0;*/
  1448. }
  1449. .tpl-form-line-form .am-form-label .tpl-form-line-small-title {
  1450. color: #999;
  1451. font-size: 12px;
  1452. }
  1453. .tpl-form-no-bg {
  1454. background: none!important;
  1455. }
  1456. .tpl-switch input[type="checkbox"] {
  1457. position: absolute;
  1458. opacity: 0;
  1459. }
  1460. .tpl-switch input[type="checkbox"].ios-switch+div {
  1461. vertical-align: middle;
  1462. width: 40px;
  1463. height: 20px;
  1464. border-radius: 999px;
  1465. background-color: rgba(0, 0, 0, 0.1);
  1466. -webkit-transition-duration: .4s;
  1467. -webkit-transition-property: background-color, box-shadow;
  1468. margin-top: 6px;
  1469. }
  1470. .tpl-switch input[type="checkbox"].ios-switch:checked+div {
  1471. width: 40px;
  1472. background-position: 0 0;
  1473. background-color: #36c6d3;
  1474. }
  1475. .tpl-switch input[type="checkbox"].tinyswitch.ios-switch+div {
  1476. width: 34px;
  1477. height: 18px;
  1478. }
  1479. .tpl-switch input[type="checkbox"].bigswitch.ios-switch+div {
  1480. width: 50px;
  1481. height: 25px;
  1482. }
  1483. .tpl-switch input[type="checkbox"].green.ios-switch:checked+div {
  1484. background-color: #00e359;
  1485. border: 1px solid rgba(0, 162, 63, 1);
  1486. box-shadow: inset 0 0 0 10px rgba(0, 227, 89, 1);
  1487. }
  1488. .tpl-switch input[type="checkbox"].ios-switch+div>div {
  1489. float: left;
  1490. width: 18px;
  1491. height: 18px;
  1492. border-radius: inherit;
  1493. background: #ffffff;
  1494. -webkit-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
  1495. -webkit-transition-duration: 0.4s;
  1496. -webkit-transition-property: transform, background-color, box-shadow;
  1497. -moz-transition-timing-function: cubic-bezier(.54, 1.85, .5, 1);
  1498. -moz-transition-duration: 0.4s;
  1499. -moz-transition-property: transform, background-color;
  1500. pointer-events: none;
  1501. margin-top: 1px;
  1502. margin-left: 1px;
  1503. }
  1504. .tpl-switch input[type="checkbox"].ios-switch:checked+div>div {
  1505. -webkit-transform: translate3d(20px, 0, 0);
  1506. -moz-transform: translate3d(20px, 0, 0);
  1507. background-color: #ffffff;
  1508. }
  1509. .tpl-switch input[type="checkbox"].tinyswitch.ios-switch+div>div {
  1510. width: 16px;
  1511. height: 16px;
  1512. margin-top: 1px;
  1513. }
  1514. .tpl-switch input[type="checkbox"].tinyswitch.ios-switch:checked+div>div {
  1515. -webkit-transform: translate3d(16px, 0, 0);
  1516. -moz-transform: translate3d(16px, 0, 0);
  1517. box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0px 0px 0 1px rgba(8, 80, 172, 1);
  1518. }
  1519. .tpl-switch input[type="checkbox"].bigswitch.ios-switch+div>div {
  1520. width: 23px;
  1521. height: 23px;
  1522. margin-top: 1px;
  1523. }
  1524. .tpl-switch input[type="checkbox"].bigswitch.ios-switch:checked+div>div {
  1525. -webkit-transform: translate3d(25px, 0, 0);
  1526. -moz-transform: translate3d(16px, 0, 0);
  1527. }
  1528. .tpl-switch input[type="checkbox"].green.ios-switch:checked+div>div {
  1529. box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(0, 162, 63, 1);
  1530. }
  1531. .tpl-btn-bg-color-success {
  1532. background-color: #36c6d3!important;
  1533. border: none;
  1534. }
  1535. .tpl-form-file-img {
  1536. width: 300px;
  1537. margin-bottom: 10px;
  1538. }
  1539. .tpl-form-file-img img {
  1540. width: 100%;
  1541. display: block;
  1542. }
  1543. .myapp-login {
  1544. background: #334054;
  1545. background-size: 100%;
  1546. height: 100%;
  1547. }
  1548. .myapp-login-logo-block {
  1549. width: 100%;
  1550. }
  1551. .myapp-login-logo {
  1552. width: 100%;
  1553. text-align: center;
  1554. padding-top: 30px;
  1555. }
  1556. .myapp-login-logo i {
  1557. color: #eb602e;
  1558. font-size: 120px;
  1559. display: inline-block;
  1560. }
  1561. .myapp-login-logo-text {
  1562. padding-top: 30px;
  1563. font-family: Helvetica, Arial, "Microsoft YaHei", FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
  1564. color: #fff;
  1565. font-weight: bold;
  1566. font-size: 40px;
  1567. text-align: center;
  1568. width: 100%;
  1569. }
  1570. .myapp-login-logo-text span {
  1571. color: #53d192;
  1572. }
  1573. .myapp-login-logo-text i {
  1574. color: #53d192;
  1575. font-size: 50px;
  1576. }
  1577. .myapp-login-logo-text .info {
  1578. padding-bottom: 30px;
  1579. border-bottom: 1px solid #4d4d4d;
  1580. font-family: FreeSans, Arimo, "Droid Sans", "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
  1581. width: 100%;
  1582. font-weight: normal;
  1583. font-size: 14px;
  1584. color: #fff;
  1585. }
  1586. .login-font {
  1587. font-size: 12px;
  1588. font-family: "wenquanyi micro hei", "Hiragino Sans GB", "Hiragino Sans GB W3", FontAwesome, sans-serif;
  1589. width: 100%;
  1590. color: #5e5e5e;
  1591. text-align: center;
  1592. padding: 20px 0;
  1593. padding-top: 10px;
  1594. }
  1595. .login-font i {
  1596. color: #53d192;
  1597. font-style: normal;
  1598. }
  1599. .login-font span {
  1600. color: #fff;
  1601. }
  1602. .myapp-login .am-form-group {
  1603. margin-bottom: 0;
  1604. }
  1605. .login-am-center {
  1606. margin: 0 auto;
  1607. float: none;
  1608. }
  1609. .login-am-center .am-form input {
  1610. background: #fff;
  1611. border: none;
  1612. font-size: 12px;
  1613. line-height: 30px;
  1614. text-indent: 10px;
  1615. border-radius: 0px 0px 6px 6px;
  1616. }
  1617. .login-am-center .am-form .am-form-group:first-child input {
  1618. border-radius: 6px 6px 0px 0px;
  1619. }
  1620. .login-am-center .am-btn-default {
  1621. width: 100%;
  1622. border-radius: 6px;
  1623. background: #53d192;
  1624. border: none;
  1625. color: #fff;
  1626. font-size: 14px;
  1627. line-height: 30px;
  1628. }
  1629. .tpl-login-max {
  1630. max-width: 640px;
  1631. margin: 0 auto;
  1632. }
  1633. .am-topbar-btn {
  1634. margin-top: 21px;
  1635. }
  1636. .tpl-chart-mb {
  1637. margin-top: 20px;
  1638. margin-bottom: 40px;
  1639. }
  1640. @media screen and (max-width: 1000px) {
  1641. .tpl-left-nav-hover {
  1642. display: none;
  1643. width: 100%;
  1644. margin-bottom: 10px;
  1645. }
  1646. .tpl-left-nav-list {
  1647. width: 100%;
  1648. }
  1649. .tpl-content-wrapper {
  1650. padding-left: 0;
  1651. }
  1652. }
  1653. .display-flex-start {
  1654. display: flex!important;
  1655. align-items: center;
  1656. }
  1657. .display-flex-column {
  1658. display: flex;
  1659. flex-direction: column;
  1660. }
  1661. .flex-space-evenly {
  1662. justify-content: space-evenly;
  1663. }
  1664. .flex-space-between {
  1665. justify-content: space-between;
  1666. }
  1667. .items-center {
  1668. align-items: center;
  1669. }
  1670. .justify-center {
  1671. justify-content: center;
  1672. }
  1673. .justify-end {
  1674. justify-content: flex-end;
  1675. }
  1676. .items-start {
  1677. align-items: flex-start;
  1678. }
  1679. .display-flex-between {
  1680. display: flex;
  1681. justify-content: space-between;
  1682. }
  1683. .display-flex-around {
  1684. display: flex;
  1685. justify-content: space-around;
  1686. }
  1687. .display-flex-evenly {
  1688. display: flex;
  1689. justify-content: space-evenly;
  1690. }
  1691. .display-flex-wrap {
  1692. display: flex;
  1693. flex-wrap: wrap;
  1694. }
  1695. .margin-left-3px {
  1696. margin-left: 3px;
  1697. }
  1698. .margin-left-10 {
  1699. margin-left: 10px;
  1700. }
  1701. .margin-left-15 {
  1702. margin-left: 15px;
  1703. }
  1704. .margin-left-20 {
  1705. margin-left: 20px;
  1706. }
  1707. .margin-left-30 {
  1708. margin-left: 30px;
  1709. }
  1710. .margin-right-10 {
  1711. margin-right: 10px;
  1712. }
  1713. .margin-right-15 {
  1714. margin-right: 15px;
  1715. }
  1716. .margin-top-10 {
  1717. margin-top: 10px;
  1718. }
  1719. .margin-top-15 {
  1720. margin-top: 15px;
  1721. }
  1722. .margin-top-50 {
  1723. margin-top: 50px;
  1724. }
  1725. .margin-top-10per {
  1726. margin-top: 10%;
  1727. }
  1728. .padding-right-0 {
  1729. padding-right: 0!important;
  1730. }
  1731. .padding-left-0 {
  1732. padding-left: 0!important;
  1733. }
  1734. .padding-left-10 {
  1735. padding-left: 10px;
  1736. }
  1737. .date-box-self {
  1738. background: #fff;
  1739. width: 300px;
  1740. border-radius: 3px;
  1741. border: 1px solid #d7d7d7;
  1742. }
  1743. .date-input-self {
  1744. border: none;
  1745. background-color: #fff!important;
  1746. text-indent: 10px;
  1747. }
  1748. .date-button-self {
  1749. border: none;
  1750. background-color: #fff!important;
  1751. }
  1752. .am-btn-self {
  1753. color: #555;
  1754. background-color: #fff;
  1755. border-color: #d7d7d7;
  1756. }
  1757. .doc-js-btn-1 > .am-active {
  1758. color: #fff!important;
  1759. background-color: #409eff!important;
  1760. }
  1761. .vis-hidden {
  1762. visibility: hidden!important;
  1763. }
  1764. .width-100{
  1765. width: 100%!important;
  1766. }
  1767. .width-90{
  1768. width: 90%!important;
  1769. }
  1770. .width-80{
  1771. width: 80%!important;
  1772. }
  1773. .width-70 {
  1774. width: 70%!important;
  1775. }
  1776. .width-65 {
  1777. width: 65%!important;
  1778. }
  1779. .width-60 {
  1780. width: 60%!important;
  1781. }
  1782. .width-40 {
  1783. width: 40%!important;
  1784. }
  1785. .width-35 {
  1786. width: 35%!important;
  1787. }
  1788. .width-30 {
  1789. width: 30%!important;
  1790. }
  1791. .width-25 {
  1792. width: 25%!important;
  1793. }
  1794. .width-20 {
  1795. width: 20%!important;
  1796. }
  1797. .width-17 {
  1798. width: 17%!important;
  1799. }
  1800. .width-15 {
  1801. width: 15%!important;
  1802. }
  1803. .width-13 {
  1804. width: 13%!important;
  1805. }
  1806. .width-12 {
  1807. width: 12%!important;
  1808. }
  1809. .width-10 {
  1810. width: 10%!important;
  1811. }
  1812. .width-9 {
  1813. width: 9%!important;
  1814. }
  1815. .width-8 {
  1816. width: 8%!important;
  1817. }
  1818. .width-80px {
  1819. width: 80px!important;
  1820. }
  1821. .margin-top-5 {
  1822. margin-top:5px;
  1823. }
  1824. .margin-top-20 {
  1825. margin-top: 20px;
  1826. }
  1827. .margin-top-35 {
  1828. margin-top: 35px;
  1829. }
  1830. .margin-bottom-35 {
  1831. margin-bottom: 35px;
  1832. }
  1833. .margin-bottom-20 {
  1834. margin-bottom:20px
  1835. }
  1836. .margin-bottom-10 {
  1837. margin-bottom:10px
  1838. }
  1839. .margin-bottom-5 {
  1840. margin-bottom:5px
  1841. }
  1842. .margin-right-5 {
  1843. margin-right: 5px;
  1844. }
  1845. .margin-right-20 {
  1846. margin-right:20px;
  1847. }
  1848. .margin-right-30 {
  1849. margin-right:30px;
  1850. }
  1851. .padding-top-0 {
  1852. padding-top: 0!important;
  1853. }
  1854. .padding-top-20 {
  1855. padding-top: 20px!important;
  1856. }
  1857. .font-size-10 {
  1858. font-size: 10px;
  1859. }
  1860. .font-size-12 {
  1861. font-size: 12px;
  1862. }
  1863. .font-size-13 {
  1864. font-size: 13px!important;
  1865. }
  1866. .font-size-14 {
  1867. font-size: 14px;
  1868. }
  1869. .font-size-15 {
  1870. font-size: 15px;
  1871. }
  1872. .font-size-20 {
  1873. font-size: 20px;
  1874. }
  1875. .font-size-24 {
  1876. font-size: 24px;
  1877. }
  1878. .font-size-32 {
  1879. font-size: 32px;
  1880. }
  1881. .font-family-cur {
  1882. font-family: cursive;
  1883. }
  1884. .right-list a {
  1885. text-decoration: underline;
  1886. }
  1887. .font-normal {
  1888. font-weight: normal;
  1889. }
  1890. .height-120 {
  1891. height: 120px;
  1892. }
  1893. .green-3A{
  1894. background: #67C23A;
  1895. }
  1896. .border-bottom-d7 {
  1897. border-bottom: 1px solid #d7d7d7;
  1898. }
  1899. .radius-4 {
  1900. border-radius: 5px;
  1901. }
  1902. .radio-box {
  1903. position: absolute;
  1904. top: 55px;
  1905. left: 40%;
  1906. z-index: 99;
  1907. }
  1908. .back-btn {
  1909. width: 50px;
  1910. height: 25px;
  1911. line-height: 25px;
  1912. font-size: 13px;
  1913. background-color: #ECF5FF;
  1914. border: 1px solid #B0D8FF;
  1915. border-radius: 5px;
  1916. color: #40A9FF;
  1917. cursor: pointer;
  1918. }
  1919. .color-555 {
  1920. color: #555;
  1921. }
  1922. .color-999 {
  1923. color: #999;
  1924. }
  1925. .color-blue {
  1926. color: #40A9FF!important;
  1927. }
  1928. .color-gray {
  1929. color: #909D99;
  1930. }
  1931. .color-red {
  1932. color: #FF007F;
  1933. }
  1934. .default-input-class {
  1935. height: 35px!important;
  1936. border: 1px solid #d7d7d7!important;
  1937. border-radius: 2px!important;
  1938. width: 40%;
  1939. text-indent: 5px!important;
  1940. font-size: 14px!important;
  1941. }
  1942. .disabled-input-class {
  1943. background-color: #F5F7FA!important;
  1944. color: #6CC1EF!important;
  1945. }
  1946. .default-textArea-class {
  1947. height: 100px;
  1948. border: 1px solid #d7d7d7;
  1949. border-radius: 2px;
  1950. width: 40%;
  1951. padding: 3px;
  1952. text-indent: 7px;
  1953. }
  1954. .default-btn-class {
  1955. background-color: #409EFF;
  1956. border: none;
  1957. width: 100px;
  1958. color: #fff;
  1959. height: 35px;
  1960. border-radius: 5px;
  1961. }
  1962. .disabled-btn-class {
  1963. background-color: #909D99!important;
  1964. color: #ffffff!important;
  1965. }
  1966. .left-line-class {
  1967. width: 2px;
  1968. height: 330px;
  1969. background-color: #EEEFF2;
  1970. position: absolute;
  1971. left: -3px;
  1972. top: 45px;
  1973. }
  1974. .cursor-hand {
  1975. cursor: pointer;
  1976. }
  1977. .add-btn-default {
  1978. background-color: #96BF48;
  1979. }
  1980. .cancel-btn {
  1981. background-color: #fff;
  1982. color: #555;
  1983. border:1px solid #d7d7d7;
  1984. }
  1985. .modal-bottom-btn {
  1986. position: fixed;
  1987. bottom: 50px;
  1988. right: 50px;
  1989. }
  1990. .header-title-class {
  1991. color: #5a8dbb;
  1992. font-weight: bold;
  1993. font-size: 20px;
  1994. }
  1995. .right-box-class {
  1996. background: #fff;
  1997. padding-top: 20px;
  1998. padding-bottom: 20px;
  1999. border-radius: 5px;
  2000. }
  2001. .right-light-box {
  2002. background: #D9EDF7;
  2003. float: left!important;
  2004. border-radius: 5px;
  2005. padding-top: 5px;
  2006. padding-bottom: 5px;
  2007. margin-top: 10px;
  2008. }
  2009. .display-flex-start label {
  2010. font-weight: normal;
  2011. margin-right: 10px;
  2012. }
  2013. .display-flex-start label input {
  2014. margin-right: 5px;
  2015. }
  2016. #time-box label{
  2017. margin-right: 5px;
  2018. border-radius: 5px;
  2019. }
  2020. .self-tabs-box {
  2021. height: 50px;
  2022. background-color: #f4f5f9;
  2023. margin: 15px 0 15px 0;
  2024. }
  2025. .self-tabs-box div {
  2026. height: 50px;
  2027. line-height: 50px;
  2028. padding: 0 15px 0 15px;
  2029. }
  2030. .tabs-active {
  2031. color: #1890ff;
  2032. border-bottom: 3px solid #1890ff;
  2033. }
  2034. .self-hide {
  2035. display: none;
  2036. }
  2037. .margin-top-60 {
  2038. margin-top: 60px;
  2039. }
  2040. .fff-btn-class {
  2041. background-color: #fff;
  2042. color: #555;
  2043. border: 1px solid #d7d7d7;
  2044. width: 100px;
  2045. height: 35px;
  2046. border-radius: 5px;
  2047. }
  2048. .pos-relative {
  2049. position: relative;
  2050. }
  2051. .build-img-box {
  2052. position: absolute;
  2053. top: 0;
  2054. right: 15%;
  2055. }
  2056. .build-img-box img {
  2057. border-radius: 3px;
  2058. }
  2059. @media screen and (max-width: 1600px) {
  2060. .date-box-self {
  2061. width:220px;
  2062. }
  2063. }
  2064. @media screen and (max-width: 1500px) {
  2065. .build-img-box {
  2066. position: absolute;
  2067. top: 0;
  2068. right: 7%;
  2069. }
  2070. .date-box-self {
  2071. width:200px;
  2072. }
  2073. }
  2074. .hidden-none {
  2075. display: none!important;
  2076. }
  2077. .upload-box{
  2078. width: 140px;
  2079. height:100px;
  2080. line-height: 50px;
  2081. background-color: #f5f7fa;
  2082. border-radius: 2px;
  2083. border: 1px dashed #d7d7d7;
  2084. background-size: contain;
  2085. background-position: center;
  2086. background-repeat: no-repeat;
  2087. }
  2088. @media screen and (max-width: 1600px) {
  2089. .upload-box{
  2090. width: 120px;
  2091. height:80px;
  2092. line-height: 30px;
  2093. }
  2094. }
  2095. @media screen and (max-width: 1400px) {
  2096. .upload-box{
  2097. width: 100px;
  2098. height:60px;
  2099. line-height:15px;
  2100. }
  2101. }
  2102. .picModal {
  2103. position: absolute;
  2104. top: 0;
  2105. width:100%;
  2106. height:83%;
  2107. border-radius: 3px;
  2108. background-color: rgba(0,0,0,.5);
  2109. display:none;
  2110. z-index:99;
  2111. }
  2112. .picModal-box{
  2113. width: 100%;
  2114. height: 100%;
  2115. display: flex;
  2116. align-items: center;
  2117. justify-content: center;
  2118. z-index:100;
  2119. }
  2120. .self-diamond-icon {
  2121. width: 5px;
  2122. height: 5px;
  2123. background-color: #000;
  2124. margin-right: 10px;
  2125. transform: rotate(45deg);
  2126. }
  2127. .input-unit-class{
  2128. position:absolute;
  2129. top: 6px;
  2130. right: 8px;
  2131. }
  2132. .am-float-right {
  2133. float: right;
  2134. }
  2135. .am-table-striped>tbody>tr:nth-child(odd)>td, .am-table-striped>tbody>tr:nth-child(odd)>th {
  2136. background: #fff;
  2137. }
  2138. .am-table>tbody>tr>td, .am-table>tbody>tr>th, .am-table>tfoot>tr>td, .am-table>tfoot>tr>th, .am-table>thead>tr>td, .am-table>thead>tr>th {
  2139. color: #555;
  2140. }
  2141. .am-input-group .am-form-field, .am-input-group-btn>.am-btn {
  2142. height: 33px;
  2143. }
  2144. .am-table>tbody>tr>td, .am-table>tbody>tr>th, .am-table>tfoot>tr>td, .am-table>tfoot>tr>th, .am-table>thead>tr>td, .am-table>thead>tr>th {
  2145. vertical-align: middle;
  2146. }