global.css 108 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921
  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. ::-webkit-scrollbar {
  17. width:6px;
  18. height:6px
  19. }
  20. ::-webkit-scrollbar:hover{
  21. background:#f7f7f7
  22. }
  23. ::-webkit-scrollbar-thumb {
  24. background:#ccc;
  25. border-right:1px solid #fff;
  26. }
  27. ::-webkit-scrollbar-thumb:hover{
  28. background:#B01C6B
  29. }
  30. ::-webkit-scrollbar {
  31. width:6px;
  32. height:6px
  33. }
  34. ::-webkit-scrollbar:hover{
  35. background:#f7f7f7
  36. }
  37. ::-webkit-scrollbar-thumb {
  38. background:#ccc;
  39. border-right:1px solid #fff;
  40. }
  41. ::-scrollbar-thumb:hover{
  42. background:#B01C6B
  43. }
  44. body{text-align:center}
  45. ul, ol, li, h1 {
  46. line-height:normal;
  47. list-style-image:none;
  48. list-style-position:outside;
  49. list-style-type:none
  50. }
  51. dl {
  52. margin:0
  53. }
  54. dd {
  55. margin-left:0
  56. }
  57. a {
  58. outline:none;
  59. }
  60. a img {
  61. border:0 none
  62. }
  63. img {
  64. vertical-align:middle;
  65. border:0px
  66. }
  67. table {
  68. border-collapse:collapse
  69. }
  70. .clearfix:after {
  71. content:".";
  72. display:block;
  73. height:0;
  74. clear:both;
  75. visibility:hidden
  76. }
  77. .clearfix {
  78. display:inline-block;
  79. overflow:hidden
  80. }
  81. .clearfix {
  82. display:block
  83. }
  84. .clearfix {
  85. *zoom: 1;
  86. }
  87. .clearfix:before,
  88. .clearfix:after {
  89. display: table;
  90. content: "";
  91. line-height: 0;
  92. }
  93. .clearfix:after {
  94. clear: both;
  95. }
  96. body {color:#333;background:#fff;overflow: hidden}
  97. a {color:#8E0950;text-decoration:none}
  98. a:hover,a:focus {color:#333;text-decoration:none}
  99. .width950{width:950px;margin:0 auto}
  100. h3{font-size:24px}
  101. a.disenable{color:#ccc}
  102. .datepickers-container{
  103. z-index: 9999
  104. }
  105. /**/
  106. .clearB {clear:both}
  107. .fL {float:left}
  108. .fR {float:right}
  109. :link, *:visited, *:hover, *:active, *:focus {
  110. -moz-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  111. -webkit-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  112. transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  113. -o-transition: color 0.2s linear 0s, background-color 0.2s linear 0s, border-color 0.2s linear 0s;
  114. }
  115. .colRed {color:#f70000}
  116. .colOrange {color:#ed8b00}
  117. .colYel {color:#d9a601}
  118. .colGreen{color:#17ab0c}
  119. .colGray{color:#999}
  120. .colBlue{color:#3172d9}
  121. .hide {display:none}
  122. .autoHeight,.autoHeightL1,.autoHeightL2,.autoHeightR1,.autoHeightR2,.autoHeightR3,.autoHeightR4{
  123. overflow-y: auto
  124. }
  125. .height100{height:100%}
  126. .taC{text-align:center}
  127. .taL{text-align:left}
  128. .taR{text-align:right}
  129. .colTip{
  130. margin-left: 2px;
  131. display:inline-block;
  132. line-height: 19px;
  133. }
  134. @font-face {
  135. font-family: 'ZHcldSystem';
  136. src: url('fonts/ZHcldSystem.eot?ox6e11');
  137. src: url('fonts/ZHcldSystem.eot?ox6e11#iefix') format('embedded-opentype'),
  138. url('fonts/ZHcldSystem.ttf?ox6e11') format('truetype'),
  139. url('fonts/ZHcldSystem.woff?ox6e11') format('woff'),
  140. url('fonts/ZHcldSystem.svg?ox6e11#ZHcldSystem') format('svg');
  141. font-weight: normal;
  142. font-style: normal;
  143. }
  144. [class^="icon-"], [class*=" icon-"] {
  145. /* use !important to prevent issues with browser extensions that change fonts */
  146. font-family: 'ZHcldSystem' !important;
  147. speak: none;
  148. font-style: normal;
  149. font-weight: normal;
  150. font-variant: normal;
  151. text-transform: none;
  152. line-height: 1;
  153. /* Better Font Rendering =========== */
  154. -webkit-font-smoothing: antialiased;
  155. -moz-osx-font-smoothing: grayscale;
  156. }
  157. i.icon-.sport{
  158. font-size:10px;
  159. vertical-align: top
  160. }
  161. a.icon-.edit,a.icon-.add,a.icon-.replace{
  162. font-size:14px;
  163. vertical-align:middle;
  164. margin:0 3px;
  165. }
  166. a.icon-.crumb{
  167. color:#fff;
  168. background:#8E0950;
  169. padding:4px;
  170. margin:0 10px 0 0;
  171. }
  172. /*fotm*/
  173. .hide-text{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0;}
  174. .input-block-level{display:block;width:100%;min-height:30px;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  175. form{margin:0 0 20px;}
  176. fieldset{padding:0;margin:0;border:0;}
  177. legend{display:block;width:100%;padding:0;margin-bottom:20px;font-size:21px;line-height:40px;color:#333333;border:0;border-bottom:1px solid #E2E2E2;}legend small{font-size:15px;color:#999999;}
  178. label,input,button,select,textarea{font-size:12px;font-weight:normal;line-height:20px;}
  179. input,button,select,textarea{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif;}
  180. label{display:block;margin-bottom:5px;}
  181. select,textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{display:inline-block;height:20px;padding:2px;margin-bottom:10px;font-size:12px;line-height:19px;color:#555555;vertical-align:middle;}
  182. input,textarea,.uneditable-input{width:206px;}
  183. textarea{height:auto;}
  184. textarea,input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],input[type="date"],input[type="month"],input[type="time"],input[type="week"],input[type="number"],input[type="email"],input[type="url"],input[type="search"],input[type="tel"],input[type="color"],.uneditable-input{background-color:#ffffff;border:1px solid #cccccc;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-webkit-transition:border linear .2s, box-shadow linear .2s;-moz-transition:border linear .2s, box-shadow linear .2s;-o-transition:border linear .2s, box-shadow linear .2s;transition:border linear .2s, box-shadow linear .2s;}textarea:focus,input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="datetime-local"]:focus,input[type="date"]:focus,input[type="month"]:focus,input[type="time"]:focus,input[type="week"]:focus,input[type="number"]:focus,input[type="email"]:focus,input[type="url"]:focus,input[type="search"]:focus,input[type="tel"]:focus,input[type="color"]:focus,.uneditable-input:focus{border-color:rgba(82, 168, 236, 0.8);outline:0;outline:thin dotted \9;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);-moz-box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(82,168,236,.6);}
  185. input[type="radio"],input[type="checkbox"]{margin:4px 0 0;*margin-top:0;margin-top:1px \9;line-height:normal;}
  186. input[type="file"],input[type="image"],input[type="submit"],input[type="reset"],input[type="button"],input[type="radio"],input[type="checkbox"]{width:auto;}
  187. select,input[type="file"]{height:25px;*margin-top:4px;line-height:25px;}
  188. select{border:1px solid #cccccc;background-color:#ffffff;}
  189. select[multiple],select[size]{height:auto;}
  190. select:focus,input[type="file"]:focus,input[type="radio"]:focus,input[type="checkbox"]:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
  191. .uneditable-input,.uneditable-textarea{color:#999999;background-color:#fcfcfc;border-color:#cccccc;-webkit-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);-moz-box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);box-shadow:inset 0 1px 2px rgba(0, 0, 0, 0.025);cursor:not-allowed;}
  192. .uneditable-input{overflow:hidden;white-space:nowrap;}
  193. .uneditable-textarea{width:auto;height:auto;}
  194. input:-moz-placeholder,textarea:-moz-placeholder{color:#999999;}
  195. input:-ms-input-placeholder,textarea:-ms-input-placeholder{color:#999999;}
  196. input::-webkit-input-placeholder,textarea::-webkit-input-placeholder{color:#999999;}
  197. .radio,.checkbox{min-height:20px;padding-left:16px;cursor:pointer}
  198. .radio input[type="radio"],.checkbox input[type="checkbox"]{float:left;margin-left:-16px;}
  199. .controls>.radio:first-child,.controls>.checkbox:first-child{padding-top:5px;}
  200. .radio.inline,.checkbox.inline{display:inline-block;padding-top:5px;margin-bottom:0;vertical-align:middle;}
  201. .radio.inline+.radio.inline,.checkbox.inline+.checkbox.inline{margin-left:10px;}
  202. .input-mini{width:60px;}
  203. .input-small{width:90px;}
  204. .input-medium{width:150px;}
  205. .input-large{width:210px;}
  206. .input-xlarge{width:270px;}
  207. .input-xxlarge{width:530px;}
  208. input[class*="span"],select[class*="span"],textarea[class*="span"],.uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"]{float:none;margin-left:0;}
  209. .input-append input[class*="span"],.input-append .uneditable-input[class*="span"],.input-prepend input[class*="span"],.input-prepend .uneditable-input[class*="span"],.row-fluid input[class*="span"],.row-fluid select[class*="span"],.row-fluid textarea[class*="span"],.row-fluid .uneditable-input[class*="span"],.row-fluid .input-prepend [class*="span"],.row-fluid .input-append [class*="span"]{display:inline-block;}
  210. input,textarea,.uneditable-input{margin-left:0;}
  211. .controls-row [class*="span"]+[class*="span"]{margin-left:20px;}
  212. input.span12,textarea.span12,.uneditable-input.span12{width:926px;}
  213. input.span11,textarea.span11,.uneditable-input.span11{width:846px;}
  214. input.span10,textarea.span10,.uneditable-input.span10{width:766px;}
  215. input.span9,textarea.span9,.uneditable-input.span9{width:686px;}
  216. input.span8,textarea.span8,.uneditable-input.span8{width:606px;}
  217. input.span7,textarea.span7,.uneditable-input.span7{width:526px;}
  218. input.span6,textarea.span6,.uneditable-input.span6{width:446px;}
  219. input.span5,textarea.span5,.uneditable-input.span5{width:366px;}
  220. input.span4,textarea.span4,.uneditable-input.span4{width:286px;}
  221. input.span3,textarea.span3,.uneditable-input.span3{width:206px;}
  222. input.span2,textarea.span2,.uneditable-input.span2{width:126px;}
  223. input.span1,textarea.span1,.uneditable-input.span1{width:46px;}
  224. .controls-row{*zoom:1;}.controls-row:before,.controls-row:after{display:table;content:"";line-height:0;}
  225. .controls-row:after{clear:both;}
  226. .controls-row [class*="span"],.row-fluid .controls-row [class*="span"]{float:left;}
  227. .controls-row .checkbox[class*="span"],.controls-row .radio[class*="span"]{padding-top:5px;}
  228. input[disabled],select[disabled],textarea[disabled],input[readonly],select[readonly],textarea[readonly]{cursor:not-allowed;background-color:#eeeeee;}
  229. input[type="radio"][disabled],input[type="checkbox"][disabled],input[type="radio"][readonly],input[type="checkbox"][readonly]{background-color:transparent;}
  230. .control-group.warning .control-label,.control-group.warning .help-block,.control-group.warning .help-inline{color:#c09853;}
  231. .control-group.warning .checkbox,.control-group.warning .radio,.control-group.warning input,.control-group.warning select,.control-group.warning textarea{color:#c09853;}
  232. .control-group.warning input,.control-group.warning select,.control-group.warning textarea{border-color:#c09853;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.warning input:focus,.control-group.warning select:focus,.control-group.warning textarea:focus{border-color:#a47e3c;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #dbc59e;}
  233. .control-group.warning .input-prepend .add-on,.control-group.warning .input-append .add-on{color:#c09853;background-color:#fcf8e3;border-color:#c09853;}
  234. .control-group.error .control-label,.control-group.error .help-block,.control-group.error .help-inline{color:#b94a48;}
  235. .control-group.error .checkbox,.control-group.error .radio,.control-group.error input,.control-group.error select,.control-group.error textarea{color:#b94a48;}
  236. .control-group.error input,.control-group.error select,.control-group.error textarea{border-color:#b94a48;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.error input:focus,.control-group.error select:focus,.control-group.error textarea:focus{border-color:#953b39;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #d59392;}
  237. .control-group.error .input-prepend .add-on,.control-group.error .input-append .add-on{color:#b94a48;background-color:#f2dede;border-color:#b94a48;}
  238. .control-group.success .control-label,.control-group.success .help-block,.control-group.success .help-inline{color:#468847;}
  239. .control-group.success .checkbox,.control-group.success .radio,.control-group.success input,.control-group.success select,.control-group.success textarea{color:#468847;}
  240. .control-group.success input,.control-group.success select,.control-group.success textarea{border-color:#468847;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.success input:focus,.control-group.success select:focus,.control-group.success textarea:focus{border-color:#356635;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7aba7b;}
  241. .control-group.success .input-prepend .add-on,.control-group.success .input-append .add-on{color:#468847;background-color:#dff0d8;border-color:#468847;}
  242. .control-group.info .control-label,.control-group.info .help-block,.control-group.info .help-inline{color:#3a87ad;}
  243. .control-group.info .checkbox,.control-group.info .radio,.control-group.info input,.control-group.info select,.control-group.info textarea{color:#3a87ad;}
  244. .control-group.info input,.control-group.info select,.control-group.info textarea{border-color:#3a87ad;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075);}.control-group.info input:focus,.control-group.info select:focus,.control-group.info textarea:focus{border-color:#2d6987;-webkit-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;-moz-box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;box-shadow:inset 0 1px 1px rgba(0, 0, 0, 0.075),0 0 6px #7ab5d3;}
  245. .control-group.info .input-prepend .add-on,.control-group.info .input-append .add-on{color:#3a87ad;background-color:#d9edf7;border-color:#3a87ad;}
  246. input:focus:invalid,textarea:focus:invalid,select:focus:invalid{color:#b94a48;border-color:#ee5f5b;}input:focus:invalid:focus,textarea:focus:invalid:focus,select:focus:invalid:focus{border-color:#e9322d;-webkit-box-shadow:0 0 6px #f8b9b7;-moz-box-shadow:0 0 6px #f8b9b7;box-shadow:0 0 6px #f8b9b7;}
  247. .form-actions{padding:19px 20px 20px;margin-top:20px;margin-bottom:20px;background-color:#f5f5f5;border-top:1px solid #e5e5e5;*zoom:1;}.form-actions:before,.form-actions:after{display:table;content:"";line-height:0;}
  248. .form-actions:after{clear:both;}
  249. .help-block,.help-inline{color:#595959;}
  250. .help-block{display:block;margin-bottom:10px;}
  251. .help-inline{display:inline-block;*display:inline;*zoom:1;vertical-align:middle;padding-left:5px;}
  252. .input-append,.input-prepend{display:inline-block;margin-bottom:10px;vertical-align:middle;font-size:0;white-space:nowrap;}.input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input,.input-append .dropdown-menu,.input-prepend .dropdown-menu,.input-append .popover,.input-prepend .popover{font-size:14px;}
  253. .input-append input,.input-prepend input,.input-append select,.input-prepend select,.input-append .uneditable-input,.input-prepend .uneditable-input{position:relative;margin-bottom:0;*margin-left:0;vertical-align:top;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}.input-append input:focus,.input-prepend input:focus,.input-append select:focus,.input-prepend select:focus,.input-append .uneditable-input:focus,.input-prepend .uneditable-input:focus{z-index:2;}
  254. .input-append .add-on,.input-prepend .add-on{display:inline-block;width:auto;height:20px;min-width:16px;padding:4px 5px;font-size:14px;font-weight:normal;line-height:20px;text-align:center;text-shadow:0 1px 0 #ffffff;background-color:#eeeeee;border:1px solid #ccc;}
  255. .input-append .add-on,.input-prepend .add-on,.input-append .btn,.input-prepend .btn,.input-append .btn-group>.dropdown-toggle,.input-prepend .btn-group>.dropdown-toggle{vertical-align:top;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
  256. .input-append .active,.input-prepend .active{background-color:#a9dba9;border-color:#46a546;}
  257. .input-prepend .add-on,.input-prepend .btn{margin-right:-1px;}
  258. .input-prepend .add-on:first-child,.input-prepend .btn:first-child{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
  259. .input-append input,.input-append select,.input-append .uneditable-input{-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}.input-append input+.btn-group .btn:last-child,.input-append select+.btn-group .btn:last-child,.input-append .uneditable-input+.btn-group .btn:last-child{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
  260. .input-append .add-on,.input-append .btn,.input-append .btn-group{margin-left:-1px;}
  261. .input-append .add-on:last-child,.input-append .btn:last-child,.input-append .btn-group:last-child>.dropdown-toggle{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
  262. .input-prepend.input-append input,.input-prepend.input-append select,.input-prepend.input-append .uneditable-input{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}.input-prepend.input-append input+.btn-group .btn,.input-prepend.input-append select+.btn-group .btn,.input-prepend.input-append .uneditable-input+.btn-group .btn{-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
  263. .input-prepend.input-append .add-on:first-child,.input-prepend.input-append .btn:first-child{margin-right:-1px;-webkit-border-radius:4px 0 0 4px;-moz-border-radius:4px 0 0 4px;border-radius:4px 0 0 4px;}
  264. .input-prepend.input-append .add-on:last-child,.input-prepend.input-append .btn:last-child{margin-left:-1px;-webkit-border-radius:0 4px 4px 0;-moz-border-radius:0 4px 4px 0;border-radius:0 4px 4px 0;}
  265. .input-prepend.input-append .btn-group:first-child{margin-left:0;}
  266. input.search-query{padding-right:14px;padding-right:4px \9;padding-left:14px;padding-left:4px \9;margin-bottom:0;-webkit-border-radius:15px;-moz-border-radius:15px;border-radius:15px;}
  267. .form-search .input-append .search-query,.form-search .input-prepend .search-query{-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
  268. .form-search .input-append .search-query{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;}
  269. .form-search .input-append .btn{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;}
  270. .form-search .input-prepend .search-query{-webkit-border-radius:0 14px 14px 0;-moz-border-radius:0 14px 14px 0;border-radius:0 14px 14px 0;}
  271. .form-search .input-prepend .btn{-webkit-border-radius:14px 0 0 14px;-moz-border-radius:14px 0 0 14px;border-radius:14px 0 0 14px;}
  272. .form-search input,.form-inline input,.form-horizontal input,.form-search textarea,.form-inline textarea,.form-horizontal textarea,.form-search select,.form-inline select,.form-horizontal select,.form-search .help-inline,.form-inline .help-inline,.form-horizontal .help-inline,.form-search .uneditable-input,.form-inline .uneditable-input,.form-horizontal .uneditable-input,.form-search .input-prepend,.form-inline .input-prepend,.form-horizontal .input-prepend,.form-search .input-append,.form-inline .input-append,.form-horizontal .input-append{display:inline-block;*display:inline;*zoom:1;margin-bottom:0;vertical-align:middle;}
  273. .form-search .hide,.form-inline .hide,.form-horizontal .hide{display:none;}
  274. .form-search label,.form-inline label,.form-search .btn-group,.form-inline .btn-group{display:inline-block;}
  275. .form-search .input-append,.form-inline .input-append,.form-search .input-prepend,.form-inline .input-prepend{margin-bottom:0;}
  276. .form-search .radio,.form-search .checkbox,.form-inline .radio,.form-inline .checkbox{padding-left:0;margin-bottom:0;vertical-align:middle;}
  277. .form-search .radio input[type="radio"],.form-search .checkbox input[type="checkbox"],.form-inline .radio input[type="radio"],.form-inline .checkbox input[type="checkbox"]{float:left;margin-right:3px;margin-left:0;}
  278. .control-group{margin-bottom:10px;}
  279. legend+.control-group{margin-top:20px;-webkit-margin-top-collapse:separate;}
  280. .form-horizontal .control-group{margin-bottom:20px;*zoom:1;}.form-horizontal .control-group:before,.form-horizontal .control-group:after{display:table;content:"";line-height:0;}
  281. .form-horizontal .control-group:after{clear:both;}
  282. .form-horizontal .control-label{float:left;width:160px;padding-top:5px;text-align:right;}
  283. .form-horizontal .controls{*display:inline-block;*padding-left:20px;margin-left:180px;*margin-left:0;}.form-horizontal .controls:first-child{*padding-left:180px;}
  284. .form-horizontal .help-block{margin-bottom:0;}
  285. .form-horizontal input+.help-block,.form-horizontal select+.help-block,.form-horizontal textarea+.help-block,.form-horizontal .uneditable-input+.help-block,.form-horizontal .input-prepend+.help-block,.form-horizontal .input-append+.help-block{margin-top:10px;}
  286. .form-horizontal .form-actions{padding-left:180px;}
  287. /*FONT*/
  288. /*table*/
  289. table{max-width:100%;background-color:transparent;border-collapse:collapse;border-spacing:0;}
  290. .table{width:100%;margin-bottom:20px;}.table th,.table td{padding:8px;line-height:20px;text-align:left;vertical-align:top;border-top: 1px solid #DDDDDD;}
  291. .table th{font-weight:bold;}
  292. .table thead th{vertical-align:bottom;background:#f6f6f6}
  293. .table caption+thead tr:first-child th,.table caption+thead tr:first-child td,.table colgroup+thead tr:first-child th,.table colgroup+thead tr:first-child td,.table thead:first-child tr:first-child th,.table thead:first-child tr:first-child td{border-top:0;}
  294. .table tbody+tbody{border-top:2px solid #dddddd;}
  295. .table .table{background-color:#ffffff;}
  296. .table-condensed th,.table-condensed td{padding:4px 5px;}
  297. .table-condensed th .contactsTag,.table-condensed td .contactsTag{color:#fff}
  298. .table-bordered{border:1px solid #dddddd;border-collapse:collapse;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}.table-bordered th,.table-bordered td{border-left:1px solid #dddddd;}
  299. .table-bordered caption+thead tr:first-child th,.table-bordered caption+tbody tr:first-child th,.table-bordered caption+tbody tr:first-child td,.table-bordered colgroup+thead tr:first-child th,.table-bordered colgroup+tbody tr:first-child th,.table-bordered colgroup+tbody tr:first-child td,.table-bordered thead:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child th,.table-bordered tbody:first-child tr:first-child td{border-top:0;}
  300. .table-bordered thead:first-child tr:first-child>th:first-child,.table-bordered tbody:first-child tr:first-child>td:first-child,.table-bordered tbody:first-child tr:first-child>th:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
  301. .table-bordered thead:first-child tr:first-child>th:last-child,.table-bordered tbody:first-child tr:first-child>td:last-child,.table-bordered tbody:first-child tr:first-child>th:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;}
  302. .table-bordered thead:last-child tr:last-child>th:first-child,.table-bordered tbody:last-child tr:last-child>td:first-child,.table-bordered tbody:last-child tr:last-child>th:first-child,.table-bordered tfoot:last-child tr:last-child>td:first-child,.table-bordered tfoot:last-child tr:last-child>th:first-child{-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
  303. .table-bordered thead:last-child tr:last-child>th:last-child,.table-bordered tbody:last-child tr:last-child>td:last-child,.table-bordered tbody:last-child tr:last-child>th:last-child,.table-bordered tfoot:last-child tr:last-child>td:last-child,.table-bordered tfoot:last-child tr:last-child>th:last-child{-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
  304. .table-bordered tfoot+tbody:last-child tr:last-child td:first-child{-webkit-border-bottom-left-radius:0;-moz-border-radius-bottomleft:0;border-bottom-left-radius:0;}
  305. .table-bordered tfoot+tbody:last-child tr:last-child td:last-child{-webkit-border-bottom-right-radius:0;-moz-border-radius-bottomright:0;border-bottom-right-radius:0;}
  306. .table-bordered caption+thead tr:first-child th:first-child,.table-bordered caption+tbody tr:first-child td:first-child,.table-bordered colgroup+thead tr:first-child th:first-child,.table-bordered colgroup+tbody tr:first-child td:first-child{-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;}
  307. .table-bordered caption+thead tr:first-child th:last-child,.table-bordered caption+tbody tr:first-child td:last-child,.table-bordered colgroup+thead tr:first-child th:last-child,.table-bordered colgroup+tbody tr:first-child td:last-child{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;}
  308. .table-striped tbody>tr:nth-child(odd)>td,.table-striped tbody>tr:nth-child(odd)>th{background-color:#f5f5f5;}
  309. .table-striped tr:hover{border-left:1px solid #8E0950;font-weight:600}
  310. .table-hover tbody tr:hover>td,.table-hover tbody tr:hover>th{background-color:#f5f5f5;}
  311. table td[class*="span"],table th[class*="span"],.row-fluid table td[class*="span"],.row-fluid table th[class*="span"]{display:table-cell;float:none;margin-left:0;}
  312. .table td.span1,.table th.span1{float:none;width:44px;margin-left:0;}
  313. .table td.span2,.table th.span2{float:none;width:124px;margin-left:0;}
  314. .table td.span3,.table th.span3{float:none;width:204px;margin-left:0;}
  315. .table td.span4,.table th.span4{float:none;width:284px;margin-left:0;}
  316. .table td.span5,.table th.span5{float:none;width:364px;margin-left:0;}
  317. .table td.span6,.table th.span6{float:none;width:444px;margin-left:0;}
  318. .table td.span7,.table th.span7{float:none;width:524px;margin-left:0;}
  319. .table td.span8,.table th.span8{float:none;width:604px;margin-left:0;}
  320. .table td.span9,.table th.span9{float:none;width:684px;margin-left:0;}
  321. .table td.span10,.table th.span10{float:none;width:764px;margin-left:0;}
  322. .table td.span11,.table th.span11{float:none;width:844px;margin-left:0;}
  323. .table td.span12,.table th.span12{float:none;width:924px;margin-left:0;}
  324. .table tbody tr.success>td{background-color:#dff0d8;}
  325. .table tbody tr.error>td{background-color:#f2dede;}
  326. .table tbody tr.warning>td{background-color:#fcf8e3;}
  327. .table tbody tr.info>td{background-color:#d9edf7;}
  328. .table-hover tbody tr.success:hover>td{background-color:#d0e9c6;}
  329. .table-hover tbody tr.error:hover>td{background-color:#ebcccc;}
  330. .table-hover tbody tr.warning:hover>td{background-color:#faf2cc;}
  331. .table-hover tbody tr.info:hover>td{background-color:#c4e3f3;}
  332. .modalClientTable th {width:55px}
  333. .modalClientTable td {padding:5px 0;}
  334. .modalClientTable tr:nth-child(even){background:#f1f1f1}
  335. .modalClientTable .infoFlowList{
  336. margin-top:15px;
  337. }
  338. .table .text-truncate {
  339. width:80px;
  340. display: inline-block;
  341. }
  342. /*table*/
  343. /*tooltips*/
  344. .ctooltip{position:absolute;z-index:1030;display:block;visibility:visible;font-size:11px;line-height:1.4;opacity:0;filter:alpha(opacity=0);}.ctooltip.in{opacity:0.8;filter:alpha(opacity=80);}
  345. .ctooltip.top{margin-top:-3px;padding:5px 0;}
  346. .ctooltip.right{margin-left:3px;padding:0 5px;}
  347. .ctooltip.bottom{margin-top:3px;padding:5px 0;}
  348. .ctooltip.left{margin-left:-3px;padding:0 5px;}
  349. .ctooltip-inner{max-width:200px;padding:8px;color:#ffffff;text-align:center;text-decoration:none;background-color:#000000;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
  350. .ctooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid;}
  351. .ctooltip.top .ctooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000000;}
  352. .ctooltip.right .ctooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000000;}
  353. .ctooltip.left .ctooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000000;}
  354. .ctooltip.bottom .ctooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000000;}
  355. /*modal*/
  356. .modal-open {
  357. overflow: hidden;
  358. }
  359. .modal {
  360. display: none;
  361. overflow: hidden;
  362. position: fixed;
  363. top: 0;
  364. right: 0;
  365. bottom: 0;
  366. left: 0;
  367. z-index: 1040;
  368. -webkit-overflow-scrolling: touch;
  369. outline: 0;
  370. }
  371. .modal.fade .modal-dialog {
  372. -webkit-transform: translate(0, -25%);
  373. -ms-transform: translate(0, -25%);
  374. -o-transform: translate(0, -25%);
  375. transform: translate(0, -25%);
  376. -webkit-transition: -webkit-transform 0.3s ease-out;
  377. -moz-transition: -moz-transform 0.3s ease-out;
  378. -o-transition: -o-transform 0.3s ease-out;
  379. transition: transform 0.3s ease-out;
  380. }
  381. .modal.in .modal-dialog {
  382. -webkit-transform: translate(0, 0);
  383. -ms-transform: translate(0, 0);
  384. -o-transform: translate(0, 0);
  385. transform: translate(0, 0);
  386. }
  387. .modal-open .modal {
  388. overflow-x: hidden;
  389. overflow-y: auto;
  390. }
  391. .modal-dialog {
  392. position: relative;
  393. width: auto;
  394. margin: 10px;
  395. }
  396. .modal-content {
  397. position: relative;
  398. background-color: #ffffff;
  399. border: 1px solid #999999;
  400. border: 1px solid rgba(0, 0, 0, 0.2);
  401. border-radius: 6px;
  402. -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  403. box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  404. background-clip: padding-box;
  405. outline: 0;
  406. }
  407. .modal-backdrop {
  408. position: fixed;
  409. top: 0;
  410. right: 0;
  411. bottom: 0;
  412. left: 0;
  413. background-color: #000000
  414. }
  415. .modal-backdrop.fade {
  416. opacity: 0;
  417. filter: alpha(opacity=0);
  418. }
  419. .modal-backdrop.in {
  420. opacity: 0.5;
  421. filter: alpha(opacity=50);
  422. }
  423. .modal-header {
  424. padding: 15px;
  425. border-bottom: 1px solid #e5e5e5;
  426. min-height: 16.42857143px;
  427. }
  428. .modal-header .close {
  429. margin-top: -2px;
  430. }
  431. .modal-title {
  432. margin: 0;
  433. line-height: 1.42857143;
  434. }
  435. .modal-body {
  436. position: relative;
  437. padding: 15px;
  438. max-height: 400px;
  439. overflow-y: auto;
  440. }
  441. .modal-footer {
  442. padding: 15px;
  443. text-align: right;
  444. border-top: 1px solid #e5e5e5;
  445. }
  446. .modal-footer .btn + .btn {
  447. margin-left: 5px;
  448. margin-bottom: 0;
  449. }
  450. .modal-footer .btn-group .btn + .btn {
  451. margin-left: -1px;
  452. }
  453. .modal-footer .btn-block + .btn-block {
  454. margin-left: 0;
  455. }
  456. .modal-scrollbar-measure {
  457. position: absolute;
  458. top: -9999px;
  459. width: 50px;
  460. height: 50px;
  461. overflow: scroll;
  462. }
  463. @media (min-width: 768px) {
  464. .modal-dialog {
  465. width: 600px;
  466. margin: 30px auto;
  467. }
  468. .modal-content {
  469. -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  470. box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
  471. }
  472. .modal-sm {
  473. width: 300px;
  474. }
  475. }
  476. @media (min-width: 992px) {
  477. .modal-lg {
  478. width: 900px;
  479. }
  480. }
  481. .modal-xlg {
  482. width: 1151px;
  483. }
  484. .clearfix:before,
  485. .clearfix:after,
  486. .modal-footer:before,
  487. .modal-footer:after {
  488. content: " ";
  489. display: table;
  490. }
  491. .clearfix:after,
  492. .modal-footer:after {
  493. clear: both;
  494. }.modal form{margin:0}
  495. /*modal*/
  496. /*button&dropdowns*/
  497. .btn{display:inline-block;*display:inline;*zoom:1;padding:4px 12px;margin-bottom:0;font-size:14px;line-height:20px;text-align:center;vertical-align:middle;cursor:pointer;color:#333333;text-shadow:0 1px 1px rgba(255, 255, 255, 0.75);background-color:#fff;/*background-image:-moz-linear-gradient(top, #ffffff, #e6e6e6);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ffffff), to(#e6e6e6));background-image:-webkit-linear-gradient(top, #ffffff, #e6e6e6);background-image:-o-linear-gradient(top, #ffffff, #e6e6e6);background-image:linear-gradient(to bottom, #ffffff, #e6e6e6);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffffff', endColorstr='#ffe6e6e6', GradientType=0);*/border-color:#e6e6e6 #e6e6e6 #bfbfbf;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#e6e6e6;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);border:1px solid #cccccc;*border:0;border-bottom-color:#b3b3b3;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;*margin-left:.3em;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);}.btn:hover,.btn:focus,.btn:active,.btn.active,.btn.disabled,.btn[disabled]{color:#333333;background-color:#e6e6e6;*background-color:#d9d9d9;}
  498. .btn:active,.btn.active{background-color:#cccccc \9;}
  499. .btn:first-child{*margin-left:0;}
  500. .btn:hover,.btn:focus{color:#333333;text-decoration:none;background-position:0 -15px;-webkit-transition:background-position 0.1s linear;-moz-transition:background-position 0.1s linear;-o-transition:background-position 0.1s linear;transition:background-position 0.1s linear;}
  501. .btn:focus{outline:thin dotted #333;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px;}
  502. .btn.active,.btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
  503. .btn.disabled,.btn[disabled]{cursor:default;background-image:none;opacity:0.65;filter:alpha(opacity=65);-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
  504. .btn-large{padding:11px 19px;font-size:17.5px;-webkit-border-radius:6px;-moz-border-radius:6px;border-radius:6px;}
  505. .btn-large [class^="icon-"],.btn-large [class*=" icon-"]{margin-top:4px;}
  506. .btn-small{padding:2px 10px;font-size:11.9px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
  507. .btn-small [class^="icon-"],.btn-small [class*=" icon-"]{margin-top:0;}
  508. .btn-mini [class^="icon-"],.btn-mini [class*=" icon-"]{margin-top:-1px;}
  509. .btn-mini{padding:0 6px;font-size:10.5px;-webkit-border-radius:3px;-moz-border-radius:3px;border-radius:3px;}
  510. .btn-block{display:block;width:100%;padding-left:0;padding-right:0;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;}
  511. .btn-block+.btn-block{margin-top:5px;}
  512. input[type="submit"].btn-block,input[type="reset"].btn-block,input[type="button"].btn-block{width:100%;}
  513. .btn-primary.active,.btn-warning.active,.btn-danger.active,.btn-success.active,.btn-info.active,.btn-inverse.active{color:rgba(255, 255, 255, 0.75);}
  514. .btn-primary{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#006dcc;background-image:-moz-linear-gradient(top, #0088cc, #0044cc);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0044cc));background-image:-webkit-linear-gradient(top, #0088cc, #0044cc);background-image:-o-linear-gradient(top, #0088cc, #0044cc);background-image:linear-gradient(to bottom, #0088cc, #0044cc);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0044cc', GradientType=0);border-color:#0044cc #0044cc #002a80;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#0044cc;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-primary:hover,.btn-primary:focus,.btn-primary:active,.btn-primary.active,.btn-primary.disabled,.btn-primary[disabled]{color:#ffffff;background-color:#0044cc;*background-color:#003bb3;}
  515. .btn-primary:active,.btn-primary.active{background-color:#003399 \9;}
  516. .btn-warning{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#faa732;background-image:-moz-linear-gradient(top, #fbb450, #f89406);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#fbb450), to(#f89406));background-image:-webkit-linear-gradient(top, #fbb450, #f89406);background-image:-o-linear-gradient(top, #fbb450, #f89406);background-image:linear-gradient(to bottom, #fbb450, #f89406);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#fffbb450', endColorstr='#fff89406', GradientType=0);border-color:#f89406 #f89406 #ad6704;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#f89406;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-warning:hover,.btn-warning:focus,.btn-warning:active,.btn-warning.active,.btn-warning.disabled,.btn-warning[disabled]{color:#ffffff;background-color:#f89406;*background-color:#df8505;}
  517. .btn-warning:active,.btn-warning.active{background-color:#c67605 \9;}
  518. .btn-danger{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#da4f49;background-image:-moz-linear-gradient(top, #ee5f5b, #bd362f);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#ee5f5b), to(#bd362f));background-image:-webkit-linear-gradient(top, #ee5f5b, #bd362f);background-image:-o-linear-gradient(top, #ee5f5b, #bd362f);background-image:linear-gradient(to bottom, #ee5f5b, #bd362f);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffee5f5b', endColorstr='#ffbd362f', GradientType=0);border-color:#bd362f #bd362f #802420;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#bd362f;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-danger:hover,.btn-danger:focus,.btn-danger:active,.btn-danger.active,.btn-danger.disabled,.btn-danger[disabled]{color:#ffffff;background-color:#bd362f;*background-color:#a9302a;}
  519. .btn-danger:active,.btn-danger.active{background-color:#942a25 \9;}
  520. .btn-success{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#5bb75b;background-image:-moz-linear-gradient(top, #62c462, #51a351);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#62c462), to(#51a351));background-image:-webkit-linear-gradient(top, #62c462, #51a351);background-image:-o-linear-gradient(top, #62c462, #51a351);background-image:linear-gradient(to bottom, #62c462, #51a351);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff62c462', endColorstr='#ff51a351', GradientType=0);border-color:#51a351 #51a351 #387038;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#51a351;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-success:hover,.btn-success:focus,.btn-success:active,.btn-success.active,.btn-success.disabled,.btn-success[disabled]{color:#ffffff;background-color:#51a351;*background-color:#499249;}
  521. .btn-success:active,.btn-success.active{background-color:#408140 \9;}
  522. .btn-info{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#49afcd;background-image:-moz-linear-gradient(top, #5bc0de, #2f96b4);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#5bc0de), to(#2f96b4));background-image:-webkit-linear-gradient(top, #5bc0de, #2f96b4);background-image:-o-linear-gradient(top, #5bc0de, #2f96b4);background-image:linear-gradient(to bottom, #5bc0de, #2f96b4);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff5bc0de', endColorstr='#ff2f96b4', GradientType=0);border-color:#2f96b4 #2f96b4 #1f6377;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#2f96b4;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-info:hover,.btn-info:focus,.btn-info:active,.btn-info.active,.btn-info.disabled,.btn-info[disabled]{color:#ffffff;background-color:#2f96b4;*background-color:#2a85a0;}
  523. .btn-info:active,.btn-info.active{background-color:#24748c \9;}
  524. .btn-inverse{color:#ffffff;text-shadow:0 -1px 0 rgba(0, 0, 0, 0.25);background-color:#363636;background-image:-moz-linear-gradient(top, #444444, #222222);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#444444), to(#222222));background-image:-webkit-linear-gradient(top, #444444, #222222);background-image:-o-linear-gradient(top, #444444, #222222);background-image:linear-gradient(to bottom, #444444, #222222);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff444444', endColorstr='#ff222222', GradientType=0);border-color:#222222 #222222 #000000;border-color:rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.1) rgba(0, 0, 0, 0.25);*background-color:#222222;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);}.btn-inverse:hover,.btn-inverse:focus,.btn-inverse:active,.btn-inverse.active,.btn-inverse.disabled,.btn-inverse[disabled]{color:#ffffff;background-color:#222222;*background-color:#151515;}
  525. .btn-inverse:active,.btn-inverse.active{background-color:#080808 \9;}
  526. button.btn,input[type="submit"].btn{*padding-top:3px;*padding-bottom:3px;}button.btn::-moz-focus-inner,input[type="submit"].btn::-moz-focus-inner{padding:0;border:0;}
  527. button.btn.btn-large,input[type="submit"].btn.btn-large{*padding-top:7px;*padding-bottom:7px;}
  528. button.btn.btn-small,input[type="submit"].btn.btn-small{*padding-top:3px;*padding-bottom:3px;}
  529. button.btn.btn-mini,input[type="submit"].btn.btn-mini{*padding-top:1px;*padding-bottom:1px;}
  530. .btn-link,.btn-link:active,.btn-link[disabled]{background-color:transparent;background-image:none;-webkit-box-shadow:none;-moz-box-shadow:none;box-shadow:none;}
  531. .btn-link{border-color:transparent;cursor:pointer;color:#0088cc;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
  532. .btn-link:hover,.btn-link:focus{color:#005580;text-decoration:underline;background-color:transparent;}
  533. .btn-link[disabled]:hover,.btn-link[disabled]:focus{color:#333333;text-decoration:none;}
  534. .btn-group{position:relative;display:inline-block;*display:inline;*zoom:1;font-size:0;vertical-align:middle;white-space:nowrap;*margin-left:.3em;}.btn-group:first-child{*margin-left:0;}
  535. .btn-group+.btn-group{margin-left:5px;}
  536. .btn-toolbar{font-size:0;margin-top:10px;margin-bottom:10px;}.btn-toolbar>.btn+.btn,.btn-toolbar>.btn-group+.btn,.btn-toolbar>.btn+.btn-group{margin-left:5px;}
  537. .btn-group>.btn{position:relative;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
  538. .btn-group>.btn+.btn{margin-left:-1px;}
  539. .btn-group>.btn,.btn-group>.dropdown-menu,.btn-group>.popover{font-size:14px;}
  540. .btn-group>.btn-mini{font-size:10.5px;}
  541. .btn-group>.btn-small{font-size:11.9px;}
  542. .btn-group>.btn-large{font-size:17.5px;}
  543. .btn-group>.btn:first-child{margin-left:0;-webkit-border-top-left-radius:4px;-moz-border-radius-topleft:4px;border-top-left-radius:4px;-webkit-border-bottom-left-radius:4px;-moz-border-radius-bottomleft:4px;border-bottom-left-radius:4px;}
  544. .btn-group>.btn:last-child,.btn-group>.dropdown-toggle{-webkit-border-top-right-radius:4px;-moz-border-radius-topright:4px;border-top-right-radius:4px;-webkit-border-bottom-right-radius:4px;-moz-border-radius-bottomright:4px;border-bottom-right-radius:4px;}
  545. .btn-group>.btn.large:first-child{margin-left:0;-webkit-border-top-left-radius:6px;-moz-border-radius-topleft:6px;border-top-left-radius:6px;-webkit-border-bottom-left-radius:6px;-moz-border-radius-bottomleft:6px;border-bottom-left-radius:6px;}
  546. .btn-group>.btn.large:last-child,.btn-group>.large.dropdown-toggle{-webkit-border-top-right-radius:6px;-moz-border-radius-topright:6px;border-top-right-radius:6px;-webkit-border-bottom-right-radius:6px;-moz-border-radius-bottomright:6px;border-bottom-right-radius:6px;}
  547. .btn-group>.btn:hover,.btn-group>.btn:focus,.btn-group>.btn:active,.btn-group>.btn.active{z-index:2;}
  548. .btn-group .dropdown-toggle:active,.btn-group.open .dropdown-toggle{outline:0;}
  549. .btn-group>.btn+.dropdown-toggle{padding-left:8px;padding-right:8px;-webkit-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 1px 0 0 rgba(255,255,255,.125), inset 0 1px 0 rgba(255,255,255,.2), 0 1px 2px rgba(0,0,0,.05);*padding-top:5px;*padding-bottom:5px;}
  550. .btn-group>.btn-mini+.dropdown-toggle{padding-left:5px;padding-right:5px;*padding-top:2px;*padding-bottom:2px;}
  551. .btn-group>.btn-small+.dropdown-toggle{*padding-top:5px;*padding-bottom:4px;}
  552. .btn-group>.btn-large+.dropdown-toggle{padding-left:12px;padding-right:12px;*padding-top:7px;*padding-bottom:7px;}
  553. .btn-group.open .dropdown-toggle{background-image:none;-webkit-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);-moz-box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);box-shadow:inset 0 2px 4px rgba(0,0,0,.15), 0 1px 2px rgba(0,0,0,.05);}
  554. .btn-group.open .btn.dropdown-toggle{background-color:#e6e6e6;}
  555. .btn-group.open .btn-primary.dropdown-toggle{background-color:#0044cc;}
  556. .btn-group.open .btn-warning.dropdown-toggle{background-color:#f89406;}
  557. .btn-group.open .btn-danger.dropdown-toggle{background-color:#bd362f;}
  558. .btn-group.open .btn-success.dropdown-toggle{background-color:#51a351;}
  559. .btn-group.open .btn-info.dropdown-toggle{background-color:#2f96b4;}
  560. .btn-group.open .btn-inverse.dropdown-toggle{background-color:#222222;}
  561. .btn .caret{margin-top:8px;margin-left:0;}
  562. .btn-large .caret{margin-top:6px;}
  563. .btn-large .caret{border-left-width:5px;border-right-width:5px;border-top-width:5px;}
  564. .btn-mini .caret,.btn-small .caret{margin-top:8px;}
  565. .dropup .btn-large .caret{border-bottom-width:5px;}
  566. .btn-primary .caret,.btn-warning .caret,.btn-danger .caret,.btn-info .caret,.btn-success .caret,.btn-inverse .caret{border-top-color:#ffffff;border-bottom-color:#ffffff;}
  567. .btn-group-vertical{display:inline-block;*display:inline;*zoom:1;}
  568. .btn-group-vertical>.btn{display:block;float:none;max-width:100%;-webkit-border-radius:0;-moz-border-radius:0;border-radius:0;}
  569. .btn-group-vertical>.btn+.btn{margin-left:0;margin-top:-1px;}
  570. .btn-group-vertical>.btn:first-child{-webkit-border-radius:4px 4px 0 0;-moz-border-radius:4px 4px 0 0;border-radius:4px 4px 0 0;}
  571. .btn-group-vertical>.btn:last-child{-webkit-border-radius:0 0 4px 4px;-moz-border-radius:0 0 4px 4px;border-radius:0 0 4px 4px;}
  572. .btn-group-vertical>.btn-large:first-child{-webkit-border-radius:6px 6px 0 0;-moz-border-radius:6px 6px 0 0;border-radius:6px 6px 0 0;}
  573. .btn-group-vertical>.btn-large:last-child{-webkit-border-radius:0 0 6px 6px;-moz-border-radius:0 0 6px 6px;border-radius:0 0 6px 6px;}
  574. .dropup,.dropdown{position:relative;}
  575. .dropdown-toggle{*margin-bottom:-3px;}
  576. .dropdown-toggle:active,.open .dropdown-toggle{outline:0;}
  577. .caret{display:inline-block;width:0;height:0;vertical-align:top;border-top:4px solid #000000;border-right:4px solid transparent;border-left:4px solid transparent;content:"";}
  578. .dropdown .caret{margin-top:8px;margin-left:2px;}
  579. .dropdown-menu{position:absolute;top:100%;right:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;list-style:none;background-color:#ffffff;border:1px solid #ccc;border:1px solid rgba(0, 0, 0, 0.2);*border-right-width:2px;*border-bottom-width:2px;-webkit-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-moz-box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);box-shadow:0 5px 10px rgba(0, 0, 0, 0.2);-webkit-background-clip:padding-box;-moz-background-clip:padding;background-clip:padding-box;}.dropdown-menu.pull-right{right:0;left:auto;}
  580. .dropdown-menu .divider{*width:100%;height:1px;margin:9px 1px;*margin:-5px 0 5px;overflow:hidden;background-color:#e5e5e5;border-bottom:1px solid #ffffff;}
  581. .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:normal;line-height:20px;color:#333333;white-space:nowrap;}
  582. .dropdown-menu>li>a:hover,.dropdown-menu>li>a:focus,.dropdown-submenu:hover>a,.dropdown-submenu:focus>a{text-decoration:none;color:#ffffff;background-color:#8E0950;}
  583. .dropdown-menu>.active>a,.dropdown-menu>.active>a:hover,.dropdown-menu>.active>a:focus{color:#ffffff;text-decoration:none;outline:0;background-color:#0081c2;background-image:-moz-linear-gradient(top, #0088cc, #0077b3);background-image:-webkit-gradient(linear, 0 0, 0 100%, from(#0088cc), to(#0077b3));background-image:-webkit-linear-gradient(top, #0088cc, #0077b3);background-image:-o-linear-gradient(top, #0088cc, #0077b3);background-image:linear-gradient(to bottom, #0088cc, #0077b3);background-repeat:repeat-x;filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#ff0088cc', endColorstr='#ff0077b3', GradientType=0);}
  584. .dropdown-menu>.disabled>a,.dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{color:#999999;}
  585. .dropdown-menu>.disabled>a:hover,.dropdown-menu>.disabled>a:focus{text-decoration:none;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled = false);cursor:default;}
  586. .open{*z-index:1000;}.open>.dropdown-menu{display:block;}
  587. .dropdown-backdrop{position:fixed;left:0;right:0;bottom:0;top:0;z-index:990;}
  588. .pull-right>.dropdown-menu{right:0;left:auto;}
  589. .dropup .caret,.navbar-fixed-bottom .dropdown .caret{border-top:0;border-bottom:4px solid #000000;content:"";}
  590. .dropup .dropdown-menu,.navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:1px;}
  591. .dropdown-submenu{position:relative;}
  592. .dropdown-submenu>.dropdown-menu{top:0;left:100%;margin-top:-6px;margin-left:-1px;-webkit-border-radius:0 6px 6px 6px;-moz-border-radius:0 6px 6px 6px;border-radius:0 6px 6px 6px;}
  593. .dropdown-submenu:hover>.dropdown-menu{display:block;}
  594. .dropup .dropdown-submenu>.dropdown-menu{top:auto;bottom:0;margin-top:0;margin-bottom:-2px;-webkit-border-radius:5px 5px 5px 0;-moz-border-radius:5px 5px 5px 0;border-radius:5px 5px 5px 0;}
  595. .dropdown-submenu>a:after{display:block;content:" ";float:right;width:0;height:0;border-color:transparent;border-style:solid;border-width:5px 0 5px 5px;border-left-color:#cccccc;margin-top:5px;margin-right:-10px;}
  596. .dropdown-submenu:hover>a:after{border-left-color:#ffffff;}
  597. .dropdown-submenu.pull-left{float:none;}.dropdown-submenu.pull-left>.dropdown-menu{left:-100%;margin-left:10px;-webkit-border-radius:6px 0 6px 6px;-moz-border-radius:6px 0 6px 6px;border-radius:6px 0 6px 6px;}
  598. .dropdown .dropdown-menu .nav-header{padding-left:20px;padding-right:20px;}
  599. .typeahead{z-index:1051;margin-top:2px;-webkit-border-radius:4px;-moz-border-radius:4px;border-radius:4px;}
  600. /**/
  601. .button{
  602. display: inline-block;
  603. height:32px;
  604. margin-right:5px;
  605. padding:0px 12px;
  606. line-height:32px;
  607. text-align:center;
  608. color:#FFF;
  609. border-radius:1px;
  610. text-shadow:0 1px rgba(0, 0, 0, 0.1);
  611. text-decoration:none;
  612. border:none;
  613. background:#8E0950;
  614. cursor:pointer
  615. }
  616. .button:hover{
  617. color:#fff;
  618. background:#b01c6b
  619. }
  620. .button:active{
  621. background-color:#840549;
  622. }
  623. .button.btn-gray{
  624. background-color:#535353
  625. }
  626. .button.btn-gray:hover{
  627. background-color:#727272;
  628. }
  629. .button.btn-gray:active{
  630. background-color:#404040;
  631. }
  632. .button.btn-green{
  633. background:#7ea85c;
  634. }
  635. .button.btn-green:hover{
  636. background:#4f8e08
  637. }
  638. .button.btn-green:active{
  639. background:#2a4f00
  640. }
  641. .button.btn-red{
  642. background:#ce5e5e;
  643. }
  644. .button.btn-red:hover{
  645. background:#c01010;
  646. }
  647. .button.btn-red:active{
  648. background:#790000;
  649. }
  650. .button.btn-link{
  651. background:none;
  652. color:#8E0950
  653. }
  654. .button.btn-link:hover{
  655. background:none;
  656. color:#333;
  657. text-decoration: none;
  658. }
  659. .button.btn-link:active{
  660. background:none;
  661. }
  662. .alert {
  663. padding: 8px 35px 8px 14px;
  664. margin-bottom: 20px;
  665. text-shadow: 0 1px 0 rgba(255,255,255,0.5);
  666. background-color: #fcf8e3;
  667. border: 1px solid #fbeed5;
  668. -webkit-border-radius: 4px;
  669. -moz-border-radius: 4px;
  670. border-radius: 4px;
  671. color:#c09853;
  672. }
  673. .alert-erro {
  674. color: #b94a48;
  675. background-color: #f2dede;
  676. border-color: #eed3d7;
  677. }
  678. .alert-success {
  679. color: #468847;
  680. background-color: #dff0d8;
  681. border-color: #d6e9c6;
  682. }
  683. .alert-info {
  684. color: #3a87ad;
  685. background-color: #d9edf7;
  686. border-color: #bce8f1;
  687. }
  688. .lockRecord .addRecordButton{
  689. text-align:center;
  690. height:32px;
  691. line-height: 32px;
  692. padding:0 5px 0 0 ;
  693. }
  694. .lockRecord .addRecordForm{
  695. background-color: #F7F7F7;
  696. padding: 5px;
  697. margin:5px;
  698. }
  699. .lockRecord .addRecordForm form{
  700. margin:0;
  701. }
  702. .infoFlowList{
  703. border-left: 1px solid #BEBEBE;
  704. margin-left: 25px;
  705. padding-bottom: 20px;
  706. padding-left:27px;
  707. position: relative;
  708. margin-right:5px
  709. }
  710. .dateTitle {
  711. left: -21px;
  712. overflow: visible;
  713. position: absolute;
  714. top: 0;
  715. width: 42px;
  716. }
  717. .dateTitle .month {
  718. background-color: #999;
  719. color: #FFFFFF;
  720. float: left;
  721. height: 28px;
  722. line-height: 1;
  723. padding-top: 8px;
  724. text-align: center;
  725. width: 42px;
  726. overflow: hidden;
  727. }
  728. .dateTitle .month .num {
  729. font-family:"Tahoma";
  730. font-size: 18px;
  731. font-weight: normal;
  732. letter-spacing:-1px;
  733. }
  734. .dateTitle .month .text {
  735. padding-left: 2px;
  736. font-family:"Tahoma";
  737. font-size:14px
  738. }
  739. .dateTitle .year {
  740. -moz-border-bottom-colors: none;
  741. -moz-border-left-colors: none;
  742. -moz-border-right-colors: none;
  743. -moz-border-top-colors: none;
  744. background-color: #FFFFFF;
  745. background-image: none;
  746. border-color: -moz-use-text-color #BEBEBE #BEBEBE;
  747. border-image: none;
  748. border-style: none solid solid;
  749. border-width: 0 1px 1px;
  750. float: left;
  751. height: 18px;
  752. line-height: 16px;
  753. overflow: visible;
  754. padding: 0;
  755. position: relative;
  756. text-align: center;
  757. width:40px
  758. }
  759. .dateTitle .year:before,.dateTitle .year:after {
  760. border-bottom-colors: none;
  761. border-left-colors: none;
  762. -moz-border-right-colors: none;
  763. -moz-border-top-colors: none;
  764. border-color: #222 transparent transparent;
  765. border-image: none;
  766. border-right: 4px solid transparent;
  767. border-style: solid;
  768. border-width: 4px;
  769. bottom: -8px;
  770. content: "";
  771. display: block;
  772. height: 0;
  773. left: 15px;
  774. position: absolute;
  775. width: 0;
  776. }
  777. .dateTitle .year:after {
  778. border-top: 4px solid #FFFFFF;
  779. bottom: -7px;
  780. z-index: 2;
  781. }
  782. .infoFlowList .flowList {
  783. background-color:#fff;
  784. float: none;
  785. padding: 0
  786. }
  787. .flowList li.item {
  788. overflow: hidden;
  789. padding: 8px 30px 8px 35px;
  790. border-bottom:1px solid #EBEBEB
  791. }
  792. .flowList li.item:last-child{
  793. border-bottom:none
  794. }
  795. /**/
  796. .mainLayout{
  797. padding:0 0 0 50px;
  798. left:0;
  799. overflow: hidden;
  800. }
  801. .mainMenu{
  802. background:#191818 url(slidebg.png) repeat;
  803. bottom: 0;
  804. left:50px;
  805. margin-left: -50px;
  806. position: fixed;
  807. top: 0;
  808. width:50px;
  809. z-index: 1000;
  810. display: inline-block;
  811. letter-spacing: normal;
  812. text-rendering: auto;
  813. vertical-align: top;
  814. word-spacing: normal
  815. }
  816. .mainMenu .menuItem{
  817. display:block
  818. }
  819. .mainMenu .mLogo{
  820. margin:5px;
  821. padding:5px 0;
  822. font-size:18px;
  823. color:#fff;
  824. display:block;
  825. font-family:tahoma;
  826. height:31px;
  827. line-height: 31px;
  828. width:40px;
  829. text-align: center;
  830. background:#8E0950;
  831. }
  832. .mainMenu .mLogo:hover{
  833. color:#8E0950
  834. }
  835. .mainMenu .userInfo{
  836. background:#EBEBEB;
  837. padding:0 10px;
  838. margin:0 15px
  839. }
  840. .mainMenu ul{
  841. position:relative;
  842. z-index:1
  843. }
  844. .mainMenu li{
  845. position:relative;
  846. }
  847. .mainMenu li.news:after{
  848. position: absolute;
  849. width:10px;
  850. height: 10px;
  851. background:#f90000;
  852. right:3px;
  853. top:3px;
  854. border-radius: 10px 0 10px 10px;
  855. content: ""
  856. }
  857. .mainMenu li.topLine{
  858. border-top:1px solid #383838
  859. }
  860. .mainMenu li a{
  861. color:#797979;
  862. padding:10px 0 10px 10px;
  863. display:inline-block;
  864. *display:inline;
  865. zoom:1;
  866. width:40px;
  867. font-size:30px;
  868. -webkit-transition: -webkit-transform 0.4s ease-out;
  869. -moz-transition: -moz-transform 0.4s ease-out;
  870. transition: transform 0.4s ease-out;
  871. }
  872. .mainMenu li a:hover{
  873. color:#eeeeee;
  874. -webkit-transform: rotate(360deg);
  875. -moz-transform: rotate(360deg);
  876. transform: rotate(360deg);
  877. }
  878. .mainMenu li a.selected{
  879. background:#000;
  880. color:#fff
  881. }
  882. .mainMenu li a.selected:hover{
  883. color:#eeeeee;
  884. -webkit-transform: rotate(0deg);
  885. -moz-transform: rotate(0deg);
  886. transform: rotate(0deg);
  887. }
  888. .mainMenu li span{
  889. position:absolute;
  890. right:-20px;
  891. background:#000;
  892. z-index: 9999;
  893. display:none;
  894. }
  895. .warpContent {
  896. width:100%;
  897. }
  898. .header {
  899. color: #333333;
  900. padding:6px 0 6px 12px;
  901. background-color:#fff;
  902. margin:5px 5px 0 5px;
  903. }
  904. .header h1 {
  905. font-size: 36px;
  906. font-weight: 300;
  907. margin:5px 0
  908. }
  909. .header h1.companyName{
  910. font-size:18px
  911. }
  912. .header h2 {
  913. margin: 0
  914. }
  915. .header h2.cate a{
  916. padding:0 5px;
  917. margin:0 3px 0 0
  918. }
  919. .header h2.cate a.now{
  920. background:#191818;
  921. color: #FFFFFF;
  922. }
  923. .header h2.btnList a{
  924. padding:0 2px;
  925. }
  926. .iconGenerate,.iconReceive,.iconBorrow,.iconSell,.iconUpdate,.iconReplace,.iconRecycle,.iconContacts,.iconLock,.iconService,.iconPhone,.iconOther,.iconGif,.iconRecord,.iconEdit{
  927. background:url(infocentericon.png) no-repeat 0 0
  928. }
  929. .iconGenerate{
  930. background-position:0 0
  931. }
  932. .iconReceive{
  933. background-position:0 -32px
  934. }
  935. .iconBorrow{
  936. background-position:0 -64px
  937. }
  938. .iconSell{
  939. background-position:0 -96px
  940. }
  941. .iconUpdate{
  942. background-position:0 -128px
  943. }
  944. .iconReplace{
  945. background-position:0 -160px
  946. }
  947. .iconRecycle{
  948. background-position:0 -192px
  949. }
  950. .iconContacts{
  951. background-position:0 -224px
  952. }
  953. .iconLock{
  954. background-position:0 -256px
  955. }
  956. .iconService{
  957. background-position:0 -288px
  958. }
  959. .iconPhone{
  960. background-position:0 -320px
  961. }
  962. .iconOther{
  963. background-position:0 -352px
  964. }
  965. .iconGif{
  966. background-position:0 -384px
  967. }
  968. .iconEdit{
  969. background-position:0 -416px
  970. }
  971. .iconRecord{
  972. background-position:0 -448px
  973. }
  974. .infoCenter {
  975. margin:20px
  976. }
  977. .centerPanel {
  978. border:1px solid #bebebe;
  979. background: #f7f7f7;
  980. height:62px;
  981. width:100%
  982. }
  983. .centerPanel .bigAddup,.centerPanel .sortAddup{
  984. float:left
  985. }
  986. .centerPanel .bigAddup {
  987. font-size:24px;
  988. padding:0 10px;
  989. line-height:62px;
  990. }
  991. .centerPanel .sortAddup{
  992. border-left: 1px solid #bebebe;
  993. border-right: 1px solid #bebebe;
  994. margin-left:-1px;
  995. background:url(sortAddupIcon.png) no-repeat left top;
  996. position: relative;
  997. width:110px;
  998. }
  999. .centerPanel .sortAddup li,.centerPanel .sortAddup dd{
  1000. border-bottom:1px solid #bebebe;
  1001. padding:0 5px 0 15px;
  1002. height:20px;
  1003. line-height:20px;
  1004. }
  1005. .centerPanel .sortAddup li span,.centerPanel .sortAddup dd span{
  1006. display:inline-block;
  1007. width:50px;
  1008. text-align:right;
  1009. }
  1010. .centerPanel .sortAddup dl.sec{
  1011. position: absolute;
  1012. left:-1px;
  1013. top:63px;
  1014. z-index: 999;
  1015. width:333px;
  1016. border-left:1px solid #BEBEBE;
  1017. }
  1018. .centerPanel .sortAddup dl.use1{
  1019. width:819px;
  1020. }
  1021. .centerPanel .sortAddup dd{
  1022. float:left;
  1023. width:90px;
  1024. border-right:1px solid #BEBEBE;
  1025. background:#fff
  1026. }
  1027. .centerPanel .sortAddup.focus{
  1028. background-color:#fff
  1029. }
  1030. .centerRecord {
  1031. margin:10px 0 0 0;
  1032. border-top:1px solid #bebebe;
  1033. }
  1034. .centerRecord .sideBar {
  1035. width:120px;
  1036. float:left;
  1037. }
  1038. .centerRecord .dateRecord{
  1039. margin:0 0 0 120px;
  1040. }
  1041. .centerRecord .mostTab,.centerRecord .dateTab {
  1042. height:30px;
  1043. line-height:30px;
  1044. text-align:right;
  1045. border-left: 1px solid #bebebe;
  1046. }
  1047. .centerRecord .taL{
  1048. text-align:left;
  1049. }
  1050. .centerRecord .dateTab {
  1051. border-bottom: 1px solid #bebebe;
  1052. border-right: 1px solid #bebebe;
  1053. border-left:none;
  1054. }
  1055. .centerRecord .mostTab a,.centerRecord .dateTab a{
  1056. display:inline-block;
  1057. width:98px;
  1058. border-right:1px solid #bebebe;
  1059. border-bottom:1px solid #bebebe;
  1060. text-align:center;
  1061. color:#999
  1062. }
  1063. .centerRecord .dateTab a{
  1064. border:1px solid #bebebe;
  1065. border-right:none;
  1066. border-top:none;
  1067. }
  1068. .centerRecord .mostTab a.now{
  1069. border-bottom:1px solid #ebebeb;
  1070. color:#8E0950;
  1071. }
  1072. .centerRecord .dateTab a.now{
  1073. border-bottom:1px solid #f7f7f7;
  1074. color:#8E0950;
  1075. background:#f7f7f7;
  1076. }
  1077. .centerRecord .mostTab a:hover,.centerRecord .dateTab a:hover{
  1078. color:#8E0950;
  1079. cursor: pointer;
  1080. }
  1081. .centerRecord .mostList {
  1082. border-bottom:1px solid #bebebe;
  1083. border-top:1px solid #bebebe;
  1084. border-left:1px solid #bebebe;
  1085. overflow:hidden;
  1086. overflow-y:auto;
  1087. }
  1088. .centerRecord .mostList::-webkit-scrollbar {
  1089. width:0;
  1090. }
  1091. .centerRecord .mostList li{
  1092. padding:0 0 0 55px;
  1093. border-bottom:1px solid #bebebe;
  1094. border-right:1px solid #bebebe;
  1095. position: relative;
  1096. height:50px;
  1097. }
  1098. .centerRecord .mostList li h2{
  1099. font-size:14px;
  1100. padding:4px 0 0 0;
  1101. }
  1102. .centerRecord .mostList li .conNum {
  1103. position: absolute;
  1104. text-align:center;
  1105. left:0;
  1106. top:0;
  1107. z-index: 99;
  1108. width:120px;
  1109. height:50px;
  1110. line-height: 50px;
  1111. background:#EBEBEB;
  1112. display:none;
  1113. }
  1114. .centerRecord .mostList li:hover{
  1115. border-left:1px solid #ccc;
  1116. cursor: pointer;
  1117. background:#f7f7f7;
  1118. }
  1119. .centerRecord .mostList li:hover .conNum{
  1120. display: block
  1121. }
  1122. .centerRecord .mostList li.now{
  1123. border-right:1px solid #f7f7f7;
  1124. border-left:1px solid #8E0950;
  1125. background:#f7f7f7;
  1126. }
  1127. .centerRecord .mostList li.now:hover{
  1128. border-left:1px solid #8E0950;
  1129. border-right:1px solid #f7f7f7
  1130. }
  1131. .centerRecord .mostList li.now .conNum{
  1132. display:block;
  1133. background:#f7f7f7
  1134. }
  1135. .centerRecord .mostList li .conNum span{
  1136. display:inline-block;
  1137. width:28px;
  1138. height:28px;
  1139. line-height:28px;
  1140. background:#fff;
  1141. text-align:center;
  1142. border-radius:20px;
  1143. margin:0 2px;
  1144. box-shadow: 0 1px 1px 0 #bebebe;
  1145. }
  1146. .centerRecord .mostList li .avtra{
  1147. position: absolute;
  1148. left:1px;
  1149. top:1px;
  1150. }
  1151. .centerRecord .mostList li.select{
  1152. padding:0
  1153. }
  1154. .centerRecord .mostList li.select select{
  1155. margin:12px 0 0 10px;
  1156. width:100px
  1157. }
  1158. .infoCenter .dateList {
  1159. overflow: hidden;
  1160. overflow-y:auto;
  1161. border-bottom:1px solid #bebebe;
  1162. border-right:1px solid #bebebe;
  1163. background:#f7f7f7;
  1164. }
  1165. .infoCenter .dateList div.date{
  1166. text-align: center;
  1167. }
  1168. .infoCenter .dateList div.warpCharts{
  1169. margin:20px;
  1170. }
  1171. .dateList .chartTab {
  1172. text-align: center;
  1173. margin:10px 0 0 0;
  1174. }
  1175. .dateList .chartTab .tButton{
  1176. width:160px;
  1177. display: inline-block;
  1178. border:1px solid #bebebe;
  1179. }
  1180. .chartTab .tButton li{
  1181. min-width:79.5px;
  1182. padding:5px 0;
  1183. display: inline-block;
  1184. text-align: center;
  1185. background:#EBEBEB;
  1186. color: #999;
  1187. cursor: pointer;
  1188. }
  1189. .chartTab .tButton li:hover{
  1190. color:#8E0950;
  1191. }
  1192. .chartTab .tButton li.now{
  1193. background:#F7F7F7;
  1194. color:#8E0950;
  1195. }
  1196. .tButton li:first-child{
  1197. border-right:1px solid #bebebe;
  1198. }
  1199. .infoCenter .recordList {
  1200. margin:20px;
  1201. }
  1202. .infoCenter .recordList dt b{
  1203. display:block;
  1204. height:32px;
  1205. width:32px;
  1206. }
  1207. .infoCenter .recordList dd{
  1208. float:left;
  1209. padding:0 10px 0 35px;
  1210. width:45%;
  1211. height:32px;
  1212. line-height:16px;
  1213. margin:0 5px 10px 0;
  1214. }
  1215. .infoCenter .recordList dd b{
  1216. margin:0 3px
  1217. }
  1218. .infoCenter .recordList dd span.fR{
  1219. color:#999;
  1220. }
  1221. .infoCenter .recordList a{
  1222. margin:0 3px
  1223. }
  1224. .infoCenter .recordList dd.openMore{
  1225. background-color:#EBEBEB
  1226. }
  1227. .lockDatabase,.contactDatabase{
  1228. width:60%;
  1229. position:relative;
  1230. background:#f7f7f7;
  1231. }
  1232. .contactsTag{
  1233. color: #FFFFFF;
  1234. margin: 0 2px 0 0;
  1235. padding: 0 3px;
  1236. overflow:hidden;
  1237. text-overflow:ellipsis;
  1238. white-space:nowrap;
  1239. display:inline-block;
  1240. font-style:normal
  1241. }
  1242. .tagCol-01{
  1243. background-color:#16A085;
  1244. color:#16A085
  1245. }
  1246. .tagCol-02{
  1247. background-color:#2980B9;
  1248. color:#2980B9
  1249. }
  1250. .tagCol-03{
  1251. background-color:#8E44AD;
  1252. color:#8E44AD
  1253. }
  1254. .tagCol-04{
  1255. background-color:#f90000;
  1256. color:#f90000
  1257. }
  1258. .tagCol-05{
  1259. background-color:#B8651B;
  1260. color:#B8651B
  1261. }
  1262. .tagCol-06{
  1263. background-color:#2C3E50;
  1264. color:#2C3E50
  1265. }
  1266. .tagCol-07{
  1267. background-color:#efd200;
  1268. color:#efd200
  1269. }
  1270. .contactsTag2{
  1271. color: #fff;
  1272. margin: 0px 2px 2px 0px;
  1273. padding: 0px 3px;
  1274. display: inline-block
  1275. }
  1276. .cGroup .tagGroup{
  1277. background-color:#cbecf2;
  1278. margin: 0px 2px 2px 0px;
  1279. padding: 0px 3px;
  1280. color: #666;
  1281. display: inline-block
  1282. }
  1283. .contactsMark{
  1284. margin: 0 2px 0 0;
  1285. font-size:14px;
  1286. line-height: 16px;
  1287. overflow:hidden;
  1288. text-overflow:ellipsis;
  1289. white-space:nowrap;
  1290. display:inline-block;
  1291. font-style:normal;
  1292. vertical-align:middle;
  1293. }
  1294. .contactDatabase > form{
  1295. margin:0
  1296. }
  1297. .lockCate{
  1298. margin:5px 0 0 5px;
  1299. background:#fff;
  1300. }
  1301. .cateList {
  1302. margin:0 0 0 5px;
  1303. }
  1304. .cateList li {
  1305. margin:0 0 5px 0
  1306. }
  1307. .cateList li.filter a{
  1308. margin:3px 0 0 0;
  1309. padding:0 5px;
  1310. float:left
  1311. }
  1312. .cateList li.filter a.now{
  1313. color:#fff;
  1314. background:#191818
  1315. }
  1316. .cateList li .ib{
  1317. float: left;
  1318. margin: 0 5px 0 0
  1319. }
  1320. .cateList li label{
  1321. float:left;
  1322. margin:0;
  1323. height:22px
  1324. }
  1325. .cateList li label input{
  1326. vertical-align:baseline
  1327. }
  1328. .cateList li select{
  1329. margin-bottom:0
  1330. }
  1331. .cateList li .contactsTag{
  1332. color:#fff;
  1333. height:22px
  1334. }
  1335. .cateList li .contactsTag:hover span{
  1336. float:left;
  1337. display:block;
  1338. }
  1339. .cateList li .mark {
  1340. padding:0 0 0 10px;
  1341. display:inline-block;
  1342. height:22px;
  1343. line-height: 22px;
  1344. border-left:1px solid #999;
  1345. }
  1346. .cateList li .mark .contactsMark {
  1347. line-height:22px;
  1348. color:#8E0950;
  1349. cursor: pointer;
  1350. }
  1351. .cateList li .mark .contactsMark:hover{
  1352. color:#333;
  1353. }
  1354. .cateList li .mark .contactsMark.now{
  1355. background:#333333;
  1356. color:#fff;
  1357. padding:0 2px;
  1358. }
  1359. .cateList li div.resultTips{
  1360. background:#D9EDF7;
  1361. border: 1px solid #BCE8F1;
  1362. padding:3px 10px;
  1363. display: inline-block;
  1364. color:#3A87AD;
  1365. }
  1366. .demandCate .cateList {
  1367. height:25px;
  1368. margin:0 0 20px 0
  1369. }
  1370. .demandCate .cateList li{
  1371. padding:0 10px 0 0;
  1372. margin:0 10px 0 0;
  1373. border-right:1px solid #CDCDCD;
  1374. float:left;
  1375. height:25px;
  1376. line-height:25px;
  1377. }
  1378. .demandCate .cateList li a{
  1379. margin:0 5px 0 0
  1380. }
  1381. .demandCate .cateList li a.now{
  1382. background:#191818;
  1383. color:#fff;
  1384. padding:0 3px;
  1385. }
  1386. .demandCate .cateList li.devMark a.now span{
  1387. color:#fff;
  1388. padding: 0 3px
  1389. }
  1390. .lockList{
  1391. overflow-y:scroll;
  1392. width:100%
  1393. }
  1394. .lockTableUl li span{
  1395. display:inline-block;
  1396. width:13%;
  1397. padding:0 0 0 3px;
  1398. overflow:hidden;
  1399. text-overflow:ellipsis;
  1400. white-space: nowrap;
  1401. }
  1402. .lockTableUl li i input{
  1403. vertical-align:baseline;
  1404. margin:0
  1405. }
  1406. .lockCate .lockTableUl{
  1407. padding:0 18px 0 0;
  1408. height:20px;
  1409. background:#F7F7F7 url(headerbg.png) repeat;
  1410. }
  1411. .lockCate .lockTableUl li{
  1412. font-weight:600;
  1413. color:#191818;
  1414. color:#BABABA
  1415. }
  1416. .lockTableUl li:nth-child(even){
  1417. background:#fff
  1418. }
  1419. .lockList .lockTableUl li{
  1420. padding:8px 0;
  1421. height:18px;
  1422. line-height:18px;
  1423. margin:0 0 0 5px
  1424. }
  1425. .lockList .lockTableUl li:hover{
  1426. font-weight:600;
  1427. color:#191818
  1428. }
  1429. .lockList .lockTableUl li:hover a{
  1430. font-weight:600
  1431. }
  1432. .lockDetil,.contactDetil {
  1433. width:40%;
  1434. background:#f7f7f7;
  1435. }
  1436. .lockRecord{
  1437. overflow-x:hidden;
  1438. min-height:170px
  1439. }
  1440. .lockRecord .header{
  1441. height:81px
  1442. }
  1443. .lockRecord .toolItem {
  1444. margin:5px;
  1445. background-color:#fff
  1446. }
  1447. .lockRecord .toolItem .slidedownInfo{
  1448. margin:10px 10px 0 0;
  1449. }
  1450. .lockRecord .toolItem form{
  1451. margin:10px
  1452. }
  1453. .contactTableHead .buildingUl{
  1454. background: #F7F7F7 url(headerbg.png) repeat;
  1455. color:#BABABA;
  1456. }
  1457. .modal-body .contactsTag{
  1458. color:#fff
  1459. }
  1460. .contactPanel{
  1461. background:#fff;
  1462. padding:5px 10px;
  1463. margin:6px 5px
  1464. }
  1465. .contactPanel h1{
  1466. font-size: 36px;
  1467. font-weight: 300;
  1468. font-size:18px
  1469. }
  1470. .contactPanel h1 a.clientName{
  1471. font-size:18px;
  1472. font-weight:600;
  1473. margin:0 3px 0 0
  1474. }
  1475. .contactPanel table{
  1476. width:100%
  1477. }
  1478. .contactPanel table th{
  1479. width:55px;
  1480. border-bottom:1px solid #EBEBEB;
  1481. vertical-align: baseline;
  1482. font-size: 12px
  1483. }
  1484. .contactPanel table td{
  1485. text-align:left;
  1486. border-bottom:1px solid #EBEBEB;
  1487. padding:3px 0;
  1488. vertical-align: baseline;
  1489. font-size: 12px
  1490. }
  1491. .contactPanel table tr:last-child th{
  1492. border-bottom:none
  1493. }
  1494. .contactPanel table tr:last-child td{
  1495. border-bottom:none
  1496. }
  1497. .contactPanel table td label{
  1498. display:inline-block;
  1499. }
  1500. .contactPanel table td .contactsTag{
  1501. color:#fff
  1502. }
  1503. .contactPanel table td input[type='text']{
  1504. width:80%;
  1505. margin:0
  1506. }
  1507. .contactPanel table td input[type='checkbox']{
  1508. margin:0
  1509. }
  1510. .contactPanel table td select{
  1511. margin:0
  1512. }
  1513. .contactPanel table td .lockContent{
  1514. display:block;
  1515. overflow: auto;
  1516. width: 100%;
  1517. max-height:70px
  1518. }
  1519. .header .contactPanel{
  1520. background:none;
  1521. margin:0;
  1522. padding:0 12px 0 0 ;
  1523. }
  1524. .contactCate {
  1525. margin:5px 0 0 5px;
  1526. background:#fff;
  1527. padding:5px 0 0 0;
  1528. }
  1529. .contactCate form{
  1530. margin:0;
  1531. }
  1532. .contactTab {
  1533. background:#e2e2e2 url(headerbg.png) repeat;
  1534. position:relative;
  1535. height:46px
  1536. }
  1537. .contactTab a{
  1538. margin:5px 0 0;
  1539. padding:0 15px;
  1540. height:40px;
  1541. line-height:40px;
  1542. display:inline-block;
  1543. color:#bababa
  1544. }
  1545. .contactTab a:hover{
  1546. background:#535353;
  1547. color:#eeeeee;
  1548. border-top:1px solid #535353;
  1549. }
  1550. .contactTab a.now{
  1551. background:#f7f7f7;
  1552. font-weight:600;
  1553. color:#333;
  1554. border-right:1px solid #fff;
  1555. border-top:1px solid #fff;
  1556. }
  1557. .contactTab .button{
  1558. float:right
  1559. }
  1560. .contactTab .searchItem{
  1561. position:absolute;
  1562. right:0;
  1563. top:0;
  1564. }
  1565. a.new-ribbon{
  1566. margin:0;
  1567. position:absolute;
  1568. top:-3px;
  1569. right:350px;
  1570. width:48px;
  1571. height:42px;
  1572. padding:0;
  1573. font-size:11px;
  1574. line-height: 14px;
  1575. color:#fff;
  1576. text-align:center;
  1577. background-color:#Ff6501;
  1578. border:0;
  1579. -webkit-transition:top 200ms;
  1580. -moz-transition:top 200ms;
  1581. -o-transition:top 200ms;
  1582. transition:top 200ms
  1583. }
  1584. a.new-ribbon:hover{
  1585. top:-1px;
  1586. font-weight: 600;
  1587. background: #F92D2E
  1588. }
  1589. a.new-ribbon:after{
  1590. position:absolute;
  1591. bottom:0;
  1592. left:0;
  1593. border:24px solid transparent;
  1594. border-bottom:8px solid #363636;
  1595. content:''
  1596. }
  1597. a.new-ribbon:before{
  1598. position:absolute;
  1599. bottom:0;
  1600. left:0;
  1601. border:24px solid transparent;
  1602. border-bottom:8px solid #363636;
  1603. content:''
  1604. }
  1605. .contactTab .searchItem input{
  1606. margin:0;
  1607. vertical-align:middle;
  1608. background:#535353;
  1609. color:#eee;
  1610. border:1px solid #535353;
  1611. height:39px;
  1612. padding-left:8px
  1613. }
  1614. .contactTab .searchItem .subBtn{
  1615. height:45px;
  1616. line-height:30px;
  1617. background:#E2E2E2;
  1618. color:#333;
  1619. cursor: pointer;
  1620. border-color:#E2E2E2;
  1621. font-size:12px;
  1622. padding:0 8px
  1623. }
  1624. .contactTab .searchItem .subBtn:hover{
  1625. background:#fff;
  1626. border-color:#E2E2E2
  1627. }
  1628. .contactTab .searchItem .subBtn:active{
  1629. background:#727272;
  1630. color:#BABABA;
  1631. border-color:#727272
  1632. }
  1633. .contactTab .searchItem .subBtn.add{
  1634. background:#8E0950;
  1635. color:#fff;
  1636. border-color:#8E0950;
  1637. margin:0 0 0 1px;
  1638. }
  1639. .contactTab .searchItem .subBtn.add:hover{
  1640. background:#b01c6b;
  1641. color:#fff;
  1642. }
  1643. .contactTab .searchItem .subBtn.add:active{
  1644. background:#840549;
  1645. color:#BABABA;
  1646. }
  1647. .contactCate .contactTableHead{
  1648. border-bottom:1px solid #ddd
  1649. }
  1650. .contactCate .contactTableHead table{
  1651. width:100%;
  1652. -moz-box-sizing: border-box;
  1653. box-sizing: border-box;
  1654. }
  1655. .contactCate .contactTableHead td{
  1656. padding:5px;
  1657. font-weight:600;
  1658. -moz-box-sizing: border-box;
  1659. box-sizing: border-box;
  1660. }
  1661. .contactList {
  1662. overflow-y: scroll;
  1663. margin:0 0 0 5px;
  1664. background:#fff;
  1665. }
  1666. .contactList .contactsTag{
  1667. font-size:8px;
  1668. vertical-align:middle;
  1669. line-height:16px;
  1670. margin:0 1px 0 0;
  1671. }
  1672. .contactList .contactsTag:hover{
  1673. -webkit-animation:pulse .2s .1s ease both;
  1674. -moz-animation:pulse .2s .1s ease both;}
  1675. @-webkit-keyframes pulse{
  1676. 0%{-webkit-transform:scale(1)}
  1677. 100%{-webkit-transform:scale(1.5)}
  1678. }
  1679. @-moz-keyframes pulse{
  1680. 0%{-moz-transform:scale(1)}
  1681. 100%{-moz-transform:scale(1.5)}
  1682. }
  1683. .contactTable {
  1684. width:100%;
  1685. -moz-box-sizing: border-box;
  1686. box-sizing: border-box;
  1687. }
  1688. .contactTable tr{
  1689. border-bottom: 1px solid #ddd;
  1690. cursor:pointer;
  1691. }
  1692. .contactTable tr:hover{
  1693. background:#f7f7f7;
  1694. }
  1695. .contactTable td{
  1696. -moz-box-sizing: border-box;
  1697. box-sizing: border-box;
  1698. font-size: 12px;
  1699. font-weight: 400;
  1700. line-height: 16px;
  1701. padding:10px 5px;
  1702. position: relative;
  1703. }
  1704. .contactTable td span.lim,.contactCate .contactTableHead td span.lim{
  1705. display:block;
  1706. height: 18px;
  1707. line-height: 18px;
  1708. overflow: hidden;
  1709. text-overflow: ellipsis;
  1710. white-space: nowrap;
  1711. width:inherit
  1712. }
  1713. .contactTable b.name {
  1714. font-size:16px
  1715. }
  1716. .contactTable b.female{
  1717. background:url(femaleicon.png) right center no-repeat;
  1718. padding:0 16px 0 0;
  1719. }
  1720. .contactTable .addTag{
  1721. display:none;
  1722. background:#8E0950;
  1723. color:#fff;
  1724. padding:0 2px;
  1725. vertical-align:middle;
  1726. font-size:8px;
  1727. text-align:center;
  1728. line-height:16px
  1729. }
  1730. .contactTable .addTag:hover{
  1731. background:#b01c6b
  1732. }
  1733. .contactTable tr:hover .addTag{
  1734. display:inline-block
  1735. }
  1736. .contactTable .contactsTag{
  1737. font-size:8px;
  1738. vertical-align:middle;
  1739. line-height:16px;
  1740. margin:0 1px 0 0;
  1741. }
  1742. .contactTable tr:hover .contactsTag{
  1743. color:#fff;
  1744. font-weight:normal;
  1745. cursor: pointer
  1746. }
  1747. .contactTable i.contactsMark:hover{
  1748. color:#f90000;
  1749. }
  1750. .contactTable i.contactsMark:hover{
  1751. -webkit-animation:pulse .2s .1s ease both;
  1752. -moz-animation:pulse .2s .1s ease both;}
  1753. @-webkit-keyframes pulse{
  1754. 0%{-webkit-transform:scale(1)}
  1755. 100%{-webkit-transform:scale(1.5)}
  1756. }
  1757. @-moz-keyframes pulse{
  1758. 0%{-moz-transform:scale(1)}
  1759. 100%{-moz-transform:scale(1.5)}
  1760. }
  1761. .changePage{
  1762. line-height: 30px;
  1763. height:30px;
  1764. background:#F7F7F7;
  1765. text-align:center;
  1766. width:100%;
  1767. position: absolute;
  1768. bottom:-30px;
  1769. }
  1770. .changePage select{
  1771. margin:0
  1772. }
  1773. .loginBg {
  1774. background:url(loginbg.jpg) no-repeat left top
  1775. }
  1776. .loginPanel {
  1777. height: 345px;
  1778. width: 296px;
  1779. position: absolute;
  1780. right:20%;
  1781. top:20%
  1782. }
  1783. .loginPanel .formLine {
  1784. margin: 20px 0;
  1785. position: relative;
  1786. }
  1787. .loginPanel .warpLogin {
  1788. padding: 20px 0 0 23px;
  1789. background:#fff
  1790. }
  1791. .loginPanel h2 {
  1792. font-size: 18px;
  1793. }
  1794. .loginPanel h2 sup{
  1795. font-size:8px
  1796. }
  1797. .loginPanel input.text {
  1798. border: 1px solid #000;
  1799. font-size: 20px;
  1800. height: 33px;
  1801. letter-spacing: 1px;
  1802. padding: 1px 1px 1px 6px;
  1803. width: 241px;
  1804. background:#f6f6f6;
  1805. color:#333
  1806. }
  1807. .loginPanel input.text:focus{
  1808. background:#fff;
  1809. color:#8E0950;
  1810. }
  1811. .loginPanel .formLink{
  1812. color:#999;
  1813. text-align:center;
  1814. background:#f6f6f6;
  1815. padding:5px 0
  1816. }
  1817. .subMenu{
  1818. background:url(headerbg.png) repeat;
  1819. bottom: 0;
  1820. display: inline-block;
  1821. letter-spacing: normal;
  1822. overflow-y: auto;
  1823. position: fixed;
  1824. text-rendering: auto;
  1825. top: 0;
  1826. vertical-align: top;
  1827. width: 145px;
  1828. word-spacing: normal;
  1829. z-index:99
  1830. }
  1831. .subMenu .menuItem{
  1832. display:block
  1833. }
  1834. .subMenu li {
  1835. position: relative;
  1836. }
  1837. .subMenu li.saeaTitle{
  1838. color: #fff;
  1839. background: linear-gradient(to right,#5C0793, #084F8E,#008659);
  1840. margin:0 0 5px 0;
  1841. padding:5px 10px 5px 0;
  1842. text-align:right
  1843. }
  1844. .subMenu li.demandTitle{
  1845. color: #fff;
  1846. background:#62AC4D;
  1847. margin:0 0 5px 0;
  1848. padding:5px 10px 5px 0;
  1849. text-align:right
  1850. }
  1851. .subMenu li.invoiceTitle{
  1852. color: #fff;
  1853. background:#955251;
  1854. margin:0 0 5px 0;
  1855. padding:5px 10px 5px 0;
  1856. text-align:right
  1857. }
  1858. .subMenu li.holidayTitle{
  1859. color: #fff;
  1860. background:#FBC02D;
  1861. margin:0 0 5px 0;
  1862. padding:5px 10px 5px 0;
  1863. text-align:right
  1864. }
  1865. .subMenu li a {
  1866. color:#BABABA;
  1867. display: inline-block;
  1868. padding: 15px 0 15px 10px;
  1869. width: 135px;
  1870. }
  1871. .subMenu li a:hover{
  1872. background:#535353;
  1873. color:#eee
  1874. }
  1875. .subMenu li a.selected {
  1876. background:#fff;
  1877. color: #333;
  1878. }
  1879. .subMenu li.topLine{
  1880. border-top:1px solid #222222
  1881. }
  1882. .subMenu li.news:after {
  1883. background: none repeat scroll 0 0 #f90000;
  1884. border-radius: 10px 0 10px 10px;
  1885. content: "";
  1886. height: 10px;
  1887. position: absolute;
  1888. right: 10px;
  1889. top: 10px;
  1890. width: 10px;
  1891. }
  1892. .adminContent{
  1893. margin:0 0 0 160px;
  1894. overflow-y:auto;
  1895. padding:0 15px 0 0
  1896. }
  1897. .borad-menu{
  1898. text-align:center;
  1899. margin:30px
  1900. }
  1901. .borad-menu a{
  1902. display:inline-block;
  1903. color:#fff;
  1904. padding:20px 0;
  1905. font-size:16px;
  1906. width:200px;
  1907. text-align: center;
  1908. }
  1909. .borad-menu a.loan{
  1910. background:#5C0793
  1911. }
  1912. .borad-menu a.loan:hover{
  1913. background:#9139c9
  1914. }
  1915. .borad-menu a.public{
  1916. background:#008659
  1917. }
  1918. .borad-menu a.public:hover{
  1919. background:#33ca8d
  1920. }
  1921. .borad-menu a.receipt{
  1922. background:#084F8E
  1923. }
  1924. .borad-menu a.receipt:hover{
  1925. background:#3A84C7
  1926. }
  1927. .borad-menu a.train{
  1928. background:#2daebf
  1929. }
  1930. .borad-menu a.train:hover{
  1931. background:#2ecade
  1932. }
  1933. .borad-menu a.invoice{
  1934. background:#955251
  1935. }
  1936. .borad-menu a.invoice:hover{
  1937. background:#ae6160
  1938. }
  1939. .borad-menu a.holiday{
  1940. background:#FBC02D
  1941. }
  1942. .borad-menu a.holiday:hover{
  1943. background:#FDD835
  1944. }
  1945. .borad-news {
  1946. width:960px;
  1947. margin:0 auto
  1948. }
  1949. .saeaList {
  1950. margin:0 0 20px 0;
  1951. }
  1952. .saeaList .entry{
  1953. background:#fff;
  1954. padding:2px;
  1955. position: relative;
  1956. margin-bottom:100px;
  1957. min-height:400px
  1958. }
  1959. .saeaList .seTable{
  1960. margin:0 0 0 30.1%;
  1961. }
  1962. .saeaList .seTable .sFile{
  1963. margin: 0 5px 5px 0;
  1964. background-color: #fff;
  1965. padding: 0 5px
  1966. }
  1967. .seTable div.area{
  1968. text-align: center
  1969. }
  1970. .seTable div.area p{
  1971. }
  1972. .saeaList .entry table{
  1973. margin:0;
  1974. }
  1975. .saeaList table th.taC{
  1976. text-align:center;
  1977. background: #f6f6f6
  1978. }
  1979. .saeaList table .thead th{
  1980. background: #f6f6f6
  1981. }
  1982. table .taC{
  1983. text-align:center;
  1984. }
  1985. .saeaList table .taR{
  1986. text-align:right;
  1987. }
  1988. .saeaList table .taL{
  1989. text-align:left;
  1990. }
  1991. .saeaList table input,.saeaList table select{
  1992. margin:0;
  1993. }
  1994. .saeaList table input[type="radio"],.saeaList table input[type="checkbox"]{
  1995. margin-top:4px;
  1996. }
  1997. .saeaList .entry table .avtra {
  1998. width:50px;
  1999. text-align:center;
  2000. display:inline-block;
  2001. }
  2002. .saeaList .entry table .button{
  2003. width:100%;
  2004. padding:0;
  2005. }
  2006. .saeaList .entry table span.interval{
  2007. color:#ccc;
  2008. margin:0 5px;
  2009. }
  2010. .saeaList .entry table .grM{
  2011. color:#4F8E08;
  2012. background: #ecf3e4;
  2013. text-align: center
  2014. }
  2015. .saeaList .entry table .reM{
  2016. color:#F89406;
  2017. background: #fef3e4;
  2018. text-align: center
  2019. }
  2020. .grM th,.grM td,.reM th,.reM td{
  2021. text-align: center;
  2022. font-weight:bold;
  2023. }
  2024. .saeaList .entry table th .repMark{
  2025. display:none
  2026. }
  2027. .saeaList .entry table th .repMark i{
  2028. margin:0;
  2029. color:#ccc;
  2030. cursor:pointer;
  2031. font-size:18px;
  2032. line-height: 14px;
  2033. height: 14px;
  2034. font-style: normal;
  2035. }
  2036. .saeaList .entry table th:hover .repMark{
  2037. display: block;
  2038. }
  2039. .saeaList .entry table th .repMark .rmDone{
  2040. color:#4F8E08;
  2041. }
  2042. .saeaList .entry table th .repMark .rmUdone{
  2043. color:#F89406;
  2044. }
  2045. .saeaList th sup,.saeaList td sup {
  2046. color:#fff;
  2047. vertical-align: top;
  2048. margin-left: 5px;
  2049. background: #f00;
  2050. padding:0 3px;
  2051. font-size: 10px
  2052. }
  2053. .saeaList .entry .seal {
  2054. width:186px;
  2055. height:96px;
  2056. position: absolute;
  2057. }
  2058. .saeaList .entry .seal.done{
  2059. background:url(saeaSeal.png) no-repeat 0 0;
  2060. bottom:10%;
  2061. right:30%
  2062. }
  2063. .saeaList .entry .seal.undone{
  2064. background:url(saeaSeal.png) no-repeat 0 -96px;
  2065. bottom:10%;
  2066. right:30%
  2067. }
  2068. .saeaList .entry .seal.back{
  2069. background:url(saeaSeal.png) no-repeat 0 -192px;
  2070. bottom:10%;
  2071. right:30%
  2072. }
  2073. .saeaList .entry .seal.close{
  2074. background:url(saeaSeal.png) no-repeat 0 -288px;
  2075. bottom:10%;
  2076. right:30%
  2077. }
  2078. .saeaList .seCensor {
  2079. position: absolute;
  2080. left:0;
  2081. top:0;
  2082. width:30%;
  2083. height:100%;
  2084. background:#f6f6f6
  2085. }
  2086. .mailSpread .mailAutoHeigh{
  2087. overflow-y:auto;
  2088. }
  2089. .mailCreate {
  2090. position: relative;
  2091. }
  2092. .mailCreate .viewForm {
  2093. width:64%;
  2094. position: relative;
  2095. }
  2096. .mailCreate .mailForm{
  2097. width:34%;
  2098. position: absolute;
  2099. left: 65%;
  2100. top:0;
  2101. }
  2102. .mailSpread span.mclabel{
  2103. width:12px;
  2104. height:12px;
  2105. display: inline-block;
  2106. vertical-align: middle;
  2107. }
  2108. .mailSpread .mailList {
  2109. width:25%;
  2110. float: left;
  2111. }
  2112. .mailSpread .mailDetail {
  2113. width:50%;
  2114. float: left;
  2115. }
  2116. .mailSpread .mailAddressee{
  2117. width:25%;
  2118. float: left;
  2119. }
  2120. .mailSpread .listItem li{
  2121. padding:10px 0;
  2122. border-bottom: 1px solid #E2E2E2
  2123. }
  2124. .mailSpread .listItem li a.title{
  2125. display: inline-block;
  2126. width:70%;
  2127. overflow: hidden;
  2128. height:16px;
  2129. white-space: nowrap;
  2130. text-overflow:ellipsis;
  2131. }
  2132. .mailAddressee .listItem li{
  2133. padding-left:15px;
  2134. color:green;
  2135. }
  2136. .mailAddressee .listItem li.invalid{
  2137. color:#f90000;
  2138. }
  2139. .mailAddressee .listItem li.repeat{
  2140. color:#ED920F;
  2141. }
  2142. .mailAddressee div.title{
  2143. padding:10px 5px;
  2144. border-bottom:1px solid #e2e2e2;
  2145. background:#084F8E;
  2146. color:#fff;
  2147. }
  2148. .mailSpread .smsBody{
  2149. width:350px;
  2150. height:610px;
  2151. background:url(smsphonebg.png) no-repeat;
  2152. margin-left:30%;
  2153. position: relative;
  2154. }
  2155. .mailSpread .smsvcontent{
  2156. position: absolute;
  2157. left:45px;
  2158. top:140px;
  2159. width:280px;
  2160. height:280px;
  2161. overflow-y:auto
  2162. }
  2163. .mailSpread .smsvcontent .smstext{
  2164. font-size: 14px;
  2165. line-height: 20px;
  2166. text-align: left;
  2167. margin:10px 0
  2168. }
  2169. .seCensor .title{
  2170. background:#373737;
  2171. color:#fff;
  2172. padding:5px 10px
  2173. }
  2174. .seCensor .detail{
  2175. padding:0 10px;
  2176. }
  2177. .seCensor .detail p{
  2178. line-height:20px;
  2179. margin:0 0 10px 0
  2180. }
  2181. .seCensor .detail p:first-letter{
  2182. font-size:24px;
  2183. font-weight:bold;
  2184. color:#373737
  2185. }
  2186. .seCensor .btnList {
  2187. bottom: 0;
  2188. position: absolute;
  2189. right: 0;
  2190. width:100%;
  2191. height: 39px
  2192. }
  2193. .seCensor .btnList a{
  2194. margin:0;
  2195. padding: 0;
  2196. width:50%;
  2197. }
  2198. .seCensor .btnList a.btn-block {
  2199. width: 100%
  2200. }
  2201. .loan-censor .title {
  2202. background:#5C0793
  2203. }
  2204. .receipt-censor .title {
  2205. background:#084F8E
  2206. }
  2207. .public-censor .title {
  2208. background:#008659
  2209. }
  2210. .train-censor .title {
  2211. background:#2daebf
  2212. }
  2213. .loan-censor .detail p:first-letter{
  2214. font-size:24px;
  2215. font-weight:bold;
  2216. color:#5C0793
  2217. }
  2218. .receipt-censor .detail p:first-letter{
  2219. font-size:24px;
  2220. font-weight:bold;
  2221. color:#084F8E
  2222. }
  2223. .public-censor .detail p:first-letter{
  2224. font-size:24px;
  2225. font-weight:bold;
  2226. color:#008659
  2227. }
  2228. .train-censor .detail p:first-letter{
  2229. font-size:24px;
  2230. font-weight:bold;
  2231. color:#2daebf
  2232. }
  2233. .loan-list.entry {
  2234. border-top:2px solid #5C0793
  2235. }
  2236. .receipt-list.entry {
  2237. border-top:2px solid #084F8E
  2238. }
  2239. .public-list.entry {
  2240. border-top:2px solid #008659
  2241. }
  2242. .train-list.entry {
  2243. border-top:2px solid #2daebf
  2244. }
  2245. .loan-list table .taC{
  2246. color:#5C0793
  2247. }
  2248. .receipt-list table .taC{
  2249. color:#084F8E
  2250. }
  2251. .public-list table .taC{
  2252. color:#008659
  2253. }
  2254. .train-list table .taC{
  2255. color:#2daebf
  2256. }
  2257. .censorList {
  2258. background-color: #fff;
  2259. background:#fff url(timeline_hline2.png) repeat-y scroll 26px 0px;
  2260. overflow-y:auto
  2261. }
  2262. .censorList li {
  2263. position: relative;
  2264. padding:10px 5px 10px 60px;
  2265. margin: 2px 0;
  2266. min-height: 36px;
  2267. background:#F6F6F6 url(timeline_hline2.png) repeat-y scroll 26px 0px;
  2268. }
  2269. .censorList li p{
  2270. padding:0 5px 0 0
  2271. }
  2272. .censorList li p:first-child{
  2273. margin-bottom: 5px
  2274. }
  2275. .censorList li textarea{
  2276. width:96%;
  2277. height:62px;
  2278. margin:0;
  2279. }
  2280. .censorList .avtra {
  2281. width:32px;
  2282. padding:2px;
  2283. text-align:center;
  2284. position: absolute;
  2285. left:10px;
  2286. top:10px;
  2287. background:#ccc
  2288. }
  2289. .censorList li.done{
  2290. background-color: #f2faf3
  2291. }
  2292. .censorList li.post{
  2293. background-color: #373737;
  2294. color: #fff
  2295. }
  2296. .loan-censor li.post{
  2297. background-color:#5C0793
  2298. }
  2299. .receipt-censor li.post{
  2300. background-color:#084F8E
  2301. }
  2302. .public-censor li.post{
  2303. background-color:#008659
  2304. }
  2305. .censorList li.undone{
  2306. background-color: #fcf2f2
  2307. }
  2308. .censorList li.done .avtra{
  2309. background:#009D0E;
  2310. color:#fff
  2311. }
  2312. .censorList li.undone .avtra{
  2313. background:#CC0000;
  2314. color:#fff
  2315. }
  2316. .censorList li.back{
  2317. background-color:#fff3e5
  2318. }
  2319. .censorList li.back .avtra{
  2320. background:#FFA132 ;
  2321. color:#fff
  2322. }
  2323. .censorList .reportButton{
  2324. width:100%;
  2325. position: absolute;
  2326. bottom:0;
  2327. }
  2328. .seCensor .reportButton {
  2329. width:100%;
  2330. margin:2px 0;
  2331. }
  2332. .seCensor .reportButton button{
  2333. border:none;
  2334. cursor:pointer;
  2335. }
  2336. .seCensor .reportButton > a,.seCensor .reportButton > button{
  2337. width:50%;
  2338. float:left;
  2339. text-align:center;
  2340. padding:10px 0;
  2341. color:#fff;
  2342. }
  2343. .reportButton a.buttonDone,.reportButton button.buttonDone{
  2344. background:#7ea85c;
  2345. font-size: 16px;
  2346. margin-bottom: 2px
  2347. }
  2348. .reportButton a.buttonDone:hover,.reportButton button.buttonDone:hover{
  2349. background:#4f8e08
  2350. }
  2351. .reportButton a.buttonDone:active,.reportButton button.buttonDone:active{
  2352. background:#2a4f00
  2353. }
  2354. .reportButton a.buttonUndone{
  2355. background:#ce5e5e;
  2356. padding: 3px 0
  2357. }
  2358. .reportButton a.buttonUndone:hover{
  2359. background:#c01010;
  2360. }
  2361. .reportButton a.buttonUndone:active{
  2362. background:#790000;
  2363. }
  2364. .reportButton a.buttonBack{
  2365. background:#ffa132;
  2366. padding: 3px 0
  2367. }
  2368. .reportButton a.buttonBack:hover{
  2369. background:#ff8a00;
  2370. }
  2371. .reportButton a.buttonBack:active{
  2372. background:#e57c01;
  2373. }
  2374. .reportButton a.buttonBlock,.reportButton button.buttonBlock{
  2375. width: 100%
  2376. }
  2377. .globalNotice{
  2378. background-clip: padding-box;
  2379. background-color: #191818;
  2380. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  2381. left:70px;
  2382. outline: 0 none;
  2383. position: fixed;
  2384. bottom:20px;
  2385. width:400px;
  2386. z-index: 1050;
  2387. color:#fff;
  2388. }
  2389. .globalNotice .item{
  2390. padding:10px 0 0 10px;
  2391. }
  2392. .globalNotice .entry {
  2393. border-bottom:1px solid #222222;
  2394. }
  2395. .globalNotice .entry .button{
  2396. height:38px;
  2397. line-height:38px;
  2398. margin:0;
  2399. }
  2400. .globalNotice-staff{
  2401. background-clip: padding-box;
  2402. background-color: #191818;
  2403. box-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
  2404. right:20px;
  2405. outline: 0 none;
  2406. position: fixed;
  2407. bottom:20px;
  2408. width:400px;
  2409. z-index: 1050;
  2410. color:#fff;
  2411. }
  2412. .globalNotice-staff .item{
  2413. padding:10px 0 0 10px;
  2414. }
  2415. .globalNotice-staff .entry {
  2416. border-bottom:1px solid #222222;
  2417. }
  2418. .globalNotice-staff .entry .button{
  2419. height:38px;
  2420. line-height:38px;
  2421. margin:0;
  2422. }
  2423. .staffList{
  2424. overflow-y: auto;
  2425. }
  2426. .staffItem {
  2427. float:left;
  2428. width:49.7%
  2429. }
  2430. .staffItem .warp{
  2431. margin:5px 0 0 5px;
  2432. background:#fff;
  2433. padding:15px 20px;
  2434. border:1px solid #d8d8d8;
  2435. border-bottom-width:2px;
  2436. position:relative;
  2437. overflow: hidden;
  2438. min-height:60px
  2439. }
  2440. .staffItem .warp:hover{
  2441. border-bottom-color:#999
  2442. }
  2443. .staffItem .warp.male{
  2444. background:#fff url(male.png) no-repeat center center
  2445. }
  2446. .staffItem .warp.female{
  2447. background:#fff url(female.png) no-repeat center center
  2448. }
  2449. .staffItem h1{
  2450. font-size:24px
  2451. }
  2452. .staffItem h1 b{
  2453. color:#999;
  2454. font-size:12px
  2455. }
  2456. .staffItem h1 i{
  2457. color:#EFBC2B;
  2458. font-size:10px
  2459. }
  2460. .staffItem p{
  2461. font-size:18px;
  2462. font-family:"Tahoma";
  2463. }
  2464. .staffItem .more{
  2465. background:#f8f8f8;
  2466. position:absolute;
  2467. right:-100%;
  2468. top:0;
  2469. height:100%;
  2470. padding:0 20px;
  2471. border-left:1px solid #d8d8d8;
  2472. overflow: hidden;
  2473. }
  2474. .staffItem .more ul{
  2475. margin:10px 0 0 0
  2476. }
  2477. .staffItem .more li{
  2478. height:22px;
  2479. line-height:22px
  2480. }
  2481. .staffItem .more li b{
  2482. display: inline-block;
  2483. width:40px;
  2484. text-align:right
  2485. }
  2486. .staffItem:hover .more{
  2487. right:0
  2488. }
  2489. .bsAlert {
  2490. padding:8px 10px;
  2491. border:1px solid #fff;
  2492. }
  2493. .bsDanger{
  2494. background: #F2DEDE;
  2495. border-color:#EED3D7;
  2496. color:#B94A48;
  2497. }
  2498. .bsSuccess{
  2499. background:#DFF0D8;
  2500. border-color:#D6E9C6;
  2501. color:#468847;
  2502. }
  2503. .bsInfo{
  2504. background: #D9EDF7;
  2505. border-color:#BCE8F1;
  2506. color:#3A87AD;
  2507. }
  2508. .bsWarning{
  2509. background:#FCF8E3;
  2510. border-color:#FBEED5;
  2511. color:#C09853;
  2512. }
  2513. .ui-autocomplete {
  2514. max-height: 300px;
  2515. overflow-y: auto
  2516. }
  2517. .searchTips {
  2518. background:url(blackbg.png) repeat;
  2519. width:100%;
  2520. height:100%;
  2521. position: absolute;
  2522. top:0;
  2523. left:0;
  2524. }
  2525. .searchTips .tipsImg{
  2526. background:url(searchtipsimg.png) no-repeat;
  2527. width:490px;
  2528. height:345px;
  2529. position: relative;
  2530. }
  2531. .searchTips .tipsImg .button{
  2532. position: absolute;
  2533. left:320px;
  2534. top:220px;
  2535. border:2px solid #fff;
  2536. }
  2537. .appDown {
  2538. background:url(appbg.jpg) no-repeat center center;
  2539. position:relative;
  2540. color:#fff;
  2541. }
  2542. .appDown legend{
  2543. color:#fff;
  2544. }
  2545. .appDown .android-panel,.appDown .iphone-panel{
  2546. width:35%;
  2547. float:left;
  2548. border:1px solid #fff;
  2549. padding:30px 40px;
  2550. margin:30px;
  2551. border-radius: 10px;
  2552. background:rgb(0,0,0,.6);
  2553. }
  2554. .appDown .qrcode{
  2555. background:url(qrcode.png) no-repeat;
  2556. width:220px;
  2557. height:220px;
  2558. margin:0 0 15px 0;
  2559. position: relative;
  2560. }
  2561. .appDown .qrcode2{
  2562. background:url(qrcode2.png) no-repeat;
  2563. width:220px;
  2564. height:220px;
  2565. margin:0 0 15px 0;
  2566. position: relative;
  2567. }
  2568. .qrcode .saoma{
  2569. width:160px;
  2570. height:240px;
  2571. background:url(weixin.png) no-repeat;
  2572. position: absolute;
  2573. bottom:-10px;
  2574. left:150px;
  2575. opacity: 0;
  2576. -webkit-transition: all 1.5s ease-in-out;
  2577. -moz-transition: all 1.5s ease-in-out;
  2578. -o-transition: all 1.5s ease-in-out;
  2579. -ms-transition: all 1.5s ease-in-out;
  2580. transition: all 1.5s ease-in-out;
  2581. }
  2582. .qrcode:hover .saoma{
  2583. left:240px;
  2584. opacity: 1;
  2585. }
  2586. .appDown .downButton{
  2587. background:url(appphone.png) no-repeat 0 -807px ;
  2588. height:64px;
  2589. width:218px;
  2590. display:inline-block;
  2591. }
  2592. .appDown .downButton:hover{
  2593. background:url(appphone.png) no-repeat -218px -807px ;
  2594. height:64px;
  2595. width:218px;
  2596. }
  2597. .uploadAvtra {
  2598. position:relative;
  2599. }
  2600. .uploadAvtra .uploadPanel{
  2601. position:absolute;
  2602. top:0;
  2603. left:220px;
  2604. }
  2605. /**/
  2606. .inputErrow{
  2607. -webkit-animation:shake 1s .2s ease both;
  2608. -moz-animation:shake 1s .2s ease both;
  2609. animation:shake 1s .2s ease both;}
  2610. @-webkit-keyframes shake{
  2611. 0%,100%{-webkit-transform:translateX(0);}
  2612. 10%,30%,50%,70%, 90%{-webkit-transform:translateX(-10px);}
  2613. 20%,40%,60%,80%{-webkit-transform:translateX(10px);}
  2614. }
  2615. @-moz-keyframes shake{
  2616. 0%,100%{-moz-transform:translateX(0);}
  2617. 10%,30%,50%,70%, 90%{-moz-transform:translateX(-10px);}
  2618. 20%,40%,60%,80%{-moz-transform:translateX(10px);}
  2619. }
  2620. @keyframes shake{
  2621. 0%,100%{transform:translateX(0);}
  2622. 10%,30%,50%,70%, 90%{transform:translateX(-10px);}
  2623. 20%,40%,60%,80%{transform:translateX(10px);}
  2624. }
  2625. .indexSportList li {
  2626. display:inline-block;
  2627. }
  2628. .infoCenter dt{
  2629. margin:5px 0;
  2630. background:#fff;
  2631. }
  2632. .infoCenter dd{
  2633. background:none;
  2634. display: inline-block;
  2635. width:300px;
  2636. }
  2637. .ui-autocomplete {
  2638. max-height: 250px;
  2639. overflow-y: auto
  2640. }
  2641. .contactTab .remind {
  2642. position: absolute;
  2643. right: 316px;
  2644. height: 46px;
  2645. top:0;
  2646. border-left: 1px solid #535353;
  2647. border-right: 1px solid #535353;
  2648. }
  2649. .contactTab .remind .icons{
  2650. font-size: 30px;
  2651. line-height: 45px;
  2652. height: 45px;
  2653. width:50px;
  2654. text-align: center;
  2655. color: #eee;
  2656. cursor: pointer;
  2657. }
  2658. .contactTab .remind .tabPoint {
  2659. color:#fff;
  2660. position: absolute;
  2661. font-size: 10px;
  2662. right:2px;
  2663. top:2px;
  2664. background-color: #F90000;
  2665. border-radius: 10px;
  2666. width:18px;
  2667. height: 18px;
  2668. text-align: center;
  2669. line-height:18px
  2670. }
  2671. .contactTab .remind .remindList{
  2672. position: absolute;
  2673. top:46px;
  2674. right:-1px;
  2675. z-index: 999;
  2676. background-color: #fff;
  2677. width: 400px;
  2678. height: 200px;
  2679. overflow-y:auto;
  2680. border:1px solid #333333;
  2681. border-top:none
  2682. }
  2683. .contactTab .remind.focus{
  2684. background-color: #fff
  2685. }
  2686. .contactTab .remind.focus .icons{
  2687. color: #535353
  2688. }
  2689. .remindList li {
  2690. height:34px;
  2691. padding: 5px 0;
  2692. border-bottom: 1px dashed #DDD
  2693. }
  2694. .remindList li .time {
  2695. height: 34px;
  2696. background-color: #999999;
  2697. color: #fff;
  2698. margin:0 0 0 5px;
  2699. width: 40px;
  2700. text-align: center;
  2701. }
  2702. .remindList li .time p {
  2703. background-color: #fff;
  2704. color:#999;
  2705. text-align: center;
  2706. border:1px solid #999;
  2707. }
  2708. .remindList li a{
  2709. height: 34px;
  2710. line-height: 34px;
  2711. padding: 0 10px 0 0;
  2712. margin: 0;
  2713. color:#8E0950;
  2714. display: none
  2715. }
  2716. .remindList li a:hover{
  2717. color:#333;
  2718. background-color:#f7f7ff;
  2719. margin: 0;
  2720. border:none;
  2721. }
  2722. .remindList li:hover {
  2723. background-color: #f7f7f7
  2724. }
  2725. .remindList li:hover a{
  2726. display: block;
  2727. }
  2728. .remindList .remindIcon {
  2729. background-image:url(infocentericon.png) no-repeat;
  2730. height: 34px;
  2731. width: 32px
  2732. }
  2733. .remindList li .entry {
  2734. width: 280px
  2735. }
  2736. .contactTab .remind .icon-.tips{
  2737. font-size: 12px;
  2738. margin-left:5px;
  2739. color:#999;
  2740. }
  2741. .contactTab .remind .icon-.dl{
  2742. color:#f90000;
  2743. }
  2744. .remind .animation{
  2745. -webkit-animation:swing 2s .3s infinite ease both;
  2746. -moz-animation:swing 2s .3s infinite ease both;}
  2747. @-webkit-keyframes swing{
  2748. 20%,40%,60%,80%,100%{-webkit-transform-origin:top center}
  2749. 20%{-webkit-transform:rotate(15deg)}
  2750. 40%{-webkit-transform:rotate(-10deg)}
  2751. 60%{-webkit-transform:rotate(5deg)}
  2752. 80%{-webkit-transform:rotate(-5deg)}
  2753. 100%{-webkit-transform:rotate(0deg)}
  2754. }
  2755. @-moz-keyframes swing{
  2756. 20%,40%,60%,80%,100%{-moz-transform-origin:top center}
  2757. 20%{-moz-transform:rotate(15deg)}
  2758. 40%{-moz-transform:rotate(-10deg)}
  2759. 60%{-moz-transform:rotate(5deg)}
  2760. 80%{-moz-transform:rotate(-5deg)}
  2761. 100%{-moz-transform:rotate(0deg)}
  2762. }
  2763. .datetimepicker .glyphicon-arrow-left:before{
  2764. content: "<"
  2765. }
  2766. .datetimepicker .glyphicon-arrow-right:before{
  2767. content: ">"
  2768. }
  2769. .groupCheckbox li {
  2770. width:165px;
  2771. float: left;
  2772. padding-right: 10px;
  2773. overflow: hidden;
  2774. height: 20px
  2775. }
  2776. .groupSide {
  2777. width:220px;
  2778. border-right:1px solid #DDD;
  2779. position: fixed;
  2780. }
  2781. .groupSide .sideMnav{
  2782. overflow-y:auto
  2783. }
  2784. .groupContent {
  2785. position: relative;
  2786. margin-left: 222px
  2787. }
  2788. .groupContent .groupList{
  2789. overflow-y: scroll;
  2790. margin: 0
  2791. }
  2792. .groupContent > form {
  2793. margin: 0px;
  2794. }
  2795. .groupCate legend{
  2796. margin:0;
  2797. padding: 0 10px;
  2798. width:98%
  2799. }
  2800. .groupCate .cateList {
  2801. padding: 10px 0 5px 10px;
  2802. border-bottom:1px solid #ddd;
  2803. margin:0;
  2804. background-color: #f7f7f7
  2805. }
  2806. .groupCate .bulk {
  2807. margin-right: 10px
  2808. }
  2809. .groupSide .groupCont{
  2810. padding:8px 0;
  2811. border-bottom:1px solid #ddd;
  2812. }
  2813. .groupSide .groupCont li{
  2814. height: 18px;
  2815. cursor: pointer;
  2816. padding: 10px 20px
  2817. }
  2818. .groupSide .groupCont li:hover{
  2819. color:#8E0950
  2820. }
  2821. .groupSide .groupCont li.active {
  2822. background: #f9ecf3;
  2823. color:#8E0950
  2824. }
  2825. .groupSide .addTopgroup {
  2826. position: absolute;
  2827. bottom:0;
  2828. width: 220px;
  2829. padding:10px 0;
  2830. border-top:1px solid #ddd;
  2831. text-align: center;
  2832. background-color: #fff
  2833. }
  2834. .groupSide .addTopgroup label {
  2835. margin:0;
  2836. }
  2837. .groupSide .addTopgroup input {
  2838. margin: 0 0 0 20px;
  2839. width:170px;
  2840. }
  2841. .groupNum {
  2842. color: #fff;
  2843. background:#999;
  2844. border-radius: 3px;
  2845. padding: 0 5px;
  2846. }
  2847. .groupTree {
  2848. margin-bottom: 60px
  2849. }
  2850. .groupTree li .fr{
  2851. padding: 10px 20px;
  2852. color:#333;
  2853. display:block;
  2854. }
  2855. .groupTree li .fr .icon-{
  2856. float: left;
  2857. line-height: 18px
  2858. }
  2859. .groupTree li a{
  2860. color: #333;
  2861. }
  2862. .groupTree li a:hover{
  2863. color: #8E0950
  2864. }
  2865. .groupTree li a.active {
  2866. background-color: #f9ecf3;
  2867. color: #8E0950
  2868. }
  2869. .groupTree .tree_2 {
  2870. padding-left: 20px
  2871. }
  2872. .groupTree .tree_2 li {
  2873. padding: 10px 20px;
  2874. background:url(groupDot.png) no-repeat 0 0;
  2875. height: 16px
  2876. }
  2877. .groupTree .tree_2 li:last-child {
  2878. background:url(groupDot.png) no-repeat -20px -36px;
  2879. }
  2880. .groupTree .tree_2 li.active {
  2881. background-color: #f9ecf3;
  2882. color:#8E0950
  2883. }
  2884. .groupTree .tree_2 li.active a{
  2885. color:#8E0950
  2886. }
  2887. .groupTree li .addG{
  2888. border-bottom: 1px solid #ddd;
  2889. padding:5px 0 10px 20px;
  2890. display: none
  2891. }
  2892. .groupTree li:hover .addG{
  2893. display:block
  2894. }
  2895. .groupTree li .addG a{
  2896. color: #fff;
  2897. background-color:#8E0950;
  2898. padding:0 10px
  2899. }
  2900. .groupTree li .addG a:hover{
  2901. background-color: #B01C6B
  2902. }
  2903. .groupTree .groupTitle{
  2904. display:inline-block;
  2905. height: 16px;
  2906. line-height: 16px;
  2907. overflow: hidden;
  2908. text-overflow: ellipsis;
  2909. white-space: nowrap;
  2910. max-width: 110px
  2911. }
  2912. .wrapDetil {
  2913. position: absolute;
  2914. right: 0;
  2915. background:#fff;
  2916. border-left:1px solid #353535;
  2917. top:0;
  2918. width: 0;
  2919. z-index: 999
  2920. }
  2921. .demanHeader {
  2922. margin:20px 0;
  2923. background-color: #62AC4D ;
  2924. height: 215px;
  2925. overflow: hidden;
  2926. }
  2927. .demanHeader h1{
  2928. font-size: 21px;
  2929. color: #333
  2930. }
  2931. .demanHeader p{
  2932. height: 18px
  2933. }
  2934. .demandBoard {
  2935. width: 49%
  2936. }
  2937. .demandBoard .tab a{
  2938. margin:5px;
  2939. cursor: pointer;
  2940. color: #999
  2941. }
  2942. .demandBoard .tab a:hover{
  2943. border-bottom: 1px solid #999
  2944. }
  2945. .demandBoard .tab a.focus{
  2946. border-bottom:1px solid #8E0950;
  2947. color: #8E0950
  2948. }
  2949. .boardList {
  2950. margin-bottom: 50px
  2951. }
  2952. .boardList li {
  2953. padding: 14px 0 14px 60px;
  2954. position: relative;
  2955. border-bottom:1px solid #f5f5f5
  2956. }
  2957. .boardList li .avtra {
  2958. position: absolute;
  2959. left: 0;
  2960. top:10px
  2961. }
  2962. .boardList li .info {
  2963. position: absolute;
  2964. right: 0;
  2965. top:20px
  2966. }
  2967. .boardList li .info .entry{
  2968. display: inline-block;
  2969. }
  2970. .boardList li .content h4{
  2971. height: 24px;
  2972. line-height: 24px;
  2973. margin-bottom: 5px
  2974. }
  2975. .demanStat {
  2976. margin-right:860px;
  2977. height: 215px
  2978. }
  2979. .demanStat .top {
  2980. height:105px;
  2981. margin-bottom:5px;
  2982. border-bottom:1px solid #86c774;
  2983. }
  2984. .demanStat .top .entry {
  2985. width:50%;
  2986. color:#fff;
  2987. }
  2988. .demanStat .stat1 > div{
  2989. border-right: 1px solid #86c774;
  2990. height: 105px;
  2991. text-align: center;
  2992. padding-top:15px;
  2993. height: 90px
  2994. }
  2995. .demanStat .stat1 p {
  2996. font-size:48px;
  2997. text-align: center
  2998. }
  2999. .demanStat .stat2 div.line{
  3000. height: 45px;
  3001. padding-top:8px;
  3002. }
  3003. .demanStat .stat2 div.line:first-child{
  3004. border-bottom:1px solid #86c774;
  3005. }
  3006. .demanStat .stat2 div.line .fL{
  3007. width: 50%;
  3008. text-align: center;
  3009. }
  3010. .demanStat .stat2 div.line .fL p{
  3011. font-size: 16px;
  3012. text-align: center;
  3013. }
  3014. .demanStat .stat2 div.line .fL p a{
  3015. font-size: 16px;
  3016. color:#fff;
  3017. }
  3018. .demanStat .stat2 div.line .fL p a:hover{
  3019. text-decoration:underline;
  3020. }
  3021. .demanStat .bottom {
  3022. height: 105px
  3023. }
  3024. .demanStat .bottom p{
  3025. text-align: center;
  3026. color:#fff;
  3027. height: 22px;
  3028. line-height: 22px;
  3029. font-weight: 600
  3030. }
  3031. .demanStat .bottom li {
  3032. float: left;
  3033. width: 33%;
  3034. text-align: center;
  3035. height: 26px;
  3036. line-height: 26px
  3037. }
  3038. @media screen and (max-width:1350px) {
  3039. .demanStat .bottom li{
  3040. width: 49%
  3041. }
  3042. }
  3043. .demanStat .bottom li span{
  3044. display: inline-block;
  3045. color: #fff
  3046. }
  3047. .demanStat .bottom li span {
  3048. width:40px;
  3049. display: inline-block;
  3050. text-align: right;
  3051. color:#fff;
  3052. }
  3053. .demandTab .dTab {
  3054. background-color:#91d27f;
  3055. margin: 0px 5px 2px 0px;
  3056. padding: 0px 3px;
  3057. color: #666;
  3058. display: inline-block;
  3059. color: #fff
  3060. }
  3061. .demandTab .dTab:hover{
  3062. background-color: #62AC4D
  3063. }
  3064. .demandIndex .postButton {
  3065. border:1px solid #ccc;
  3066. width: 860px;
  3067. margin:50px 0;
  3068. padding: 20px;
  3069. position: relative;
  3070. }
  3071. .demandIndex .postButton a{
  3072. background-color: #62AC4D;
  3073. color:#fff;
  3074. font-size: 24px;
  3075. padding: 12px 20px;
  3076. float: right;
  3077. }
  3078. .demandIndex .postButton a:hover{
  3079. background-color: #91d27f
  3080. }
  3081. .demandIndex .postButton span{
  3082. position: absolute;
  3083. color: #ddd
  3084. }
  3085. .demandContent .wrap {
  3086. width:500px;
  3087. border-right: 1px solid #DDD;
  3088. padding: 10px 0
  3089. }
  3090. .demandContent .wrap .title{
  3091. border-bottom:1px solid #f5f5f5;
  3092. margin:0 20px;
  3093. }
  3094. .demandContent .wrap .title h2{
  3095. margin: 14px 0;
  3096. font-size: 20px
  3097. }
  3098. .demandContent .wrap .content{
  3099. padding:24px 0;
  3100. margin:0 20px;
  3101. }
  3102. .demandContent .wrap .content img{
  3103. max-width: 400px
  3104. }
  3105. .demandContent .wrap .comment{
  3106. padding:14px 0
  3107. }
  3108. .demandContent .wrap .comment h1{
  3109. font-size:16px;
  3110. padding-bottom: 10px;
  3111. border-bottom:1px solid #e6e6e6;
  3112. margin-bottom: 10px;
  3113. padding:0 20px 10px;
  3114. }
  3115. .commentList {
  3116. margin: 0 20px
  3117. }
  3118. .commentList .comEntry {
  3119. border-bottom:1px solid #f5f5f5;
  3120. position: relative;
  3121. padding: 14px 0
  3122. }
  3123. .commentList .comEntry:last-child{
  3124. border-bottom: none
  3125. }
  3126. .commentList .comEntry .avtra {
  3127. position: absolute;
  3128. left: 0;
  3129. text-align: center;
  3130. }
  3131. .commentList .comEntry .post {
  3132. min-height:48px;
  3133. margin-left: 50px
  3134. }
  3135. .commentList .comEntry .post .fileItem{
  3136. border:1px solid #f5f5f5;
  3137. padding: 5px;
  3138. margin:5px;
  3139. }
  3140. .commentList .comEntry .reCom{
  3141. padding-left: 48px;
  3142. background:url(right-quote.png) no-repeat 0 10px;
  3143. }
  3144. .commentList .postCom {
  3145. width: 100%;
  3146. margin-top: 5px
  3147. }
  3148. .postCom{
  3149. clear: both;
  3150. }
  3151. .postCom .quickReplyArrowBox {
  3152. position: relative;
  3153. width: 100%;
  3154. height: 6px;
  3155. }
  3156. .postCom .quickReplyArrowBox .quickReplyArrow {
  3157. background: url(replyArrow.png) no-repeat;
  3158. position: absolute;
  3159. right: 14px;
  3160. top: 1px;
  3161. width: 11px;
  3162. height: 6px;
  3163. display: block;
  3164. }
  3165. .postCom .postBar{
  3166. margin-top: 5px
  3167. }
  3168. .postCom .fileBar {
  3169. margin:5px;
  3170. }
  3171. .postCom textarea.quickArea {
  3172. border-radius: 3px;
  3173. -moz-border-radius: 3px;
  3174. -webkit-border-radius: 3px;
  3175. border: 1px solid #e5e5e5;
  3176. height: 40px;
  3177. line-height:20px;
  3178. padding: 5px;
  3179. color: #666;
  3180. font-size: 12px;
  3181. margin: 0;
  3182. width: 445px;
  3183. max-width: 445px;
  3184. min-width: 445px;
  3185. box-shadow: none
  3186. }
  3187. .newPost{
  3188. margin:20px 15px
  3189. }
  3190. .newPost .newCom{
  3191. position: relative;
  3192. }
  3193. .newPost .newCom .avtra {
  3194. position: absolute;
  3195. left:0;
  3196. text-align: center;
  3197. }
  3198. .newPost .newCom textarea.quickArea{
  3199. margin-left:55px;
  3200. width:400px;
  3201. max-width:400px;
  3202. min-width:400px
  3203. }
  3204. .newPost .smile{
  3205. margin-left:60px;
  3206. }
  3207. .reCom .postCom textarea.quickArea {
  3208. width: 400px;
  3209. max-width: 400px;
  3210. min-width: 400px
  3211. }
  3212. /**表情**/
  3213. .smile {
  3214. position: relative;
  3215. margin-right: 45px
  3216. }
  3217. .smile .smileImg,.smile .fileImg{
  3218. cursor: pointer;
  3219. margin-right: 5px
  3220. }
  3221. .smile .smileImg:hover,.smile .fileImg:hover{
  3222. opacity: 0.7
  3223. }
  3224. .smileItem {
  3225. background: url(layerBg.png) repeat;
  3226. padding: 3px;
  3227. border-radius: 3px;
  3228. -moz-border-radius: 3px;
  3229. -webkit-border-radius: 3px;
  3230. position: absolute;
  3231. top: 26px;
  3232. left: 0;
  3233. clear: both;
  3234. width: 336px;
  3235. height:125px;
  3236. z-index: 999;
  3237. display: none
  3238. }
  3239. img.smiley{
  3240. vertical-align:top;
  3241. margin: 0 2px
  3242. }
  3243. ul.smileBox {
  3244. background-color: #fafafa;
  3245. padding: 10px;
  3246. width: 316px;
  3247. height:105px;
  3248. list-style: none;
  3249. overflow: hidden
  3250. }
  3251. ul.smileBox li,ul.smileBox li ul.commentList li {
  3252. width: 36px;
  3253. height: 36px;
  3254. float: left;
  3255. margin: -1px 0 0 -1px;
  3256. padding: 0;
  3257. border-bottom: 0
  3258. }
  3259. ul.smileBox li a {
  3260. background: url(static.gif) no-repeat;
  3261. width: 34px;
  3262. height: 34px;
  3263. display: block
  3264. }
  3265. ul.smileBox li a.smile2 {
  3266. background-position: -34px 0
  3267. }
  3268. ul.smileBox li a.smile3 {
  3269. background-position: -68px 0
  3270. }
  3271. ul.smileBox li a.smile4 {
  3272. background-position: -102px 0
  3273. }
  3274. ul.smileBox li a.smile5 {
  3275. background-position: -136px 0
  3276. }
  3277. ul.smileBox li a.smile6 {
  3278. background-position: -170px 0
  3279. }
  3280. ul.smileBox li a.smile7 {
  3281. background-position: -204px 0
  3282. }
  3283. ul.smileBox li a.smile8 {
  3284. background-position: -238px 0
  3285. }
  3286. ul.smileBox li a.smile9 {
  3287. background-position: -272px 0
  3288. }
  3289. ul.smileBox li a.smile10 {
  3290. background-position: -306px 0
  3291. }
  3292. ul.smileBox li a.smile11 {
  3293. background-position: -340px 0
  3294. }
  3295. ul.smileBox li a.smile12 {
  3296. background-position: -374px 0
  3297. }
  3298. ul.smileBox li a.smile13 {
  3299. background-position: -408px 0
  3300. }
  3301. ul.smileBox li a.smile14 {
  3302. background-position: -442px 0
  3303. }
  3304. ul.smileBox li a.smile15 {
  3305. background-position: -476px 0
  3306. }
  3307. ul.smileBox li a.smile16 {
  3308. background-position: -510px 0
  3309. }
  3310. ul.smileBox li a.smile17 {
  3311. background-position: -544px 0
  3312. }
  3313. ul.smileBox li a.smile18 {
  3314. background-position: -578px 0
  3315. }
  3316. ul.smileBox li a.smile19 {
  3317. background-position: -612px 0
  3318. }
  3319. ul.smileBox li a.smile20 {
  3320. background-position: -646px 0
  3321. }
  3322. ul.smileBox li a.smile21 {
  3323. background-position: -680px 0
  3324. }
  3325. ul.smileBox li a.smile22 {
  3326. background-position: -714px 0
  3327. }
  3328. ul.smileBox li a:link,ul.smileBox li a:visited {
  3329. border: 1px solid #e5e5e5;
  3330. background-color: #fff
  3331. }
  3332. ul.smileBox li a:hover,ul.smileBox li a:active {
  3333. border: 1px solid #5183c0;
  3334. background-color: #f5f5f5;
  3335. position: relative;
  3336. z-index: 2
  3337. }
  3338. /**表情**/
  3339. .demandContent .side {
  3340. width:182px
  3341. }
  3342. .side .timeLine {
  3343. padding-bottom: 20px;
  3344. border-bottom: 1px solid #DDD
  3345. }
  3346. .side .timeLine li {
  3347. background:url(timeline_hline.png) repeat-y 53px 0;
  3348. padding: 8px 0 15px
  3349. }
  3350. .side .timeLine .year{
  3351. color: #ccc;
  3352. padding: 5px 0 5px 40px;
  3353. background:#fff;
  3354. margin-right:30px;
  3355. }
  3356. .side .timeLine .mon{
  3357. float: left;
  3358. width:40px;
  3359. line-height: 30px;
  3360. text-align: center;
  3361. color: #999
  3362. }
  3363. .side .timeLine .day{
  3364. float: left;
  3365. width:30px;
  3366. height: 30px;
  3367. line-height: 30px;
  3368. color:#fff;
  3369. text-align: center;
  3370. background-color:#599fd1;
  3371. border-radius: 30px;
  3372. font-size: 18px;
  3373. margin-right: 10px
  3374. }
  3375. .side .timeLine .con {
  3376. float:left;
  3377. }
  3378. .side .btnBar{
  3379. padding: 10px
  3380. }
  3381. .demandTabList {
  3382. position: relative;
  3383. }
  3384. .tabList {
  3385. width: 860px;
  3386. border-right: 1px solid #DDD;
  3387. padding-top: 20px
  3388. }
  3389. .tabList .talItem {
  3390. position: relative;
  3391. float: left;
  3392. width:360px;
  3393. padding: 20px 5px 20px 65px;
  3394. border-bottom: 1px solid #f5f5f5;
  3395. }
  3396. .tabList .talItem .talImg {
  3397. position: absolute;
  3398. left: 5px;
  3399. top: 20px;
  3400. }
  3401. .tabList .talItem p{
  3402. margin-bottom:10px
  3403. }
  3404. .tabList .talItem p + p{
  3405. margin: 5px 0 0 0
  3406. }
  3407. .talItem .dTab {
  3408. font-size: 14px
  3409. }
  3410. .pagination {
  3411. margin:20px;
  3412. }
  3413. .pagination li{
  3414. float: left;
  3415. margin-left:-1px;
  3416. border:1px solid #ddd;
  3417. position: relative;
  3418. }
  3419. .pagination li.point{
  3420. border: none;
  3421. }
  3422. .pagination li a,.pagination li span{
  3423. padding: 6px 12px;
  3424. display:inline-block
  3425. }
  3426. .pagination li:hover{
  3427. border-color:#8E0950;
  3428. z-index: 1
  3429. }
  3430. .pagination li.active{
  3431. border-color:#8E0950;
  3432. background-color:#8E0950
  3433. }
  3434. .pagination li.active a{
  3435. color:#fff;
  3436. }
  3437. .demandTabList .side{
  3438. position: absolute;
  3439. left: 861px;
  3440. top:0
  3441. }
  3442. .hotTab,.nowFlow,.tabDetail,.flows{
  3443. margin:20px;
  3444. border-bottom:1px solid #F5F5F5;
  3445. padding-bottom: 20px
  3446. }
  3447. .hotTab dt,.nowFlow dt,.tabDetail dt,.flows dt{
  3448. margin-bottom:15px;
  3449. }
  3450. .hotTab .demandTab .dTab {
  3451. margin-bottom: 5px
  3452. }
  3453. .nowFlow dd{
  3454. padding-left:50px;
  3455. position: relative;
  3456. height: 42px;
  3457. margin-bottom: 15px
  3458. }
  3459. .nowFlow dd .avtra{
  3460. position: absolute;
  3461. left: 0;
  3462. top:0;
  3463. }
  3464. .tabList .boardList {
  3465. padding-right: 20px;
  3466. min-height: 400px
  3467. }
  3468. legend .search{
  3469. margin: 6px 10px 0 0
  3470. }
  3471. .librarySide{
  3472. width: 179px;
  3473. position: absolute;
  3474. }
  3475. .sideMnav {
  3476. position: relative
  3477. }
  3478. .sideMnav li,.sideSnav li{
  3479. padding:8px 10px;
  3480. }
  3481. .sideMnav li .icon-{
  3482. margin-top:3px
  3483. }
  3484. .sideSnav li .icon-{
  3485. margin-top:3px;
  3486. }
  3487. .sideMnav li.title{
  3488. border-top:1px dashed #ddd
  3489. }
  3490. .sideSnav li.title{
  3491. border-bottom:1px dashed #ddd
  3492. }
  3493. .sideMnav li h3,.sideSnav li h3{
  3494. font-size: 12px;
  3495. margin:0;
  3496. color: #999;
  3497. }
  3498. .sideMnav li a,.sideMnav li span,.sideSnav li a,.sideSnav li span{
  3499. color: #333
  3500. }
  3501. .sideMnav li span{
  3502. cursor:default;
  3503. }
  3504. .sideMnav li:hover a,.sideMnav li:hover span{
  3505. color: #8E0950
  3506. }
  3507. .sideMnav li.focus a,.sideMnav li.focus span{
  3508. color: #8E0950
  3509. }
  3510. .sideSnav li a:hover,.sideSnav li span:hover {
  3511. color: #8E0950
  3512. }
  3513. .sideSnav li a.focus{
  3514. color: #8E0950
  3515. }
  3516. .sideSnav li h4{
  3517. cursor: pointer
  3518. }
  3519. .sideSnav li h4.focus span{
  3520. color: #8E0950
  3521. }
  3522. .sideMnav li:hover{
  3523. background-color: #F7F7F7
  3524. }
  3525. .sideSnav span.icon-:after {
  3526. content: "c"
  3527. }
  3528. .sideSnav li h4.focus span:after {
  3529. content: "d"
  3530. }
  3531. .sideMnav .navLeve0,.sideMnav .navLeve1,.sideMnav .navLeve2{
  3532. position: absolute;
  3533. top: 0px;
  3534. width: 179px;
  3535. border-right: 1px solid #ddd;
  3536. z-index: 999;
  3537. background-color: #fff
  3538. }
  3539. .sideSnav .snavLeve0 {
  3540. width: 179px;
  3541. border-right: 1px solid #DDD
  3542. }
  3543. .sideMnav .navLeve0 .selected,.sideMnav .navLeve0 .selected span{
  3544. background:#f1f1f1;
  3545. color:#8E0950;
  3546. }
  3547. .sideSnav .snavLeve0 .num{
  3548. color: #FFF;
  3549. background: #999 none repeat scroll 0% 0%;
  3550. border-radius: 3px;
  3551. padding: 0px 5px;
  3552. }
  3553. .sideMnav .navLeve1,.sideMnav .navLeve2{
  3554. opacity: 0;
  3555. left: 0;
  3556. z-index: 998;
  3557. }
  3558. .sideSnav .snavLeve1 {
  3559. margin-top: 8px
  3560. }
  3561. .libraryContent {
  3562. margin:0 0 0 200px;
  3563. }
  3564. .libTopSearch {
  3565. height: 64px;
  3566. margin-bottom:30px;
  3567. width:950px;
  3568. }
  3569. .searchItem {
  3570. position: relative;
  3571. }
  3572. .searchItem .searchFrame{
  3573. margin-right: 473px
  3574. }
  3575. .searchItem .searchFrame input{
  3576. width: 100%;
  3577. border: 2px solid #62AC4D ;
  3578. height: 36px;
  3579. margin-top: 10px;
  3580. float: left;
  3581. padding-left: 10px;
  3582. }
  3583. .searchItem .searchBtn{
  3584. position: absolute;
  3585. right: 410px;
  3586. top: 0px;
  3587. font-size: 16px;
  3588. background-color: #62AC4D ;
  3589. color: #FFF;
  3590. padding:0 10px;
  3591. margin-top: 10px;
  3592. cursor: pointer;
  3593. height: 44px;
  3594. line-height: 44px
  3595. }
  3596. .searchItem .searchBtn:hover{
  3597. color: #ddd
  3598. }
  3599. .searchItem .hotKey{
  3600. position: absolute;
  3601. left:560px;
  3602. top:15px;
  3603. }
  3604. .searchItem .hotKey .keyword{
  3605. margin-right: 15px
  3606. }
  3607. .libIndex h3{
  3608. font-weight:200;
  3609. margin-bottom: 20px
  3610. }
  3611. .libList {
  3612. float:left;
  3613. width: 280px;
  3614. margin-right: 20px;
  3615. margin-bottom: 30px
  3616. }
  3617. .libList dt{
  3618. font-weight: 600;
  3619. margin-bottom: 10px
  3620. }
  3621. .libList dd {
  3622. line-height:16px;
  3623. margin-bottom:8px
  3624. }
  3625. .libList dd .icon- {
  3626. font-size: 10px
  3627. }
  3628. .libList dd.more a{
  3629. color:#999;
  3630. }
  3631. .libList dd.more a:hover{
  3632. color:#666;
  3633. }
  3634. .libList2 li {
  3635. position: relative;
  3636. padding: 0 0 0 15px;
  3637. margin-bottom: 20px
  3638. }
  3639. .libList2 li p{
  3640. margin-bottom:5px
  3641. }
  3642. .libList2 li .icon- {
  3643. left:0;
  3644. top:3px;
  3645. position: absolute;
  3646. font-size: 10px
  3647. }
  3648. .libContent{
  3649. position: relative
  3650. }
  3651. .libContent .contentEntry{
  3652. width:640px
  3653. }
  3654. .libContent .contentEntry h1.title{
  3655. margin-bottom: 20px;
  3656. font-size: 18px;
  3657. font-weight:bold
  3658. }
  3659. .libContent .contentEntry p{
  3660. margin-bottom: 5px;
  3661. line-height: 22px
  3662. }
  3663. .libContent .side{
  3664. position: absolute;
  3665. left:660px;
  3666. top:0;
  3667. }
  3668. .libContent .side dd{
  3669. margin-bottom: 10px
  3670. }
  3671. .libContent .side dt{
  3672. font-size: 14px;
  3673. margin-bottom: 10px
  3674. }
  3675. .contentBox {
  3676. margin-top:50px;
  3677. padding:20px 0;
  3678. border-top: 1px dashed #ddd
  3679. }
  3680. .contentBox h3{
  3681. font-size: 14px;
  3682. font-weight: 600
  3683. }
  3684. .contentBox li {
  3685. margin-top: 10px
  3686. }
  3687. .subNav {
  3688. margin:15px 0 20px;
  3689. }
  3690. .subNav .navTabs{
  3691. border-bottom: 1px solid #DDD;
  3692. }
  3693. .subNav .navTabs > li{
  3694. margin-bottom: -1px;
  3695. display:inline-block
  3696. }
  3697. .subNav .navTabs > li > a{
  3698. padding:10px 15px;
  3699. border:1px solid transparent;
  3700. border-radius: 4px 4px 0px 0px;
  3701. margin-right: 2px;
  3702. position: relative;
  3703. display: block;
  3704. }
  3705. .navTabs > li.active > a, .navTabs > li.active > a:focus, .navTabs > li.active > a:hover {
  3706. color: #555;
  3707. cursor: default;
  3708. background-color: #fff;
  3709. border:1px solid #ddd;
  3710. border-bottom-color:transparent
  3711. }
  3712. td .noMargin{
  3713. margin: 0
  3714. }
  3715. td div.dlLev1,td div.dlLev2,td div.dlLev3{
  3716. background: transparent url("groupDot.png") no-repeat scroll -20px -36px;
  3717. display: inline-block;
  3718. margin-right: 5px
  3719. }
  3720. td div.dlLev1{
  3721. padding-left: 25px
  3722. }
  3723. td div.dlLev2{
  3724. padding-left: 25px;
  3725. margin-left: 25px
  3726. }
  3727. td div.dlLev3{
  3728. padding-left: 25px;
  3729. margin-left:50px
  3730. }
  3731. .invoList{
  3732. margin-bottom: 50px
  3733. }
  3734. .invoList li {
  3735. padding:14px 0 14px 0;
  3736. border-bottom:1px solid #f5f5f5;
  3737. position:relative
  3738. }
  3739. .invoList li .state{
  3740. display:inline-block;
  3741. min-width:50px;
  3742. vertical-align: top;
  3743. padding-top:5px;
  3744. padding-right:10px
  3745. }
  3746. .invoList li .info{
  3747. display:inline-block
  3748. }
  3749. .invoList li .state .contactsTag{
  3750. color:#fff
  3751. }
  3752. .invoList li .info h4{
  3753. font-size: 18px
  3754. }
  3755. .invoList li .update{
  3756. position:absolute;
  3757. right:0;
  3758. top:15px;
  3759. }
  3760. .invoList li .update .entry{
  3761. display:inline-block;
  3762. margin-left:15px;
  3763. }
  3764. .invoButton a,.invoButton input{
  3765. width:50%;
  3766. float:left;
  3767. text-align:center;
  3768. padding:10px 0;
  3769. color:#fff;
  3770. border:none
  3771. }
  3772. .invoButton a.buttonDone,.invoButton input.buttonDone{
  3773. background:#7ea85c;
  3774. }
  3775. .invoButton a.buttonDone:hover,.invoButton input.buttonDone:hover{
  3776. background:#4f8e08
  3777. }
  3778. .invoButton a.buttonDone:active,.invoButton input.buttonDone:active{
  3779. background:#2a4f00
  3780. }
  3781. .invoButton a.buttonInvalid{
  3782. background:#666;
  3783. }
  3784. .invoButton a.buttonInvalid:hover{
  3785. background:#333;
  3786. }
  3787. .invoButton a.buttonInvalid:active{
  3788. background:#000;
  3789. }
  3790. .invoButton a.buttonBack{
  3791. background:#ffa132;
  3792. }
  3793. .invoButton a.buttonBack:hover{
  3794. background:#ff8a00;
  3795. }
  3796. .invoButton a.buttonBack:active{
  3797. background:#e57c01;
  3798. }
  3799. .invoButton a.buttonBlock,.invoButton input.buttonBlock{
  3800. width: 100%
  3801. }
  3802. .invoButton a.buttonUndone{
  3803. background:#ce5e5e;
  3804. }
  3805. .invoButton a.buttonUndone:hover{
  3806. background:#c01010;
  3807. }
  3808. .invoButton a.buttonUndone:active{
  3809. background:#790000;
  3810. }
  3811. .shipLock {
  3812. border:1px solid rgba(0,0,0,.125);
  3813. padding:5px;
  3814. margin:10px 0
  3815. }
  3816. .shipLock dt{
  3817. margin-bottom:10px
  3818. }
  3819. .btn-back{
  3820. background:#ffa132;
  3821. }
  3822. .btn-back:hover{
  3823. background:#ff8a00;
  3824. }
  3825. .btn-back:active{
  3826. background:#e57c01;
  3827. }
  3828. .btn-undone{
  3829. background:#ce5e5e;
  3830. }
  3831. .btn-undone:hover{
  3832. background:#c01010;
  3833. }
  3834. .btn-undone:active{
  3835. background:#790000;
  3836. }
  3837. .btn-done{
  3838. background:#7ea85c;
  3839. }
  3840. .btn-done:hover{
  3841. background:#4f8e08;
  3842. }
  3843. .btn-undone:active{
  3844. background:#2a4f00;
  3845. }
  3846. .copy{
  3847. margin-bottom: 5px;
  3848. background:#fff;
  3849. color:#333;
  3850. padding:2px 10px;
  3851. border:1px solid #ccc;
  3852. }
  3853. .staff-detail-con,.staff-detail-side{
  3854. height: 400px;
  3855. overflow-y: auto;
  3856. }
  3857. .staff-detail-side {
  3858. width:324px;
  3859. padding:0 10px
  3860. }
  3861. .staff-detail-side .flowList li.item{
  3862. padding-left:15px
  3863. }
  3864. .modal-title{
  3865. font-size: 14px;
  3866. font-weight: 600;
  3867. padding:10px 0;
  3868. }
  3869. .tipGray{
  3870. font-weight: bold;
  3871. padding:0px 5px;
  3872. cursor:pointer;
  3873. background:#f00;
  3874. color:#fff;
  3875. border-radius: 6px;
  3876. }
  3877. .tipContent{
  3878. position:relative;
  3879. display:inline-block;
  3880. }
  3881. .tipContent .tipConactive{
  3882. display:none;
  3883. }
  3884. .tipContent:hover .tipConactive{
  3885. position:absolute;
  3886. display:block;
  3887. top:20px;
  3888. left:0px;
  3889. width:250px;
  3890. background:#fff;
  3891. padding:10px;
  3892. border:1px solid #eee;
  3893. z-index:99;
  3894. }
  3895. .alert-warning {
  3896. color: #856404;
  3897. background-color: #fff3cd;
  3898. border-color: #ffeeba;
  3899. }
  3900. .versionTabale{
  3901. width:100%;
  3902. }
  3903. .versionTabale tr th,.versionTabale tr td{
  3904. padding:8px 15px;
  3905. border-bottom: 1px solid #f1f1f1;
  3906. }
  3907. .btn-binding{
  3908. margin:0 0 0 5px;
  3909. width:60px;
  3910. height:26px;
  3911. line-height: 26px;
  3912. }