global.css 106 KB

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