global.css 107 KB

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