global.css 106 KB

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