global.css 106 KB

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