global.css 103 KB

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