global.css 108 KB

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