global.css 113 KB

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