global.css 41 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884
  1. @charset "utf-8";
  2. /*Reset 样式初始化*/
  3. html, body, form, fieldset, p, a, ul, ol, li, div, legend, label,
  4. br, input, button, textarea, h1, h2, h3, h4, h5,em{
  5. padding: 0;
  6. margin: 0;
  7. font-weight: normal;
  8. font-style: normal;
  9. font-size: 12px;
  10. font-family:"微软雅黑","Tahoma";
  11. vertical-align: baseline;
  12. text-align:justify;
  13. word-wrap:break-word;
  14. text-justify:inter-ideograph
  15. }
  16. body{text-align:center}
  17. ul, ol, li, h1 {
  18. line-height:normal;
  19. list-style-image:none;
  20. list-style-position:outside;
  21. list-style-type:none
  22. }
  23. dl {
  24. margin:0
  25. }
  26. dd {
  27. margin-left:0
  28. }
  29. a {
  30. outline:none;
  31. }
  32. a img {
  33. border:0 none
  34. }
  35. img {
  36. vertical-align:middle;
  37. border:0px
  38. }
  39. table {
  40. border-collapse:collapse
  41. }
  42. .clearfix:after {
  43. content:".";
  44. display:block;
  45. height:0;
  46. clear:both;
  47. visibility:hidden
  48. }
  49. .clearfix {
  50. display:inline-block;
  51. overflow:hidden
  52. }
  53. .clearfix {
  54. display:block
  55. }
  56. body {color:#6C6C76;background:#f2f2f2}
  57. a {color:#3366cc;text-decoration:none}
  58. a:hover {color:#ff6501}
  59. .width960{width:960px;margin:0 auto}
  60. h3{font-size:24px}
  61. /**/
  62. .clearB {clear:both}
  63. .fL {float:left}
  64. .fR {float:right}
  65. .taC{text-align: center}
  66. .taR{text-align: right}
  67. .taL{text-align: left}
  68. :link, *:visited, *:hover, *:active, *:focus {
  69. -moz-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  70. -webkit-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  71. transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  72. -o-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  73. }
  74. .colRed {color:#f90000}
  75. .colOrange {color:#ed8b00}
  76. .colYel {color:#d9a601}
  77. .colGreen{color:#27AE60}
  78. .colGray{color:#999}
  79. .colBlue{color:#277DB6}
  80. .hide {display:none}
  81. .button {
  82. float:left;
  83. height:32px;
  84. margin-right:2px;
  85. padding:0px 30px;
  86. line-height:32px;
  87. text-align:center;
  88. overflow:hidden;
  89. font-weight:bold;
  90. color:#FFF;
  91. border-radius:3px;
  92. text-shadow:0 1px rgba(0, 0, 0, 0.1);
  93. text-decoration:none;
  94. border:none
  95. }
  96. input.button{
  97. height:35px;
  98. line-height:35px
  99. }
  100. .button:hover{
  101. color:#fff
  102. }
  103. .button.btn-blue{
  104. background-color:#006fd8;
  105. border-bottom:3px solid #014687
  106. }
  107. .button.btn-blue:hover{
  108. background-color:#0076e4;
  109. }
  110. .button.btn-blue:active{
  111. background-color:#014687;
  112. }
  113. .button.btn-red{
  114. background-color:#E74C3C;
  115. border-bottom:3px solid #C44133
  116. }
  117. .button.btn-red:hover{
  118. background-color:#EC7063;
  119. }
  120. .button.btn-red:active{
  121. background-color:#C44133;
  122. }
  123. .button.btn-green{
  124. background-color:#1ABC9C;
  125. border-bottom:3px solid #16a085
  126. }
  127. .button.btn-green:hover{
  128. background-color:#48C9B0;
  129. }
  130. .button.btn-green:active{
  131. background-color:#16A085;
  132. }
  133. .button.btn-dark{
  134. background-color:#415B76;
  135. border-bottom:3px solid #2c3e50
  136. }
  137. .button.btn-dark:hover{
  138. background-color:#456a91;
  139. }
  140. .button.btn-dark:active{
  141. background-color:#2c3e50;
  142. }
  143. .inputText{
  144. width:274px;
  145. border:1px solid #dcdcdc;
  146. border-top-color:#abadb3;
  147. border-left-color:#abadb3;
  148. padding:7px;
  149. background:#fff url(inputBg.png) repeat-x 0 0;
  150. font-size:14px;
  151. color:#999;
  152. border-radius:2px;
  153. -moz-border-radius:2px;
  154. -webkit-border-radius:2px;
  155. outline: medium none;
  156. height:18px;
  157. line-height:18px
  158. }
  159. .inputText:focus{
  160. border-color:#ff6501;
  161. color:#ff6501;
  162. background:#fff
  163. }
  164. a.detil,input.detil{
  165. padding:0 12px;
  166. height:50px;
  167. line-height:50px;
  168. text-align:center;
  169. background:#2980B9;
  170. color:#fff;
  171. font-size:14px;
  172. border:none;
  173. }
  174. a.detil:hover,input.detil:hover{
  175. background:#3498db
  176. }
  177. a.detil.btnGreen,a.ebutton.btnGreen,input.detil.btnGreen,input.ebutton.btnGreen{
  178. background:#27ae60
  179. }
  180. .detil.btnGreen:hover,.ebutton.btnGreen:hover{
  181. background:#2ecc71
  182. }
  183. .detil.btnRed,.ebutton.btnRed{
  184. background:#A96A5B
  185. }
  186. .detil.btnRed:hover,.ebutton.btnRed:hover{
  187. background:#9b5443
  188. }
  189. .detil.btnOrange,.ebutton.btnOrange{
  190. background:#D35400
  191. }
  192. .detil.btnOrange:hover,.ebutton.btnOrange:hover{
  193. background:#E67E22
  194. }
  195. .detil.btnDark,.ebutton.btnDark{
  196. background:#415B76
  197. }
  198. .detil.btnDark:hover,.ebutton.btnDark:hover{
  199. background:#456a91
  200. }
  201. .detil.btnGary,.ebutton.btnGary{
  202. background:#999
  203. }
  204. .detil.btnGary:hover,.ebutton.btnGary:hover{
  205. background:#999
  206. }
  207. a.ebutton,input.ebutton{
  208. background: none repeat scroll 0 0 #2980b9;
  209. color: #FFFFFF;
  210. cursor: pointer;
  211. font-size: 14px;
  212. text-align: center;
  213. padding:0 10px;
  214. margin:0 1px 0 0
  215. }
  216. a.ebutton:hover,input.ebutton:hover{
  217. background:#3498db
  218. }
  219. /*scroll*/
  220. .scrollgeneric {
  221. line-height:1px;
  222. font-size:1px;
  223. position:absolute;
  224. top:0;
  225. left:0
  226. }
  227. .vscrollerbase {
  228. width:10px;
  229. background-color:#6C6C76;
  230. }
  231. .vscrollerbar {
  232. width:10px;
  233. background-color:#5B9AA9
  234. }
  235. .hscrollerbase {
  236. height:10px;
  237. background-color:#6C6C76;
  238. z-index:99;
  239. }
  240. .hscrollerbar {
  241. height:10px;
  242. background-color:#5B9AA9;
  243. }
  244. .scrollerjogbox {
  245. width:10px;
  246. height:10px;
  247. top:auto;
  248. left:auto;
  249. bottom:0;
  250. right:0;
  251. background-color:#6C6C76;
  252. }
  253. .vscrollerbar, .hscrollerbar{padding:1px}
  254. /*form*/
  255. form {
  256. margin: 0 0 20px;
  257. }
  258. fieldset {
  259. padding: 0;
  260. margin: 0;
  261. border: 0;
  262. }
  263. legend {
  264. display: block;
  265. width: 100%;
  266. padding: 0;
  267. margin-bottom: 20px;
  268. font-size: 21px;
  269. line-height: 40px;
  270. color: #333333;
  271. border: 0;
  272. border-bottom: 1px solid #e5e5e5;
  273. }
  274. legend small {
  275. font-size: 15px;
  276. color: #999999;
  277. }
  278. label,
  279. input,
  280. button,
  281. select,
  282. textarea {
  283. font-size: 14px;
  284. font-weight: normal;
  285. line-height: 20px;
  286. }
  287. input,
  288. button,
  289. select,
  290. textarea {
  291. font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  292. }
  293. label {
  294. display: block;
  295. margin-bottom: 5px;
  296. }
  297. select,
  298. textarea,
  299. input[type="text"],
  300. input[type="password"],
  301. input[type="datetime"],
  302. input[type="datetime-local"],
  303. input[type="date"],
  304. input[type="month"],
  305. input[type="time"],
  306. input[type="week"],
  307. input[type="number"],
  308. input[type="email"],
  309. input[type="url"],
  310. input[type="search"],
  311. input[type="tel"],
  312. input[type="color"],
  313. .uneditable-input {
  314. display: inline-block;
  315. height: 20px;
  316. padding: 4px 6px;
  317. margin-bottom: 10px;
  318. font-size: 12px;
  319. line-height: 20px;
  320. color: #555555;
  321. -webkit-border-radius: 4px;
  322. -moz-border-radius: 4px;
  323. border-radius: 4px;
  324. vertical-align: middle;
  325. }
  326. /*input,
  327. textarea,
  328. .uneditable-input {
  329. width: 206px;
  330. }*/
  331. textarea {
  332. height: auto;
  333. }
  334. textarea,
  335. input[type="text"],
  336. input[type="password"],
  337. input[type="datetime"],
  338. input[type="datetime-local"],
  339. input[type="date"],
  340. input[type="month"],
  341. input[type="time"],
  342. input[type="week"],
  343. input[type="number"],
  344. input[type="email"],
  345. input[type="url"],
  346. input[type="search"],
  347. input[type="tel"],
  348. input[type="color"],
  349. .uneditable-input {
  350. background-color: #ffffff;
  351. border: 1px solid #cccccc;
  352. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  353. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  354. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  355. -webkit-transition: border linear .2s, box-shadow linear .2s;
  356. -moz-transition: border linear .2s, box-shadow linear .2s;
  357. -o-transition: border linear .2s, box-shadow linear .2s;
  358. transition: border linear .2s, box-shadow linear .2s;
  359. }
  360. textarea:focus,
  361. input[type="text"]:focus,
  362. input[type="password"]:focus,
  363. input[type="datetime"]:focus,
  364. input[type="datetime-local"]:focus,
  365. input[type="date"]:focus,
  366. input[type="month"]:focus,
  367. input[type="time"]:focus,
  368. input[type="week"]:focus,
  369. input[type="number"]:focus,
  370. input[type="email"]:focus,
  371. input[type="url"]:focus,
  372. input[type="search"]:focus,
  373. input[type="tel"]:focus,
  374. input[type="color"]:focus,
  375. .uneditable-input:focus {
  376. border-color: rgba(82, 168, 236, 0.8);
  377. outline: 0;
  378. outline: thin dotted \9;
  379. /* IE6-9 */
  380. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  381. -moz-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  382. box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);
  383. }
  384. input[type="radio"],
  385. input[type="checkbox"] {
  386. margin: 4px 0 0;
  387. *margin-top: 0;
  388. /* IE7 */
  389. margin-top: 1px \9;
  390. /* IE8-9 */
  391. line-height: normal;
  392. }
  393. input[type="file"],
  394. input[type="image"],
  395. input[type="submit"],
  396. input[type="reset"],
  397. input[type="button"],
  398. input[type="radio"],
  399. input[type="checkbox"] {
  400. width: auto;
  401. }
  402. select,
  403. input[type="file"] {
  404. height: 30px;
  405. /* In IE7, the height of the select element cannot be changed by height, only font-size */
  406. *margin-top: 4px;
  407. /* For IE7, add top margin to align select with labels */
  408. line-height: 30px;
  409. }
  410. select {
  411. border: 1px solid #cccccc;
  412. background-color: #ffffff;
  413. }
  414. select[multiple],
  415. select[size] {
  416. height: auto;
  417. }
  418. select:focus,
  419. input[type="file"]:focus,
  420. input[type="radio"]:focus,
  421. input[type="checkbox"]:focus {
  422. outline: thin dotted #333;
  423. outline: 5px auto -webkit-focus-ring-color;
  424. outline-offset: -2px;
  425. }
  426. .uneditable-input,
  427. .uneditable-textarea {
  428. color: #999999;
  429. background-color: #fcfcfc;
  430. border-color: #cccccc;
  431. -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  432. -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  433. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.025);
  434. cursor: not-allowed;
  435. }
  436. .uneditable-input {
  437. overflow: hidden;
  438. white-space: nowrap;
  439. }
  440. .uneditable-textarea {
  441. width: auto;
  442. height: auto;
  443. }
  444. input:-moz-placeholder,
  445. textarea:-moz-placeholder {
  446. color: #999999;
  447. }
  448. input:-ms-input-placeholder,
  449. textarea:-ms-input-placeholder {
  450. color: #999999;
  451. }
  452. input::-webkit-input-placeholder,
  453. textarea::-webkit-input-placeholder {
  454. color: #999999;
  455. }
  456. .radio,
  457. .checkbox {
  458. min-height: 20px;
  459. padding-left: 20px;
  460. }
  461. .radio input[type="radio"],
  462. .checkbox input[type="checkbox"] {
  463. float: left;
  464. margin-left: -20px;
  465. }
  466. .controls > .radio:first-child,
  467. .controls > .checkbox:first-child {
  468. padding-top: 5px;
  469. }
  470. .radio.inline,
  471. .checkbox.inline {
  472. display: inline-block;
  473. padding-top: 5px;
  474. margin-bottom: 0;
  475. vertical-align: middle;
  476. }
  477. .radio.inline + .radio.inline,
  478. .checkbox.inline + .checkbox.inline {
  479. margin-left: 10px;
  480. }
  481. .input-mini {
  482. width: 60px;
  483. }
  484. .input-small {
  485. width: 90px;
  486. }
  487. .input-medium {
  488. width: 150px;
  489. }
  490. .input-large {
  491. width: 210px;
  492. }
  493. .input-xlarge {
  494. width: 270px;
  495. }
  496. .input-xxlarge {
  497. width: 530px;
  498. }
  499. input[class*="span"],
  500. select[class*="span"],
  501. textarea[class*="span"],
  502. .uneditable-input[class*="span"],
  503. .row-fluid input[class*="span"],
  504. .row-fluid select[class*="span"],
  505. .row-fluid textarea[class*="span"],
  506. .row-fluid .uneditable-input[class*="span"] {
  507. float: none;
  508. margin-left: 0;
  509. }
  510. .input-append input[class*="span"],
  511. .input-append .uneditable-input[class*="span"],
  512. .input-prepend input[class*="span"],
  513. .input-prepend .uneditable-input[class*="span"],
  514. .row-fluid input[class*="span"],
  515. .row-fluid select[class*="span"],
  516. .row-fluid textarea[class*="span"],
  517. .row-fluid .uneditable-input[class*="span"],
  518. .row-fluid .input-prepend [class*="span"],
  519. .row-fluid .input-append [class*="span"] {
  520. display: inline-block;
  521. }
  522. input,
  523. textarea,
  524. .uneditable-input {
  525. margin-left: 0;
  526. }
  527. .controls-row [class*="span"] + [class*="span"] {
  528. margin-left: 20px;
  529. }
  530. input.span12,
  531. textarea.span12,
  532. .uneditable-input.span12 {
  533. width: 926px;
  534. }
  535. input.span11,
  536. textarea.span11,
  537. .uneditable-input.span11 {
  538. width: 846px;
  539. }
  540. input.span10,
  541. textarea.span10,
  542. .uneditable-input.span10 {
  543. width: 766px;
  544. }
  545. input.span9,
  546. textarea.span9,
  547. .uneditable-input.span9 {
  548. width: 686px;
  549. }
  550. input.span8,
  551. textarea.span8,
  552. .uneditable-input.span8 {
  553. width: 606px;
  554. }
  555. input.span7,
  556. textarea.span7,
  557. .uneditable-input.span7 {
  558. width: 526px;
  559. }
  560. input.span6,
  561. textarea.span6,
  562. .uneditable-input.span6 {
  563. width: 446px;
  564. }
  565. input.span5,
  566. textarea.span5,
  567. .uneditable-input.span5 {
  568. width: 366px;
  569. }
  570. input.span4,
  571. textarea.span4,
  572. .uneditable-input.span4 {
  573. width: 286px;
  574. }
  575. input.span3,
  576. textarea.span3,
  577. .uneditable-input.span3 {
  578. width: 206px;
  579. }
  580. input.span2,
  581. textarea.span2,
  582. .uneditable-input.span2 {
  583. width: 126px;
  584. }
  585. input.span1,
  586. textarea.span1,
  587. .uneditable-input.span1 {
  588. width: 46px;
  589. }
  590. .controls-row {
  591. *zoom: 1;
  592. }
  593. .controls-row:before,
  594. .controls-row:after {
  595. display: table;
  596. content: "";
  597. line-height: 0;
  598. }
  599. .controls-row:after {
  600. clear: both;
  601. }
  602. .controls-row [class*="span"],
  603. .row-fluid .controls-row [class*="span"] {
  604. float: left;
  605. }
  606. .controls-row .checkbox[class*="span"],
  607. .controls-row .radio[class*="span"] {
  608. padding-top: 5px;
  609. }
  610. input[disabled],
  611. select[disabled],
  612. textarea[disabled],
  613. input[readonly],
  614. select[readonly],
  615. textarea[readonly] {
  616. cursor: not-allowed;
  617. background-color: #eeeeee;
  618. }
  619. input[type="radio"][disabled],
  620. input[type="checkbox"][disabled],
  621. input[type="radio"][readonly],
  622. input[type="checkbox"][readonly] {
  623. background-color: transparent;
  624. }
  625. .control-group.warning .control-label,
  626. .control-group.warning .help-block,
  627. .control-group.warning .help-inline {
  628. color: #c09853;
  629. }
  630. .control-group.warning .checkbox,
  631. .control-group.warning .radio,
  632. .control-group.warning input,
  633. .control-group.warning select,
  634. .control-group.warning textarea {
  635. color: #c09853;
  636. }
  637. .control-group.warning input,
  638. .control-group.warning select,
  639. .control-group.warning textarea {
  640. border-color: #c09853;
  641. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  642. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  643. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  644. }
  645. .control-group.warning input:focus,
  646. .control-group.warning select:focus,
  647. .control-group.warning textarea:focus {
  648. border-color: #a47e3c;
  649. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  650. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  651. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #dbc59e;
  652. }
  653. .control-group.warning .input-prepend .add-on,
  654. .control-group.warning .input-append .add-on {
  655. color: #c09853;
  656. background-color: #fcf8e3;
  657. border-color: #c09853;
  658. }
  659. .control-group.error .control-label,
  660. .control-group.error .help-block,
  661. .control-group.error .help-inline {
  662. color: #b94a48;
  663. }
  664. .control-group.error .checkbox,
  665. .control-group.error .radio,
  666. .control-group.error input,
  667. .control-group.error select,
  668. .control-group.error textarea {
  669. color: #b94a48;
  670. }
  671. .control-group.error input,
  672. .control-group.error select,
  673. .control-group.error textarea {
  674. border-color: #b94a48;
  675. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  676. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  677. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  678. }
  679. .control-group.error input:focus,
  680. .control-group.error select:focus,
  681. .control-group.error textarea:focus {
  682. border-color: #953b39;
  683. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  684. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  685. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #d59392;
  686. }
  687. .control-group.error .input-prepend .add-on,
  688. .control-group.error .input-append .add-on {
  689. color: #b94a48;
  690. background-color: #f2dede;
  691. border-color: #b94a48;
  692. }
  693. .control-group.success .control-label,
  694. .control-group.success .help-block,
  695. .control-group.success .help-inline {
  696. color: #468847;
  697. }
  698. .control-group.success .checkbox,
  699. .control-group.success .radio,
  700. .control-group.success input,
  701. .control-group.success select,
  702. .control-group.success textarea {
  703. color: #468847;
  704. }
  705. .control-group.success input,
  706. .control-group.success select,
  707. .control-group.success textarea {
  708. border-color: #468847;
  709. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  710. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  711. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  712. }
  713. .control-group.success input:focus,
  714. .control-group.success select:focus,
  715. .control-group.success textarea:focus {
  716. border-color: #356635;
  717. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  718. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  719. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7aba7b;
  720. }
  721. .control-group.success .input-prepend .add-on,
  722. .control-group.success .input-append .add-on {
  723. color: #468847;
  724. background-color: #dff0d8;
  725. border-color: #468847;
  726. }
  727. .control-group.info .control-label,
  728. .control-group.info .help-block,
  729. .control-group.info .help-inline {
  730. color: #3a87ad;
  731. }
  732. .control-group.info .checkbox,
  733. .control-group.info .radio,
  734. .control-group.info input,
  735. .control-group.info select,
  736. .control-group.info textarea {
  737. color: #3a87ad;
  738. }
  739. .control-group.info input,
  740. .control-group.info select,
  741. .control-group.info textarea {
  742. border-color: #3a87ad;
  743. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  744. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  745. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  746. }
  747. .control-group.info input:focus,
  748. .control-group.info select:focus,
  749. .control-group.info textarea:focus {
  750. border-color: #2d6987;
  751. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  752. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  753. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #7ab5d3;
  754. }
  755. .control-group.info .input-prepend .add-on,
  756. .control-group.info .input-append .add-on {
  757. color: #3a87ad;
  758. background-color: #d9edf7;
  759. border-color: #3a87ad;
  760. }
  761. input:focus:invalid,
  762. textarea:focus:invalid,
  763. select:focus:invalid {
  764. color: #b94a48;
  765. border-color: #ee5f5b;
  766. }
  767. input:focus:invalid:focus,
  768. textarea:focus:invalid:focus,
  769. select:focus:invalid:focus {
  770. border-color: #e9322d;
  771. -webkit-box-shadow: 0 0 6px #f8b9b7;
  772. -moz-box-shadow: 0 0 6px #f8b9b7;
  773. box-shadow: 0 0 6px #f8b9b7;
  774. }
  775. .form-actions {
  776. padding: 19px 20px 20px;
  777. margin-top: 20px;
  778. margin-bottom: 20px;
  779. background-color: #f5f5f5;
  780. border-top: 1px solid #e5e5e5;
  781. *zoom: 1;
  782. }
  783. .form-actions:before,
  784. .form-actions:after {
  785. display: table;
  786. content: "";
  787. line-height: 0;
  788. }
  789. .form-actions:after {
  790. clear: both;
  791. }
  792. .help-block,
  793. .help-inline {
  794. color: #595959;
  795. }
  796. .help-block {
  797. display: block;
  798. margin-bottom: 10px;
  799. }
  800. .help-inline {
  801. display: inline-block;
  802. *display: inline;
  803. /* IE7 inline-block hack */
  804. *zoom: 1;
  805. vertical-align: middle;
  806. padding-left: 5px;
  807. }
  808. .input-append,
  809. .input-prepend {
  810. display: inline-block;
  811. margin-bottom: 10px;
  812. vertical-align: middle;
  813. font-size: 0;
  814. white-space: nowrap;
  815. }
  816. .input-append input,
  817. .input-prepend input,
  818. .input-append select,
  819. .input-prepend select,
  820. .input-append .uneditable-input,
  821. .input-prepend .uneditable-input,
  822. .input-append .dropdown-menu,
  823. .input-prepend .dropdown-menu,
  824. .input-append .popover,
  825. .input-prepend .popover {
  826. font-size: 14px;
  827. }
  828. .input-append input,
  829. .input-prepend input,
  830. .input-append select,
  831. .input-prepend select,
  832. .input-append .uneditable-input,
  833. .input-prepend .uneditable-input {
  834. position: relative;
  835. margin-bottom: 0;
  836. *margin-left: 0;
  837. vertical-align: top;
  838. -webkit-border-radius: 0 4px 4px 0;
  839. -moz-border-radius: 0 4px 4px 0;
  840. border-radius: 0 4px 4px 0;
  841. }
  842. .input-append input:focus,
  843. .input-prepend input:focus,
  844. .input-append select:focus,
  845. .input-prepend select:focus,
  846. .input-append .uneditable-input:focus,
  847. .input-prepend .uneditable-input:focus {
  848. z-index: 2;
  849. }
  850. .input-append .add-on,
  851. .input-prepend .add-on {
  852. display: inline-block;
  853. width: auto;
  854. height: 20px;
  855. min-width: 16px;
  856. padding: 4px 5px;
  857. font-size: 14px;
  858. font-weight: normal;
  859. line-height: 20px;
  860. text-align: center;
  861. text-shadow: 0 1px 0 #ffffff;
  862. background-color: #eeeeee;
  863. border: 1px solid #ccc;
  864. }
  865. .input-append .add-on,
  866. .input-prepend .add-on,
  867. .input-append .btn,
  868. .input-prepend .btn,
  869. .input-append .btn-group > .dropdown-toggle,
  870. .input-prepend .btn-group > .dropdown-toggle {
  871. vertical-align: top;
  872. -webkit-border-radius: 0;
  873. -moz-border-radius: 0;
  874. border-radius: 0;
  875. }
  876. .input-append .active,
  877. .input-prepend .active {
  878. background-color: #a9dba9;
  879. border-color: #46a546;
  880. }
  881. .input-prepend .add-on,
  882. .input-prepend .btn {
  883. margin-right: -1px;
  884. }
  885. .input-prepend .add-on:first-child,
  886. .input-prepend .btn:first-child {
  887. -webkit-border-radius: 4px 0 0 4px;
  888. -moz-border-radius: 4px 0 0 4px;
  889. border-radius: 4px 0 0 4px;
  890. }
  891. .input-append input,
  892. .input-append select,
  893. .input-append .uneditable-input {
  894. -webkit-border-radius: 4px 0 0 4px;
  895. -moz-border-radius: 4px 0 0 4px;
  896. border-radius: 4px 0 0 4px;
  897. }
  898. .input-append input + .btn-group .btn:last-child,
  899. .input-append select + .btn-group .btn:last-child,
  900. .input-append .uneditable-input + .btn-group .btn:last-child {
  901. -webkit-border-radius: 0 4px 4px 0;
  902. -moz-border-radius: 0 4px 4px 0;
  903. border-radius: 0 4px 4px 0;
  904. }
  905. .input-append .add-on,
  906. .input-append .btn,
  907. .input-append .btn-group {
  908. margin-left: -1px;
  909. }
  910. .input-append .add-on:last-child,
  911. .input-append .btn:last-child,
  912. .input-append .btn-group:last-child > .dropdown-toggle {
  913. -webkit-border-radius: 0 4px 4px 0;
  914. -moz-border-radius: 0 4px 4px 0;
  915. border-radius: 0 4px 4px 0;
  916. }
  917. .input-prepend.input-append input,
  918. .input-prepend.input-append select,
  919. .input-prepend.input-append .uneditable-input {
  920. -webkit-border-radius: 0;
  921. -moz-border-radius: 0;
  922. border-radius: 0;
  923. }
  924. .input-prepend.input-append input + .btn-group .btn,
  925. .input-prepend.input-append select + .btn-group .btn,
  926. .input-prepend.input-append .uneditable-input + .btn-group .btn {
  927. -webkit-border-radius: 0 4px 4px 0;
  928. -moz-border-radius: 0 4px 4px 0;
  929. border-radius: 0 4px 4px 0;
  930. }
  931. .input-prepend.input-append .add-on:first-child,
  932. .input-prepend.input-append .btn:first-child {
  933. margin-right: -1px;
  934. -webkit-border-radius: 4px 0 0 4px;
  935. -moz-border-radius: 4px 0 0 4px;
  936. border-radius: 4px 0 0 4px;
  937. }
  938. .input-prepend.input-append .add-on:last-child,
  939. .input-prepend.input-append .btn:last-child {
  940. margin-left: -1px;
  941. -webkit-border-radius: 0 4px 4px 0;
  942. -moz-border-radius: 0 4px 4px 0;
  943. border-radius: 0 4px 4px 0;
  944. }
  945. .input-prepend.input-append .btn-group:first-child {
  946. margin-left: 0;
  947. }
  948. input.search-query {
  949. padding-right: 14px;
  950. padding-right: 4px \9;
  951. padding-left: 14px;
  952. padding-left: 4px \9;
  953. /* IE7-8 doesn't have border-radius, so don't indent the padding */
  954. margin-bottom: 0;
  955. -webkit-border-radius: 15px;
  956. -moz-border-radius: 15px;
  957. border-radius: 15px;
  958. }
  959. /* Allow for input prepend/append in search forms */
  960. .form-search .input-append .search-query,
  961. .form-search .input-prepend .search-query {
  962. -webkit-border-radius: 0;
  963. -moz-border-radius: 0;
  964. border-radius: 0;
  965. }
  966. .form-search .input-append .search-query {
  967. -webkit-border-radius: 14px 0 0 14px;
  968. -moz-border-radius: 14px 0 0 14px;
  969. border-radius: 14px 0 0 14px;
  970. }
  971. .form-search .input-append .btn {
  972. -webkit-border-radius: 0 14px 14px 0;
  973. -moz-border-radius: 0 14px 14px 0;
  974. border-radius: 0 14px 14px 0;
  975. }
  976. .form-search .input-prepend .search-query {
  977. -webkit-border-radius: 0 14px 14px 0;
  978. -moz-border-radius: 0 14px 14px 0;
  979. border-radius: 0 14px 14px 0;
  980. }
  981. .form-search .input-prepend .btn {
  982. -webkit-border-radius: 14px 0 0 14px;
  983. -moz-border-radius: 14px 0 0 14px;
  984. border-radius: 14px 0 0 14px;
  985. }
  986. .form-search input,
  987. .form-inline input,
  988. .form-horizontal input,
  989. .form-search textarea,
  990. .form-inline textarea,
  991. .form-horizontal textarea,
  992. .form-search select,
  993. .form-inline select,
  994. .form-horizontal select,
  995. .form-search .help-inline,
  996. .form-inline .help-inline,
  997. .form-horizontal .help-inline,
  998. .form-search .uneditable-input,
  999. .form-inline .uneditable-input,
  1000. .form-horizontal .uneditable-input,
  1001. .form-search .input-prepend,
  1002. .form-inline .input-prepend,
  1003. .form-horizontal .input-prepend,
  1004. .form-search .input-append,
  1005. .form-inline .input-append,
  1006. .form-horizontal .input-append {
  1007. display: inline-block;
  1008. *display: inline;
  1009. /* IE7 inline-block hack */
  1010. *zoom: 1;
  1011. margin-bottom: 0;
  1012. vertical-align: middle;
  1013. }
  1014. .form-search .hide,
  1015. .form-inline .hide,
  1016. .form-horizontal .hide {
  1017. display: none;
  1018. }
  1019. .form-search label,
  1020. .form-inline label,
  1021. .form-search .btn-group,
  1022. .form-inline .btn-group {
  1023. display: inline-block;
  1024. }
  1025. .form-search .input-append,
  1026. .form-inline .input-append,
  1027. .form-search .input-prepend,
  1028. .form-inline .input-prepend {
  1029. margin-bottom: 0;
  1030. }
  1031. .form-search .radio,
  1032. .form-search .checkbox,
  1033. .form-inline .radio,
  1034. .form-inline .checkbox {
  1035. padding-left: 0;
  1036. margin-bottom: 0;
  1037. vertical-align: middle;
  1038. }
  1039. .form-search .radio input[type="radio"],
  1040. .form-search .checkbox input[type="checkbox"],
  1041. .form-inline .radio input[type="radio"],
  1042. .form-inline .checkbox input[type="checkbox"] {
  1043. float: left;
  1044. margin-right: 3px;
  1045. margin-left: 0;
  1046. }
  1047. .control-group {
  1048. margin-bottom: 10px;
  1049. }
  1050. legend + .control-group {
  1051. margin-top: 20px;
  1052. -webkit-margin-top-collapse: separate;
  1053. }
  1054. .form-horizontal .control-group {
  1055. margin-bottom: 20px;
  1056. *zoom: 1;
  1057. }
  1058. .form-horizontal .control-group:before,
  1059. .form-horizontal .control-group:after {
  1060. display: table;
  1061. content: "";
  1062. line-height: 0;
  1063. }
  1064. .form-horizontal .control-group:after {
  1065. clear: both;
  1066. }
  1067. .form-horizontal .control-label {
  1068. float: left;
  1069. width: 160px;
  1070. padding-top: 5px;
  1071. text-align: right;
  1072. }
  1073. .form-horizontal .controls {
  1074. *display: inline-block;
  1075. *padding-left: 20px;
  1076. margin-left: 180px;
  1077. *margin-left: 0;
  1078. }
  1079. .form-horizontal .controls:first-child {
  1080. *padding-left: 180px;
  1081. }
  1082. .form-horizontal .help-block {
  1083. margin-bottom: 0;
  1084. }
  1085. .form-horizontal input + .help-block,
  1086. .form-horizontal select + .help-block,
  1087. .form-horizontal textarea + .help-block,
  1088. .form-horizontal .uneditable-input + .help-block,
  1089. .form-horizontal .input-prepend + .help-block,
  1090. .form-horizontal .input-append + .help-block {
  1091. margin-top: 10px;
  1092. }
  1093. .form-horizontal .form-actions {
  1094. padding-left: 180px;
  1095. }
  1096. table {
  1097. max-width: 100%;
  1098. background-color: transparent;
  1099. border-collapse: collapse;
  1100. border-spacing: 0;
  1101. }
  1102. .table {
  1103. width: 100%
  1104. }
  1105. .table th,
  1106. .table td {
  1107. padding:5px 5px;
  1108. line-height: 20px;
  1109. text-align: left;
  1110. vertical-align: top;
  1111. border-top: 1px solid #dddddd;
  1112. }
  1113. .table th {
  1114. font-weight: bold;
  1115. }
  1116. .table thead th {
  1117. vertical-align: bottom;
  1118. }
  1119. .table caption + thead tr:first-child th,
  1120. .table caption + thead tr:first-child td,
  1121. .table colgroup + thead tr:first-child th,
  1122. .table colgroup + thead tr:first-child td,
  1123. .table thead:first-child tr:first-child th,
  1124. .table thead:first-child tr:first-child td {
  1125. border-top: 0;
  1126. }
  1127. .table tbody + tbody {
  1128. border-top: 2px solid #dddddd;
  1129. }
  1130. .table .table {
  1131. background-color: #ffffff;
  1132. }
  1133. .table-condensed th,
  1134. .table-condensed td {
  1135. padding: 4px 5px;
  1136. }
  1137. .table-bordered {
  1138. border: 1px solid #dddddd;
  1139. border-collapse: separate;
  1140. *border-collapse: collapse;
  1141. border-left: 0;
  1142. -webkit-border-radius: 4px;
  1143. -moz-border-radius: 4px;
  1144. border-radius: 4px;
  1145. }
  1146. .table-bordered th,
  1147. .table-bordered td {
  1148. border-left: 1px solid #dddddd;
  1149. }
  1150. .table-bordered caption + thead tr:first-child th,
  1151. .table-bordered caption + tbody tr:first-child th,
  1152. .table-bordered caption + tbody tr:first-child td,
  1153. .table-bordered colgroup + thead tr:first-child th,
  1154. .table-bordered colgroup + tbody tr:first-child th,
  1155. .table-bordered colgroup + tbody tr:first-child td,
  1156. .table-bordered thead:first-child tr:first-child th,
  1157. .table-bordered tbody:first-child tr:first-child th,
  1158. .table-bordered tbody:first-child tr:first-child td {
  1159. border-top: 0;
  1160. }
  1161. .table-bordered thead:first-child tr:first-child > th:first-child,
  1162. .table-bordered tbody:first-child tr:first-child > td:first-child,
  1163. .table-bordered tbody:first-child tr:first-child > th:first-child {
  1164. -webkit-border-top-left-radius: 4px;
  1165. -moz-border-radius-topleft: 4px;
  1166. border-top-left-radius: 4px;
  1167. }
  1168. .table-bordered thead:first-child tr:first-child > th:last-child,
  1169. .table-bordered tbody:first-child tr:first-child > td:last-child,
  1170. .table-bordered tbody:first-child tr:first-child > th:last-child {
  1171. -webkit-border-top-right-radius: 4px;
  1172. -moz-border-radius-topright: 4px;
  1173. border-top-right-radius: 4px;
  1174. }
  1175. .table-bordered thead:last-child tr:last-child > th:first-child,
  1176. .table-bordered tbody:last-child tr:last-child > td:first-child,
  1177. .table-bordered tbody:last-child tr:last-child > th:first-child,
  1178. .table-bordered tfoot:last-child tr:last-child > td:first-child,
  1179. .table-bordered tfoot:last-child tr:last-child > th:first-child {
  1180. -webkit-border-bottom-left-radius: 4px;
  1181. -moz-border-radius-bottomleft: 4px;
  1182. border-bottom-left-radius: 4px;
  1183. }
  1184. .table-bordered thead:last-child tr:last-child > th:last-child,
  1185. .table-bordered tbody:last-child tr:last-child > td:last-child,
  1186. .table-bordered tbody:last-child tr:last-child > th:last-child,
  1187. .table-bordered tfoot:last-child tr:last-child > td:last-child,
  1188. .table-bordered tfoot:last-child tr:last-child > th:last-child {
  1189. -webkit-border-bottom-right-radius: 4px;
  1190. -moz-border-radius-bottomright: 4px;
  1191. border-bottom-right-radius: 4px;
  1192. }
  1193. .table-bordered tfoot + tbody:last-child tr:last-child td:first-child {
  1194. -webkit-border-bottom-left-radius: 0;
  1195. -moz-border-radius-bottomleft: 0;
  1196. border-bottom-left-radius: 0;
  1197. }
  1198. .table-bordered tfoot + tbody:last-child tr:last-child td:last-child {
  1199. -webkit-border-bottom-right-radius: 0;
  1200. -moz-border-radius-bottomright: 0;
  1201. border-bottom-right-radius: 0;
  1202. }
  1203. .table-bordered caption + thead tr:first-child th:first-child,
  1204. .table-bordered caption + tbody tr:first-child td:first-child,
  1205. .table-bordered colgroup + thead tr:first-child th:first-child,
  1206. .table-bordered colgroup + tbody tr:first-child td:first-child {
  1207. -webkit-border-top-left-radius: 4px;
  1208. -moz-border-radius-topleft: 4px;
  1209. border-top-left-radius: 4px;
  1210. }
  1211. .table-bordered caption + thead tr:first-child th:last-child,
  1212. .table-bordered caption + tbody tr:first-child td:last-child,
  1213. .table-bordered colgroup + thead tr:first-child th:last-child,
  1214. .table-bordered colgroup + tbody tr:first-child td:last-child {
  1215. -webkit-border-top-right-radius: 4px;
  1216. -moz-border-radius-topright: 4px;
  1217. border-top-right-radius: 4px;
  1218. }
  1219. .table-striped tbody > tr:nth-child(odd) > td,
  1220. .table-striped tbody > tr:nth-child(odd) > th {
  1221. background-color: #f9f9f9;
  1222. }
  1223. .table-hover tbody tr:hover > td,
  1224. .table-hover tbody tr:hover > th {
  1225. background-color: #ffffd6;
  1226. }
  1227. table td[class*="span"],
  1228. table th[class*="span"],
  1229. .row-fluid table td[class*="span"],
  1230. .row-fluid table th[class*="span"] {
  1231. display: table-cell;
  1232. float: none;
  1233. margin-left: 0;
  1234. }
  1235. .table td.span1,
  1236. .table th.span1 {
  1237. float: none;
  1238. width: 44px;
  1239. margin-left: 0;
  1240. }
  1241. .table td.span2,
  1242. .table th.span2 {
  1243. float: none;
  1244. width: 124px;
  1245. margin-left: 0;
  1246. }
  1247. .table td.span3,
  1248. .table th.span3 {
  1249. float: none;
  1250. width: 204px;
  1251. margin-left: 0;
  1252. }
  1253. .table td.span4,
  1254. .table th.span4 {
  1255. float: none;
  1256. width: 284px;
  1257. margin-left: 0;
  1258. }
  1259. .table td.span5,
  1260. .table th.span5 {
  1261. float: none;
  1262. width: 364px;
  1263. margin-left: 0;
  1264. }
  1265. .table td.span6,
  1266. .table th.span6 {
  1267. float: none;
  1268. width: 444px;
  1269. margin-left: 0;
  1270. }
  1271. .table td.span7,
  1272. .table th.span7 {
  1273. float: none;
  1274. width: 524px;
  1275. margin-left: 0;
  1276. }
  1277. .table td.span8,
  1278. .table th.span8 {
  1279. float: none;
  1280. width: 604px;
  1281. margin-left: 0;
  1282. }
  1283. .table td.span9,
  1284. .table th.span9 {
  1285. float: none;
  1286. width: 684px;
  1287. margin-left: 0;
  1288. }
  1289. .table td.span10,
  1290. .table th.span10 {
  1291. float: none;
  1292. width: 764px;
  1293. margin-left: 0;
  1294. }
  1295. .table td.span11,
  1296. .table th.span11 {
  1297. float: none;
  1298. width: 844px;
  1299. margin-left: 0;
  1300. }
  1301. .table td.span12,
  1302. .table th.span12 {
  1303. float: none;
  1304. width: 924px;
  1305. margin-left: 0;
  1306. }
  1307. .table tbody tr.success > td {
  1308. background-color: #dff0d8;
  1309. }
  1310. .table tbody tr.error > td {
  1311. background-color: #f2dede;
  1312. }
  1313. .table tbody tr.warning > td {
  1314. background-color: #fcf8e3;
  1315. }
  1316. .table tbody tr.info > td {
  1317. background-color: #d9edf7;
  1318. }
  1319. .table-hover tbody tr.success:hover > td {
  1320. background-color: #d0e9c6;
  1321. }
  1322. .table-hover tbody tr.error:hover > td {
  1323. background-color: #ebcccc;
  1324. }
  1325. .table-hover tbody tr.warning:hover > td {
  1326. background-color: #faf2cc;
  1327. }
  1328. .table-hover tbody tr.info:hover > td {
  1329. background-color: #c4e3f3;
  1330. }
  1331. /*m*/
  1332. .indexLogin{
  1333. background: url(indexloginbg.png) no-repeat 0 0;
  1334. margin:100px 0 0 0;
  1335. position:relative;
  1336. }
  1337. .loginPanel {
  1338. width:296px;
  1339. height:270px;
  1340. background-color: #fff;
  1341. margin:0 0 0 600px
  1342. }
  1343. .formLine{
  1344. position:relative;
  1345. margin:15px 0
  1346. }
  1347. .formLine .userName{
  1348. color:#333;
  1349. font-size:18px;
  1350. margin:0 0 20px 0
  1351. }
  1352. .loginPanel .warpLogin{
  1353. padding:20px 0 0 23px
  1354. }
  1355. .loginPanel h2{
  1356. font-size:18px
  1357. }
  1358. .loginPanel input.text {
  1359. border: 1px solid #B7B7B7;
  1360. font-size: 20px;
  1361. height: 33px;
  1362. letter-spacing: 1px;
  1363. padding: 1px 1px 1px 40px;
  1364. width: 201px;
  1365. background:url(inputBg.png) repeat-x 0 0
  1366. }
  1367. .loginPanel .textTips{
  1368. color: #999999;
  1369. cursor: text;
  1370. font-size: 14px;
  1371. height: 37px;
  1372. line-height: 37px;
  1373. overflow: hidden;
  1374. padding: 0 2px 0 10px;
  1375. position:absolute;
  1376. left:0
  1377. }
  1378. .loginPanel .formLink{
  1379. margin:0 0 10px 0;
  1380. color:#ccc
  1381. }
  1382. .register {
  1383. background:#fff;
  1384. margin:250px 0 0 0
  1385. }
  1386. .register h1{
  1387. height: 50px;
  1388. line-height: 50px;
  1389. font-size: 24px;
  1390. border-bottom: 1px solid #e0e0e0;
  1391. }
  1392. .register h1 span{
  1393. margin:0 0 0 20px
  1394. }
  1395. .warpHeader {
  1396. height:34px;
  1397. line-height:34px;
  1398. background:#27b689;
  1399. border-bottom:1px solid #6C6C76
  1400. }
  1401. .warpHeader a.logo{
  1402. margin:0
  1403. }
  1404. .warpHeader a.quit{
  1405. height:34px;line-height:34px;
  1406. padding:0 15px;
  1407. background:#6C6C76;
  1408. color:#fff;
  1409. font-weight:600
  1410. }
  1411. .warpHeader a.quit:hover{
  1412. background:#935b4e;
  1413. color:#fff
  1414. }
  1415. .warpHeader div.user{
  1416. margin:0 20px 0 0;
  1417. color:#fff
  1418. }
  1419. .warpContent{
  1420. background:#6c6c76
  1421. }
  1422. .mainSide{
  1423. width:100px
  1424. }
  1425. .mainSide ul{
  1426. margin:10px 0 0 0
  1427. }
  1428. .mainSide li{
  1429. margin:0 0 2px 0
  1430. }
  1431. .mainSide li.line {
  1432. border-top:1px solid #D7D7D7;
  1433. padding:5px 0 0 0;
  1434. margin:5px 0 0 0
  1435. }
  1436. .mainSide li a{
  1437. display:inline-block;
  1438. *display:inline;
  1439. zoom:1;
  1440. padding:8px 10px;
  1441. width:80px;
  1442. font-size:13px;
  1443. color:#fff
  1444. }
  1445. .mainSide li a:hover{
  1446. background:#ccc;
  1447. color:#6C6C76;
  1448. }
  1449. .mainSide li a.now{
  1450. background:#d7d7d7;
  1451. color:#27b689;
  1452. font-weight:600
  1453. }
  1454. .mainSide li a span{
  1455. background:#fff;
  1456. color:#6C6C76;
  1457. padding:0 5px;
  1458. margin:0 0 0 10px;
  1459. font-size:12px;
  1460. border-radius:10px
  1461. }
  1462. .mainSide li a.now span{
  1463. background:#A96A5B;
  1464. color:#fff
  1465. }
  1466. .mainContent{
  1467. margin:0 0 0 100px;
  1468. background:#d7d7d7;
  1469. overflow-y: auto;
  1470. min-height: 400px
  1471. }
  1472. .pojNomList{
  1473. margin:20px;
  1474. margin-bottom:0
  1475. }
  1476. .pojNomList .entry{
  1477. background:#fff;
  1478. margin:0 0 5px 0
  1479. }
  1480. .pojNomList .entry h1 {
  1481. height:50px;
  1482. line-height:50px;
  1483. font-size:24px;
  1484. border-bottom:1px solid #e0e0e0
  1485. }
  1486. .pojNomList .entry h1 span{
  1487. margin:0 20px
  1488. }
  1489. .pojNomList .entry input,.pojNomList .entry select{
  1490. margin:0;
  1491. }
  1492. .pojNomList .contractCount {
  1493. width:70px;
  1494. padding:0 10px;
  1495. height:76px;
  1496. text-align:center;
  1497. border-right:1px solid #e0e0e0
  1498. }
  1499. .pojNomList .contractCount span{
  1500. display:inline-block;
  1501. *display:inline;
  1502. zoom:1;
  1503. width:100%;
  1504. margin:13px 0 0 0
  1505. }
  1506. .pojNomList .contractCount b{
  1507. font-size:26px;
  1508. font-family:"Tahoma"
  1509. }
  1510. .pojNomList .contractMoney {
  1511. padding:0 20px;
  1512. border-right:1px solid #e0e0e0
  1513. }
  1514. .pojNomList .contractMoney .item {
  1515. height:38px;
  1516. line-height:38px
  1517. }
  1518. .pojNomList .contractMoney .item.done{
  1519. height:37px;
  1520. border-top:1px dashed #e0e0e0
  1521. }
  1522. .pojNomList .contractMoney .item b{
  1523. font-size:24px;
  1524. font-family:"Tahoma";
  1525. text-align:right;
  1526. float:right
  1527. }
  1528. .pojNomList .contractState {
  1529. border-right:1px solid #e0e0e0;
  1530. height:76px;
  1531. text-align:center;
  1532. padding:0 10px;
  1533. }
  1534. .pojNomList .contractState.state{
  1535. width:170px
  1536. }
  1537. .pojNomList .contractState span{
  1538. display:block;
  1539. *display:inline;
  1540. zoom:1;
  1541. width:100%;
  1542. margin:13px 0 0 0
  1543. }
  1544. .pojNomList .contractState b{
  1545. font-size:22px;
  1546. font-family:"Tahoma","微软雅黑";
  1547. }
  1548. .pojNomList .contractUser {
  1549. height:76px;
  1550. text-align:center;
  1551. border-right:1px solid #e0e0e0
  1552. }
  1553. .pojNomList .contractUser span{
  1554. display:inline-block;
  1555. *display:inline;
  1556. zoom:1;
  1557. width:100%;
  1558. margin:20px 0 0 0
  1559. }
  1560. .pojNomList .contractUser b{
  1561. font-size:14px;
  1562. font-family:"Tahoma"
  1563. }
  1564. .pojNomList .contractAcc{
  1565. height:30px;
  1566. line-height:30px;
  1567. padding:0 10px;
  1568. border-right:1px solid #E0E0E0;
  1569. }
  1570. .pojNomList .listTab{
  1571. margin:0 0 5px 0
  1572. }
  1573. .pojNomList .listTab a{
  1574. background:#6C6C76;
  1575. color: #FFFFFF;
  1576. cursor: pointer;
  1577. font-size: 14px;
  1578. height: 35px;
  1579. line-height: 35px;
  1580. margin: 0 1px 0 0;
  1581. padding: 0 10px;
  1582. text-align: center;
  1583. }
  1584. .pojNomList .listTab a:hover{
  1585. background:#27B689;
  1586. }
  1587. .pojNomList .listTab a.now{
  1588. background:#27B689;
  1589. color:#fff;
  1590. font-weight: 600
  1591. }
  1592. .pojNomList .listTab .search{
  1593. margin:0 0 0 10px;
  1594. float:left;
  1595. }
  1596. .pojNomList .listTab .search input[type=text]{
  1597. margin:0;
  1598. float:left;
  1599. height:23px;
  1600. border-bottom: 3px solid #999;
  1601. }
  1602. .periodList .title{
  1603. height:25px;
  1604. line-height:25px;
  1605. background:#5B9AA9
  1606. }
  1607. .periodList .title div{
  1608. float:left;
  1609. height:25px;
  1610. line-height:25px;
  1611. border-right:1px dashed #fff;
  1612. color:#fff;
  1613. width:9.9%;
  1614. text-align:center;
  1615. font-size:10px
  1616. }
  1617. .perListItem{
  1618. background:#fff
  1619. }
  1620. .perListItem .btns{
  1621. margin:20px
  1622. }
  1623. .globalForm {
  1624. margin:20px
  1625. }
  1626. .tips {
  1627. background:url(attachment.png) no-repeat 0 0;
  1628. padding:5px 0 5px 40px;
  1629. margin:10px
  1630. }
  1631. .pojNomList td div.lv2 {
  1632. text-indent:10px
  1633. }
  1634. .pojNomList td div.lv3 {
  1635. text-indent:20px
  1636. }
  1637. .pojNomList td div.limit{
  1638. width:200px;
  1639. height:20px;
  1640. overflow: hidden;
  1641. text-overflow: ellipsis;
  1642. white-space: nowrap;
  1643. display: inline-block;
  1644. }
  1645. .pojNomList tr.newAdd{
  1646. background:#dff0d8
  1647. }
  1648. .annotation li {
  1649. padding:3px 10px;
  1650. border-bottom:1px solid #e0e0e0
  1651. }
  1652. .annotation li span{
  1653. font-weight:800
  1654. }
  1655. .standardCate {
  1656. border-bottom:1px solid #DDDDDD;
  1657. }
  1658. .cateSelect {
  1659. height:35px;
  1660. position: relative;
  1661. width:300px;
  1662. }
  1663. .cateSelect .title{
  1664. line-height:35px;
  1665. padding:0 10px;
  1666. color: #336699;
  1667. font-size:16px;
  1668. cursor: pointer;
  1669. }
  1670. .cateSelect.foucs{
  1671. background:#277DB6;
  1672. }
  1673. .cateSelect.foucs .title{
  1674. color:#fff;
  1675. }
  1676. .cateSelect .cateMenu {
  1677. position:absolute;
  1678. top:35px;
  1679. left:0;
  1680. background:#fff;
  1681. border:1px solid #277DB6;
  1682. padding:10px 0 10px 10px;
  1683. }
  1684. .cateSelect .cateMenu .scroll{
  1685. overflow: auto;
  1686. height:300px;
  1687. width:288px;
  1688. }
  1689. .news {
  1690. padding:20px;
  1691. margin:15px 0 20px 0;
  1692. background: #fff;
  1693. }
  1694. .news li {
  1695. padding:5px 0;
  1696. border-bottom:1px dashed #dddddd;
  1697. }
  1698. .news li span{
  1699. display:inline-block;
  1700. width:90px;
  1701. }
  1702. .news li.more{
  1703. border-bottom: none
  1704. }
  1705. .news li.title{
  1706. font-weight:600;
  1707. border-bottom:1px solid #ccc;
  1708. font-size: 16px
  1709. }
  1710. .newAdd input,.newAdd select{
  1711. margin:0;
  1712. }
  1713. /*modal*/
  1714. .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{opacity:0}.modal-backdrop,.modal-backdrop.fade.in{opacity:.8;filter:alpha(opacity=80)}.modal{position:fixed;top:10%;left:50%;z-index:1050;width:560px;margin-left:-280px;background-color:#fff;border:1px solid #999;border:1px solid rgba(0,0,0,0.3);*border:1px solid #999;-webkit-box-shadow:0 3px 7px rgba(0,0,0,0.3);-moz-box-shadow:0 3px 7px rgba(0,0,0,0.3);box-shadow:0 3px 7px rgba(0,0,0,0.3);-webkit-background-clip:padding-box;-moz-background-clip:padding-box;background-clip:padding-box;outline:0}.modal.fade{-webkit-transition:opacity .3s linear,top .3s ease-out;-moz-transition:opacity .3s linear,top .3s ease-out;-o-transition:opacity .3s linear,top .3s ease-out;transition:opacity .3s linear,top .3s ease-out;top:-25%}.modal.fade.in{top:10%}.modal-header{padding:9px 15px;border-bottom:1px solid #eee}.modal-header .close{margin-top:2px}.modal-header h3{margin:0;line-height:30px}.modal-body{position:relative;overflow-y:auto;max-height:400px;padding:15px}.modal-form{margin-bottom:0}.modal-footer{padding:14px 15px 15px;margin-bottom:0;text-align:right;background-color:#f5f5f5;border-top:1px solid #ddd;-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;-webkit-box-shadow:inset 0 1px 0 #fff;-moz-box-shadow:inset 0 1px 0 #fff;box-shadow:inset 0 1px 0 #fff;*zoom:1}.modal-footer:before,.modal-footer:after{display:table;content:"";line-height:0}.modal-footer:after{clear:both}.modal-footer .btn+.btn{margin-left:5px;margin-bottom:0}.modal-footer .btn-group .btn+.btn{margin-left:-1px}.modal-footer .btn-block+.btn-block{margin-left:0}
  1715. .modal form{margin:0}
  1716. /*modal*/
  1717. .printList {
  1718. width:1000px;
  1719. text-align: center;
  1720. color:#000;
  1721. margin:0 auto;
  1722. }
  1723. .printList .taC{
  1724. text-align: center
  1725. }
  1726. .printList .taR{
  1727. text-align:right
  1728. }
  1729. .printList .taL{
  1730. text-align:left
  1731. }
  1732. .printList h1 {
  1733. color:#ff0000;
  1734. border-bottom: 3px solid #ff0000;
  1735. font-size:36px;
  1736. display:inline;
  1737. overflow: hidden;
  1738. }
  1739. .printList h2{
  1740. margin:20px 0;
  1741. font-size:18px;
  1742. }
  1743. .printList h3{
  1744. font-size:24px;
  1745. }
  1746. .printList .con{
  1747. margin:20px 0;
  1748. }
  1749. .printList p{
  1750. font-size:16px;
  1751. line-height: 25px
  1752. }
  1753. .printList table{
  1754. border:1px solid #000;
  1755. width:100%;
  1756. }
  1757. .printList table th{
  1758. border:1px solid #000;
  1759. }
  1760. .printList table td{
  1761. border:1px solid #000;
  1762. text-align: left
  1763. }
  1764. textarea.yta {
  1765. width:92%;
  1766. margin:0;
  1767. height:20px;
  1768. }
  1769. textarea.yta:focus{
  1770. width:400px;
  1771. height:60px;
  1772. }
  1773. a.taBtn {
  1774. border:1px solid #27B689;
  1775. padding:3px 5px;
  1776. background:#f2f2f2;
  1777. margin-right:5px;
  1778. }
  1779. .icons {
  1780. display: inline-block;
  1781. width:16px;
  1782. height:16px;
  1783. vertical-align: middle;
  1784. }
  1785. .icon_add {
  1786. background:url(icon_add.png) no-repeat center center;
  1787. }
  1788. .icon_sum {
  1789. background:url(icon_sum.png) no-repeat center center;
  1790. }
  1791. .icon_file {
  1792. background:url(icon_file.png) no-repeat center center;
  1793. }
  1794. .icon_magnify{
  1795. background:url(report_magnify.png) no-repeat center center;
  1796. }
  1797. .sumTools .sumEntry {
  1798. padding:2px 3px;
  1799. border:1px solid #ccc;
  1800. display: inline-block;
  1801. margin-right:5px;
  1802. margin-bottom:5px;
  1803. }
  1804. .pagination{
  1805. margin:20px 0
  1806. }
  1807. .pagination ul{
  1808. display:inline-block;
  1809. *display:inline;
  1810. margin-bottom:0;
  1811. margin-left:0;
  1812. *zoom:1;
  1813. background-color: #fff
  1814. }
  1815. .pagination ul>li{
  1816. display:inline;
  1817. }
  1818. .pagination ul>li>a,.pagination ul>li>span{
  1819. float:left;
  1820. padding:4px 12px;
  1821. line-height:20px;
  1822. text-decoration:none;
  1823. background-color:#fff;
  1824. border:1px solid #ddd;
  1825. border-left-width:0
  1826. }
  1827. .pagination ul>li>a:hover,.pagination ul>li>a:focus,.pagination ul>.active>a,.pagination ul>.active>span{
  1828. background-color:#f5f5f5
  1829. }
  1830. .pagination ul>.active>a,.pagination ul>.active>span{
  1831. color:#27B689;
  1832. cursor:default;
  1833. font-weight: 600;
  1834. border-bottom:1px solid #27B689;
  1835. }
  1836. .pagination ul>.disabled>span,.pagination ul>.disabled>a,.pagination ul>.disabled>a:hover,.pagination ul>.disabled>a:focus{
  1837. color:#999;
  1838. cursor:default;
  1839. background-color:transparent
  1840. }
  1841. textarea.yta {
  1842. width: 90px;
  1843. margin: 0px;
  1844. height: 20px;
  1845. border-color: #999
  1846. }
  1847. textarea.yta:focus {
  1848. width: 300px;
  1849. height: 60px;
  1850. position: absolute;
  1851. right: 0;
  1852. bottom:0;
  1853. }
  1854. .referBtn{
  1855. position: absolute;
  1856. right: -3px;
  1857. top: -8px;
  1858. }
  1859. .refItem{
  1860. height:20px;
  1861. position: relative;
  1862. line-height: 20px
  1863. }
  1864. .refItem:hover a.referBtn{
  1865. display:inline-block;
  1866. }
  1867. .entry .historyBar {
  1868. padding:20px;
  1869. }
  1870. .pojNomList .entry .historyBar input {
  1871. margin: 4px 2px 0px;
  1872. }