global.css 105 KB

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