common.css 40 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971
  1. ::-webkit-scrollbar-track {
  2. border-radius: 10px;
  3. -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
  4. }
  5. ::-webkit-scrollbar-thumb {
  6. background-color: rgba(0,0,0,0.05);
  7. border-radius: 10px;
  8. -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
  9. }
  10. ::-webkit-scrollbar-thumb {
  11. background-color: rgba(0,0,0,0.2);
  12. border-radius: 10px;
  13. -webkit-box-shadow: inset 1px 1px 0 rgba(0,0,0,.1);
  14. }
  15. ::-webkit-scrollbar {
  16. width: 16px;
  17. height: 16px;
  18. }
  19. ::-webkit-scrollbar-track,
  20. ::-webkit-scrollbar-thumb {
  21. border-radius: 999px;
  22. border: 5px solid transparent;
  23. }
  24. ::-webkit-scrollbar-track {
  25. box-shadow: 1px 1px 5px rgba(0,0,0,.2) inset;
  26. }
  27. ::-webkit-scrollbar-thumb {
  28. min-height: 20px;
  29. background-clip: content-box;
  30. box-shadow: 0 0 0 5px rgba(0,0,0,.2) inset;
  31. }
  32. ::-webkit-scrollbar-corner {
  33. background: transparent;
  34. }
  35. * {
  36. padding: 0px;
  37. margin: 0px;
  38. font-size: 9pt;
  39. }
  40. ul, li, h1, h2, h3, h4, h5, h6, dl, dt, dd {
  41. padding: 0;
  42. margin: 0;
  43. }
  44. ul {
  45. list-style: none;
  46. }
  47. img {
  48. border: none;
  49. }
  50. a {
  51. color: #000000;
  52. }
  53. a:hover {
  54. color: #000000;
  55. }
  56. a:focus {
  57. outline: none;
  58. -moz-outline: none;
  59. color: #000000;
  60. }
  61. body {
  62. margin: 0px;
  63. padding: 0px;
  64. font-family: 微软雅黑,宋体,Arial,Helvetica,Verdana,sans-serif;
  65. color: #000000;
  66. }
  67. .loading_background {
  68. cursor: wait;
  69. display: block;
  70. width: 100%;
  71. height: 100%;
  72. opacity: 0.0;
  73. filter: alpha(opacity=00);
  74. background: #fff;
  75. position: absolute;
  76. top: 0;
  77. left: 0;
  78. z-index: 10000;
  79. }
  80. #loading_manage {
  81. color: #666;
  82. font-size: 20px;
  83. position: absolute;
  84. z-index: 10001;
  85. left: 0%;
  86. top: 40%;
  87. border: 1px solid rgb(187, 187, 187);
  88. width: auto;
  89. height: 80px;
  90. line-height: 78px;
  91. padding-left: 80px;
  92. padding-right: 20px;
  93. background: #fff;
  94. display: none;
  95. cursor: pointer;
  96. border-radius: 8px;
  97. background-image: url(../images/loading.gif);
  98. background-repeat: no-repeat;
  99. background-position: 8px 50%;
  100. box-shadow: 0 1px 15px rgba(0,0,0,.175);
  101. }
  102. #loading_manage span {
  103. font-size: 12pt;
  104. }
  105. #container {
  106. margin: 0 auto;
  107. }
  108. #side {
  109. float: left;
  110. width: 80px;
  111. _margin-right: -3px;
  112. position: relative;
  113. height: 100%;
  114. background: #2c3849;
  115. }
  116. #icon-vension {
  117. display: block;
  118. position: absolute;
  119. top: 0;
  120. left: 0;
  121. z-index: 10;
  122. }
  123. .user-select {
  124. -moz-user-select: none;
  125. -webkit-user-select: none;
  126. -ms-user-select: none;
  127. -khtml-user-select: none;
  128. user-select: none;
  129. }
  130. .titlePanel {
  131. line-height: 60px;
  132. height: 60px;
  133. background: #fff;
  134. border: 1px solid #ccc;
  135. margin: 0px;
  136. border-bottom: none;
  137. position: relative;
  138. }
  139. .titlePanel .title-info {
  140. background: url(../images/view_grid.png) left center no-repeat;
  141. padding-left: 16px;
  142. float: left;
  143. margin: 20px 0 0 20px;
  144. height: 20px;
  145. line-height: 20px;
  146. cursor: pointer;
  147. }
  148. .titlePanel .title-name {
  149. line-height: 20px;
  150. padding-left: 10px;
  151. font-size: 18px;
  152. }
  153. .titlePanel .title-name .arrow {
  154. width: 8px;
  155. height: 8px;
  156. display: block;
  157. float: right;
  158. margin-left: 10px;
  159. margin-top: 7px;
  160. background: url(../images/black_arrow_8.png) 0 -8px no-repeat;
  161. }
  162. .titlePanel .grid-operation {
  163. line-height: 60px;
  164. height: 60px;
  165. width: 100%;
  166. background: #fff;
  167. position: absolute;
  168. display: none;
  169. }
  170. .titlePanel .grid-operation ul {
  171. margin: 13px 0 0 5px;
  172. }
  173. .titlePanel .grid-operation ul li {
  174. float: left;
  175. height: 12px;
  176. line-height: 12px;
  177. }
  178. .titlePanel .grid-operation ul .first {
  179. position: relative;
  180. display: block;
  181. padding: 10px 15px;
  182. }
  183. .titlePanel .grid-operation .closeoperation {
  184. position: absolute;
  185. top: 23px;
  186. right: 18px;
  187. display: block;
  188. height: 12px;
  189. width: 12px;
  190. background: url(../images/button_pm_close.png) left center no-repeat;
  191. }
  192. .titlePanel .title-search {
  193. float: left;
  194. padding-left: 15px;
  195. }
  196. .titlePanel .title-search .btn {
  197. margin-bottom: 3px;
  198. padding-top: 5px;
  199. }
  200. .titlePanel .title-search select {
  201. padding: 4px;
  202. padding-left: 6px;
  203. }
  204. .titlePanel .title-search .form-control {
  205. border-radius: 4px;
  206. box-shadow: none;
  207. }
  208. .titlePanel .title-search .ui-filter .form-control {
  209. border-radius: 0px;
  210. box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
  211. }
  212. .titlePanel .toolbar {
  213. float: right;
  214. padding-right: 15px;
  215. line-height: 56px;
  216. }
  217. .titlePanel .toolbar i {
  218. font-size: 14px;
  219. margin-top: -1px;
  220. vertical-align: middle;
  221. color: #666666;
  222. }
  223. .toolbar-btn i {
  224. font-size: 13px;
  225. vertical-align: middle;
  226. margin-bottom: 2px;
  227. }
  228. .taskblockPanel {
  229. background: #fff;
  230. box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  231. border: 1px solid #cfcfcf;
  232. }
  233. .taskblockPanel .taskblock {
  234. background-color: #fff;
  235. overflow-y: auto;
  236. width: 100%;
  237. }
  238. .taskblockPanel .taskblock li {
  239. color: #8E8E8E;
  240. line-height: 22px;
  241. height: 80px;
  242. border: 1px solid #DDD;
  243. margin: 5px 5px 5px 0;
  244. padding: 7px;
  245. border-left: 5px solid #337ab7;
  246. background: #FFF;
  247. border-radius: 5px;
  248. list-style: none;
  249. margin: 10px;
  250. }
  251. .taskblockPanel .taskblock li:hover {
  252. background: #F5F5F5;
  253. }
  254. .taskblockPanel .taskblock .item-text {
  255. font-weight: bold;
  256. font-size: 13px;
  257. }
  258. .dropdown-menu i {
  259. vertical-align: inherit;
  260. margin-bottom: 3px;
  261. }
  262. .tools_bar_icon {
  263. padding-left: 3px;
  264. height: 32px;
  265. line-height: 32px;
  266. border-bottom: #ccc 1px solid;
  267. margin-bottom: 1px;
  268. background: #F7F7F7;
  269. }
  270. .tools_bar_icon .icon-botton {
  271. margin-top: 3px;
  272. margin-right: 4px;
  273. vertical-align: middle;
  274. line-height: 10px;
  275. padding: 4px;
  276. float: left;
  277. cursor: pointer;
  278. border: 1px solid #ccc;
  279. -moz-border-radius: 5px;
  280. -webkit-border-radius: 5px;
  281. border-radius: 5px;
  282. }
  283. .tools_bar_icon .icon-botton:hover {
  284. background-color: #fff;
  285. }
  286. label[disabled], label[disabled] label {
  287. color: #ccc;
  288. opacity: 1;
  289. cursor: default;
  290. }
  291. .form {
  292. width: 100%;
  293. margin: 0px;
  294. padding: 0px;
  295. border-collapse: collapse;
  296. border-width: 3px 1px 1px;
  297. table-layout: fixed;
  298. }
  299. .form .formTitle {
  300. position: relative;
  301. left: 0px;
  302. text-align: right;
  303. white-space: nowrap;
  304. font-weight: normal;
  305. width: 90px;
  306. padding-right: 10px;
  307. }
  308. .form .formTitle font {
  309. color: red;
  310. position: absolute;
  311. right: 0px;
  312. }
  313. .form .formTitle-top {
  314. vertical-align: top;
  315. padding-top: 4px;
  316. }
  317. .form .formValue {
  318. position: relative;
  319. padding: 5px;
  320. width: auto;
  321. }
  322. .form .formValue select {
  323. padding: 4px;
  324. padding-left: 4px;
  325. }
  326. .form-control {
  327. color: #000;
  328. border-radius: 0px;
  329. box-shadow: none;
  330. font-size: 9pt;
  331. height: 28px;
  332. padding-top: 0px;
  333. padding-bottom: 1px;
  334. padding-right: 0px;
  335. padding-left: 5px;
  336. resize: none;
  337. }
  338. .form-control:focus {
  339. border-color: #337ab7;
  340. box-shadow: none;
  341. }
  342. .form div.active {
  343. border-color: #337ab7;
  344. box-shadow: none;
  345. }
  346. .form textarea.form-control {
  347. padding-top: 5px;
  348. }
  349. textarea.form-control {
  350. padding-top: 5px;
  351. }
  352. .form-control[disabled], fieldset[disabled] .form-control {
  353. background-color: #eee;
  354. opacity: 1;
  355. cursor: default;
  356. opacity: 0.6;
  357. }
  358. .form-control[readonly], fieldset[readonly] .form-control {
  359. background-color: #fff;
  360. cursor: default;
  361. }
  362. .form .control-button {
  363. padding-left: 5px;
  364. padding-right: 5px;
  365. border: 1px solid #ccc;
  366. float: left;
  367. height: 28px;
  368. line-height: 27px;
  369. text-align: center;
  370. border-left: none;
  371. cursor: pointer;
  372. background: #ddd;
  373. }
  374. .form .control-button:hover {
  375. opacity: 0.8;
  376. }
  377. .form .input-button {
  378. border: none;
  379. right: 8px;
  380. top: 50%;
  381. width: 12px;
  382. height: 16px;
  383. margin-top: -12px;
  384. cursor: pointer;
  385. overflow: hidden;
  386. position: absolute;
  387. z-index: 100;
  388. }
  389. .form .wdate-datepicker {
  390. background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
  391. }
  392. .form .input-box {
  393. position: absolute;
  394. right: 11px;
  395. top: 9px;
  396. color: #ccc;
  397. font-size: 16px;
  398. cursor: pointer;
  399. }
  400. .form .input-success {
  401. position: absolute;
  402. right: 11px;
  403. top: 8px;
  404. color: #468847;
  405. font-size: 16px;
  406. cursor: default;
  407. }
  408. .form .input-warning {
  409. position: absolute;
  410. right: 11px;
  411. top: 9px;
  412. color: #C09853;
  413. font-size: 16px;
  414. cursor: default;
  415. }
  416. .form .input-error {
  417. position: absolute;
  418. right: 11px;
  419. top: 9px;
  420. color: #B94A48;
  421. font-size: 16px;
  422. cursor: default;
  423. }
  424. .form-button {
  425. padding: 0px;
  426. height: 40px;
  427. line-height: 36px;
  428. text-align: right;
  429. border-top: 1px solid #ccc;
  430. background-color: #f5f5f5;
  431. position: absolute;
  432. top: 100%;
  433. margin-top: -40px;
  434. width: 100%;
  435. padding-right: 6px;
  436. -moz-user-select: none;
  437. -webkit-user-select: none;
  438. -ms-user-select: none;
  439. -khtml-user-select: none;
  440. user-select: none;
  441. }
  442. .form-error-text {
  443. padding-left: 30px;
  444. height: 26px;
  445. color: red;
  446. line-height: 25px;
  447. background: url('../images/validatebox_warning.png') center left no-repeat;
  448. background-position: 10px 4px;
  449. }
  450. .form-succeed-text {
  451. padding-left: 30px;
  452. height: 26px;
  453. color: green;
  454. line-height: 25px;
  455. background: url('../images/accept.png') center left no-repeat;
  456. background-position: 10px 4px;
  457. }
  458. .input-datepicker {
  459. background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
  460. }
  461. .input-wdatepicker {
  462. background: url(../images/datepicker_icon.png) right 0 no-repeat #FFF;
  463. }
  464. .input-underline {
  465. box-shadow: none;
  466. border-top: 0px;
  467. border-left: 0px;
  468. border-right: 0px;
  469. border-bottom: 1px solid #ccc;
  470. height: 25px;
  471. }
  472. .has-error .form-control:focus {
  473. border-color: #B94A48;
  474. }
  475. .has-error .ui-select .ui-select-text {
  476. border-color: #b94a48;
  477. }
  478. .has-error .ui-select {
  479. border-color: #b94a48;
  480. }
  481. .has-error .ui-select:focus {
  482. border-color: #843534;
  483. }
  484. .ui-select[disabled], fieldset[disabled] .ui-select {
  485. background-color: #eee;
  486. opacity: 1;
  487. cursor: default;
  488. background-image: none;
  489. opacity: 0.6;
  490. }
  491. .ui-select {
  492. cursor: pointer;
  493. outline: 0;
  494. width: auto;
  495. height: 28px;
  496. line-height: 26px;
  497. position: relative;
  498. background: #fff url(../images/a2.png) no-repeat right center;
  499. }
  500. .ui-select-focus {
  501. border-color: #337ab7;
  502. }
  503. .ui-select .ui-select-text {
  504. box-shadow: none;
  505. -moz-user-select: none;
  506. -webkit-user-select: none;
  507. -ms-user-select: none;
  508. -khtml-user-select: none;
  509. user-select: none;
  510. border: 1px solid #ccc;
  511. padding-left: 5px;
  512. height: 28px;
  513. line-height: 26px;
  514. }
  515. .ui-select-option {
  516. margin: 0px;
  517. padding: 0px;
  518. width: 100%;
  519. display: none;
  520. position: absolute;
  521. left: 0px;
  522. top: 28px;
  523. background-color: #fff;
  524. overflow: hidden;
  525. border: 1px solid #ccc;
  526. border-top: 0;
  527. z-index: 9999;
  528. }
  529. .ui-select-option .ui-select-option-content {
  530. overflow-y: auto;
  531. }
  532. .ui-select-option li {
  533. min-height: 26px;
  534. line-height: 26px;
  535. overflow: hidden;
  536. cursor: pointer;
  537. }
  538. .ui-select-option li.on {
  539. background-color: #eee;
  540. }
  541. .ui-select-option li.liactive {
  542. background-color: #337ab7;
  543. color: #fff;
  544. }
  545. .ui-select-option-search {
  546. position: relative;
  547. }
  548. .ui-select-option-search .form-control {
  549. box-shadow: none;
  550. border-color: #ccc;
  551. border: none;
  552. border-top: 1px solid #ccc;
  553. height: 25px;
  554. margin: 0px;
  555. }
  556. .ui-select-option-search .input-query {
  557. position: absolute;
  558. right: 4px;
  559. top: 1px;
  560. color: #ccc;
  561. font-size: 16px;
  562. }
  563. .ui-underline .ui-select-text {
  564. box-shadow: none;
  565. border-top: 0px;
  566. border-left: 0px;
  567. border-right: 0px;
  568. border-bottom: 1px solid #ccc;
  569. height: 25px;
  570. }
  571. .ui-filter {
  572. cursor: pointer;
  573. outline: 0;
  574. width: auto;
  575. height: 29px;
  576. line-height: 28px;
  577. position: relative;
  578. }
  579. .ui-filter .ui-filter-text {
  580. border-radius: 4px;
  581. -moz-user-select: none;
  582. -webkit-user-select: none;
  583. -ms-user-select: none;
  584. -khtml-user-select: none;
  585. user-select: none;
  586. border: 1px solid #ccc;
  587. padding-left: 5px;
  588. height: 29px;
  589. line-height: 27px;
  590. position: relative;
  591. z-index: 100;
  592. background: #fff url(../images/a2.png) no-repeat right center;
  593. }
  594. .ui-filter .ui-filter-text.active {
  595. border-bottom-left-radius: 0px;
  596. border-bottom-right-radius: 0px;
  597. }
  598. .ui-filter .ui-filter-list {
  599. border-bottom-left-radius: 4px;
  600. border-bottom-right-radius: 4px;
  601. overflow: hidden;
  602. padding: 20px;
  603. padding-top: 15px;
  604. padding-bottom: 10px;
  605. width: 100%;
  606. display: none;
  607. left: 0px;
  608. top: 28px;
  609. background-color: #fff;
  610. overflow-y: auto;
  611. border: 1px solid #ccc;
  612. position: absolute;
  613. z-index: 99;
  614. box-shadow: 0 6px 12px rgba(0,0,0,.175);
  615. }
  616. .ui-filter .ui-filter-list .ui-filter-list-bottom {
  617. overflow: hidden;
  618. zoom: 1;
  619. margin-top: 10px;
  620. height: 30px;
  621. float: right;
  622. }
  623. .ui-filter .ui-filter-list .formTitle {
  624. text-align: left;
  625. white-space: nowrap;
  626. font-weight: normal;
  627. width: 65px;
  628. }
  629. .ui-option-list {
  630. width: 100%;
  631. }
  632. .ui-option-list li {
  633. height: 25px;
  634. line-height: 25px;
  635. overflow: hidden;
  636. cursor: pointer;
  637. padding-left: 5px;
  638. }
  639. .ui-option-list li.on {
  640. background-color: #eee;
  641. }
  642. .ui-option-list li.liactive {
  643. background-color: #337ab7;
  644. color: #fff;
  645. }
  646. .panel-Title {
  647. border-color: #c5c5c5;
  648. background-color: #fff;
  649. color: #666;
  650. height: 32px;
  651. line-height: 32px;
  652. text-overflow: ellipsis;
  653. overflow: hidden;
  654. white-space: nowrap;
  655. font-weight: bold;
  656. border-bottom: 1px solid #ccc;
  657. padding-left: 9px;
  658. }
  659. .ui-layout .panel-Title {
  660. border-color: #c5c5c5;
  661. background-color: #fff;
  662. color: #666;
  663. height: 32px;
  664. line-height: 32px;
  665. text-overflow: ellipsis;
  666. overflow: hidden;
  667. white-space: nowrap;
  668. font-weight: bold;
  669. border-bottom: 1px solid #ccc;
  670. padding-left: 9px;
  671. }
  672. .ui-layout .west-Panel {
  673. background: #fff;
  674. border: 1px solid #ccc;
  675. padding: 0px;
  676. }
  677. .ui-layout .east-Panel {
  678. margin-right: 10px;
  679. margin-top: 10px;
  680. background: #fff;
  681. border: 1px solid #ccc;
  682. padding: 0px;
  683. }
  684. .ui-layout .center-Panel {
  685. border: 1px solid #ccc;
  686. background: #fff;
  687. }
  688. .ui-layout .center-Panel .titlePanel {
  689. border-left: none;
  690. border-right: none;
  691. border-top: none;
  692. }
  693. .ui-layout .center-Panel .ui-widget-content {
  694. border: none;
  695. border-top: 1px solid #ccc;
  696. }
  697. .ui-icon-seek-next {
  698. display: block;
  699. height: 20px;
  700. line-height: 18px;
  701. width: 22px;
  702. border-radius: 5px;
  703. border: 1px solid #ccc;
  704. color: #666666;
  705. padding-left: 2px;
  706. }
  707. .ui-icon-seek-prev {
  708. display: block;
  709. height: 20px;
  710. line-height: 18px;
  711. width: 22px;
  712. border-radius: 5px;
  713. border: 1px solid #ccc;
  714. color: #666666;
  715. padding-right: 3px;
  716. }
  717. .ui-icon-seek-end {
  718. display: block;
  719. height: 20px;
  720. line-height: 18px;
  721. width: 22px;
  722. border-radius: 5px;
  723. border: 1px solid #ccc;
  724. margin-right: 5px;
  725. color: #666666;
  726. }
  727. .ui-icon-seek-first {
  728. display: block;
  729. height: 20px;
  730. line-height: 18px;
  731. width: 22px;
  732. border-radius: 5px;
  733. border: 1px solid #ccc;
  734. margin-right: 5px;
  735. color: #666666;
  736. }
  737. .ui-icon-seek-next:hover, .ui-icon-seek-prev:hover, .ui-icon-seek-end:hover, .ui-icon-seek-first:hover {
  738. background-color: #F5F5F5;
  739. }
  740. .contextmenu {
  741. position: fixed;
  742. top: -9999px;
  743. left: -9999px;
  744. z-index: 4000;
  745. display: none;
  746. }
  747. .contextmenu ul {
  748. -moz-user-select: none;
  749. -webkit-user-select: none;
  750. -ms-user-select: none;
  751. -khtml-user-select: none;
  752. user-select: none;
  753. float: left;
  754. background: url(../images/line.png) 26px 0 repeat-y #f1f1f1;
  755. padding: 5px 0;
  756. border: 1px solid #BEBEBE;
  757. box-shadow: 0 6px 12px rgba(0,0,0,.175);
  758. background-color: #fff;
  759. border-radius: 4px;
  760. }
  761. .contextmenu ul li {
  762. cursor: pointer;
  763. clear: both;
  764. line-height: 22px;
  765. white-space: nowrap;
  766. padding: 3px 33px;
  767. }
  768. .contextmenu ul .disabled {
  769. cursor: not-allowed;
  770. color: #ccc;
  771. }
  772. .contextmenu ul li.sub {
  773. background-repeat: no-repeat;
  774. background-position: right 11px;
  775. background-image: url(../images/arrow1.png);
  776. }
  777. .contextmenu ul li.active {
  778. background-color: #F5F5F5;
  779. color: #000000;
  780. }
  781. .contextmenu ul ul {
  782. display: none;
  783. position: absolute;
  784. color: #000000;
  785. }
  786. .contextmenu .m-split {
  787. height: 2px;
  788. background: url(../images/splitLine_bg.gif) center repeat-x;
  789. margin: 0 2px;
  790. margin-top: 1px;
  791. margin-bottom: 1px;
  792. margin-left: 26px;
  793. }
  794. .contextmenu li img {
  795. position: absolute;
  796. border: 0px;
  797. left: 6px;
  798. margin-top: 4px;
  799. width: 16px;
  800. height: 16px;
  801. }
  802. .mtip.success .mclose {
  803. background-position: -16px 0;
  804. }
  805. .mtip.error .mclose {
  806. background-position: -8px 0;
  807. }
  808. .mtip.warning .mclose {
  809. background-position: 0 0;
  810. }
  811. .mtip.success .mclose:hover {
  812. background-position: -16px -8px;
  813. }
  814. .mtip.error .mclose:hover {
  815. background-position: -8px -8px;
  816. }
  817. .mtip.warning .mclose:hover {
  818. background-position: 0 -8px;
  819. }
  820. .mtip .micon {
  821. background-image: url("../images/micon.png");
  822. background-repeat: no-repeat;
  823. display: inline-block;
  824. width: 20px;
  825. height: 16px;
  826. padding-right: 10px;
  827. margin-top: 0px;
  828. }
  829. .mtip.error .micon {
  830. background-position: 0 0;
  831. vertical-align: top;
  832. }
  833. .mtip.success .micon {
  834. background-position: 0 -66px;
  835. vertical-align: top;
  836. }
  837. .mtip.warning .micon {
  838. background-position: 0 -132px;
  839. vertical-align: top;
  840. }
  841. .mtip > span {
  842. vertical-align: 3px;
  843. line-height: 1;
  844. display: inline-block;
  845. width: auto;
  846. font-size: 16px;
  847. }
  848. .mtip {
  849. border-radius: 0 0 4px 4px;
  850. padding-top: 7px;
  851. padding-left: 25px;
  852. padding-right: 25px;
  853. padding-bottom: 5px;
  854. color: #fff;
  855. text-shadow: 0 1px 0 rgba(0,0,0,0.2);
  856. box-shadow: 0 4px 4px rgba(0,0,0,0.2);
  857. }
  858. .mtip.error {
  859. background-color: #cd3237;
  860. background-image: -moz-linear-gradient(top,#e34447,#cd3237);
  861. background-image: -ms-linear-gradient(top,#e34447,#cd3237);
  862. background-image: -webkit-gradient(linear,0 0,0 100%,from(#e34447),to(#cd3237));
  863. background-image: -webkit-linear-gradient(top,#e34447,#cd3237);
  864. background-image: -o-linear-gradient(top,#e34447,#cd3237);
  865. background-image: linear-gradient(top,#e34447,#cd3237);
  866. border: 1px solid #ca3e3e;
  867. }
  868. .mtip.success {
  869. background-color: #43ab00;
  870. background-image: -moz-linear-gradient(top,#43ab00,#388e00);
  871. background-image: -ms-linear-gradient(top,#43ab00,#388e00);
  872. background-image: -webkit-gradient(linear,0 0,0 100%,from(#43ab00),to(#388e00));
  873. background-image: -webkit-linear-gradient(top,#43ab00,#388e00);
  874. background-image: -o-linear-gradient(top,#43ab00,#388e00);
  875. background-image: linear-gradient(top,#43ab00,#388e00);
  876. border: 1px solid #338100;
  877. }
  878. .mtip.warning {
  879. background-color: #0f76cd;
  880. background-image: -moz-linear-gradient(top,#0f76cd,#086cc1);
  881. background-image: -ms-linear-gradient(top,#0f76cd,#086cc1);
  882. background-image: -webkit-gradient(linear,0 0,0 100%,from(#0f76cd),to(#086cc1));
  883. background-image: -webkit-linear-gradient(top,#0f76cd,#086cc1);
  884. background-image: -o-linear-gradient(top,#0f76cd,#086cc1);
  885. background-image: linear-gradient(top,#0f76cd,#086cc1);
  886. border: 1px solid #006096;
  887. }
  888. .tip_container {
  889. display: none;
  890. z-index: 9999;
  891. position: fixed;
  892. top: 0;
  893. text-align: left;
  894. width: auto;
  895. _width: auto;
  896. }
  897. .poptip {
  898. z-index: 1000;
  899. position: absolute;
  900. top: 20px;
  901. left: 20px;
  902. padding: 6px 10px 6px;
  903. *padding: 7px 10px 5px;
  904. line-height: 16px;
  905. color: #fff;
  906. font-size: 12px;
  907. background-color: #B94A48;
  908. border: solid 1px #B94A48;
  909. border-radius: 2px;
  910. box-shadow: 0 0 3px #ddd;
  911. }
  912. .poptip-arrow {
  913. position: absolute;
  914. overflow: hidden;
  915. font-style: normal;
  916. font-family: simsun;
  917. text-shadow: 0 0 2px #ccc;
  918. }
  919. .poptip-arrow em, .poptip-arrow i {
  920. position: absolute;
  921. left: 0;
  922. top: 0;
  923. font-style: normal;
  924. }
  925. .poptip-arrow em {
  926. color: #B94A48;
  927. }
  928. .poptip-arrow i {
  929. color: #B94A48;
  930. text-shadow: none;
  931. }
  932. .poptip-arrow-top, .poptip-arrow-bottom {
  933. height: 6px;
  934. width: 12px;
  935. left: 12px;
  936. margin-left: -6px;
  937. }
  938. .poptip-arrow-left, .poptip-arrow-right {
  939. height: 12px;
  940. width: 6px;
  941. top: 12px;
  942. margin-top: -6px;
  943. }
  944. .poptip-arrow-top {
  945. top: -6px;
  946. }
  947. .poptip-arrow-top em {
  948. top: -1px;
  949. }
  950. .poptip-arrow-top i {
  951. top: 0px;
  952. }
  953. .poptip-arrow-bottom {
  954. bottom: -6px;
  955. }
  956. .poptip-arrow-bottom em {
  957. top: -8px;
  958. }
  959. .poptip-arrow-bottom i {
  960. top: -9px;
  961. }
  962. .poptip-arrow-left {
  963. left: -6px;
  964. }
  965. .poptip-arrow-left em {
  966. left: 1px;
  967. }
  968. .poptip-arrow-left i {
  969. left: 2px;
  970. }
  971. .poptip-arrow-right {
  972. right: -6px;
  973. }
  974. .poptip-arrow-right em {
  975. left: -6px;
  976. }
  977. .poptip-arrow-right i {
  978. left: -7px;
  979. }
  980. .treesearch {
  981. position: relative;
  982. }
  983. .treesearch .form-control {
  984. box-shadow: none;
  985. border-color: #ccc;
  986. border-left: none;
  987. border-right: none;
  988. border-bottom: none;
  989. height: 28px;
  990. margin: 0px;
  991. }
  992. .treesearch .input-query {
  993. position: absolute;
  994. right: 6px;
  995. top: 2px;
  996. color: #ccc;
  997. font-size: 16px;
  998. cursor: pointer;
  999. }
  1000. .sys_spec_text {
  1001. padding-left: 15px;
  1002. -moz-user-select: none;
  1003. -webkit-user-select: none;
  1004. -ms-user-select: none;
  1005. -khtml-user-select: none;
  1006. user-select: none;
  1007. }
  1008. .sys_spec_text li {
  1009. position: relative;
  1010. outline: none;
  1011. display: inline;
  1012. float: left;
  1013. height: 46px;
  1014. position: relative;
  1015. margin: 10px 15px 0px 0;
  1016. outline: none;
  1017. }
  1018. .sys_spec_text li a {
  1019. cursor: pointer;
  1020. vertical-align: middle;
  1021. text-align: center;
  1022. word-break: keep-all;
  1023. white-space: nowrap;
  1024. overflow: hidden;
  1025. text-overflow: ellipsis;
  1026. height: 39px;
  1027. line-height: 38px;
  1028. width: 100px;
  1029. text-align: center;
  1030. padding: 0px 0px;
  1031. border: 1px solid #ccc;
  1032. border-radius: 3px;
  1033. background: #fff;
  1034. display: inline-block;
  1035. outline: none;
  1036. }
  1037. .sys_spec_text li a:hover {
  1038. padding: 0 0px;
  1039. text-decoration: none;
  1040. }
  1041. .sys_spec_text li.active a {
  1042. color: #ff5d5b;
  1043. border: 1px solid #ff5d5b;
  1044. padding: 0 0px;
  1045. background: url(../images/duihao_03.png) right top no-repeat;
  1046. }
  1047. .card-box {
  1048. width: 195px;
  1049. height: 60px;
  1050. float: left;
  1051. border: 1px solid #ccc;
  1052. background-color: #fff;
  1053. border-radius: 3px;
  1054. margin-left: 10px;
  1055. margin-top: 10px;
  1056. overflow: hidden;
  1057. position: relative;
  1058. -moz-user-select: none;
  1059. -webkit-user-select: none;
  1060. -ms-user-select: none;
  1061. -khtml-user-select: none;
  1062. user-select: none;
  1063. cursor: pointer;
  1064. }
  1065. .card-box.active {
  1066. border: 2px solid #ff5d5b;
  1067. padding: 0 0px;
  1068. background: url(../images/duihao_03.png) right top no-repeat;
  1069. }
  1070. .card-box-img {
  1071. float: left;
  1072. width: 60px;
  1073. height: 60px;
  1074. line-height: 58px;
  1075. background-color: #EBEBEB;
  1076. border-right: 1px solid #ccc;
  1077. }
  1078. .card-box-img img {
  1079. margin-left: 9px;
  1080. border-radius: 45px;
  1081. }
  1082. .card-box-content {
  1083. float: left;
  1084. padding-left: 6px;
  1085. padding-top: 4px;
  1086. }
  1087. .card-box-content p {
  1088. overflow: hidden;
  1089. white-space: nowrap;
  1090. text-overflow: ellipsis;
  1091. width: 120px;
  1092. }
  1093. .profile-nav {
  1094. background: #fff;
  1095. -moz-user-select: none;
  1096. -webkit-user-select: none;
  1097. -ms-user-select: none;
  1098. -khtml-user-select: none;
  1099. user-select: none;
  1100. }
  1101. .profile-nav li {
  1102. line-height: 34px;
  1103. height: 34px;
  1104. margin-bottom: 10px;
  1105. padding-left: 22px;
  1106. cursor: pointer;
  1107. border-left: 3px solid #fff;
  1108. }
  1109. .profile-nav li.active {
  1110. border-left: 3px solid #2c3849;
  1111. background: #F5F5F5;
  1112. }
  1113. .profile-nav li.hover {
  1114. border-left: 3px solid #F5F5F5;
  1115. background: #F5F5F5;
  1116. }
  1117. .profile-nav .divide {
  1118. margin: 20px;
  1119. margin-bottom: 10px;
  1120. margin-top: 10px;
  1121. display: block;
  1122. border-bottom: 1px solid #ccc;
  1123. }
  1124. .profile-content {
  1125. padding-left: 22px;
  1126. padding-right: 22px;
  1127. overflow: auto;
  1128. }
  1129. .profile-content .title {
  1130. padding-top: 20px;
  1131. line-height: 34px;
  1132. font-size: 12px;
  1133. font-weight: bold;
  1134. border-bottom: 1px solid #ccc;
  1135. }
  1136. .profile-content .formTitle {
  1137. width: 80px;
  1138. height: 45px;
  1139. text-align: left;
  1140. }
  1141. .profile-content .input-profile {
  1142. border-radius: 4px;
  1143. width: 300px;
  1144. }
  1145. .profile-content textarea.input-profile {
  1146. padding: 5px;
  1147. }
  1148. .portal-panel {
  1149. margin: 0px;
  1150. padding: 0px;
  1151. min-height: 65px;
  1152. height: auto;
  1153. padding-left: 22px;
  1154. padding-right: 22px;
  1155. }
  1156. .portal-panel .portal-panel-title {
  1157. padding-top: 10px;
  1158. line-height: 45px;
  1159. font-size: 12px;
  1160. font-weight: bold;
  1161. border-bottom: 1px solid #ccc;
  1162. color: #666;
  1163. font-weight: 300;
  1164. font-size: 16px;
  1165. }
  1166. .portal-panel .portal-panel-content {
  1167. padding: 5px;
  1168. }
  1169. .task-stat {
  1170. border-radius: 5px;
  1171. font-family: "Open Sans", sans-serif;
  1172. display: block;
  1173. margin: 10px;
  1174. overflow: hidden;
  1175. color: #FFFFFF;
  1176. }
  1177. .task-stat .visual > i {
  1178. color: #FFFFFF;
  1179. opacity: 0.4;
  1180. filter: alpha(opacity=10);
  1181. }
  1182. .task-stat .visual {
  1183. width: 80px;
  1184. height: 50px;
  1185. display: block;
  1186. float: left;
  1187. padding-top: 10px;
  1188. padding-left: 15px;
  1189. margin-bottom: 18px;
  1190. font-size: 35px;
  1191. line-height: 35px;
  1192. }
  1193. .task-stat .visual > i {
  1194. margin-left: -5px;
  1195. font-size: 60px;
  1196. line-height: 65px;
  1197. }
  1198. .task-stat .details {
  1199. position: absolute;
  1200. right: 10px;
  1201. padding-right: 15px;
  1202. }
  1203. .task-stat .details .number {
  1204. padding-top: 10px;
  1205. text-align: right;
  1206. font-size: 32px;
  1207. line-height: 36px;
  1208. letter-spacing: -1px;
  1209. margin-bottom: 0px;
  1210. font-weight: 300;
  1211. }
  1212. .task-stat .details .desc {
  1213. text-align: right;
  1214. font-size: 15px;
  1215. padding-top: 5px;
  1216. }
  1217. .task-stat .more {
  1218. clear: both;
  1219. display: block;
  1220. padding: 6px 10px 6px 10px;
  1221. position: relative;
  1222. text-transform: uppercase;
  1223. font-weight: 300;
  1224. font-size: 10px;
  1225. opacity: 0.7;
  1226. filter: alpha(opacity=70);
  1227. text-decoration: none;
  1228. color: #FFFFFF;
  1229. }
  1230. .task-stat .more:hover {
  1231. text-decoration: none;
  1232. opacity: 0.9;
  1233. filter: alpha(opacity=90);
  1234. }
  1235. .task-stat .more > i {
  1236. display: inline-block;
  1237. margin-top: 0px;
  1238. float: right;
  1239. font-size: 15px;
  1240. }
  1241. .mail-nav-top {
  1242. height: 40px;
  1243. line-height: 40px;
  1244. border-bottom: 1px solid #ccc;
  1245. }
  1246. .mail-nav-top .option {
  1247. position: relative;
  1248. height: 40px;
  1249. float: left;
  1250. line-height: 40px;
  1251. width: 49%;
  1252. cursor: pointer;
  1253. color: #666666;
  1254. text-align: center;
  1255. font-weight: bold;
  1256. font-family: "Microsoft Yahei",verdana;
  1257. font-size: 14px;
  1258. }
  1259. .mail-nav-top .receive {
  1260. border-right: 1px solid #ccc;
  1261. }
  1262. .mail-nav-top .option i {
  1263. font-size: 18px;
  1264. vertical-align: middle;
  1265. margin-right: 5px;
  1266. }
  1267. .mail-nav-top .option:hover {
  1268. color: #337ab7;
  1269. }
  1270. .mail-floder-icon {
  1271. position: absolute;
  1272. margin-left: -15px;
  1273. color: #666666;
  1274. }
  1275. .mail-send-addresss {
  1276. position: relative;
  1277. height: auto;
  1278. overflow: auto;
  1279. padding-top: 4px;
  1280. cursor: default;
  1281. }
  1282. .mail-send-address {
  1283. background-color: #f5f5f5;
  1284. position: relative;
  1285. overflow: hidden;
  1286. padding: 0 5px;
  1287. border-radius: 10px;
  1288. -webkit-border-radius: 10px;
  1289. -moz-border-radius: 10px;
  1290. float: left;
  1291. height: 19px;
  1292. max-width: 400px;
  1293. margin-right: 3px;
  1294. margin-bottom: 2px;
  1295. border: 1px solid #ccc;
  1296. color: #666666;
  1297. }
  1298. .mail-send-address-name {
  1299. padding-right: 3px;
  1300. max-width: 300px;
  1301. overflow: hidden;
  1302. text-overflow: ellipsis;
  1303. white-space: nowrap;
  1304. float: left;
  1305. line-height: 19px;
  1306. }
  1307. .mail-send-address-del {
  1308. float: right;
  1309. font-size: 16px;
  1310. width: 15px;
  1311. height: 19px;
  1312. line-height: 16px;
  1313. font-weight: bold;
  1314. cursor: pointer;
  1315. border-left: 1px solid #eeeeee;
  1316. padding-left: 2px;
  1317. }
  1318. .crumb-path .back {
  1319. border-right: 1px solid #cad5e3;
  1320. color: #337ab7;
  1321. cursor: pointer;
  1322. float: left;
  1323. font-size: 12px;
  1324. margin: 0 6px 0 0;
  1325. padding-right: 8px;
  1326. }
  1327. .crumb-path .path-item {
  1328. background: url(../images/file_arrow.png) 100% 4px no-repeat;
  1329. color: #337ab7;
  1330. cursor: pointer;
  1331. font-size: 12px;
  1332. margin: 0 6px 0 0;
  1333. max-width: 15%;
  1334. overflow: hidden;
  1335. padding-right: 12px;
  1336. text-overflow: ellipsis;
  1337. white-space: nowrap;
  1338. }
  1339. .crumb-path .path-item:last-child {
  1340. background: none;
  1341. color: #000000;
  1342. cursor: default;
  1343. }
  1344. .app-box {
  1345. padding: 40px 0 0 20px;
  1346. overflow: hidden;
  1347. }
  1348. .app-box .app-item {
  1349. position: relative;
  1350. float: left;
  1351. margin-right: 20px;
  1352. margin-left: 20px;
  1353. margin-bottom: 30px;
  1354. width: 100px;
  1355. text-align: center;
  1356. cursor: pointer;
  1357. }
  1358. .app-box .app-item .app-logo {
  1359. height: 80px;
  1360. width: 80px;
  1361. display: inline-block;
  1362. position: relative;
  1363. -webkit-border-radius: 50%;
  1364. -moz-border-radius: 50%;
  1365. border-radius: 50%;
  1366. -webkit-background-clip: padding-box;
  1367. -moz-background-clip: padding-box;
  1368. background-clip: padding-box;
  1369. margin-bottom: 9px;
  1370. }
  1371. .app-box .app-item .app-name {
  1372. width: 100px;
  1373. text-align: center;
  1374. font-size: 13px;
  1375. font-weight: 400;
  1376. overflow: hidden;
  1377. text-overflow: ellipsis;
  1378. white-space: nowrap;
  1379. }
  1380. .app-box .app-item-add {
  1381. float: left;
  1382. margin-right: 20px;
  1383. margin-left: 20px;
  1384. margin-bottom: 30px;
  1385. width: 100px;
  1386. text-align: center;
  1387. cursor: pointer;
  1388. background: url(../images/icon_app_add.png) center no-repeat;
  1389. }
  1390. .app-box .app-item-add .app-logo {
  1391. height: 80px;
  1392. width: 80px;
  1393. display: inline-block;
  1394. position: relative;
  1395. -webkit-border-radius: 50%;
  1396. -moz-border-radius: 50%;
  1397. border-radius: 50%;
  1398. -webkit-background-clip: padding-box;
  1399. -moz-background-clip: padding-box;
  1400. background-clip: padding-box;
  1401. margin-bottom: 9px;
  1402. }
  1403. .app-box .app-item-close {
  1404. z-index: 10;
  1405. position: absolute;
  1406. right: -5px;
  1407. top: -5px;
  1408. width: 24px;
  1409. height: 24px;
  1410. overflow: hidden;
  1411. cursor: pointer;
  1412. background: url(../images/ui_close.png) no-repeat 0px 0px;
  1413. display: none;
  1414. }
  1415. .cover-box {
  1416. height: 291px;
  1417. width: 271px;
  1418. border-radius: 5px;
  1419. border: 1px solid #ccc;
  1420. margin-bottom: 20px;
  1421. margin-right: 20px;
  1422. float: left;
  1423. }
  1424. .cover-img {
  1425. border-top-left-radius: 5px;
  1426. border-top-right-radius: 5px;
  1427. height: 170px;
  1428. width: 270px;
  1429. border-bottom: 1px solid #ccc;
  1430. text-align: center;
  1431. }
  1432. .cover-info {
  1433. padding: 6px 15px 28px;
  1434. height: 80px;
  1435. overflow: hidden;
  1436. }
  1437. .cover-info h4 {
  1438. font-size: 14px;
  1439. overflow: hidden;
  1440. text-overflow: ellipsis;
  1441. word-break: keep-all;
  1442. white-space: nowrap;
  1443. display: block;
  1444. font-weight: bold;
  1445. line-height: 18px;
  1446. margin-top: 7px;
  1447. margin-bottom: 5px;
  1448. color: #8B8B8C;
  1449. }
  1450. .cover-info small {
  1451. color: #838383;
  1452. padding-bottom: 10px;
  1453. }
  1454. .cover-button {
  1455. background-color: #f6f6f6;
  1456. border-radius: 0 0 5px 5px;
  1457. border-top: 1px solid #e7e7e7;
  1458. box-shadow: 0 1px 0 0 #fff inset;
  1459. padding: 4px 5px 4px 5px;
  1460. color: #8B8B8C;
  1461. position: relative;
  1462. text-align: right;
  1463. }
  1464. .editview {
  1465. position: relative;
  1466. margin-bottom: 1px;
  1467. margin-right: 1px;
  1468. }
  1469. .editview:hover {
  1470. border: 1px dashed #337ab7;
  1471. }
  1472. .editviewtitle {
  1473. display: none;
  1474. position: absolute;
  1475. right: -1px;
  1476. top: -1px;
  1477. z-index: 100;
  1478. height: 20px;
  1479. line-height: 20px;
  1480. border: 1px solid #2e6da4;
  1481. cursor: pointer;
  1482. background-color: #337ab7;
  1483. color: #fff;
  1484. }
  1485. div.standtabborder {
  1486. border-right: #ccc 1px solid;
  1487. float: left;
  1488. width: 32px;
  1489. }
  1490. div.standtab {
  1491. border-top-left-radius: 5px;
  1492. border-bottom-left-radius: 5px;
  1493. padding-top: 5px;
  1494. padding-bottom: 5px;
  1495. padding-right: 7px;
  1496. margin-left: 3px;
  1497. margin-top: 5px;
  1498. display: inline-block;
  1499. width: 29px;
  1500. cursor: pointer;
  1501. text-align: right;
  1502. border: #ccc 1px solid;
  1503. border-right: none;
  1504. }
  1505. div.standtabactived {
  1506. background-color: rgb(255,255,255);
  1507. }
  1508. .timeline {
  1509. position: relative;
  1510. padding-left: 20px;
  1511. }
  1512. .line {
  1513. width: 1px;
  1514. height: 100%;
  1515. background-color: #ccc;
  1516. position: absolute;
  1517. left: 26px;
  1518. z-index: -1;
  1519. }
  1520. .timeline ul li {
  1521. padding-left: 25px;
  1522. color: #333333;
  1523. line-height: 30px;
  1524. position: relative;
  1525. }
  1526. .timeline ul li:last-child {
  1527. margin-bottom: 0px;
  1528. }
  1529. .timeline ul li span.label {
  1530. position: absolute;
  1531. left: -5px;
  1532. top: 0px;
  1533. border-radius: 10px;
  1534. padding: 3px;
  1535. padding-left: 6px;
  1536. padding-right: 12px;
  1537. height: 20px;
  1538. line-height: 13px;
  1539. }
  1540. .timeline ul li span.label i {
  1541. margin-right: 5px;
  1542. }
  1543. .timeline ul li div.content {
  1544. padding-top: 20px;
  1545. }
  1546. .timeline {
  1547. position: relative;
  1548. padding-left: 20px;
  1549. overflow: hidden;
  1550. }
  1551. .line {
  1552. width: 1px;
  1553. height: 100%;
  1554. background-color: #ccc;
  1555. position: absolute;
  1556. left: 26px;
  1557. z-index: -1;
  1558. }
  1559. .timeline ul li {
  1560. padding-left: 25px;
  1561. color: #333333;
  1562. line-height: 30px;
  1563. position: relative;
  1564. }
  1565. .timeline ul li:last-child {
  1566. margin-bottom: 0px;
  1567. }
  1568. .timeline ul li span.label {
  1569. position: absolute;
  1570. left: -5px;
  1571. top: 0px;
  1572. border-radius: 10px;
  1573. padding: 3px;
  1574. padding-left: 6px;
  1575. padding-right: 12px;
  1576. height: 20px;
  1577. line-height: 13px;
  1578. }
  1579. .timeline ul li span.label i {
  1580. margin-right: 5px;
  1581. }
  1582. .timeline ul li div.content {
  1583. padding-top: 35px;
  1584. padding-bottom: 15px;
  1585. }
  1586. .timeline ul li div.content .item-flag {
  1587. color: #fff;
  1588. position: absolute;
  1589. left: -4px;
  1590. margin-top: 5px;
  1591. height: 20px;
  1592. line-height: 20px;
  1593. width: 20px;
  1594. border-radius: 20px;
  1595. background: #898989;
  1596. text-align: center;
  1597. font-size: 10px;
  1598. }
  1599. .timeline ul li div.content .item-data {
  1600. font-size: 13px;
  1601. line-height: 30px;
  1602. }
  1603. .timeline ul li div.content .item-data .time {
  1604. color: #8E8E8E;
  1605. padding-right: 5px;
  1606. }
  1607. .timeline ul li div.content .item-data .name i {
  1608. padding-left: 5px;
  1609. padding-right: 5px;
  1610. font-size: 14px;
  1611. }
  1612. .border {
  1613. border: 1px solid #ccc;
  1614. }
  1615. .border-top {
  1616. border-top: 1px solid #ccc;
  1617. }
  1618. .border-right {
  1619. border-right: 1px solid #ccc;
  1620. }
  1621. .border-left {
  1622. border-left: 1px solid #ccc;
  1623. }
  1624. .border-bottom {
  1625. border-bottom: 1px solid #ccc;
  1626. }
  1627. .no-data {
  1628. background: #FFF url(../images/no_data.png) 100px 60px no-repeat;
  1629. height: 402px;
  1630. margin-right: 18px;
  1631. position: absolute;
  1632. z-index: 200;
  1633. top: 150px;
  1634. width: 700px;
  1635. left: 18px;
  1636. }
  1637. .bottomline {
  1638. border-bottom: 1px solid #ccc;
  1639. padding-top: 12px;
  1640. padding-left: 40px;
  1641. height: 44px;
  1642. }
  1643. .label-success-learun {
  1644. background: #0aa699;
  1645. }
  1646. .label-inverse-learun {
  1647. background: #1f3853;
  1648. }
  1649. .label-important-learun {
  1650. background: #f35958;
  1651. }
  1652. .wizard {
  1653. border-left: none;
  1654. border-top: none;
  1655. border-right: none;
  1656. }
  1657. .wizard-step-content {
  1658. border-left: none;
  1659. border-bottom: none;
  1660. border-right: none;
  1661. }
  1662. .wizard-step-pane {
  1663. margin: 10px;
  1664. margin-bottom: 0px;
  1665. }
  1666. .wizard-step-content .drag-tip {
  1667. text-align: center;
  1668. padding-top: 100px;
  1669. }
  1670. .wizard-step-content .drag-tip i {
  1671. font-size: 204px;
  1672. color: #0FA74F;
  1673. }
  1674. .wizard-step-content .drag-tip p {
  1675. color: #666;
  1676. font-size: 12px;
  1677. margin-top: 10px;
  1678. }
  1679. .commonForm td:first-child {
  1680. position: relative;
  1681. left: 0px;
  1682. text-align: right;
  1683. white-space: nowrap;
  1684. font-weight: normal;
  1685. width: 90px;
  1686. padding-right: 10px;
  1687. }
  1688. .commonForm td:first-child font {
  1689. color: red;
  1690. position: absolute;
  1691. right: 0px;
  1692. }
  1693. .commonForm td:last-child {
  1694. position: relative;
  1695. left: 0px;
  1696. text-align: right;
  1697. white-space: nowrap;
  1698. font-weight: normal;
  1699. width: 90px;
  1700. padding-right: 10px;
  1701. }
  1702. .commonForm td:last-child select {
  1703. padding: 4px;
  1704. padding-left: 4px;
  1705. }