global-1.css 111 KB

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