linker.css 37 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854
  1. @charset "UTF-8";
  2. @font-face {
  3. font-family: 'icomoon';
  4. src: url("fonts/icomoon.eot?otkatu");
  5. src: url("fonts/icomoon.eot?otkatu#iefix") format("embedded-opentype"), url("fonts/icomoon.ttf?otkatu") format("truetype"), url("fonts/icomoon.woff?otkatu") format("woff"), url("fonts/icomoon.svg?otkatu#icomoon") format("svg");
  6. font-weight: normal;
  7. font-style: normal; }
  8. [class^="icon-"], [class*=" icon-"] {
  9. /* use !important to prevent issues with browser extensions that change fonts */
  10. font-family: 'icomoon' !important;
  11. speak: none;
  12. font-style: normal;
  13. font-weight: normal;
  14. font-variant: normal;
  15. text-transform: none;
  16. line-height: 1;
  17. /* Better Font Rendering =========== */
  18. -webkit-font-smoothing: antialiased;
  19. -moz-osx-font-smoothing: grayscale; }
  20. .icon-Expired1:before {
  21. content: "\e946"; }
  22. .icon-Expired:before {
  23. content: "\e947"; }
  24. .icon-ok:before {
  25. content: "\e945"; }
  26. .icon-bank:before {
  27. content: "\e927"; }
  28. .icon-Bus:before {
  29. content: "\e928"; }
  30. .icon-clothing:before {
  31. content: "\e929"; }
  32. .icon-coffee:before {
  33. content: "\e92a"; }
  34. .icon-document:before {
  35. content: "\e92b"; }
  36. .icon-drink:before {
  37. content: "\e92c"; }
  38. .icon-entertainment:before {
  39. content: "\e92d"; }
  40. .icon-food:before {
  41. content: "\e92e"; }
  42. .icon-fruit:before {
  43. content: "\e92f"; }
  44. .icon-game:before {
  45. content: "\e930"; }
  46. .icon-gift:before {
  47. content: "\e931"; }
  48. .icon-hardware:before {
  49. content: "\e932"; }
  50. .icon-Hotel:before {
  51. content: "\e933"; }
  52. .icon-location:before {
  53. content: "\e934"; }
  54. .icon-mail:before {
  55. content: "\e935"; }
  56. .icon-money:before {
  57. content: "\e936"; }
  58. .icon-oil:before {
  59. content: "\e937"; }
  60. .icon-order:before {
  61. content: "\e938"; }
  62. .icon-plane:before {
  63. content: "\e939"; }
  64. .icon-print:before {
  65. content: "\e93a"; }
  66. .icon-purchase:before {
  67. content: "\e93b"; }
  68. .icon-reward:before {
  69. content: "\e93c"; }
  70. .icon-set1:before {
  71. content: "\e93d"; }
  72. .icon-ship:before {
  73. content: "\e93e"; }
  74. .icon-Sports:before {
  75. content: "\e93f"; }
  76. .icon-stop:before {
  77. content: "\e940"; }
  78. .icon-store:before {
  79. content: "\e941"; }
  80. .icon-taxi:before {
  81. content: "\e942"; }
  82. .icon-telephone1:before {
  83. content: "\e943"; }
  84. .icon-train:before {
  85. content: "\e944"; }
  86. .icon-chat:before {
  87. content: "\e916"; }
  88. .icon-collect:before {
  89. content: "\e917"; }
  90. .icon-comment2:before {
  91. content: "\e918"; }
  92. .icon-company:before {
  93. content: "\e919"; }
  94. .icon-group:before {
  95. content: "\e91a"; }
  96. .icon-help:before {
  97. content: "\e91b"; }
  98. .icon-history:before {
  99. content: "\e91c"; }
  100. .icon-reimburse1:before {
  101. content: "\e91d"; }
  102. .icon-review:before {
  103. content: "\e91e"; }
  104. .icon-review1:before {
  105. content: "\e91f"; }
  106. .icon-scan:before {
  107. content: "\e920"; }
  108. .icon-set:before {
  109. content: "\e922"; }
  110. .icon-share:before {
  111. content: "\e924"; }
  112. .icon-sign:before {
  113. content: "\e925"; }
  114. .icon-telephone:before {
  115. content: "\e926"; }
  116. .icon-warn:before {
  117. content: "\e915"; }
  118. .icon-member:before {
  119. content: "\e911"; }
  120. .icon-Password:before {
  121. content: "\e912"; }
  122. .icon-announce:before {
  123. content: "\e906"; }
  124. .icon-Attendance:before {
  125. content: "\e907"; }
  126. .icon-Audit:before {
  127. content: "\e90a"; }
  128. .icon-calendar:before {
  129. content: "\e90b"; }
  130. .icon-daily:before {
  131. content: "\e90c"; }
  132. .icon-flow:before {
  133. content: "\e90d"; }
  134. .icon-register:before {
  135. content: "\e90e"; }
  136. .icon-reimburse:before {
  137. content: "\e90f"; }
  138. .icon-task:before {
  139. content: "\e910"; }
  140. .icon-directory:before {
  141. content: "\e900"; }
  142. .icon-directory1:before {
  143. content: "\e901"; }
  144. .icon-me:before {
  145. content: "\e902"; }
  146. .icon-me1:before {
  147. content: "\e903"; }
  148. .icon-message:before {
  149. content: "\e904"; }
  150. .icon-message1:before {
  151. content: "\e905"; }
  152. .icon-apply:before {
  153. content: "\e908"; }
  154. .icon-apply1:before {
  155. content: "\e909"; }
  156. .icon-remove-user:before {
  157. content: "\e913"; }
  158. .icon-edit:before {
  159. content: "\e914"; }
  160. .icon-comment:before {
  161. content: "\e921"; }
  162. .icon-person_add:before {
  163. content: "\e7fe"; }
  164. .icon-update:before {
  165. content: "\e923"; }
  166. /* 进度条选中 */
  167. /* 进度条未选中 */
  168. /* 灰色 说明文本颜色 */
  169. /* 橘黄色 文本 */
  170. /* 灰色 文本清除按钮 */
  171. /* 蓝色 公司管理,登录网页版 */
  172. /* 紫色 设置 */
  173. /* 黄色 收藏 */
  174. /* 靛蓝 帮助 */
  175. /* 橘红 推荐 */
  176. /* 日报统计背景 */
  177. /* 公司管理边框颜色 */
  178. /*被选中人的背景色 浅灰蓝*/
  179. .center {
  180. text-align: center; }
  181. .over-flow-auto {
  182. overflow: auto; }
  183. .max-width-45 {
  184. max-width: 45% !important; }
  185. .input-margin {
  186. margin-left: 0.825em !important; }
  187. .link, .daily .tool a {
  188. text-decoration: none; }
  189. .clear {
  190. color: #ABABAB; }
  191. .type {
  192. text-align: center;
  193. font-size: 0.925em; }
  194. .apply-register {
  195. width: 90% !important;
  196. margin-left: 5% !important;
  197. background-color: #f2f4f4 !important;
  198. border: #e6ecef 1px solid;
  199. color: #2AA8FF !important;
  200. font-weight: 100 !important;
  201. font-size: 14px; }
  202. .striped button {
  203. height: 1px !important;
  204. min-height: 1px !important;
  205. max-height: 1px !important; }
  206. .striped-color {
  207. background-color: #197FEE; }
  208. .striped-hover {
  209. background-color: #B1DDF8; }
  210. .note {
  211. color: #868686 !important;
  212. font-size: 0.625em !important; }
  213. /* 图标圆形样式 白字 */
  214. .icon-style, .icon-man-style, .icon-woman-style {
  215. margin-top: 18px;
  216. height: 32px !important;
  217. color: white;
  218. -webkit-border-radius: 50%;
  219. border-radius: 50%;
  220. font-size: 24px !important; }
  221. .icon-color-1 {
  222. background-color: #00AAFF; }
  223. .icon-color-2 {
  224. background-color: #544D79; }
  225. .icon-color-3 {
  226. background-color: #FAA701; }
  227. .icon-color-4 {
  228. background-color: #5D75BF; }
  229. .icon-color-5 {
  230. background-color: #F25B00; }
  231. /* slide右滑 */
  232. .slide-in-right {
  233. -webkit-transform: translateX(-100%);
  234. transform: translateX(100%); }
  235. .slide-in-right.ng-enter,
  236. .slide-in-right > .ng-enter {
  237. -webkit-transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms;
  238. transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms; }
  239. .slide-in-right.ng-enter-active,
  240. .slide-in-right > .ng-enter-active {
  241. -webkit-transform: translateX(0);
  242. transform: translateX(0); }
  243. .slide-in-right.ng-leave,
  244. .slide-in-right > .ng-leave {
  245. -webkit-transition: all ease-in-out 250ms;
  246. transition: all ease-in-out 250ms; }
  247. /* slide左滑 */
  248. .slide-in-left {
  249. -webkit-transform: translateX(100%);
  250. transform: translateX(-100%); }
  251. .slide-in-left.ng-enter,
  252. .slide-in-left > .ng-enter {
  253. -webkit-transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms;
  254. transition: all cubic-bezier(0.1, 0.7, 0.1, 1) 400ms; }
  255. .slide-in-left.ng-enter-active,
  256. .slide-in-left > .ng-enter-active {
  257. -webkit-transform: translateX(0);
  258. transform: translateX(0); }
  259. .slide-in-left.ng-leave,
  260. .slide-in-left > .ng-leave {
  261. -webkit-transition: all ease-in-out 250ms;
  262. transition: all ease-in-out 250ms; }
  263. .ion-checkbox-class {
  264. padding: 1px !important; }
  265. .ion-checkbox-class img {
  266. max-width: 40px;
  267. max-height: 40px;
  268. border-radius: 50%;
  269. margin-left: 50px;
  270. margin-top: 6px; }
  271. .labelname {
  272. position: absolute !important;
  273. top: 12px !important;
  274. margin-left: 10px;
  275. font-size: 15px; }
  276. .labelrole {
  277. position: absolute;
  278. top: 29px;
  279. margin-left: 10px;
  280. color: #666;
  281. font-size: 13px; }
  282. .ul-imgs {
  283. float: left; }
  284. .ul-imgs li {
  285. float: left;
  286. padding-left: 0.4em;
  287. padding-bottom: 0.2em; }
  288. .ul-imgs img {
  289. max-width: 40px;
  290. max-height: 40px;
  291. border-radius: 50%;
  292. margin-left: 2%; }
  293. .item-emp {
  294. min-height: 0px !important;
  295. height: 52px !important; }
  296. .item-emp img {
  297. top: 6px !important; }
  298. .item-emp h3 {
  299. margin-top: -9px !important;
  300. margin-bottom: 2px !important; }
  301. .item-group {
  302. padding: 0;
  303. width: 100%;
  304. border-right: none;
  305. height: 52px; }
  306. .item-group label {
  307. position: absolute;
  308. top: 1em;
  309. left: 1em; }
  310. .item-group img {
  311. max-width: 40px;
  312. max-height: 40px;
  313. border-radius: 50%;
  314. position: absolute;
  315. top: 0.4em;
  316. right: 2.5em; }
  317. /*groupinfo*/
  318. .label-right-text {
  319. float: right;
  320. margin-right: -1.6em; }
  321. .dividertext label {
  322. position: absolute;
  323. top: 0;
  324. bottom: 8px;
  325. color: gray; }
  326. .desctext {
  327. margin-left: 16px;
  328. color: gray;
  329. margin-top: 4px; }
  330. .dividercolor {
  331. background-color: black;
  332. color: white;
  333. text-align: center;
  334. font-size: 1em; }
  335. /*dept 人员列表*/
  336. .empclass, .process-step {
  337. min-height: 52px !important; }
  338. .empclass .item-content, .process-step .item-content {
  339. max-height: 52px !important; }
  340. .empclass img, .process-step img {
  341. top: 6px !important; }
  342. .empclass h2, .process-step h2 {
  343. position: absolute;
  344. top: 9px; }
  345. .empclass h2 .ion-ios-compose-outline, .process-step h2 .ion-ios-compose-outline {
  346. padding-left: 2px;
  347. padding-top: 2px;
  348. font-size: 21px;
  349. color: #00AAFF; }
  350. .empclass p, .process-step p {
  351. position: absolute;
  352. bottom: 0.3em; }
  353. .empclass .from-p, .process-step .from-p {
  354. font-size: 12px;
  355. top: 2.7em; }
  356. .empclass .item-content, .process-step .item-content {
  357. min-height: 54px !important; }
  358. /*列表分隔符字体*/
  359. .divider-font {
  360. font-size: 1em; }
  361. .search-label {
  362. border-radius: 15px !important;
  363. height: 30px;
  364. width: 100%;
  365. margin: 0 auto; }
  366. .popver_view, .details-popup, .details-popup-other {
  367. height: 84px;
  368. width: 114px !important;
  369. background-color: #868686; }
  370. .popver_view .item-content, .details-popup .item-content, .details-popup-other .item-content,
  371. .popver_view .item-button, .details-popup .item-button, .details-popup-other .item-button {
  372. background-color: #868686;
  373. color: white;
  374. padding: 14px; }
  375. .popver_view .scroll-content, .details-popup .scroll-content, .details-popup-other .scroll-content {
  376. margin: 0 !important; }
  377. .popver_view .item, .details-popup .item, .details-popup-other .item {
  378. margin: -6px;
  379. border-top-width: none !important; }
  380. .popver_view .popover-arrow:after, .details-popup .popover-arrow:after, .details-popup-other .popover-arrow:after {
  381. background-color: #868686; }
  382. .popver_view .scroll-bar, .details-popup .scroll-bar, .details-popup-other .scroll-bar {
  383. border: none !important; }
  384. .popover-backdrop {
  385. background-color: transparent !important; }
  386. .image-backdrop, .popover-backdrop1 {
  387. background-color: rgba(0, 0, 0, 0.8);
  388. position: fixed;
  389. top: 0;
  390. left: 0;
  391. z-index: 100;
  392. width: 100%;
  393. height: 100%; }
  394. .image-backdrop .img-responsive, .popover-backdrop1 .img-responsive {
  395. position: relative;
  396. top: 10%;
  397. bottom: 10%;
  398. z-index: 10;
  399. display: block;
  400. height: 80%;
  401. width: 100%;
  402. box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4); }
  403. .popover-backdrop1 .ion-ios-trash-outline {
  404. font-size: 50px;
  405. color: white;
  406. opacity: 0.8;
  407. position: absolute;
  408. bottom: 4%;
  409. left: 4%;
  410. z-index: 999; }
  411. /* report */
  412. .datetime, .daily .time {
  413. position: absolute;
  414. top: 10px;
  415. right: 10px; }
  416. .daily .blob {
  417. margin-top: 10px; }
  418. .daily .blob img {
  419. width: 48px;
  420. height: 48px;
  421. margin: 3px;
  422. background-color: #F5F5F5;
  423. border-radius: 2px; }
  424. .daily .tool {
  425. padding: 0;
  426. text-align: center; }
  427. .daily .tool a {
  428. color: #D0D0D0; }
  429. .daily-color {
  430. border: 1px solid #197FEE;
  431. color: white !important;
  432. background-color: #197FEE !important; }
  433. .daily-hover {
  434. border: 1px solid #197FEE;
  435. color: #197FEE !important;
  436. background-color: white !important; }
  437. .icon-show .checkbox-icon {
  438. display: none; }
  439. .icon-show .item-content {
  440. color: #868686; }
  441. .item-divider-deptmoban {
  442. padding-top: 4px;
  443. font-size: 14px; }
  444. .divider-editmoban-text {
  445. height: 50px;
  446. padding-top: 2px;
  447. color: #868686; }
  448. .dividertextcolor {
  449. color: #00AAFF;
  450. border-top: none; }
  451. .formfield .icon {
  452. position: absolute !important;
  453. top: 0px !important;
  454. left: 11.2em !important; }
  455. .formfield label {
  456. color: #868686; }
  457. .see-list {
  458. border-top: 1px solid #DDDDDD;
  459. margin-top: 5px;
  460. padding-top: 15px; }
  461. .see-list > img {
  462. border-radius: 50%;
  463. height: 28px;
  464. width: 28px;
  465. margin-right: 6px; }
  466. .check-dept-li {
  467. background-color: white;
  468. height: 52px;
  469. padding-top: 16px;
  470. border-bottom: 1px solid #ddd; }
  471. .check-dept-li .icon {
  472. float: right;
  473. padding-right: 14px;
  474. color: #868686;
  475. padding-top: 2px; }
  476. .check-dept-li .deptname {
  477. width: 65%;
  478. display: inline-block;
  479. height: 100%;
  480. padding-bottom: 10px; }
  481. .dept-icon li {
  482. height: 38px;
  483. width: 40px;
  484. border-radius: 50%;
  485. background: #868686;
  486. vertical-align: middle;
  487. text-align: center;
  488. padding-top: 10px;
  489. font-size: 12px;
  490. margin-left: 3px;
  491. margin-top: 0px;
  492. padding-left: 0; }
  493. .field-radio {
  494. height: 52px; }
  495. .field-radio .radio-content .item-content {
  496. padding-top: 8px; }
  497. .field-radio .radio-content .item-content p {
  498. font-size: 13px; }
  499. .mobanitem {
  500. padding: 0; }
  501. .mobanitem .itemfield {
  502. height: 40px;
  503. vertical-align: middle;
  504. padding-top: 7px;
  505. font-size: 12px; }
  506. .disabled {
  507. color: #868686; }
  508. .clickactive {
  509. background-color: #d9d9d9;
  510. border-color: #ccc; }
  511. .selectfielditem {
  512. background-color: #fff;
  513. height: 45px; }
  514. .selectfielditem input {
  515. height: 18px;
  516. padding-top: 0 !important;
  517. padding-bottom: 7px !important;
  518. margin-top: 0 !important; }
  519. /* report details */
  520. .details-popup {
  521. height: 126px !important; }
  522. .details-popup-other {
  523. height: 42px !important; }
  524. .popup {
  525. border-radius: 4px !important; }
  526. .input-left-text {
  527. padding-right: 10px; }
  528. /* account */
  529. .radius-30 {
  530. border-radius: 30px; }
  531. .account-back-color i {
  532. color: #11c1f3; }
  533. .account-botton {
  534. margin-top: 0 !important;
  535. margin-bottom: 0 !important;
  536. color: red !important;
  537. border-bottom: solid 1px #DDDDDD !important; }
  538. textarea {
  539. resize: none; }
  540. .bigview {
  541. height: 170px; }
  542. .bigview .ul-imgs {
  543. width: 100%;
  544. overflow-x: auto !important;
  545. overflow-y: auto !important; }
  546. .bigview button {
  547. height: 30px;
  548. padding-left: 8px !important;
  549. padding-right: 8px !important;
  550. margin-top: 130px;
  551. opacity: 0.8; }
  552. .footer-div {
  553. opacity: 0.8; }
  554. .footer-div .cirl-i {
  555. font-size: 20px;
  556. padding: 3px; }
  557. /* report see count */
  558. .init-load {
  559. top: 45%; }
  560. .text-margin {
  561. margin-top: 10px; }
  562. .text-line-height {
  563. line-height: 36px; }
  564. .daily-count-back {
  565. height: 80px;
  566. background-color: #232637;
  567. color: white;
  568. text-align: center;
  569. padding-top: 8px; }
  570. .daily-count-back > span:first-child {
  571. border-right: 1px solid #868686; }
  572. .daily-count-back > span:first-child p {
  573. font-size: 32px;
  574. margin-top: 10px; }
  575. .daily-count-back > span p {
  576. color: white;
  577. font-size: 16px;
  578. margin-top: 16px; }
  579. .daily-count-back h4 {
  580. color: #868686 !important; }
  581. .daily-count-back h4 span {
  582. color: white;
  583. font-size: 28px; }
  584. .daily-count-height-40 {
  585. height: 40px; }
  586. .float-right {
  587. float: right; }
  588. .border-right {
  589. border-right: 1px solid #868686; }
  590. .item-click-active:active, .div-active:active {
  591. background-color: #d9d9d9; }
  592. .div-active {
  593. margin-top: 5px;
  594. margin-bottom: 5px; }
  595. .daily-count-back-submit {
  596. background-color: #FF8905 !important; }
  597. /* workatd */
  598. .workatd-checkin-title {
  599. padding: 25px 0 25px 15px;
  600. color: white; }
  601. .workatd-checkin-title .title {
  602. color: white;
  603. font-weight: bold; }
  604. .workatd-checkin-title .date1 {
  605. font-size: 13px; }
  606. .workatd-checkin-title .date2 {
  607. font-size: 13px;
  608. color: #00009F;
  609. /*margin-top: 2px;*/ }
  610. /* task */
  611. /*postedtask*/
  612. .item-row {
  613. padding: 0;
  614. border-width: 1px;
  615. margin: 0;
  616. background: #f5f5f5;
  617. border-top: none;
  618. height: 52px; }
  619. .item-row .col {
  620. text-align: center;
  621. background: #f5f5f5;
  622. line-height: 52px; }
  623. .item-row .col i {
  624. font-size: 20px;
  625. color: #ddd; }
  626. .item-row .v-line {
  627. line-height: 52px;
  628. font-size: 26px;
  629. color: #ddd;
  630. padding-top: 2px; }
  631. .divider-top {
  632. border-top: none; }
  633. .item-divider {
  634. margin-top: -3px; }
  635. .item-sort:first-child {
  636. border-top: none;
  637. margin-top: -2px; }
  638. .select-div {
  639. height: 50%;
  640. background: white;
  641. position: fixed;
  642. width: 100%;
  643. top: 52px;
  644. z-index: 3; }
  645. .select-back {
  646. height: 60%;
  647. width: 100%;
  648. background: #ddd;
  649. opacity: 0.6;
  650. position: fixed;
  651. width: 100%;
  652. top: 40%;
  653. z-index: 2; }
  654. .radio-icon {
  655. color: #11c1f3; }
  656. .item-radio input:checked + .radio-content .item-content {
  657. background: white;
  658. color: #11c1f3; }
  659. .hidden-item {
  660. display: none; }
  661. .overflow-hidden {
  662. overflow: hidden; }
  663. .updown-color {
  664. color: #11c1f3 !important; }
  665. .task-data {
  666. overflow-y: scroll;
  667. height: 90.5%; }
  668. .right-ion {
  669. font-size: 25px !important; }
  670. .none-content {
  671. color: #ABABAB;
  672. font-size: 25px;
  673. margin: 0 auto;
  674. line-height: 200px;
  675. opacity: 0.6; }
  676. .task-header {
  677. height: 90px !important; }
  678. .task-header img {
  679. top: 16px !important;
  680. max-width: 60px !important;
  681. max-height: 60px !important; }
  682. .task-header h2 {
  683. position: absolute;
  684. top: 1.9em;
  685. left: 85px; }
  686. .task-header p {
  687. position: absolute;
  688. top: 4em;
  689. left: 85px; }
  690. .task-details p {
  691. padding-top: 4px; }
  692. .colorred {
  693. color: red; }
  694. .border-red {
  695. border-color: red; }
  696. .colorgray {
  697. color: gray; }
  698. .task-divider {
  699. min-height: 20px !important; }
  700. .task-button-div {
  701. border-top: 1px solid #ddd;
  702. background: white;
  703. height: 40px;
  704. width: 100%;
  705. z-index: 20; }
  706. .task-button-div div {
  707. float: left;
  708. margin-left: 16px;
  709. margin-top: 10px; }
  710. .task-button-div div label {
  711. margin-left: 16px;
  712. color: #ddd; }
  713. .task-button-div hr {
  714. border-color: orange;
  715. padding-right: 4px !important; }
  716. .slide-task {
  717. clear: both; }
  718. .footer-task a {
  719. border-right: 1px solid #ddd;
  720. font-size: 1em !important; }
  721. .footer-task a:last-child {
  722. border-right: none; }
  723. .footer-task i {
  724. font-size: 2em !important; }
  725. .childtask {
  726. background: #ddd;
  727. padding: 4px !important;
  728. margin-left: 10px !important;
  729. border-radius: 10px; }
  730. .childtask label {
  731. padding-left: 4px; }
  732. .comment-empty {
  733. color: #ddd;
  734. margin-top: 20%;
  735. font-size: 16px; }
  736. .comment-box {
  737. min-height: 360px;
  738. background: white; }
  739. .comment-box textarea {
  740. width: 100%;
  741. padding-top: 8px;
  742. padding-left: 4px;
  743. min-height: 200px; }
  744. .comment-box .task-comment-img {
  745. height: 20%;
  746. width: 100%;
  747. position: absolute;
  748. bottom: 30px; }
  749. .comment-box .task-comment-img img {
  750. max-height: 80px;
  751. max-width: 80px; }
  752. .task-comment-img {
  753. height: 20%;
  754. width: 100%; }
  755. .task-comment-img img {
  756. max-height: 80px;
  757. max-width: 80px; }
  758. .child-task-desc {
  759. width: 80% !important; }
  760. .top-mark, .joincomp-tip {
  761. height: 54px;
  762. background: #33cd5f;
  763. color: #fff; }
  764. .top-mark .title, .joincomp-tip .title {
  765. text-align: center; }
  766. .top-mark .title label, .joincomp-tip .title label {
  767. font-size: 20px;
  768. padding-left: 4px;
  769. line-height: 52px; }
  770. .top-mark .title .ion-ios-checkmark-outline, .joincomp-tip .title .ion-ios-checkmark-outline {
  771. font-size: 25px; }
  772. .obligate-item {
  773. margin-top: 40px; }
  774. .apply-list .item-apply div {
  775. float: right;
  776. position: absolute;
  777. top: 22%;
  778. right: 2px; }
  779. .apply-list .item-apply p {
  780. padding-top: 2px;
  781. color: #11c1f3; }
  782. .apply-list .item-apply button {
  783. margin-right: 15px;
  784. min-height: 20px !important;
  785. min-width: 60px !important; }
  786. .apply-list .item-apply:first-child {
  787. border-top: none; }
  788. .comment-imgs img {
  789. padding: 2px; }
  790. .camera-item > div, .task-create-content > div > div {
  791. float: left;
  792. width: 48px;
  793. height: 48px;
  794. margin: 3px;
  795. background-color: #F5F5F5;
  796. border-radius: 2px; }
  797. .camera-item > div > i, .task-create-content > div > div > i {
  798. font-size: 24px;
  799. line-height: 48px; }
  800. .camera-item > div img, .task-create-content > div > div img {
  801. width: 48px;
  802. height: 48px; }
  803. .task-create-content > div:first-child {
  804. border-top: #DDDDDD solid 1px;
  805. border-bottom: none; }
  806. .task-create-content > div {
  807. border-top: none;
  808. overflow: auto; }
  809. .task-create-member {
  810. overflow: auto; }
  811. .task-create-member > div {
  812. float: left;
  813. width: 4em;
  814. margin: 10px 0; }
  815. .task-create-member > div > .ion-ios-minus {
  816. color: red;
  817. position: absolute; }
  818. .task-create-member > div > .ion-ios-close {
  819. font-size: 20px;
  820. color: #444;
  821. position: absolute;
  822. opacity: 0.5; }
  823. .task-create-member > div > img {
  824. width: 40px;
  825. height: 40px;
  826. border-radius: 50%;
  827. margin-top: 4px; }
  828. .task-create-member > div > p {
  829. font-size: 10px;
  830. margin-top: -6px; }
  831. .task-create-member > div > a > i {
  832. font-size: 48px !important;
  833. margin-bottom: 10px !important; }
  834. .task-create-member > div > a > span {
  835. font-size: 10px; }
  836. .task-create-member-p {
  837. color: #FF8905 !important; }
  838. .task-comment-icon i {
  839. font-size: 4em !important; }
  840. .workatd-setting-item .date1 {
  841. font-size: 11px;
  842. padding-top: 5px; }
  843. .workatd-setting-item .date2 {
  844. font-size: 11px;
  845. padding-top: 5px; }
  846. .comment-div hr {
  847. width: 35px;
  848. margin-left: 0px; }
  849. /* task-icon-position */
  850. .task-icon-position {
  851. position: absolute;
  852. right: 16px;
  853. top: 5px;
  854. font-size: 4em;
  855. color: #33CD5F; }
  856. ion-content {
  857. overflow-y: auto !important; }
  858. .icon-man-woman-style {
  859. position: absolute;
  860. top: 0px !important;
  861. margin-left: 10px !important;
  862. font-size: 2em; }
  863. .icon-man-style {
  864. color: #7AC3FE; }
  865. .icon-woman-style {
  866. color: #FF809D; }
  867. .schedule-data {
  868. overflow-y: scroll;
  869. height: 90.5%; }
  870. .schedule-data-receive {
  871. font-size: 12px !important; }
  872. .schedule-template-1 {
  873. font-size: 12px !important;
  874. color: #FFAC92 !important; }
  875. .schedule-template-2 {
  876. font-size: 15px !important;
  877. font-weight: 580; }
  878. .schedule-template-3 {
  879. font-size: 12px !important; }
  880. .schedule-details-header {
  881. background-color: #61CE5B !important; }
  882. .schedule-details-header p {
  883. padding-top: 4px;
  884. font-size: 20px;
  885. color: #FFFFFF !important; }
  886. .schedule-details-header span {
  887. font-size: 15px;
  888. color: #FFFFFF !important; }
  889. .schedule-details-header-disable {
  890. background-color: #B0B0B0 !important; }
  891. .schedule-details-header-disable p {
  892. padding-top: 4px;
  893. font-size: 20px; }
  894. .schedule-details-header-disable span {
  895. font-size: 15px;
  896. color: #FFFFFF !important; }
  897. .schedule-details-footer a {
  898. border-right: 1px solid #ddd;
  899. font-size: 1em !important; }
  900. .schedule-details-footer a:last-child {
  901. border-right: none; }
  902. .schedule-details-footer i {
  903. font-size: 2em !important; }
  904. .schedule-icon-position {
  905. position: absolute;
  906. right: 16px;
  907. top: 5px;
  908. font-size: 4em;
  909. color: #FF3A90; }
  910. .schedule-icon-position1 {
  911. position: absolute;
  912. right: 20px !important;
  913. top: -4px !important;
  914. font-size: 50px !important;
  915. font-color: white !important; }
  916. .audituser {
  917. background: #f00;
  918. padding: 0 5px;
  919. border-radius: 50%;
  920. color: white; }
  921. ion-header-bar {
  922. background-color: #0092e6 !important; }
  923. ion-header-bar i,
  924. ion-header-bar div,
  925. ion-header-bar button,
  926. ion-header-bar title,
  927. ion-header-bar h1,
  928. ion-header-bar .title {
  929. color: white !important; }
  930. .fix-to-top {
  931. position: fixed !important;
  932. z-index: 999;
  933. width: 100%;
  934. top: 44px; }
  935. .fullscreen-image {
  936. max-width: 100%;
  937. max-height: 100%;
  938. bottom: 0;
  939. left: 0;
  940. margin: auto;
  941. overflow: auto;
  942. position: fixed;
  943. right: 0;
  944. top: 0;
  945. z-index: 101; }
  946. .striped-color {
  947. background-color: #0092e6 !important;
  948. height: 2px; }
  949. .process-public {
  950. text-align: center;
  951. padding: 0; }
  952. .process-moban {
  953. border-color: #ccc;
  954. background-color: #D9D9D9;
  955. padding-left: 0;
  956. padding-right: 0; }
  957. .process-moban:last-child {
  958. border-bottom: 1px solid #ddd;
  959. padding-bottom: 0; }
  960. .process-moban .process-item {
  961. text-align: center;
  962. border-right: none;
  963. border-bottom: none;
  964. margin: 0; }
  965. .process-ion {
  966. font-size: 60px; }
  967. .process-moban-checkbox {
  968. font-size: 28px;
  969. position: absolute;
  970. top: 4%;
  971. right: 4%; }
  972. .bgColorClass, .process-moban .process-item.activated {
  973. background-color: #f8f8f8; }
  974. .process-step h2 {
  975. left: 3.4em; }
  976. .process-step p {
  977. left: 4.6em; }
  978. .process-step .process-number {
  979. width: 24px;
  980. height: 24px;
  981. line-height: 24px;
  982. border-radius: 50%;
  983. padding-top: 2px;
  984. background-color: #11c1f3;
  985. color: white;
  986. text-align: center;
  987. vertical-align: baseline;
  988. display: block; }
  989. .process-desc {
  990. width: 100%;
  991. padding: 6px; }
  992. .current-account .cirl-i {
  993. font-size: 20px;
  994. padding: 3px;
  995. color: #ddd;
  996. top: -6px; }
  997. .current-account .ion-android-globe {
  998. font-size: 34px; }
  999. .account-wrap {
  1000. background: white; }
  1001. .account-wrap .item.activated {
  1002. background-color: white !important; }
  1003. .account-wrap .account-radio {
  1004. top: 1px;
  1005. margin-left: 12%;
  1006. border-color: #f0f0f0;
  1007. border-left: none; }
  1008. .account-wrap .account-radio .item-content {
  1009. padding: 7px 18px 7px 7px; }
  1010. .account-wrap .account-radio div.radio-content .item-content {
  1011. vertical-align: middle; }
  1012. .account-wrap .account-radio div.radio-content:first-child {
  1013. border-top: none; }
  1014. .account-wrap .account-radio div.radio-content i {
  1015. padding: 0;
  1016. padding-right: 8px;
  1017. padding-top: 4px; }
  1018. .account-wrap .account-radio span {
  1019. color: #666;
  1020. font-size: 14px;
  1021. margin-bottom: 2px; }
  1022. .account-wrap .account-radio input:checked + .radio-content .item-content {
  1023. background-color: white; }
  1024. .account-wrap .account-radio input:checked + .radio-content .item-content span {
  1025. color: #11c1f3; }
  1026. .comp-item {
  1027. border: 1px solid #f0f0f0;
  1028. border-bottom: none; }
  1029. .comp-item .ion-person {
  1030. color: #11c1f3; }
  1031. .comp-item label {
  1032. top: -4px;
  1033. font-size: 110%;
  1034. padding-left: 6px; }
  1035. .comp-item p {
  1036. margin-left: 7px;
  1037. margin-top: 4px;
  1038. margin-bottom: 0;
  1039. padding-bottom: none; }
  1040. .comp-item img {
  1041. top: 12px !important;
  1042. padding-bottom: 0;
  1043. margin: 0;
  1044. max-width: 48px !important;
  1045. max-height: 48px !important; }
  1046. .comp-op {
  1047. width: 100%;
  1048. background-color: white; }
  1049. .comp-op div {
  1050. margin-left: 21%;
  1051. height: 50px;
  1052. vertical-align: middle;
  1053. border-top: 1px solid #f0f0f0;
  1054. margin-top: 1px; }
  1055. .comp-op div label {
  1056. line-height: 50px;
  1057. vertical-align: middle;
  1058. color: #666; }
  1059. .comp-op div .button {
  1060. position: absolute;
  1061. min-height: 30px !important;
  1062. line-height: 30px !important;
  1063. width: 70px;
  1064. right: 10%;
  1065. margin-top: 10px; }
  1066. .comp-op:last-child {
  1067. border-bottom: 1px solid #f0f0f0; }
  1068. .item-comp {
  1069. border: 1px solid #f0f0f0; }
  1070. .item-comp .compname {
  1071. font-size: 16px; }
  1072. .comp-edit-button {
  1073. margin: 0 auto !important;
  1074. position: absolute;
  1075. bottom: 5%;
  1076. width: 100%; }
  1077. .popup-head {
  1078. padding: 0 !important;
  1079. padding-top: 5px !important;
  1080. border-bottom: none !important; }
  1081. .popup-body {
  1082. padding: 0 !important;
  1083. overflow: hidden !important; }
  1084. .popup-edit-comp {
  1085. width: 92%;
  1086. margin-left: 4%; }
  1087. .popup-edit-comp input {
  1088. padding-left: 4px; }
  1089. .popup-edit-comp label {
  1090. padding-left: 2%; }
  1091. .images-div-top {
  1092. height: 20px;
  1093. width: 100%;
  1094. line-height: 20px;
  1095. margin-top: 10px; }
  1096. .comp-logo-box {
  1097. width: 100%;
  1098. height: 120px;
  1099. text-align: center;
  1100. background-color: #11c1f3;
  1101. padding: 0; }
  1102. .comp-logo-box img {
  1103. margin-top: 6%;
  1104. height: 60px;
  1105. width: 60px;
  1106. border-radius: 50%; }
  1107. .comp-logo-box div {
  1108. color: white; }
  1109. .compname-div {
  1110. width: 90% !important;
  1111. margin-left: 5%; }
  1112. .line-hr {
  1113. padding-top: 10px;
  1114. border-top: 1px solid #ddd; }
  1115. .create-comp-button {
  1116. margin-top: 8% !important;
  1117. margin-bottom: 10% !important;
  1118. width: 90% !important;
  1119. margin-left: 5% !important;
  1120. background-color: #197FEE !important;
  1121. color: white !important;
  1122. font-weight: bold !important;
  1123. background-color: #11c1f3 !important; }
  1124. .create-comp-content {
  1125. padding-top: 0 !important; }
  1126. .current-account {
  1127. border-color: #f0f0f0;
  1128. padding-top: 14px; }
  1129. .current-account .cirl-i {
  1130. padding: 0; }
  1131. .newcomp-modalview .bar {
  1132. background-size: 100% 0px !important; }
  1133. .complist h2 {
  1134. vertical-align: middle;
  1135. line-height: 40px; }
  1136. .complist img {
  1137. top: 5px !important; }
  1138. .joincomp-tip {
  1139. position: absolute;
  1140. width: 100%;
  1141. z-index: 10;
  1142. opacity: 0.8;
  1143. background: #FF8905;
  1144. height: 50px; }
  1145. .joincomp-tip .title label {
  1146. font-size: 16px !important; }
  1147. .joincomp-tip .title .ion-ios-checkmark-outline {
  1148. font-size: 20px; }
  1149. .taskcontent-checkbox {
  1150. width: 12%; }
  1151. .rj-list .list {
  1152. width: 95%;
  1153. margin-right: auto;
  1154. margin-top: -18px;
  1155. margin-bottom: -18px; }
  1156. .rj-list .list .rj-item {
  1157. border-left: none;
  1158. border-right: none;
  1159. border-bottom: none;
  1160. padding-left: 10px;
  1161. padding-top: 6px;
  1162. padding-bottom: 6px;
  1163. border-color: #f0f0f0; }
  1164. .rj-contacts-item {
  1165. padding: 0px !important; }
  1166. .rj-item .rj-contacts-pic {
  1167. color: white;
  1168. height: 36px;
  1169. width: 36px;
  1170. line-height: 36px;
  1171. float: left;
  1172. font-size: 28px;
  1173. text-align: center; }
  1174. .rj-item h2 {
  1175. padding-left: 20px;
  1176. position: absolute;
  1177. margin: auto !important;
  1178. top: 0;
  1179. bottom: 0;
  1180. left: 36px;
  1181. height: 32px;
  1182. line-height: 32px; }
  1183. .rj-contacts-pic img {
  1184. width: 36px;
  1185. height: 36px; }
  1186. .rj-contacts-index-bar {
  1187. background-color: #F5F5F5;
  1188. padding-left: 10px;
  1189. height: 20px;
  1190. line-height: 20px;
  1191. font-size: 80%;
  1192. color: #545454;
  1193. padding-top: 2px; }
  1194. .rj-contacts-right-bar {
  1195. position: fixed;
  1196. right: 0;
  1197. top: 71px;
  1198. width: 20px;
  1199. height: 464px;
  1200. z-index: 2;
  1201. text-align: center;
  1202. font-size: 80%;
  1203. color: #545454; }
  1204. .rj-contacts-right-bar div {
  1205. height: 16px; }
  1206. .rj-contacts-middle-bar {
  1207. position: fixed;
  1208. margin: auto;
  1209. left: 0;
  1210. top: 0;
  1211. right: 0;
  1212. bottom: 0;
  1213. height: 60px;
  1214. width: 60px;
  1215. line-height: 60px;
  1216. text-align: center;
  1217. color: #FFF;
  1218. font-size: 300%;
  1219. background-color: rgba(0, 0, 0, 0.5); }
  1220. .notice-input .input-label {
  1221. max-width: 50px; }
  1222. .notice-input .notice-resvicename {
  1223. color: #11c1f3;
  1224. font-size: 16px;
  1225. padding-right: 2px; }
  1226. .input-btn-row {
  1227. padding: 1px 0 0 0;
  1228. border: 1px solid #ddd; }
  1229. .input-btn-row .item-input {
  1230. border: none; }
  1231. .input-btn-row .col {
  1232. padding: 0; }
  1233. .input-btn-row .button {
  1234. padding: 0;
  1235. min-height: 40px;
  1236. margin: 3px; }
  1237. .postnotice-footer .notice-first-ion {
  1238. font-size: 30px;
  1239. margin-left: 10px; }
  1240. .postnotice-footer .notice-right-ion {
  1241. margin-left: 30px; }
  1242. .postnotice-footer .notice-right-ion i {
  1243. font-size: 30px; }
  1244. .notice-title {
  1245. width: 60%;
  1246. float: left;
  1247. border-right: none;
  1248. top: 1px; }
  1249. .notice-div-button {
  1250. height: 47px;
  1251. border-bottom: 1px solid #ddd; }
  1252. .notice-div-button .button {
  1253. min-height: 30px !important;
  1254. line-height: 30px !important;
  1255. width: 50px;
  1256. margin-top: 8px;
  1257. margin-left: 10px;
  1258. padding: 2px; }
  1259. .notice-content textarea {
  1260. padding-left: 16px; }
  1261. .notice-content .div-address {
  1262. margin: 10px 0 0 16px; }
  1263. .notice-content .div-address i {
  1264. color: #11c1f3;
  1265. padding-right: 2px; }
  1266. .notice-details-voteitem {
  1267. border-left-width: 0px !important;
  1268. border-right-width: 0px !important; }
  1269. .notice-details-button {
  1270. height: 40px;
  1271. min-height: 40px;
  1272. width: 90px; }
  1273. .notice-details-giveupbutton {
  1274. height: 40px;
  1275. min-height: 40px; }
  1276. .notice-details-hr {
  1277. height: 1px;
  1278. border: none;
  1279. border-top: 1px solid #F0F0F0; }
  1280. .notice-details-warn {
  1281. height: 40px;
  1282. min-height: 40px;
  1283. width: 70%;
  1284. margin: 0 15% 4% 15%; }
  1285. .notice-result-title {
  1286. border-left: solid 3px #ffc900;
  1287. padding-left: 10px; }
  1288. .typelist .ion-edit {
  1289. font-size: 20px;
  1290. padding-left: 4px; }
  1291. .type-icon {
  1292. padding: 6px 10px 12px 10px; }
  1293. .type-icon li {
  1294. margin: 6px 8px;
  1295. line-height: 38px;
  1296. padding-top: 2px; }
  1297. .type-icon li .ion-ios-checkmark-empty {
  1298. font-size: 40px;
  1299. color: white; }
  1300. .type-icon-bg li {
  1301. background-color: white; }
  1302. .type-icon-bg li i {
  1303. font-size: 30px; }
  1304. .unacitvecolor {
  1305. color: #cccccc !important; }
  1306. .acitvecolor {
  1307. color: white !important; }
  1308. .border-style .item {
  1309. border-color: #f0f0f0 !important; }
  1310. .audit-list .item-thumbnail-left,
  1311. .audit-list .item-thumbnail-left .item-content {
  1312. min-height: 0px !important;
  1313. max-height: 60px !important;
  1314. border-color: #f0f0f0; }
  1315. .audit-list .item-thumbnail-left p,
  1316. .audit-list .item-thumbnail-left .item-content p {
  1317. height: 8px; }
  1318. .audit-list .item-content {
  1319. padding-left: 72px;
  1320. padding-top: 14px; }
  1321. .audit-list img {
  1322. max-width: 40px !important;
  1323. max-height: 40px !important;
  1324. left: 16px !important; }
  1325. .audit-list .label-right-text {
  1326. position: absolute;
  1327. top: 22px;
  1328. right: 50px;
  1329. max-width: 50%;
  1330. color: gray; }
  1331. .audit-list .ion-chevron-right {
  1332. color: #f0f0f0; }
  1333. .auditemp-box, .stepmfitembox {
  1334. padding-right: 0px;
  1335. color: gray;
  1336. padding-bottom: 0px; }
  1337. .auditemp-box .auditstepbox, .stepmfitembox .auditstepbox {
  1338. border: none;
  1339. width: 100%;
  1340. min-height: 60px;
  1341. border-top: 1px solid #F0F0F0;
  1342. margin-top: 14px;
  1343. padding-top: 6px;
  1344. padding-left: 0px; }
  1345. .auditemp-box .auditstepbox .audit-member-div, .stepmfitembox .auditstepbox .audit-member-div {
  1346. float: left;
  1347. margin: 6px 12px; }
  1348. .auditemp-box .auditstepbox .audit-member-div img, .stepmfitembox .auditstepbox .audit-member-div img {
  1349. height: 40px;
  1350. width: 40px;
  1351. border-radius: 50%; }
  1352. .auditemp-box .auditstepbox .audit-member-div p, .stepmfitembox .auditstepbox .audit-member-div p {
  1353. text-align: right;
  1354. padding-right: 3px;
  1355. color: gray; }
  1356. .auditemp-box .auditstepbox .audit-member-div .ion-ios-close, .stepmfitembox .auditstepbox .audit-member-div .ion-ios-close {
  1357. font-size: 20px;
  1358. color: #b9b9c8;
  1359. position: relative;
  1360. top: -22px;
  1361. right: -6px; }
  1362. .auditemp-box .auditstepbox .audit-member-div .p-apply, .stepmfitembox .auditstepbox .audit-member-div .p-apply {
  1363. text-align: center;
  1364. position: absolute;
  1365. top: 55px;
  1366. left: 30px; }
  1367. .member-add .ion-ios-plus-outline {
  1368. font-size: 50px;
  1369. color: #dddddd; }
  1370. .member-add p {
  1371. padding-top: 3px; }
  1372. .item-border {
  1373. border-color: #F0F0F0;
  1374. border-bottom: none; }
  1375. .stepmfitembox {
  1376. padding-top: 0; }
  1377. .stepmfitembox .stepmfitem {
  1378. border: none;
  1379. margin-left: -16px; }
  1380. .stepmfitembox .stepmfitem .button {
  1381. position: absolute;
  1382. min-height: 32px !important;
  1383. line-height: 32px !important;
  1384. width: 70px;
  1385. right: 6%;
  1386. top: 16px; }
  1387. .stepmfitembox .stepmfitemdiv {
  1388. margin-top: 0; }
  1389. .stepmfitembox .stepmfitemdiv label {
  1390. color: black; }
  1391. .text-input .input-label {
  1392. width: 14%; }
  1393. .record-picture-box .auditstepbox div {
  1394. float: left;
  1395. text-align: center;
  1396. line-height: 54px;
  1397. width: 48px;
  1398. vertical-align: middle;
  1399. background: #F5F5F5;
  1400. border-radius: 4px;
  1401. margin-right: 4px;
  1402. margin-bottom: 16px; }
  1403. .record-picture-box .auditstepbox div .ion-image {
  1404. font-size: 30px;
  1405. opacity: 0.6; }
  1406. .record-picture-box .auditstepbox img {
  1407. border: none !important;
  1408. min-width: 50px !important;
  1409. min-height: 50px !important; }
  1410. .paytype-item-box {
  1411. width: 100%;
  1412. float: left;
  1413. border-right: 1px solid #f0f0f0; }
  1414. .paytype-item {
  1415. float: left;
  1416. width: 25.5%;
  1417. border-right: none;
  1418. margin-top: 1px;
  1419. border-top: 0;
  1420. text-align: center; }
  1421. .paytype-item .ion {
  1422. font-size: 34px; }
  1423. .paytype-item .col {
  1424. font-size: 14px; }
  1425. .paytype-item:last-child {
  1426. border-right: 1px solid #ccc; }
  1427. .bill-record-box {
  1428. border-top: 1px solid #f0f0f0;
  1429. border-color: #f0f0f0;
  1430. margin-top: 12px;
  1431. padding: 0;
  1432. padding-top: 2px;
  1433. padding-bottom: 2px; }
  1434. .bill-record-box .item {
  1435. margin-right: 0;
  1436. border: 0; }
  1437. .bill-sum {
  1438. text-align: right;
  1439. line-height: 45px;
  1440. padding-right: 16px; }
  1441. .edit-text-label {
  1442. float: right;
  1443. padding-right: 16px; }
  1444. .bill-auditlist-box .item-content {
  1445. background: none; }
  1446. .bill-auditlist-box .item {
  1447. background: none;
  1448. border: none;
  1449. padding-top: -2px !important; }
  1450. .bill-auditlist-box .item-divider {
  1451. padding-top: 0px; }
  1452. .bill-auditlist-box .bill-audit-item {
  1453. background: none; }
  1454. .bill-auditlist-box .bill-audit-item img {
  1455. border: 1px solid #f5f5f5;
  1456. padding: 1px;
  1457. border-radius: 50%;
  1458. min-width: 42px !important;
  1459. min-height: 42px !important; }
  1460. .customer-op {
  1461. height: 20px;
  1462. width: 100%;
  1463. line-height: 20px;
  1464. margin-top: 10px; }
  1465. .image-list-thumb {
  1466. padding: 2px 2px 2px 2px;
  1467. height: 100px; }
  1468. .image-modal {
  1469. width: 100% !important;
  1470. height: 100%;
  1471. top: 0 !important;
  1472. left: 0 !important; }
  1473. .transparent {
  1474. background: transparent !important; }
  1475. .slider {
  1476. width: 100%;
  1477. height: 100%; }
  1478. .img-popver-pad {
  1479. margin: 2px 0 0 2px; }
  1480. .border-none {
  1481. border: none; }
  1482. .h-li {
  1483. width: 2em;
  1484. height: 2em;
  1485. text-align: center;
  1486. line-height: 2em;
  1487. border-radius: 1em;
  1488. background: dodgerblue;
  1489. margin: 0 1em;
  1490. display: inline-block;
  1491. color: white;
  1492. position: relative; }
  1493. .h-li::before {
  1494. content: '';
  1495. position: absolute;
  1496. top: .9em;
  1497. left: -4em;
  1498. width: 4em;
  1499. height: .2em;
  1500. background: dodgerblue;
  1501. z-index: -1; }
  1502. .h-li:first-child::before {
  1503. display: none; }
  1504. .active-li {
  1505. background: dodgerblue; }
  1506. .active-li ~ .h-li {
  1507. background: lightblue; }
  1508. .active-li ~ .h-li::before {
  1509. background: lightblue; }
  1510. .box-shadow {
  1511. box-shadow: 10px 14px #5D75BF; }
  1512. .circle {
  1513. width: 32px;
  1514. height: 32px;
  1515. display: inline-block;
  1516. background: #0092e6;
  1517. -moz-border-radius: 16px;
  1518. -webkit-border-radius: 16px;
  1519. border-radius: 16px;
  1520. text-align: center;
  1521. line-height: 32px;
  1522. font-size: 1.5em;
  1523. padding: 2px;
  1524. border-color: #fff; }