index.css 92 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325
  1. /*
  2. 主要参数,方便查阅
  3. background-color: #eff2f9; 浅灰色
  4. min-width: 1170px;
  5. default-color: #56a022; 绿色
  6. */
  7. #cnzz_stat_icon_1267002346{
  8. display:none;
  9. }
  10. body {
  11. line-height: 1.6;
  12. font-family: "Microsoft YaHei", "微软雅黑" !important;
  13. color: #333;
  14. font-size: 14px;
  15. background-color: #f5f5f5;
  16. }
  17. #top, #header, #footer {
  18. min-width: 1190px;
  19. }
  20. #header{
  21. padding-top: 20px;
  22. margin: 0 auto;
  23. background: #fff;
  24. }
  25. #header .container{
  26. width: 1190px !important;
  27. padding: 0 !important;
  28. }
  29. #top .container {
  30. margin-bottom: -10px;
  31. }
  32. #top>.container, #header>.container, #footer>.container {
  33. width: 1170px;
  34. margin: 0 auto;
  35. padding: 0 15px;
  36. }
  37. h1,h2,h3 {
  38. font-size: 20px;
  39. font-weight: 400;
  40. font-style: normal;
  41. }
  42. table {
  43. outline: none
  44. }
  45. a {
  46. color: #666;
  47. text-decoration: none;
  48. }
  49. a.none:hover {
  50. text-decoration: none;
  51. }
  52. .block {
  53. background-color: #fff;
  54. border-radius: 5px;
  55. width: 100%;
  56. position: relative;
  57. }
  58. .empty-block {
  59. margin: 0 auto;
  60. padding-top: 20px 25px;
  61. text-align: center;
  62. text-shadow: 0 2px 0 #fff, 0 -2px 0 #f8f6f2;
  63. }
  64. .empty-block i {
  65. font-size: 120px;
  66. color: #d9d7d3;
  67. }
  68. .f12 {
  69. font-size: 12px !important;
  70. }
  71. .f14 {
  72. font-size: 14px !important;
  73. }
  74. .f16 {
  75. font-size: 16px !important;
  76. }
  77. [ng-click] {
  78. cursor: pointer;
  79. }
  80. .br-r {
  81. border-right: 1px solid #e6e6e6;
  82. }
  83. .br-l {
  84. border-left: 1px solid #e6e6e6;
  85. }
  86. .br-b {
  87. border-bottom: 1px solid #e6e6e6;
  88. }
  89. /*inverse*/
  90. .text-default {
  91. color: #333333;
  92. }
  93. .text-blue {
  94. color: #3f84f6;
  95. }
  96. .text-inverse {
  97. color: #f40 !important
  98. }
  99. .text-muted {
  100. color: #888 !important;
  101. }
  102. .text-light {
  103. color: #666;
  104. }
  105. .text-simple {
  106. color: #aaa;
  107. }
  108. .text-num {
  109. font-style: normal;
  110. word-break: break-all;
  111. }
  112. .text-small {
  113. font-size: 10px;
  114. -webkit-transform: scale(0.83);
  115. -o-transform: scale(0.83);
  116. transform: scale(0.83);
  117. }
  118. .text-bold {
  119. font-weight: 700;
  120. }
  121. .text-border-success {
  122. border: 1px solid #f40;
  123. color: #f40;
  124. background-color: #fff;
  125. padding: 2px 4px;
  126. }
  127. .text-trans {
  128. position: absolute;
  129. margin-top: 5px;
  130. right: 5px;
  131. background-color: #fff;
  132. border: 1px solid;
  133. padding: 3px 14px;
  134. font-size: 16px;
  135. font-family: "LiShu";
  136. border-radius: 10px;
  137. -moz-transform: rotate(-10deg);
  138. -webkit-transform: rotate(-10deg);
  139. -o-transform: rotate(-10deg);
  140. transform: rotate(-10deg);
  141. border-radius: 10px;
  142. opacity: 0.7;
  143. white-space: nowrap;
  144. }
  145. .text-trans.todo {
  146. color: #56a022;
  147. border-color: #56a022;
  148. }
  149. .text-trans.success {
  150. color: #ffb433;
  151. border-color: #ffb433;
  152. }
  153. .text-trans.half {
  154. color: #55b6ff;
  155. border-color: #55b6ff;
  156. }
  157. .text-trans.error {
  158. color: #d44950;
  159. border-color: #d44950;
  160. }
  161. .text-trans.warning {
  162. color: #7f64b5;
  163. border-color: #7f64b5;
  164. }
  165. .text-ellipsis {
  166. float: left;
  167. width: 260px;
  168. clear: left;
  169. overflow: hidden;
  170. text-overflow: ellipsis;
  171. white-space: nowrap;
  172. }
  173. .text-link {
  174. color: #5e696e;
  175. cursor: pointer;
  176. text-decoration: underline;
  177. }
  178. .text-title {
  179. font-size: 1.2em;
  180. font-weight: bold;
  181. text-indent: 1em;
  182. line-height: 2em;
  183. border-bottom: 1px solid #ddd;
  184. margin-bottom: 15px;
  185. color: #828282
  186. }
  187. .form-control {
  188. border-color: #e1e1e1;
  189. }
  190. .input-xs, .input-group-xs>.form-control, .input-group-xs>.input-group-addon, .input-group-xs>.input-group-btn>.btn {
  191. border-color: #3f84f6;
  192. }
  193. .form-group-sm .form-control-feedback {
  194. width: 30px;
  195. height: 30px;
  196. line-height: 30px;
  197. }
  198. .btn-default {
  199. border-color: #dcdcdc;
  200. }
  201. .btn-icon-left {
  202. margin-top: -1px
  203. }
  204. /*dropdown*/
  205. /*.dropdown-menu {*/
  206. /*min-width: 100%;*/
  207. /*}*/
  208. .dropdown>.dropdown-toggle {
  209. border-style: solid;
  210. border-width: 0 1px;
  211. border-color: transparent;
  212. }
  213. .dropdown:hover>.dropdown-toggle {
  214. position: relative;
  215. background-color: #e8e8e8;
  216. border-top: 0;
  217. border-bottom: 0;
  218. z-index: 1001;
  219. }
  220. .dropdown:hover>.dropdown-menu {
  221. display: block;
  222. position: absolute;
  223. border-color: #eee;
  224. webkit-box-shadow: none;
  225. box-shadow: none;
  226. margin-top: -2px;
  227. min-width: 100%;
  228. font-size: 12px;
  229. }
  230. .dropdown-submenu {
  231. position: relative;
  232. }
  233. .dropdown-submenu>.dropdown-menu {
  234. top: 0;
  235. left: 100%;
  236. margin-top: -144px;
  237. }
  238. .dropdown-submenu:hover>.dropdown-toggle {
  239. position: relative;
  240. background-color: #ffffff;
  241. border-color: transparent;
  242. z-index: 1001;
  243. }
  244. .dropdown-submenu:hover>.dropdown-menu {
  245. display: block;
  246. min-width: 120px;
  247. font-size: 12px;
  248. }
  249. .dropup .dropdown-submenu>.dropdown-menu {
  250. top: auto;
  251. bottom: 0;
  252. margin-top: 0;
  253. margin-bottom: -2px;
  254. }
  255. .dropdown-submenu.pull-left {
  256. float: none;
  257. }
  258. .dropdown-submenu.pull-left>.dropdown-menu {
  259. left: -100%;
  260. margin-left: 10px;
  261. -webkit-border-radius: 6px 0 6px 6px;
  262. -moz-border-radius: 6px 0 6px 6px;
  263. border-radius: 6px 0 6px 6px;
  264. }
  265. .dropdown-menu.arrow:before,.dropdown-menu.arrow:after {
  266. content: '';
  267. position: absolute;
  268. top: 18%;
  269. width: 0;
  270. height: 0;
  271. border: 10px solid transparent;
  272. }
  273. .dropdown-menu.arrow.left:before {
  274. margin-top: -11px;
  275. left: -20px;
  276. border: 10px solid transparent;
  277. border-right-color: #aaa;
  278. }
  279. .dropdown-menu.arrow.left:after {
  280. margin-top: -11px;
  281. left: -19px;
  282. border: 10px solid transparent;
  283. border-right-color: #e8e8e8;
  284. }
  285. .navbar {
  286. margin-bottom: 0;
  287. border-radius: 0;
  288. }
  289. .icon-left {
  290. margin-right: 5px;
  291. }
  292. /*chart*/
  293. [ac-chart] {
  294. width: 100%;
  295. }
  296. .pie-charts>ul>li,.line-charts >ul>li {
  297. height: 250px;
  298. position: relative;
  299. }
  300. .pie-charts [ac-chart] {
  301. height: 200px;
  302. }
  303. .pie-charts>ul>li .empty {
  304. position: absolute;
  305. top: 80px;
  306. left: 0;
  307. right: 0;
  308. bottom: 0;
  309. text-align: center;
  310. }
  311. .line-charts {
  312. padding-bottom: 10px;
  313. position: relative;
  314. }
  315. .line-charts .empty {
  316. position: absolute;
  317. top: 0;
  318. left: 0;
  319. right: 0;
  320. bottom: 0;
  321. background: url("../img/all/empty-notice.png") no-repeat top center;
  322. background-color: #fff;
  323. padding: 160px 120px;
  324. }
  325. .line-charts [ac-chart] {
  326. height: 350px;
  327. }
  328. .pie-charts .chart {
  329. padding-right: 0;
  330. }
  331. .ac-title {
  332. height: 39px;
  333. line-height: 39px;
  334. padding: 0 15px;
  335. color: #333;
  336. font-weight: 500 !important;
  337. border-bottom: 1px solid #e8e8e8;
  338. -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  339. box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  340. }
  341. .ac-chart {
  342. margin-top: 30px;
  343. }
  344. .ac-legend {
  345. color: #666;
  346. margin-top: 30px;
  347. }
  348. .ac-legend tr>td {
  349. padding: 2px 0;
  350. max-width: 120px;
  351. overflow: hidden;
  352. text-overflow: ellipsis;
  353. white-space: nowrap;
  354. word-wrap: normal;
  355. }
  356. .ac-legend-box {
  357. border-radius: 10px;
  358. margin-right: 3px;
  359. }
  360. .angular-charts-template table {
  361. margin-left: 15px !important;
  362. }
  363. .list-menu>li {
  364. padding: 5px 5px 5px 15px;
  365. position: relative;
  366. border-bottom: 1px dotted #ddd;
  367. }
  368. .list-menu>li:before {
  369. position: absolute;
  370. left: 0;
  371. top: -2px;
  372. content: ".";
  373. font-size: 16px;
  374. font-weight: bold;
  375. color: #999;
  376. }
  377. ul>li.item-link>a {
  378. padding: 10px 15px;
  379. margin: 0 5px;
  380. border-bottom: 1px dotted #ddd;
  381. }
  382. .throughline {
  383. position: relative;
  384. }
  385. .throughline .line {
  386. position: absolute;
  387. border-top: 1px dashed #e5e2e2;
  388. left: 15px;
  389. right: 15px;
  390. top: 10px;
  391. z-index: 0;
  392. }
  393. .throughline .content {
  394. position: relative;
  395. color: #56a022;
  396. padding: 0 10px;
  397. margin: 3px 0;
  398. background: #fff;
  399. display: inline-block;
  400. }
  401. .stepline {
  402. position: relative;
  403. height: 40px;
  404. line-height: 40px;
  405. margin: 40px 0 0;
  406. }
  407. .stepline:after, .stepline:before {
  408. background-color: #ddd;
  409. content: "";
  410. height: 2px;
  411. position: absolute;
  412. top: 19px;
  413. width: 50%;
  414. }
  415. .stepline:before {
  416. background-image: -webkit-gradient(linear, right top, left top, from(#ddd), to(#fff));
  417. background-image: -webkit-linear-gradient(right, #ddd, #fff);
  418. background-image: -moz-linear-gradient(right, #ddd, #fff);
  419. background-image: -ms-linear-gradient(right, #ddd, #fff);
  420. background-image: -o-linear-gradient(right, #ddd, #fff);
  421. background-image: linear-gradient(right, #ddd, #fff);
  422. left: 0;
  423. }
  424. .stepline:after {
  425. background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fff));
  426. background-image: -webkit-linear-gradient(left, #ddd, #fff);
  427. background-image: -moz-linear-gradient(left, #ddd, #fff);
  428. background-image: -ms-linear-gradient(left, #ddd, #fff);
  429. background-image: -o-linear-gradient(left, #ddd, #fff);
  430. background-image: linear-gradient(left, #ddd, #fff);
  431. left: 50%;
  432. }
  433. .stepline .item {
  434. position: relative;
  435. }
  436. .stepline .item span {
  437. position: absolute;
  438. left: 50%;
  439. height: 40px;
  440. width: 40px;
  441. margin-left: -20px;
  442. text-align: center;
  443. background-color: #fff;
  444. border: 2px solid #777;
  445. border-radius: 500px;
  446. color: #777;
  447. font-size: 18px;
  448. font-weight: bold;
  449. z-index: 4;
  450. }
  451. .stepline .item .title {
  452. margin-top: 45px;
  453. text-align: center;
  454. line-height: 1.5;
  455. }
  456. /* top css stylesheet*/
  457. #top {
  458. background-color: #f5f5f5;
  459. height: 35px;
  460. line-height: 35px;
  461. z-index: 5;
  462. font: 12px/23px Tahoma, Arial, "\5B8B\4F53", sans-serif;
  463. color: #6c6c6c;
  464. }
  465. #top.navbar {
  466. min-height: 35px;
  467. border-bottom: 10px solid #333333;
  468. }
  469. #top ul>li>a {
  470. color: #6c6c6c;
  471. margin-top: -5px;
  472. }
  473. #top ul>li>a:hover {
  474. text-decoration: none;
  475. background: none;
  476. }
  477. #top .navbar-nav>li>a,#top .navbar-nav>li.brand {
  478. padding-top: 0;
  479. padding-bottom: 0;
  480. line-height: 35px;
  481. }
  482. #top ul.navbar-nav>li>a:hover,#top ul.navbar-nav>li>a:focus,#top ul.navbar-nav>li>a:hover *,#top ul.navbar-nav>li>a:focus *
  483. {
  484. color: #f40;
  485. }
  486. #top .dropdown .fa-angle-down {
  487. transition: transform .2s ease-in 0s;
  488. -webkit-transition: -webkit-transform .2s ease-in 0s;
  489. }
  490. #top .dropdown:hover .fa-angle-down {
  491. transform: rotate(180deg);
  492. -webkit-transform: rotate(180deg);
  493. filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  494. }
  495. #top .dropdown:hover>.dropdown-menu {
  496. margin-top: -1px;
  497. min-width: 100%;
  498. font-size: 12px;
  499. }
  500. #top .dropdown-menu ul>li>h4 {
  501. font-size: 100%;
  502. font-weight: 700;
  503. color: #404040;
  504. }
  505. #top .dropdown-menu .nav-pills>li+li {
  506. margin-left: 0;
  507. }
  508. #top .dropdown-menu .nav-pills>li>a {
  509. padding: 5px 10px;
  510. }
  511. #top .dropdown-menu .pills>div {
  512. border-right: 1px solid #eee;
  513. padding: 5px 15px;
  514. }
  515. #top .dropdown-menu .pills>div:last-child {
  516. border-right: none;
  517. }
  518. #top .dropdown-menu .pills ul>li {
  519. }
  520. #top .dropdown-menu .pills ul>li>a {
  521. color: #3c3c3c;
  522. text-align: left;
  523. padding: 5px 8px;
  524. }
  525. #top .dropdown-menu .pills ul>li:hover a {
  526. color: white;
  527. text-decoration: none;
  528. }
  529. #top .dropdown-menu .pills>div>h4 {
  530. font-family: "Microsoft YaHei", "Hiragino Sans GB";
  531. font-weight: 700;
  532. font-size: 17px;
  533. text-align: left;
  534. }
  535. #top .dropdown-menu .pills>div:nth-child(1) h4 {
  536. color: #f50;
  537. }
  538. #top .dropdown-menu .pills>div:nth-child(2) h4 {
  539. color: #a0b959;
  540. }
  541. #top .dropdown-menu .pills>div:nth-child(3) h4 {
  542. color: #df61ab;
  543. }
  544. #top .dropdown-menu .pills>div:nth-child(4) h4 {
  545. color: #52a0e5;
  546. }
  547. #top .dropdown-menu .pills>div:nth-child(5) h4 {
  548. color: #52a015;
  549. }
  550. #top .dropdown-menu .pills>div:nth-child(6) h4 {
  551. color: #b68571;
  552. }
  553. #top .dropdown-menu .pills ul>li>a:hover {
  554. color: #fff;
  555. }
  556. #top .dropdown-menu .pills>div:nth-child(1) ul>li>a:hover {
  557. background-color: #f50
  558. }
  559. #top .dropdown-menu .pills>div:nth-child(2) ul>li>a:hover {
  560. background-color: #a0b959
  561. }
  562. #top .dropdown-menu .pills>div:nth-child(3) ul>li>a:hover {
  563. background-color: #df61ab
  564. }
  565. #top .dropdown-menu .pills>div:nth-child(4) ul>li>a:hover {
  566. background-color: #52a0e5
  567. }
  568. #top .dropdown-menu .pills>div:nth-child(5) ul>li>a:hover {
  569. background-color: #52a015
  570. }
  571. #top .dropdown-menu .pills>div:nth-child(6) ul>li>a:hover {
  572. background-color: #b68571
  573. }
  574. /* header css stylesheet*/
  575. /*header 顶部头*/
  576. #site-nav {
  577. background-color: #474443;
  578. height: 37px;
  579. line-height: 37px;
  580. }
  581. #site-nav>ul {
  582. list-style: none;
  583. width: 1190px;
  584. margin: auto;
  585. padding: 0;
  586. text-align: right;
  587. height: 100%;
  588. }
  589. #site-nav>ul>li {
  590. vertical-align: middle;
  591. font-size: 12px;
  592. display: inline-block;
  593. }
  594. #site-nav ul li.uas-cloud {
  595. float: left;
  596. line-height: 36px;
  597. height: 36px;
  598. }
  599. #site-nav ul li.uas-cloud a, #site-nav ul li:last-child a{
  600. padding: 0;
  601. }
  602. #site-nav ul li.uas-cloud a img {
  603. vertical-align: middle;
  604. }
  605. #site-nav ul li.uas-cloud a span {
  606. margin-left: 5px;
  607. vertical-align: middle;
  608. }
  609. #site-nav>ul>li>a, #site-nav>ul>li>span {
  610. color: rgb(230, 230, 230);
  611. text-decoration: none;
  612. display: inline-block;
  613. line-height: 37px;
  614. padding: 0 1em;
  615. }
  616. #site-nav .dropdown {
  617. position: relative;
  618. }
  619. #site-nav .dropdown .dropdown-menu {
  620. top: 36px;
  621. left: 0;
  622. min-width: 100%;
  623. display: none;
  624. margin: 0;
  625. padding: 0 6px 13px;
  626. border-radius: 0;
  627. background: #ffffff;
  628. border: 1px solid #999999;
  629. border-top: none;
  630. font-size: 12px;
  631. z-index: 80;
  632. -webkit-box-shadow: none;
  633. -moz-box-shadow: none;
  634. box-shadow: none;
  635. text-align: left;
  636. }
  637. #site-nav .dropdown .dropdown-menu ::-webkit-scrollbar {
  638. background: #f6f6f6;
  639. width: .5rem;
  640. height: .5rem;
  641. }
  642. #site-nav .dropdown .dropdown-menu ::-webkit-scrollbar-thumb {
  643. border-radius: 0;
  644. }
  645. #site-nav .dropdown .dropdown-menu >ul{
  646. max-height: 300px;
  647. overflow-y: auto;
  648. padding: 0;
  649. }
  650. #site-nav .dropdown .dropdown-menu >ul >li {
  651. padding: 0 12px;
  652. line-height: 30px;
  653. }
  654. #site-nav .dropdown .dropdown-menu .switch-enterprise-title {
  655. background: #eee;
  656. padding: 0 12px;
  657. line-height: 30px;
  658. font-size: 12px;
  659. }
  660. #site-nav .dropdown .dropdown-menu >ul >li.switch-enterprises {
  661. background: #f6f6f6;
  662. }
  663. #site-nav .dropdown .dropdown-menu >ul >li.switch-enterprises a {
  664. color: #333;
  665. max-width: 300px;
  666. overflow: hidden;
  667. text-overflow: ellipsis;
  668. white-space: nowrap;
  669. display: block;
  670. }
  671. #site-nav .dropdown .dropdown-menu >ul >li.switch-enterprises a:hover {
  672. color: #5078cb;
  673. text-decoration: none;
  674. }
  675. #site-nav .dropdown:hover .dropdown-toggle {
  676. border-left: 1px solid #999999;
  677. border-right: 1px solid #999999;
  678. background: #ffffff;
  679. color: #333333;
  680. z-index:11;
  681. }
  682. #site-nav .dropdown:hover .dropdown-menu {
  683. display: block;
  684. }
  685. ::-webkit-scrollbar {
  686. width: 8px;
  687. height: 8px;
  688. }
  689. ::-webkit-scrollbar-thumb {
  690. background-color: #d8d4d4;
  691. border-radius: 5px;
  692. padding-left: 0 !important;
  693. }
  694. ::-webkit-scrollbar-thumb:hover {
  695. background-color: #b1abab;
  696. }
  697. body {
  698. font: 100%/1.2 verdana, "Microsoft YaHei", '宋体', serif;
  699. }
  700. /*兼容样式*/
  701. #site-nav p {
  702. margin: 0 0 10px;
  703. text-align: left;
  704. }
  705. #site-nav .fa {
  706. display: inline-block;
  707. font: normal normal normal 14px/1 FontAwesome;
  708. font-size: inherit;
  709. text-rendering: auto;
  710. -webkit-font-smoothing: antialiased;
  711. -moz-osx-font-smoothing: grayscale;
  712. }
  713. #site-nav .fa-map-marker:before {
  714. content: "\f041";
  715. }
  716. #site-nav * {
  717. box-sizing: border-box;
  718. list-style: none;
  719. }
  720. /* ::: Main Navigation ::: */
  721. .nav-main {
  722. background-color: rgb(244, 248, 255);
  723. height: 40px;
  724. }
  725. .nav-main > ul {
  726. margin: 0 auto;
  727. padding: 0;
  728. background-color: rgb(244, 248, 255);
  729. width: 1190px;
  730. }
  731. .nav-main > ul li {
  732. float: left;
  733. position: relative;
  734. margin: 0;
  735. height: 40px;
  736. line-height: 40px;
  737. width: 121px;
  738. text-align: center;
  739. color: #474443;
  740. vertical-align: middle;
  741. list-style: none;
  742. cursor: pointer;
  743. }
  744. .nav-main > ul li:first-child {
  745. border-left: none;
  746. width: 220px;
  747. }
  748. .nav-main > ul li:last-child a {
  749. padding-right: 0;
  750. }
  751. .nav-main > ul li a {
  752. color: #292929;
  753. display: inline-block;
  754. font-size: 14px;
  755. }
  756. .nav-main > ul li a.active, .nav-main > ul li a:hover {
  757. color: #5078cb;
  758. border-bottom: #5078cb 3px solid;
  759. font-weight: bold;
  760. text-decoration: none;
  761. }
  762. .nav-main .more-title {
  763. background-color: rgb(33, 71, 151);
  764. font-size: 14px;
  765. font-weight: bold;
  766. height: 40px;
  767. width: 220px;
  768. line-height: 40px;
  769. color: #fff !important;
  770. display: inline-block !important;
  771. padding: 0 !important;
  772. text-align: center;
  773. cursor: pointer;
  774. }
  775. .nav-main .more-title:hover{
  776. /*background: #5078cb;*/
  777. }
  778. /*new hot 标签*/
  779. /*new 标签*/
  780. @keyframes newAnimate {
  781. 0% {
  782. transform: translate(0px, 0px);
  783. }
  784. 50% {
  785. transform: translate(0px, -3px);
  786. }
  787. 100% {
  788. transform: translate(0px, 0px);
  789. }
  790. }
  791. img.new-animate{
  792. position: relative;
  793. top: -7px;
  794. animation: newAnimate 1s infinite;
  795. }
  796. /*header end*/
  797. .unstyled a:hover,.dropdown-menu a:hover{
  798. color: #d32526;
  799. text-decoration: underline;
  800. }
  801. .logout:hover{
  802. color: #f00;
  803. }
  804. .member-text{
  805. width: 80%;
  806. white-space: nowrap;
  807. overflow: hidden;
  808. text-overflow: ellipsis;
  809. display: inline-block;
  810. }
  811. /** 顶部 start **/
  812. #home-search {
  813. margin-left: 450px;
  814. margin-top: 11px;
  815. position: absolute;
  816. }
  817. #home-search a {
  818. border-radius: 0;
  819. width: 85px;
  820. height: 26px;
  821. color: #ffffff !important;
  822. background-color: #ffa200;
  823. font-size: 16px;
  824. }
  825. #home-search input {
  826. padding-left: 10px;
  827. width: 310px;
  828. height: 30px;
  829. background-color: #ffffff;
  830. border-radius: 3px;
  831. border: 1px solid #fff;
  832. color: #000000;
  833. text-align: left;
  834. font-size: 13px;
  835. }
  836. @media screen and (max-width: 1199px) {
  837. #home-search input{
  838. width: 180px;
  839. }
  840. }
  841. @media screen and (min-width: 1200px) and (max-width: 1366px) {
  842. #home-search input{
  843. width: 250px;
  844. }
  845. }
  846. @media screen and (min-width: 1367px) and (max-width: 1560px) {
  847. #home-search input{
  848. width: 250px;
  849. }
  850. }
  851. #home-search input:focus {
  852. outline: none;
  853. }
  854. /** placeholder 格式 **/
  855. /*#home-search input::-webkit-input-placeholder{ !*WebKit browsers*!*/
  856. /*padding-left: 10px;*/
  857. /*}*/
  858. /*#home-search input::-moz-input-placeholder{ !*Mozilla Firefox*!*/
  859. /*padding-left: 10px;*/
  860. /*}*/
  861. /*#home-search input::-ms-input-placeholder{ !*Internet Explorer*!*/
  862. /*padding-left: 10px;*/
  863. /*}*/
  864. #home-headerName{
  865. position: absolute;
  866. right: 160px;
  867. top: 3px;
  868. width: 200px;
  869. padding-right: 20px;
  870. height: 50px;
  871. line-height: 50px;
  872. color: #fff;
  873. font-size: 18px;
  874. }
  875. #home-headerName span{
  876. text-align: right;
  877. display:inline-block;
  878. width:100%;
  879. font-size: 16px;
  880. color: #fff;
  881. overflow: hidden;
  882. text-overflow: ellipsis;
  883. white-space: nowrap;
  884. }
  885. #home-headerName i{
  886. position:absolute;
  887. top:15px;
  888. right:0;
  889. font-size: 21px;
  890. color: #fff;
  891. }
  892. #home-headerBtns {
  893. position: absolute;
  894. right: 0;
  895. top:0;
  896. padding-right: 35px;
  897. height: 50px;
  898. line-height: 50px;
  899. color: #fff;
  900. font-size: 18px;
  901. }
  902. #home-headerBtns i {
  903. margin-left: 5px;
  904. color: #fff;
  905. font-size: 21px;
  906. }
  907. #home-headerBtns a{
  908. display: inline-block;
  909. }
  910. #home-headerBtns a:first-child span{
  911. font-size: 16px;
  912. color: #fff;
  913. font-weight: bold;
  914. }
  915. #home-headerBtns a i.fa-user{
  916. color: #fff;
  917. }
  918. #home-headerBtns a:first-child:hover span{
  919. color: #fff
  920. }
  921. #home-headerBtns a:hover i.fa-user{
  922. color: #fff;
  923. }
  924. #home-headerBtns a span{
  925. font-size: 13px;
  926. color: #000;
  927. }
  928. #home-headerBtns a:visited ,#home-headerBtns a:hover,#home-headerBtns a.active,#home-headerBtns a:focus{
  929. text-decoration: none;
  930. }
  931. /** 顶部 end **/
  932. /**dropdown-menu 样式 start **/
  933. #header.navbar-inverse {
  934. position: relative;
  935. height: 57px;
  936. background-image: linear-gradient(180deg, #4392f7 0%, #366cf3 100%), linear-gradient( #0093e6, #0093e6);
  937. border: none;
  938. box-shadow: 0 0 10px #6f6f6f;
  939. }
  940. #dropdown-menu-sale {
  941. color: #333333;
  942. font-size: 14px;
  943. height: 164px;
  944. border-bottom: 1px solid #e8e8e8;
  945. margin-top: 10px;
  946. }
  947. #dropdown-menu-sale img {
  948. margin-top: 50%;
  949. }
  950. #dropdown-menu-purc {
  951. color: #333333;
  952. font-size: 14px;
  953. height: 86px;
  954. border-bottom: 1px solid #e8e8e8;
  955. margin-top: 20px;
  956. }
  957. #dropdown-menu-purc img {
  958. margin-top: 15%;
  959. }
  960. #dropdown-menu-finance {
  961. color: #333333;
  962. font-size: 14px;
  963. height: 86px;
  964. border-bottom: 1px solid #e8e8e8;
  965. margin-top: 20px;
  966. }
  967. #dropdown-menu-finance img {
  968. margin-top: 15%;
  969. }
  970. #dropdown-menu-report {
  971. color: #333333;
  972. font-size: 14px;
  973. height: 86px;
  974. margin-top: 20px;
  975. }
  976. #dropdown-menu-report img {
  977. margin-top: 15%;
  978. }
  979. #home-dropdown:hover>.dropdown-menu {
  980. margin-top: 0;
  981. width: 500px;
  982. }
  983. /**dropdown-menu 样式 end **/
  984. #header.navbar-inverse .navbar-nav>li:hover>a,#header.navbar-inverse .navbar-nav>li:focus>a
  985. {
  986. color: #fff;
  987. border-bottom: 2px solid #fff;
  988. }
  989. #header.navbar-inverse .navbar-nav>.active>a,#header.navbar-inverse .navbar-nav>.active>a:hover,#header.navbar-inverse .navbar-nav>.active>a:focus
  990. {
  991. background: transparent ;
  992. border-bottom: 2px solid #fff;
  993. }
  994. #header.navbar-inverse .navbar-nav>dropdown.active>a,#header.navbar-inverse .navbar-nav>dropdown.active>a:hover,#header.navbar-inverse .navbar-nav>dropdown.active>a:focus
  995. {
  996. background: transparent ;
  997. border-bottom: 2px solid transparent;
  998. }
  999. #header.navbar-inverse .navbar-nav>.disabled>a,#header.navbar-inverse .navbar-nav>.disabled>a:hover,#header.navbar-inverse .navbar-nav>.disabled>a:focus
  1000. {
  1001. color: #444444;
  1002. background-color: transparent;
  1003. }
  1004. #header.navbar-inverse .navbar-toggle {
  1005. border-color: #333333;
  1006. }
  1007. #header.navbar-inverse .navbar-toggle:hover,#header.navbar-inverse .navbar-toggle:focus
  1008. {
  1009. background-color: #333333;
  1010. }
  1011. #header.navbar-inverse .navbar-toggle .icon-bar {
  1012. background-color: #ffffff;
  1013. }
  1014. #header.navbar-inverse .navbar-collapse,#header.navbar-inverse .navbar-form
  1015. {
  1016. border-color: #101010;
  1017. }
  1018. #header.navbar-inverse .navbar-nav>.open>a,#header.navbar-inverse .navbar-nav>.open>a:hover,#header.navbar-inverse .navbar-nav>.open>a:focus
  1019. {
  1020. background-color: #56a022;
  1021. color: #ffffff;
  1022. }
  1023. #header.navbar-inverse .navbar-link {
  1024. color: #777777;
  1025. }
  1026. #header.navbar-inverse .navbar-link:hover {
  1027. color: #ffffff;
  1028. }
  1029. #header.navbar-inverse .btn-link {
  1030. color: #777777;
  1031. }
  1032. #header.navbar-inverse .btn-link:hover,#header.navbar-inverse .btn-link:focus
  1033. {
  1034. color: #ffffff;
  1035. }
  1036. #header.navbar-inverse .btn-link[disabled]:hover,#header fieldset[disabled] .navbar-inverse .btn-link:hover,#header.navbar-inverse .btn-link[disabled]:focus,#header fieldset[disabled] .navbar-inverse .btn-link:focus
  1037. {
  1038. color: #444444;
  1039. }
  1040. #header.navbar-inverse .dropdown-menu>li>a {
  1041. font-size: 14px;
  1042. }
  1043. #header.navbar-inverse .dropdown-menu>li>a:hover {
  1044. background-color: #56a022;
  1045. color: #ffffff;
  1046. }
  1047. #header .navbar-header .navbar-brand {
  1048. position: relative;
  1049. background: url(../img/logo/logo01.png) no-repeat left center;
  1050. width: 218px;
  1051. margin: 0;
  1052. padding: 0;
  1053. line-height: 57px;
  1054. height: 57px;
  1055. }
  1056. #header .navbar-header .navbar-brand a{
  1057. float: left;
  1058. display: inline-block;
  1059. height: 57px;
  1060. font-size: 16px;
  1061. color: #fff;
  1062. }
  1063. #header .navbar-header .navbar-brand a:before{
  1064. position: absolute;
  1065. top: 16px;
  1066. left: 105px;
  1067. content: '';
  1068. width: 2px;
  1069. height: 28px;
  1070. background-color: #fff;
  1071. }
  1072. #header .navbar-header .navbar-brand a:first-child{
  1073. width: 56%;
  1074. }
  1075. #header .dropdown:hover>.dropdown-menu {
  1076. margin-top: 0;
  1077. }
  1078. /*body*/
  1079. .body {
  1080. width: 1190px;
  1081. margin: 0 auto;
  1082. padding: 0 0;
  1083. margin-top: 20px;
  1084. }
  1085. .body:before,.body:after {
  1086. content: " ";
  1087. display: table;
  1088. clear: both;
  1089. }
  1090. .body .container{
  1091. padding: 0;
  1092. margin: 0 auto;
  1093. width: 1190px;
  1094. }
  1095. .body .container .left {
  1096. width: 202px;
  1097. float: left;
  1098. margin-right: 15px;
  1099. }
  1100. .body .container .right {
  1101. width: 973px;
  1102. float: left;.dropdown-menu
  1103. font-size: 12px;
  1104. min-height: 90vh;
  1105. background:#fff;
  1106. }
  1107. .body .container .right .sale-view{
  1108. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1109. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1110. -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1111. -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1112. border-radius: 5px;
  1113. min-height: 1066px;
  1114. background: #fff;
  1115. }
  1116. @media ( max-height : 768px) {
  1117. .body>.right{
  1118. min-height: 400px;
  1119. }
  1120. .sreach-index .row:first-child{
  1121. margin-top: 10% !important;
  1122. }
  1123. }
  1124. .body ul {
  1125. margin-bottom: 0;
  1126. }
  1127. .user {
  1128. font-size: 12px;
  1129. }
  1130. .user .user-image {
  1131. float: left;
  1132. /*margin-top: 20px;*/
  1133. height: 286px;
  1134. width: 218px;
  1135. cursor: pointer;
  1136. background-color: #ffffff;
  1137. border: 1px solid #e8e8e8;
  1138. }
  1139. .user-image img {
  1140. /* border-radius: 5%; */
  1141. border: 1px solid #ccc;
  1142. width: 124px;
  1143. height: 124px;
  1144. margin-left: 20%;
  1145. margin-top: 20px;
  1146. }
  1147. .user-image li {
  1148. padding-top: 15px;
  1149. list-style-type: none;
  1150. font-family: Microsoft YaHei, SimHei, Verdana;
  1151. font-size: 14px;
  1152. }
  1153. .user .user-name {
  1154. width: 90px;
  1155. margin-top: 35px;
  1156. color: #333;
  1157. }
  1158. .user .user-lv {
  1159. padding-left: 20px;
  1160. clear: both;
  1161. height: 40px;
  1162. margin-bottom: 20px;
  1163. }
  1164. .user .user-count {
  1165. display: table;
  1166. width: 100%;
  1167. table-layout: fixed;
  1168. border-collapse: separate;
  1169. background-color: #fbfbfb;
  1170. padding: 18px 5px;
  1171. border-top: 1px solid #e8e8e8;
  1172. border-bottom: 1px solid #e8e8e8;
  1173. }
  1174. .user-count>li {
  1175. display: table-cell;
  1176. float: none;
  1177. width: 1%;
  1178. height: 50px;
  1179. text-align: center;
  1180. }
  1181. .user-count>li:not(:last-child){
  1182. border-right: 1px solid #e8e8e8;
  1183. }
  1184. .user-count .count {
  1185. color: #56a022;
  1186. font-size: 24px;
  1187. line-height: 32px;
  1188. font-family: Arial;
  1189. }
  1190. .use .use-label {
  1191. line-height: 50px;
  1192. border-bottom: 1px solid #e8e8e8;
  1193. text-indent: 25px;
  1194. position: relative;
  1195. }
  1196. .use-label>i {
  1197. position: absolute;
  1198. left: 30px;
  1199. border-color: transparent;
  1200. border-style: solid;
  1201. border-width: 0 4px 4px 4px;
  1202. border-bottom-color: #ddd;
  1203. }
  1204. .use-label .notice-header {
  1205. margin-top: 300px;
  1206. width: 218px;
  1207. position: absolute;
  1208. background-color: #e8e8e8;
  1209. }
  1210. .use-label .notice-body {
  1211. padding-top: 20px;
  1212. margin-top: 360px;
  1213. position: absolute;
  1214. }
  1215. .use>ul {
  1216. padding: 10px 0;
  1217. border-bottom: 1px solid #e8e8e8;
  1218. }
  1219. .use>ul>li {
  1220. padding: 8px 25px;
  1221. }
  1222. .left-nav>ul>li {
  1223. text-indent: 15px;
  1224. }
  1225. .left-nav>ul>li>a {
  1226. display: block;
  1227. padding-left:25px;
  1228. clear: both;
  1229. line-height: 40px;
  1230. /*white-space: nowrap;*/
  1231. font-size: 14px;
  1232. border-bottom:1px dashed #e1e1e1;
  1233. color:#666;
  1234. }
  1235. .use>ul>li:hover {
  1236. background-color: #6f6f6f;
  1237. }
  1238. .left-nav>ul>li:hover,.left-nav>ul>li.active {
  1239. background-color: #eee;
  1240. }
  1241. .left-nav>ul>li.active {
  1242. background-color: #eee;
  1243. }
  1244. .use>ul>li:hover *{
  1245. color: #fff;
  1246. text-decoration: none;
  1247. background-color: #6f6f6f;
  1248. }
  1249. .left-nav>ul>li:hover *,.left-nav>ul>li.active * {
  1250. text-decoration: none;
  1251. background-color: #eee;
  1252. }
  1253. .icon-right {
  1254. float: right;
  1255. color: #888;
  1256. line-height: 1.6
  1257. }
  1258. .left-nav {
  1259. /*margin-top: 10px;*/
  1260. background-color: #ffffff;
  1261. }
  1262. .left-nav.left-home {
  1263. padding: 0;
  1264. margin: 0;
  1265. }
  1266. .nav-home {
  1267. height: 50px;
  1268. line-height: 50px;
  1269. cursor: pointer;
  1270. }
  1271. .nav-label {
  1272. height: 50px;
  1273. line-height: 50px;
  1274. color: #333;
  1275. font-weight:bold;
  1276. cursor: pointer;
  1277. font-size: 16px;
  1278. padding:0 10px;
  1279. border-bottom:1px dashed #e1e1e1;
  1280. }
  1281. /*.nav-label>i {*/
  1282. /*position: absolute;*/
  1283. /*left: 15px;*/
  1284. /*top: 18px;*/
  1285. /*width: 0;*/
  1286. /*height: 0;*/
  1287. /*border-color: transparent;*/
  1288. /*border-style: solid;*/
  1289. /*border-width: 5px 5px 0 5px;*/
  1290. /*border-top-color: #9ea9c0;*/
  1291. /*}*/
  1292. .nav_icon{
  1293. display:inline-block;
  1294. width:30px;
  1295. height:20px;
  1296. vertical-align: middle;
  1297. position:relative;
  1298. top:-3px;
  1299. }
  1300. .nav1_icon{
  1301. background: url(../img/icon/icon_nav.png)no-repeat 0 0;
  1302. }
  1303. .nav2_icon{
  1304. background: url(../img/icon/icon_nav.png)no-repeat -28px 0;
  1305. }
  1306. .nav3_icon{
  1307. background: url(../img/icon/icon_nav.png)no-repeat -58px 0;
  1308. }
  1309. .nav4_icon{
  1310. background: url(../img/icon/icon_nav.png)no-repeat -88px 0;
  1311. }
  1312. .nav5_icon{
  1313. background: url(../img/icon/icon_nav.png)no-repeat -118px 0;
  1314. }
  1315. .left-nav .icon-left {
  1316. margin-left: 15px;
  1317. margin-right: 10px;
  1318. }
  1319. .right .company {
  1320. margin-bottom: 15px;
  1321. }
  1322. .company .inner {
  1323. line-height: 40px;
  1324. height: 40px;
  1325. padding-left: 12px;
  1326. }
  1327. .company .inner>div {
  1328. float: left;
  1329. margin-right: 3px;
  1330. }
  1331. .right .data-wrap {
  1332. float: left;
  1333. width: 755px;
  1334. }
  1335. .data-wrap .todo {
  1336. margin-bottom: 15px;
  1337. }
  1338. .todo .todo-label {
  1339. width: 100%;
  1340. height: 40px;
  1341. line-height: 45px;
  1342. background: url("../img/approvalFlow/comm_bg02.png") no-repeat bottom;
  1343. background-color: #f5f5f5;
  1344. background-size: 660px 100%;
  1345. }
  1346. .todo .todo-label i {
  1347. margin-left: 20px;
  1348. }
  1349. .todo .todo-label label{
  1350. /*margin-left: 10px;*/
  1351. font-family: Microsoft YaHei, SimHei, Verdana;
  1352. font-size: 14px;
  1353. }
  1354. .todo .todo-label>li {
  1355. float: left;
  1356. margin-left: 140px;
  1357. text-align: center;
  1358. background-image: url("../img/all/line.png");
  1359. background-repeat: no-repeat;
  1360. background-position: 8px 32px;
  1361. height: 55px;
  1362. font-size: 14px;
  1363. }
  1364. .todo .todo-content {
  1365. clear: both;
  1366. width: 755px;
  1367. margin-left: 0px;
  1368. border-bottom: 1px solid #e8e8e8;
  1369. display: inline-block;
  1370. }
  1371. .todo .todo-content a:hover{
  1372. color: #f40 !important;
  1373. }
  1374. .todo .todo-content #tips {
  1375. margin-top: 40px;
  1376. font-family: Microsoft YaHei, SimHei, Verdana;
  1377. font-size: 16px;
  1378. width: 100%;
  1379. }
  1380. .todo .todo-content a {
  1381. color: #666;
  1382. text-decoration: none;
  1383. }
  1384. .todo .todo-content a:hover,.todo .todo-content a:focus {
  1385. color: #d32526;
  1386. }
  1387. .todo .todo-content>ul:not(:last-child){
  1388. border-bottom: 1px solid #e8e8e8;
  1389. }
  1390. .todo-content .icon {
  1391. margin-left: 20px;
  1392. float: left;
  1393. width: 52px;
  1394. height: 52px;
  1395. line-height: 40px;
  1396. text-align: center;
  1397. margin-top: 55px;
  1398. font-size: 16px;
  1399. list-style-type: none;
  1400. /* border: 1px solid #56a022; */
  1401. font-weight: bold;
  1402. }
  1403. .todo #operateTips a{
  1404. padding: 0;
  1405. margin-bottom: 15px;
  1406. }
  1407. .todo-content .start {
  1408. float: left;
  1409. padding-top: 5px;
  1410. font-size: 14px;
  1411. width: 100%;
  1412. }
  1413. .todo-content #operateTips {
  1414. margin-top: 10px;
  1415. padding-top: 20px;
  1416. margin-bottom: 20px;
  1417. font-family: Microsoft YaHei, SimHei, Verdana;
  1418. font-size: 14px;
  1419. cursor: pointer;
  1420. border-top: 1px dashed #919090;
  1421. display: inline-block;
  1422. width: 100%;
  1423. }
  1424. .todo-content .start li,.todo-content .doing li,.todo-content .end li {
  1425. float: left;
  1426. line-height: 28px;
  1427. width: 33.33333333%;
  1428. }
  1429. .todo-content .doing {
  1430. float: left;
  1431. height: 50px;
  1432. width: 200px;
  1433. text-align: center;
  1434. margin-top: 47px;
  1435. }
  1436. .todo-content .end {
  1437. width: 200px;
  1438. float: left;
  1439. margin-top: 47px;
  1440. }
  1441. /** left .feed-wrap start **/
  1442. .left .feed-wrap {
  1443. /*float: right;*/
  1444. width: 202px;
  1445. margin: 20px 0;
  1446. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1447. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1448. -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1449. -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  1450. border-radius: 5px;
  1451. }
  1452. /*.left .feed-wrap .service {*/
  1453. /*box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
  1454. /*-webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
  1455. /*-o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
  1456. /*-moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);*/
  1457. /*border-radius: 5px;*/
  1458. /*}*/
  1459. /*.left .feed-wrap .service{*/
  1460. /*background-color: #fff;*/
  1461. /*border-radius: 5px;*/
  1462. /*}*/
  1463. .left .feed-wrap .notice:first-child {
  1464. margin-top: 0;
  1465. }
  1466. .pane {
  1467. /*margin-top: 20px;*/
  1468. margin-bottom: 15px;
  1469. }
  1470. .pane .pane-header {
  1471. height: 35px;
  1472. background: #3f84f6;
  1473. line-height: 35px;
  1474. font-size: 14px;
  1475. font-weight: bold;
  1476. padding: 0 15px;
  1477. color: #fff;
  1478. border-top-right-radius: 5px;
  1479. border-top-left-radius: 5px;
  1480. }
  1481. .pane .pane-header .pull-right {
  1482. font-weight: normal;
  1483. }
  1484. .pane .pane-header .pull-right i{
  1485. font-size: 22px;
  1486. color: #fff;
  1487. }
  1488. .notice .pane-header .pull-right i{
  1489. margin-top: 5px;
  1490. }
  1491. .pane .pane-header .pull-right>a {
  1492. margin-left: 3px;
  1493. }
  1494. .pane .pane-body {
  1495. padding: 15px!important ;
  1496. }
  1497. .pane.addon {
  1498. height: 185px;
  1499. text-align: center;
  1500. line-height: 1.4;
  1501. cursor: pointer;
  1502. }
  1503. .pane.addon .pane-body {
  1504. padding-top: 60px;
  1505. }
  1506. .pane.addon i,.pane.addon span {
  1507. display: block;
  1508. }
  1509. .state-wrap {
  1510. position: relative;
  1511. height: 40px;
  1512. line-height: 40px;
  1513. padding: 0 20px;
  1514. border-bottom: 1px solid #e8e8e8;
  1515. font-size: 14px;
  1516. }
  1517. .state-wrap a:hover {
  1518. text-decoration: none;
  1519. }
  1520. .state-wrap li {
  1521. width: 100px;
  1522. text-align: center;
  1523. position: relative;
  1524. }
  1525. .state-wrap li.active {
  1526. border-bottom: 2px solid #f40;
  1527. }
  1528. .state-wrap li.active a {
  1529. color: #f40;
  1530. }
  1531. .state-wrap li em {
  1532. font-style: normal;
  1533. margin-left: 5px;
  1534. color: #f40;
  1535. }
  1536. .state-wrap li:after {
  1537. position: absolute;
  1538. content: "|";
  1539. margin-left: 20px;
  1540. color: #eee
  1541. }
  1542. /**left .feed-wrap end**/
  1543. /** .right .feed-wrap start **/
  1544. .right .feed-wrap {
  1545. float: right;
  1546. width: 218px;
  1547. }
  1548. .feed-wrap .side-image {
  1549. /*margin-top: 20px;*/
  1550. }
  1551. .side-image img {
  1552. margin-bottom: 0 !important ;
  1553. }
  1554. .side-image img:hover {
  1555. /*opacity: 0.8;*/
  1556. top: 0px;
  1557. }
  1558. .pane {
  1559. margin-bottom: 15px;
  1560. }
  1561. .pane .pane-header .pull-right>a {
  1562. margin-left: 3px;
  1563. }
  1564. .feed-wrap .service{
  1565. height: 275px;
  1566. }
  1567. .feed-wrap .notice{
  1568. height: auto;
  1569. background: #fff;
  1570. border-radius: 5px;
  1571. }
  1572. .pane .pane-body {
  1573. padding: 10px;
  1574. }
  1575. .feed-wrap .pane-body{
  1576. overflow-y: auto;
  1577. overflow-x: hidden;
  1578. }
  1579. .feed-wrap .notice .pane-body{
  1580. width: 202px;
  1581. height:255px;
  1582. overflow: hidden;
  1583. }
  1584. .pane.addon {
  1585. height: 185px;
  1586. text-align: center;
  1587. line-height: 1.4;
  1588. cursor: pointer;
  1589. }
  1590. .pane.addon .pane-body {
  1591. padding-top: 60px;
  1592. }
  1593. .pane.addon i,.pane.addon span {
  1594. display: block;
  1595. }
  1596. .notice {
  1597. height: 154px;
  1598. }
  1599. .feed-wrap .detail>li{
  1600. clear: both;
  1601. display: block;
  1602. padding: 0 10px 8px 0;
  1603. position: relative;
  1604. white-space: nowrap;
  1605. overflow: hidden;
  1606. text-overflow: ellipsis;
  1607. }
  1608. .notice .detail>li a{
  1609. font-size: 14px;
  1610. }
  1611. /*公告非当日*/
  1612. .notice .pane-body ul li.nonday a{
  1613. color: #333;
  1614. }
  1615. /*!*公告当日已读*!*/
  1616. .notice .pane-body ul li.day-read a{
  1617. float: left;
  1618. display: inline-block;
  1619. max-width: 118px;
  1620. white-space: nowrap;
  1621. overflow: hidden;
  1622. text-overflow: ellipsis;
  1623. color: #333;
  1624. }
  1625. .notice .pane-body ul li.day-read img{
  1626. float: left;
  1627. margin: 5px 0 0 3px;
  1628. }
  1629. /*公告当日未读 */
  1630. .notice .pane-body ul li.day-unread a{
  1631. float: left;
  1632. display: inline-block;
  1633. width: 149px;
  1634. white-space: nowrap;
  1635. overflow: hidden;
  1636. text-overflow: ellipsis;
  1637. color: #666;
  1638. }
  1639. .notice .pane-body ul li.day-unread img{
  1640. float: left;
  1641. margin-top: 5px;
  1642. }
  1643. .notice .detail>li:before {
  1644. position: absolute;
  1645. left: 0;
  1646. top: 5px;
  1647. }
  1648. .feed-wrap .pane .pane-body li a em{
  1649. font-size: 14px;
  1650. }
  1651. /*非当日公共询价*/
  1652. .feed-wrap .pane .pane-body li.nonday a em{
  1653. max-width: 140px;
  1654. }
  1655. /*当日公共询价已读、未读**/
  1656. .feed-wrap .pane .pane-body li.day-read a em{
  1657. max-width: 120px;
  1658. }
  1659. i.fa{
  1660. font-size: 16px;
  1661. }
  1662. .service {
  1663. height: 154px;
  1664. }
  1665. .state-wrap {
  1666. position: relative;
  1667. height: 40px;
  1668. line-height: 40px;
  1669. padding: 0 20px;
  1670. border-bottom: 1px solid #e8e8e8;
  1671. font-size: 14px;
  1672. }
  1673. .state-wrap a:hover {
  1674. text-decoration: none;
  1675. }
  1676. .state-wrap li {
  1677. width: 100px;
  1678. text-align: center;
  1679. position: relative;
  1680. }
  1681. .state-wrap li.active {
  1682. border-bottom: 2px solid #f40;
  1683. }
  1684. .state-wrap li.active a {
  1685. color: #f40;
  1686. }
  1687. .state-wrap li em {
  1688. font-style: normal;
  1689. margin-left: 5px;
  1690. color: #f40;
  1691. }
  1692. .state-wrap li:after {
  1693. position: absolute;
  1694. content: "|";
  1695. margin-left: 20px;
  1696. color: #eee
  1697. }
  1698. /** .right .feed-wrap end **/
  1699. @media ( min-width : 1100px) {
  1700. .right {
  1701. width: 930px;
  1702. }
  1703. }
  1704. @media ( min-width : 1024px) {
  1705. .right {
  1706. width: 810px;
  1707. }
  1708. }
  1709. @media ( min-width : 910px) {
  1710. .right {
  1711. width: 760px;
  1712. }
  1713. }
  1714. /*footer*/
  1715. .list-unstyled {
  1716. padding-left: 0;
  1717. list-style: none;
  1718. }
  1719. #footer {
  1720. background-color: #f7f7f7;
  1721. margin-top: 50px;
  1722. }
  1723. #footer .footer-main, #footer .footer-bottom {
  1724. font-size: 12px;
  1725. color: rgb(50, 50 ,50);
  1726. width: 1190px;
  1727. margin: auto;
  1728. text-align: center;
  1729. }
  1730. #footer .footer-main > li {
  1731. display: inline-block;
  1732. width: 16%;
  1733. text-align: center;
  1734. vertical-align: top;
  1735. }
  1736. #footer .footer-main > li > h3 {
  1737. font-size: 16px;
  1738. font-weight: bold;
  1739. }
  1740. #footer .footer-main > li > ul > li {
  1741. padding: 0.4em;
  1742. }
  1743. #footer .footer-bottom {
  1744. padding-top: 1.5em;
  1745. padding-bottom: 1.5em;
  1746. margin-top: 10px;
  1747. }
  1748. #footer .footer-bottom > li {
  1749. text-align: center;
  1750. display: inline-block;
  1751. padding: 0 2em 0 2em;
  1752. }
  1753. #footer .list-unstyled > li a{
  1754. color: #323232;
  1755. }
  1756. #footer .list-unstyled > li a:hover{
  1757. color: #db143c;
  1758. }
  1759. #footer .footer-bottom{
  1760. border-top: #c9c9c9 1px solid;
  1761. }
  1762. #footer .footer-bottom > li {
  1763. text-align: center;
  1764. display: inline-block;
  1765. padding: 0 2em 0 2em;
  1766. }
  1767. a:hover {
  1768. text-decoration: none;
  1769. }
  1770. .credit{
  1771. text-align: center;
  1772. padding: 2px;
  1773. padding-bottom: 30px;
  1774. }
  1775. .credit a{
  1776. margin: 0 8px;
  1777. }
  1778. .friend-link{
  1779. font-size: 12px;
  1780. width: 1190px;
  1781. margin: auto;
  1782. text-align: center;
  1783. color: #999;
  1784. margin-top: 10px;
  1785. }
  1786. .friend-link a{
  1787. font-size: 12px;
  1788. color: #323232;
  1789. padding: 2px 10px;
  1790. display: inline-block;
  1791. }
  1792. .friend-link a:hover{
  1793. color: #d32526;
  1794. }
  1795. /*loading*/
  1796. .loading {
  1797. display: none;
  1798. position: fixed;
  1799. width: 100%;
  1800. height: 300px;
  1801. top: 50%;
  1802. left: 50%;
  1803. margin-left: -50%;
  1804. margin-top: -150px;
  1805. }
  1806. .loading.in {
  1807. display: block;
  1808. z-index: 99999;
  1809. }
  1810. .loading.in>i {
  1811. position: absolute;
  1812. top: 50%;
  1813. left: 50%;
  1814. margin: -33px 0 0 -33px;
  1815. background: url("../img/all/loading.gif") no-repeat center center;
  1816. width: 66px;
  1817. height: 66px;
  1818. }
  1819. /*sale */
  1820. .sale .state {
  1821. margin-left: 0;
  1822. margin-bottom: 15px;
  1823. }
  1824. .sale .state .todo {
  1825. padding: 30px 0 15px 0;
  1826. border-right: 1px solid #e8e8e8;
  1827. }
  1828. .sale .state .todo>ul {
  1829. margin: 0 auto;
  1830. }
  1831. .sale .state .todo>ul>li {
  1832. width: 32%;
  1833. height: 60px;
  1834. border-left: 1px dashed #e6e6e6;
  1835. text-align: center;
  1836. position: relative;
  1837. }
  1838. .sale .state .todo>ul>li .title {
  1839. margin-bottom: 5px;
  1840. }
  1841. .sale .state .todo>ul>li:nth-child(3n+1) {
  1842. border-left: none;
  1843. }
  1844. .sale .state .level {
  1845. padding: 15px 100px;
  1846. color: #666;
  1847. }
  1848. .sale .sale-main .left {
  1849. float: left;
  1850. width: 50%;
  1851. padding-right: 8px;
  1852. }
  1853. .sale .sale-main .right {
  1854. float: right;
  1855. width: 50%;
  1856. padding-left: 8px;
  1857. }
  1858. .input-trigger .dropdown-menu tr>td>.btn {
  1859. border-radius: 0;
  1860. border: none;
  1861. }
  1862. .input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn
  1863. {
  1864. height: 30px;
  1865. padding: 0 7px;
  1866. font-size: 12px;
  1867. line-height: 1.5;
  1868. border-radius: 3px;
  1869. }
  1870. .input-xs,.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn
  1871. {
  1872. height: 26px;
  1873. padding: 0 5px;
  1874. font-size: 12px;
  1875. line-height: 1.5;
  1876. border-radius: 3px;
  1877. }
  1878. .input-group-sm .form-control:last-child,.input-group-xs .form-control:last-child,.input-group-addon:last-child,.input-group-btn:first-child>.btn:not(:first-child),.input-group-btn:last-child>.btn {
  1879. border-top-left-radius: 0;
  1880. border-bottom-left-radius: 0;
  1881. }
  1882. .input-group+.input-group .input-group-btn:last-child>.btn, .input-group+.input-group .input-group-btn:last-child>.btn-group {
  1883. margin-left: -2px
  1884. }
  1885. .form-horizontal .form-group-inline, .form-horizontal .form-group-inline .form-group {
  1886. margin-left: 0;
  1887. margin-right: 0
  1888. }
  1889. .form-horizontal .form-group-inline .input-group {
  1890. display: inline-table
  1891. }
  1892. .form-horizontal .form-group-sm .control-label {
  1893. padding-top: 5px
  1894. }
  1895. .form-group-inline .has-feedback .form-control-feedback {
  1896. right: 5px
  1897. }
  1898. .form-group.form-group-sm {
  1899. /*margin-bottom: 10px*/
  1900. }
  1901. .form-group .form-group {
  1902. margin-bottom: 0
  1903. }
  1904. .ng-table-pager {
  1905. padding: 10px 15px;
  1906. height: 55px;
  1907. width: 100%;
  1908. margin: 0 auto;
  1909. text-align: center;
  1910. }
  1911. .ng-table-pager .pagination {
  1912. margin: 0 auto;
  1913. max-width: 930px;
  1914. text-align: center;
  1915. }
  1916. .headerline {
  1917. font-size: 24px;
  1918. font-family: Microsoft YaHei, SimHei, Verdana;
  1919. font-weight: 500;
  1920. line-height: 22px;
  1921. margin: 25px 0 25px -15px;
  1922. clear: both;
  1923. zoom: 1;
  1924. border-top: 1px solid #eee;
  1925. position: relative;
  1926. font-size: 18px;
  1927. }
  1928. .headerline .index {
  1929. position: absolute;
  1930. top: -12px;
  1931. left: 0;
  1932. width: 25px;
  1933. height: 24px;
  1934. line-height: 24px;
  1935. background: #3f84f6;
  1936. color: #fff;
  1937. text-align: center;
  1938. border-radius: 0 2px 2px 0;
  1939. z-index: 2;
  1940. }
  1941. .headerline .content {
  1942. position: absolute;
  1943. top: -12px;
  1944. left: 25px;
  1945. line-height: 24px;
  1946. padding: 0 15px 0 10px;
  1947. background: #fff;
  1948. z-index: 2;
  1949. }
  1950. .headerline .center {
  1951. position: absolute;
  1952. top: -12px;
  1953. left: 40%;
  1954. line-height : 24px;
  1955. padding: 0 15px;
  1956. background: #fff;
  1957. z-index: 2;
  1958. }
  1959. .headerline .end {
  1960. position: absolute;
  1961. top: -12px;
  1962. right: 0;
  1963. line-height: 24px;
  1964. padding-left: 15px;
  1965. background: #fff;
  1966. z-index: 2;
  1967. }
  1968. .total {
  1969. line-height: 30px;
  1970. }
  1971. /*account*/
  1972. .user-role>.role-item{
  1973. float: left;
  1974. }
  1975. .user-role>.role-item>.icon{
  1976. text-align: center;
  1977. color: #333;
  1978. padding: 1px 3px;
  1979. border-radius: 50%;
  1980. border: 1px solid #333;
  1981. }
  1982. .user-role>.role-item>.icon.info{
  1983. color: #56a022;
  1984. border: 1px solid #56a022;
  1985. }
  1986. .user-role>.role-item>.icon.warning{
  1987. color: #8a6d3b;
  1988. border: 1px solid #8a6d3b;
  1989. }
  1990. .row-operator {
  1991. position: relative;
  1992. }
  1993. .row-operator>.operator-menu {
  1994. position: absolute;
  1995. width: 140px;
  1996. height: 0;
  1997. line-height: 30px;
  1998. padding: 0 10px;
  1999. top: 12px;
  2000. left: 100%;
  2001. background-color: #333;
  2002. border-radius: 0 3px 3px 0;
  2003. opacity: 0;
  2004. }
  2005. .row-operator>.operator-menu a {
  2006. color: #fff;
  2007. }
  2008. .row-operator>.operator-menu a:hover {
  2009. color: #56a022;
  2010. }
  2011. .row-operator:hover>.operator-menu {
  2012. height: 30px;
  2013. opacity: .75;
  2014. -webkit-transition: all 0.25s ease-in-out;
  2015. -moz-transition: all 0.25s ease-in-out;
  2016. transition: all 0.25s ease-in-out;
  2017. }
  2018. .resource-container,.role-container {
  2019. padding: 15px;
  2020. min-height: 645px;
  2021. }
  2022. .simple-list {
  2023. padding: 10px 15px;
  2024. }
  2025. .simple-list>li {
  2026. clear: both;
  2027. display: block;
  2028. height: 26px;
  2029. line-height: 26px;
  2030. padding: 8px 10px 8px 15px;
  2031. position: relative;
  2032. }
  2033. .simple-list>li:before {
  2034. position: absolute;
  2035. left: 0;
  2036. top: 5px;
  2037. content: "."
  2038. }
  2039. .simple-list>li .title {
  2040. width: 200px;
  2041. float: left;
  2042. }
  2043. .simple-list>li .content {
  2044. float: left;
  2045. color: #999;
  2046. }
  2047. .resource-container>.resource-item {
  2048. position: relative;
  2049. padding-bottom: 15px;
  2050. }
  2051. .resource-container>.resource-item>.simple-list {
  2052. display: none;
  2053. }
  2054. .resource-container>.resource-item.active>.simple-list {
  2055. display: block;
  2056. }
  2057. .role-container>.role-list {
  2058. width: 100%;
  2059. }
  2060. .role-container>.role-list:nth-child(1){
  2061. border-bottom: #e8e8e8 1px solid;
  2062. }
  2063. .role-container>.role-list:before,.role-container>.role-list:after {
  2064. display: table;
  2065. content: " ";
  2066. clear: both;
  2067. }
  2068. .role-container>.role-list>.item {
  2069. float: left;
  2070. width: 33%;
  2071. height: 150px;
  2072. padding: 10px 25px;
  2073. }
  2074. .role-container>.role-list .desc h3 a{
  2075. font-size: 16px;
  2076. }
  2077. .role-container>.role-list>.item>.icon{
  2078. float: left;
  2079. width: 60px;
  2080. height: 60px;
  2081. line-height: 60px;
  2082. text-align: center;
  2083. margin-top: 30px;
  2084. color: #56a022;
  2085. font-size: 52px;
  2086. border-radius: 50%;
  2087. -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
  2088. box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
  2089. background-color: #f3f3f4;
  2090. }
  2091. .role-container>.role-list>.item>.icon i{
  2092. font-size: 36px;
  2093. position: relative;
  2094. top: -10px;
  2095. }
  2096. .role-container>.role-list>.item>.desc {
  2097. margin-left: 80px;
  2098. }
  2099. .userrole-list {
  2100. width: 576px;
  2101. font-size: 12px;
  2102. max-height: 500px;
  2103. }
  2104. .userrole-list:before,.userrole-list:after {
  2105. display: table;
  2106. content: " ";
  2107. clear: both;
  2108. }
  2109. .userrole-list>.item {
  2110. float: left;
  2111. width: 192px;
  2112. height: 120px;
  2113. padding: 5px 10px;
  2114. border: 2px dashed;
  2115. border-color: #fff #ededed #ededed #fff;
  2116. position: relative;
  2117. }
  2118. .userrole-list>.item.checked {
  2119. border-color: #ff7300;
  2120. }
  2121. .userrole-list>.item>.icon{
  2122. float: left;
  2123. width: 60px;
  2124. height: 60px;
  2125. line-height: 60px;
  2126. text-align: center;
  2127. color: #56a022;
  2128. font-size: 36px;
  2129. border-radius: 50%;
  2130. -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
  2131. box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
  2132. background-color: #f3f3f4;
  2133. }
  2134. .userrole-list>.item>.desc {
  2135. margin-left: 70px;
  2136. text-overflow: ellipsis;
  2137. }
  2138. .userrole-list>.item:hover>.icon {
  2139. background-color: #fff1d0;
  2140. }
  2141. .userrole-list>.item.checked>.checker {
  2142. position: absolute;
  2143. left: -2px;
  2144. top: -2px;
  2145. width: 0;
  2146. height: 0;
  2147. border: 8px solid;
  2148. border-color: #ff7300 #fff #fff #ff7300;
  2149. }
  2150. .choose-inline {
  2151. display: table;
  2152. width: 100%;
  2153. margin-top: 10px;
  2154. padding: 10px;
  2155. table-layout: fixed;
  2156. border-collapse: separate;
  2157. border: 1px solid #e1e1e1;
  2158. }
  2159. .choose-inline>.item {
  2160. display: table-cell;
  2161. }
  2162. .choose-inline>.item>ul {
  2163. height: 260px;
  2164. overflow-x: hidden;
  2165. overflow-y: scroll;
  2166. }
  2167. .choose-inline>.item>ul>li {
  2168. line-height: 30px;
  2169. padding-left: 5px;
  2170. }
  2171. .choose-inline>.item>ul>li:hover {
  2172. background: #f1f1f1;
  2173. }
  2174. .choose-inline>.item>ul>li.active {
  2175. background: #fff1d0;
  2176. }
  2177. .choose-inline>.item>ul>li:hover a,.choose-inline>.item>ul>li.active a {
  2178. color: #ff7300;
  2179. text-decoration: none;
  2180. }
  2181. .choose-inline>.item>ul>li>a {
  2182. color: #666666;
  2183. }
  2184. .choose-inline>.item .caret {
  2185. float: right;
  2186. margin-top: 14px;
  2187. margin-right: 8px;
  2188. border-left: 3px solid;
  2189. border-right: none;
  2190. border-top: 3px solid transparent;
  2191. border-bottom: 3px solid transparent;
  2192. }
  2193. .role-resources input[type="checkbox"] {
  2194. margin-right: 5px;
  2195. height: 16px;
  2196. vertical-align: text-bottom;
  2197. margin-top: 0;
  2198. cursor: pointer;
  2199. }
  2200. /*attach*/
  2201. .global_icon {
  2202. background: url("../img/merge/full_ico.png") no-repeat bottom right;
  2203. }
  2204. .global_icon.larger {
  2205. height: 118px;
  2206. width: 118px;
  2207. }
  2208. .icon_xls_l {
  2209. background-position: 0 -855px !important;
  2210. }
  2211. .icon_pdf_l {
  2212. background-position: -120px -735px !important;
  2213. }
  2214. .icon_doc_l {
  2215. background-position: -282px -495px !important;
  2216. }
  2217. .icon_txt_l {
  2218. background-position: -360px -735px !important;
  2219. }
  2220. .icon_zip_l {
  2221. background-position: -120px -855px !important;
  2222. }
  2223. .icon_image_l {
  2224. background-position: -120px -615px !important;
  2225. }
  2226. .icon_undefined_l {
  2227. background-position: 0 -735px;
  2228. }
  2229. .attach .item {
  2230. position: relative;
  2231. cursor: pointer;
  2232. width: 180px;
  2233. height: 180px;
  2234. border: 1px solid #d6d6d6;
  2235. margin-bottom: 25px;
  2236. margin-right: 25px;
  2237. -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
  2238. -moz-box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
  2239. box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
  2240. zoom: 1;
  2241. }
  2242. .attach .item .title {
  2243. position: absolute;
  2244. bottom: 0;
  2245. left: 0;
  2246. width: 100%;
  2247. height: 30px;
  2248. line-height: 30px;
  2249. text-align: center;
  2250. padding: 0 5px;
  2251. color: #222;
  2252. border-top: 1px solid #ccc;
  2253. background-color: #fff;
  2254. z-index: 10;
  2255. text-overflow: ellipsis;
  2256. white-space: nowrap;
  2257. overflow: hidden;
  2258. }
  2259. .attach .item .bg {
  2260. position: absolute;
  2261. width: 100%;
  2262. height: 149px;
  2263. line-height: 149px;
  2264. left: 0;
  2265. top: 0;
  2266. overflow: hidden;
  2267. text-align: center;
  2268. vertical-align: middle;
  2269. background-color: #f6f6f9;
  2270. color: #999;
  2271. }
  2272. .attach .item .download {
  2273. position: absolute;
  2274. left: 0;
  2275. top: 119px;
  2276. width: 0;
  2277. height: 30px;
  2278. line-height: 30px;
  2279. background: #090909;
  2280. opacity: 0;
  2281. text-align: center;
  2282. z-index: 99;
  2283. -webkit-transition: width 0.2s ease-in-out;
  2284. -moz-transition: width 0.2s ease-in-out;
  2285. transition: width 0.2s ease-in-out;
  2286. }
  2287. .attach .item:hover .download {
  2288. width: 100%;
  2289. opacity: .5;
  2290. }
  2291. .attach .download a {
  2292. color: #fff;
  2293. }
  2294. .attach .bg .global_icon {
  2295. margin: 20px auto;
  2296. }
  2297. /*process*/
  2298. .progress.progress-sm {
  2299. height: 14px;
  2300. margin-bottom: 8px;
  2301. }
  2302. .row.row-sm {
  2303. margin-left: -5px;
  2304. margin-right: -5px;
  2305. }
  2306. .row-sm [class*="col-"] {
  2307. padding-left: 5px;
  2308. padding-right: 5px;
  2309. }
  2310. /*data view*/
  2311. .condition {
  2312. padding: 10px 15px;
  2313. }
  2314. .condition .form-group {
  2315. margin-bottom: 0;
  2316. }
  2317. .condition .toggle {
  2318. height: 30px;
  2319. line-height: 30px;
  2320. }
  2321. .condition .toggle>a:hover {
  2322. color: #f40;
  2323. }
  2324. .condition .more {
  2325. height: 0;
  2326. opacity: 0;
  2327. -webkit-transition: all 0.2s ease-in-out;
  2328. -moz-transition: all 0.2s ease-in-out;
  2329. transition: all 0.2s ease-in-out;
  2330. }
  2331. .btn-menu .btn-xs,.btn-menu .btn-group-xs>.btn {
  2332. height: 26px;
  2333. }
  2334. .condition .more.open {
  2335. margin-top: 10px;
  2336. height: 26px;
  2337. opacity: 1;
  2338. }
  2339. .condition .more label{
  2340. margin-left: 8px;
  2341. }
  2342. .condition .more .form-control{
  2343. width: 141px;
  2344. }
  2345. /*enterprise*/
  2346. .base-info {
  2347. /*-webkit-box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
  2348. box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
  2349. border-bottom: 1px solid #d9d9d9;*/
  2350. margin-bottom: 10px;
  2351. }
  2352. .base-info .item {
  2353. line-height: 26px;
  2354. /*border-bottom: 1px dotted #e8e8e8;*/
  2355. padding: 5px 0;
  2356. }
  2357. .base-info .title {
  2358. float: left;
  2359. width: 78px;
  2360. color: #999;
  2361. font-weight: bold;
  2362. }
  2363. .base-info .content {
  2364. float: left;
  2365. white-space: nowrap;
  2366. }
  2367. .events {
  2368. position: relative;
  2369. margin: 5px 0 60px 148px;
  2370. padding-top: 40px;
  2371. width: 650px;
  2372. }
  2373. .events dd {
  2374. position: relative;
  2375. border-left: 1px solid #e1e3e6;
  2376. padding-bottom: 45px;
  2377. }
  2378. .events dd:first-child {
  2379. margin-top: -40px;
  2380. padding-top: 40px;
  2381. }
  2382. .events dd:last-child {
  2383. padding-bottom: 0;
  2384. border-color: transparent;
  2385. }
  2386. .events dd .year,.events dd .date {
  2387. position: absolute;
  2388. left: -148px;
  2389. top: 0;
  2390. width: 120px;
  2391. height: 25px;
  2392. line-height: 25px;
  2393. font-size: 16px;
  2394. color: #9ea9c0;
  2395. text-align: right;
  2396. }
  2397. .events dd .year {
  2398. font-size: 24px;
  2399. color: #56a022;
  2400. }
  2401. .events dd .year .character {
  2402. font-size: 16px;
  2403. margin-left: 2px;
  2404. }
  2405. .events dd:first-child .year {
  2406. margin-top: 40px;
  2407. }
  2408. .events dd .icon {
  2409. position: absolute;
  2410. left: -18px;
  2411. top: -5px;
  2412. border: 5px solid #fff;
  2413. width: 35px;
  2414. height: 35px;
  2415. border-radius: 8px;
  2416. text-align: center;
  2417. background: #e5e5e5;
  2418. }
  2419. .events dd .icon.year-icon {
  2420. border-radius: 50%;
  2421. }
  2422. .events dd:first-child .icon {
  2423. margin-top: 40px;
  2424. }
  2425. .events dd .icon i {
  2426. line-height: 25px;
  2427. font-size: 16px;
  2428. color: #c2c2c2;
  2429. }
  2430. .events dd .event {
  2431. padding-top: 12px;
  2432. }
  2433. .events dd .event .event_tit-wrapper {
  2434. height: 25px;
  2435. line-height: 25px;
  2436. font-size: 16px;
  2437. border-top: 1px solid #e1e3e6;
  2438. }
  2439. .events dd .event .event_tit-wrapper .event_tit {
  2440. position: relative;
  2441. top: -13px;
  2442. margin-left: 35px;
  2443. padding-left: 5px;
  2444. background: #fff;
  2445. }
  2446. .events dd .event .event_cnt {
  2447. margin: -6px 0 0 40px;
  2448. font-size: 14px;
  2449. color: #999;
  2450. }
  2451. .events dd .event a {
  2452. color: #56a022;
  2453. }
  2454. .events dd .event {
  2455. padding-top: 12px;
  2456. }
  2457. .table-default .header {
  2458. background: #f5f5f5;
  2459. border-left: 1px solid #ddd;
  2460. border-top: 1px solid #e8e8e8;
  2461. border-bottom: 1px solid #e8e8e8;
  2462. -webkit-box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
  2463. box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
  2464. }
  2465. .table-default .header>th {
  2466. padding: 10px;
  2467. text-align: center;
  2468. }
  2469. .table-bordered .header>th {
  2470. border-right: 1px solid #ddd;
  2471. }
  2472. .table-bordered .header>th:hover {
  2473. background: #e1e1e1;
  2474. }
  2475. .table-hover>tbody>tr:hover {
  2476. background-color: #d0e9c6;
  2477. -webkit-transition: all 0.15s ease-in-out;
  2478. -moz-transition: all 0.15s ease-in-out;
  2479. transition: all 0.15s ease-in-out;
  2480. }
  2481. .file {
  2482. color: #3a89d1;
  2483. margin-right: 10px;
  2484. }
  2485. /*form valid*/
  2486. input.ng-invalid.ng-dirty,textarea.ng-invalid.ng-dirty {
  2487. box-shadow: 0 0 2px #f00;
  2488. border: #f00 1px solid;
  2489. }
  2490. .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
  2491. cursor: pointer;
  2492. }
  2493. .form-group {
  2494. position: relative;
  2495. }
  2496. .form-group .tooltip.right.control-tooltip {
  2497. top: 5px;
  2498. left: 92%;
  2499. }
  2500. .form-group .tooltip.left.control-tooltip {
  2501. top: 3px;
  2502. right: 0;
  2503. }
  2504. .tooltip.control-tooltip .tooltip-inner {
  2505. padding: 5px 10px;
  2506. }
  2507. /*ng-view*/
  2508. .view-slide-in.ng-enter {
  2509. transition: all .5s ease;
  2510. -webkit-transition:all .5s ease;
  2511. -moz-transition: all .5s ease;
  2512. -o-transition: all .5s ease;
  2513. position: relative;
  2514. opacity: 0;
  2515. top: 10px;
  2516. left: 20px;
  2517. }
  2518. .view-slide-in.ng-enter.ng-enter-active {
  2519. top: 0;
  2520. left: 0;
  2521. opacity: 1;
  2522. }
  2523. .view-slide-in.ng-leave.ng-leave-active{
  2524. top: 5px;
  2525. left: 5px;
  2526. opacity: 1;
  2527. }
  2528. .view-slide-in.ng-leave{
  2529. top: 0;
  2530. left: 0;
  2531. opacity: 0;
  2532. }
  2533. /*search*/
  2534. .search-advance {
  2535. position: absolute;
  2536. right: 35px;
  2537. top: 5px;
  2538. line-height: 20px;
  2539. visibility: hidden;
  2540. white-space: nowrap;
  2541. cursor: pointer;
  2542. }
  2543. .search-advance.active,input[type="search"]:focus + .search-advance{
  2544. visibility: visible;
  2545. }
  2546. .has-feedback input[type="search"] {
  2547. padding-right: 80px;
  2548. }
  2549. #searchContainer {
  2550. width: 500px;
  2551. transition: all 0.2s ease-in-out;
  2552. }
  2553. #searchContainer .block {
  2554. padding-top: 15px;
  2555. }
  2556. #searchContainer .form-group {
  2557. margin-bottom: 15px;
  2558. }
  2559. .warningLg {
  2560. line-height: 40px;
  2561. height: 40px;
  2562. font-family: "Microsoft YaHei", "Hiragino Sans GB";
  2563. font-weight: 700;
  2564. font-size: 17px;
  2565. color:red;
  2566. }
  2567. .dropdown-tab{
  2568. width: 100%;
  2569. height: 100%;
  2570. position: fixed;
  2571. z-index: 1;
  2572. background: rgba(0, 0, 0, 0.2);
  2573. left: 0;
  2574. display: none;
  2575. transition: display .2s ease-in;
  2576. }
  2577. .fixed-menu{
  2578. position: fixed;
  2579. width: 100%;
  2580. top: 0;
  2581. z-index: 1000;
  2582. }
  2583. .dropdown-tab01{
  2584. width: 100%;
  2585. position: absolute;
  2586. background: #fff;
  2587. box-shadow: 0 0 30px #888;
  2588. font-family: "Microsoft YaHei", "微软雅黑";
  2589. transition: all .2s ease-in;
  2590. }
  2591. .dropdown-menu01{
  2592. width: 1100px;
  2593. margin: 0 auto;
  2594. padding-top: 10px;
  2595. padding-bottom: 10px;
  2596. }
  2597. .dropdown-tab .nav-pills>li{
  2598. width: 16%;
  2599. text-align: left;
  2600. line-height: 40px;
  2601. }
  2602. .dropdown-tab .nav-pills>li a{
  2603. padding: 0;
  2604. font-size: 16px;
  2605. color: #000;
  2606. }
  2607. .dropdown-tab .nav-pills>li a:hover{
  2608. color: #d32526;
  2609. }
  2610. .dropdown-tab .col-xs-2{
  2611. font-size: 14px;
  2612. font-weight: bold;
  2613. float: left;
  2614. }
  2615. .dropdown-tab .col-xs-2 img{
  2616. margin-bottom: 5px;
  2617. }
  2618. .dropdown-tab #dropdown-menu-sale img{
  2619. margin-top: 25%;
  2620. }
  2621. .dropdown-tab #dropdown-menu-purc img,.dropdown-tab #dropdown-menu-finance img,.dropdown-tab #dropdown-menu-report img{
  2622. margin-top: 0;
  2623. vertical-align: middle;
  2624. }
  2625. .dropdown-tab #dropdown-menu-purc li,.dropdown-tab #dropdown-menu-finance li,.dropdown-tab #dropdown-menu-report li{
  2626. line-height: 60px;
  2627. }
  2628. .todo .todo-label em{
  2629. margin-right: 20px;
  2630. }
  2631. .todo .todo-content .col-xs-10{
  2632. margin-top:42px;
  2633. }
  2634. #change-company{
  2635. min-width: inherit;
  2636. min-width: 222px;
  2637. border: #ccc 1px solid;
  2638. padding: 0;
  2639. margin: 0;
  2640. top: -100%;
  2641. }
  2642. #change-company:before{
  2643. width: 18px;
  2644. height: 18px;
  2645. border-top: #ccc 1px solid;
  2646. border-left: #ccc 1px solid;
  2647. background: #fff;
  2648. content: "";
  2649. display: inline-block;
  2650. position: absolute;
  2651. top: 52px;
  2652. left: -9px;
  2653. transform: rotate(-45deg);
  2654. box-shadow: -1px -1px 2px #ccc;
  2655. z-index: -100;
  2656. }
  2657. #change-company .text-muted {
  2658. line-height: 40px;
  2659. padding: 0;
  2660. margin: 0;
  2661. padding-left: 10px;
  2662. font-weight: inherit;
  2663. }
  2664. #change-company li{
  2665. padding-top: 0;
  2666. }
  2667. #change-company li a{
  2668. padding: 0;
  2669. margin: 0;
  2670. padding-left: 10px;
  2671. line-height: 50px;
  2672. border-bottom: #ccc 1px solid;
  2673. padding-right: 10px;
  2674. }
  2675. .todo .list-unstyled{
  2676. display: inline-block;
  2677. width: 100%;
  2678. }
  2679. .todo .todo-content:last-child{
  2680. border-bottom: none;
  2681. }
  2682. .feed-wrap .carousel-inner{
  2683. width: 206px;
  2684. }
  2685. .feed-wrap .carousel-inner .item img{
  2686. width: 206px;
  2687. height: 568px;
  2688. }
  2689. .feed-wrap .carousel-indicators .active{
  2690. background: #050505;
  2691. border: none;
  2692. }
  2693. .feed-wrap .carousel-indicators{
  2694. bottom: -10px;
  2695. left: 125px;
  2696. }
  2697. .feed-wrap .carousel-indicators li{
  2698. background: #c2c2c2;
  2699. width: 11px;
  2700. height: 11px;
  2701. margin: 3px;
  2702. border-radius: 100%;
  2703. border: none;
  2704. }
  2705. .pane-header img{
  2706. vertical-align: middle;
  2707. }
  2708. .height6{
  2709. width: 100%;
  2710. height: 0px;
  2711. background: #333333;
  2712. }
  2713. .back-home{
  2714. width:100px;
  2715. height: 30px;
  2716. display: inline-block;
  2717. background: #05acd1;
  2718. font-size: 14px;
  2719. color: #fff;
  2720. text-align: center;
  2721. line-height: 30px;
  2722. border-radius: 5px;
  2723. float: right;
  2724. bottom: 50px;
  2725. position: relative;
  2726. right: 90px;
  2727. }
  2728. #footer .margin-left{
  2729. margin-left: 8%;
  2730. }
  2731. .back-home:hover{
  2732. background: #3a89d1;
  2733. text-decoration: none;
  2734. }
  2735. .data-wrap .todo{
  2736. margin-top: 0 !important;
  2737. }
  2738. #footer .col-sm-4 p{
  2739. font-size: 14px;
  2740. line-height: 25px;
  2741. padding: 0;
  2742. margin: 0;
  2743. }
  2744. #footer .col-sm-4{
  2745. margin-top: 10px;
  2746. }
  2747. .modal-content{
  2748. margin-top: 90px;
  2749. border: none;
  2750. }
  2751. .erweima-tk{
  2752. position: absolute;
  2753. text-align: center;
  2754. display: none;
  2755. right: 160px;
  2756. top: 30px;
  2757. /*animation: slideDown .2s ease-in 1 normal both;*/
  2758. }
  2759. .erweima-tk div{
  2760. width: 130px;
  2761. height: 175px;
  2762. background: #fff;
  2763. margin-top: 28px;
  2764. box-shadow: 0 0 2px #ccc;
  2765. }
  2766. .erweima-tk p{
  2767. text-align: center;
  2768. font-size: 12px;
  2769. padding-top: 10px;
  2770. color: #323232;
  2771. }
  2772. /*账号切换 begin*/
  2773. .name-tk {
  2774. position: absolute;
  2775. text-align: left;
  2776. display: none;
  2777. right: 155px;
  2778. top: 44px;
  2779. /* animation: slideDown .2s ease-in 1 normal both; */
  2780. min-width: 250px;
  2781. }
  2782. .name-tk div{
  2783. margin-top: 10px;
  2784. position: relative ;
  2785. }
  2786. .name-tk .user-message{
  2787. padding-left: 0;
  2788. margin-bottom: 0;
  2789. list-style: none;
  2790. border: 1px solid #ccc;
  2791. border-radius: 6px;
  2792. overflow: hidden;
  2793. background: #fff;
  2794. max-height: 550px;
  2795. overflow-y: auto;
  2796. box-shadow: 0px 0px 6px 0px
  2797. rgba(120, 120, 120, 0.2);
  2798. }
  2799. .name-tk .user-message li{
  2800. height: 50px;
  2801. line-height: 50px;
  2802. border-bottom: 1px solid #ccc;
  2803. padding-right:10px;
  2804. }
  2805. .name-tk .user-message li:last-child {
  2806. border-bottom: none;
  2807. }
  2808. .name-tk .user-message li:first-child a{
  2809. color:#d32526;
  2810. }
  2811. .name-tk .user-message li:first-child a span.red{
  2812. color:#d32526;
  2813. }
  2814. .name-tk .user-message li a{
  2815. padding-left: 10px;
  2816. display: inline-block;
  2817. height: 38px;
  2818. }
  2819. .name-tk .user-message li.active a{
  2820. margin-top: 12px;
  2821. line-height: 38px;
  2822. background: #e8e8e8;
  2823. }
  2824. .name-tk .user-message li.active a span{
  2825. font-size: 13px;
  2826. color: #000;
  2827. }
  2828. .name-tk .user-message li.active a span:first-child{
  2829. float: left;
  2830. font-size: 13px;
  2831. color: #d32526;
  2832. }
  2833. .name-tk div .cart {
  2834. position: absolute;
  2835. top: -28px;
  2836. right: 85px;
  2837. }
  2838. .name-tk div .cart img{
  2839. width: 25px;
  2840. height: 15px;
  2841. }
  2842. /*操作类型切换 begin*/
  2843. .user-tk {
  2844. position: absolute;
  2845. text-align: left;
  2846. display: none;
  2847. right: 0;
  2848. top: 44px;
  2849. /* animation: slideDown .2s ease-in 1 normal both; */
  2850. width: 150px;
  2851. }
  2852. .user-tk div{
  2853. margin-top: 10px;
  2854. position: relative ;
  2855. }
  2856. .user-tk .user-message{
  2857. padding:0;
  2858. margin-bottom: 0;
  2859. list-style: none;
  2860. box-shadow: 3px 3px 5px #ccc;
  2861. overflow: hidden;
  2862. background: #fff;
  2863. border-radius: 6px;
  2864. }
  2865. .user-tk .user-message li{
  2866. width: 100%;
  2867. overflow: hidden;
  2868. text-overflow: ellipsis;
  2869. white-space: nowrap;
  2870. height: 35px;
  2871. line-height: 35px;
  2872. padding-left:15px;
  2873. }
  2874. .user-tk .user-message img{
  2875. padding-right:5px;
  2876. margin-top: -32px;
  2877. }
  2878. .user-tk .user-message li a{
  2879. display: inline-block;
  2880. height: 38px;
  2881. overflow: hidden;
  2882. }
  2883. .user-tk .user-message li a:hover{
  2884. display: inline-block;
  2885. height: 38px;
  2886. overflow: hidden;
  2887. color:#52a9fa;
  2888. }
  2889. .user-tk .user-message li:last-child{
  2890. padding:0;
  2891. text-align: center;
  2892. font-size: 14px;
  2893. color: #ea6c6d;
  2894. background: #f4f4f4;
  2895. }
  2896. .user-tk div .cart {
  2897. position: absolute;
  2898. top: -28px;
  2899. left: 45px;
  2900. }
  2901. .user-tk div .cart img{
  2902. width: 25px;
  2903. height: 15px;
  2904. }
  2905. /*账号切换 end*/
  2906. @-webkit-keyframes slideDown {
  2907. from {
  2908. -webkit-opacity:0;
  2909. -moz-opacity:0;
  2910. opacity:0;
  2911. -webkit-transform:translate3d(0,-20%,0);
  2912. -moz-transform:translate3d(0,-20%,0);
  2913. -ms-transform:translate3d(0,-20%,0);
  2914. -o-transform:translate3d(0,-20%,0);
  2915. transform:translate3d(0,-20%,0)
  2916. }
  2917. to {
  2918. -webkit-opacity:1;
  2919. -moz-opacity:1;
  2920. opacity:1;
  2921. -webkit-transform:translate3d(0,0,0);
  2922. -moz-transform:translate3d(0,0,0);
  2923. -ms-transform:translate3d(0,0,0);
  2924. -o-transform:translate3d(0,0,0);
  2925. transform:translate3d(0,0,0)
  2926. }
  2927. }
  2928. input:-webkit-autofill { box-shadow: 0 0 0 1000px white inset !important;}
  2929. .bule{
  2930. color: #3a89d1 !important;
  2931. }
  2932. #customer-tab .content{
  2933. width:930px;
  2934. }
  2935. .notice-dot{
  2936. position: relative;
  2937. }
  2938. .notice-dot em{
  2939. width: 8px;
  2940. height: 8px;
  2941. display: inline-block;
  2942. background: #d32526;
  2943. position: absolute;
  2944. right: 0;
  2945. top: 15px;
  2946. border-radius: 100%;
  2947. }
  2948. /*公共详情*/
  2949. .pub-com_head, .com_head {
  2950. width: 100%;
  2951. height: 35px;
  2952. line-height: 35px;
  2953. background: #3f84f6;
  2954. border-radius: 5px 5px 0 0 ;
  2955. /*background: url("../img/approvalFlow/comm_bg01.png") no-repeat left;*/
  2956. /*background-color: #f5f5f5;*/
  2957. /*background-size: 100% 100%;*/
  2958. }
  2959. .pub-com_head span, .com_head span{
  2960. margin-left: 10px;
  2961. color: #fff;
  2962. font-size: 14px;
  2963. font-weight: bold;
  2964. }
  2965. .pub-com_head .p-right{
  2966. float: right;
  2967. }
  2968. .pub-com_head .p-right a{
  2969. color: #fff !important ;
  2970. font-size: 14px;
  2971. margin-right: 20px;
  2972. }
  2973. .pub-com_head .p-right a img{
  2974. margin-right: 3px;
  2975. }
  2976. .pub-com_head .p-right a:hover{
  2977. text-decoration: underline;
  2978. }
  2979. .pub-com_head .p-right em{
  2980. font-style:normal;
  2981. font-size: 14px;
  2982. margin-right: 20px;
  2983. }
  2984. .pub-com_head .p-right time{
  2985. font-size: 14px;
  2986. margin-right: 20px;
  2987. }
  2988. .com_head span.fr em{
  2989. font-style:normal;
  2990. font-size: 14px;
  2991. margin-right: 20px;
  2992. }
  2993. .com_head span.fr time{
  2994. font-size: 14px;
  2995. margin-right: 20px;
  2996. }
  2997. .load_icon {
  2998. display:inline-block;
  2999. width:14px;
  3000. height:14px;
  3001. margin-left:10px;
  3002. vertical-align:middle;
  3003. background: url("../img/empty/load.png")no-repeat;
  3004. }
  3005. .way_icon {
  3006. display:inline-block;
  3007. width:20px;
  3008. height:14px;
  3009. margin-right:10px;
  3010. vertical-align:middle;
  3011. background: url("../img/empty/way.png")no-repeat;
  3012. }
  3013. #empty{
  3014. padding: 70px 0;
  3015. margin: 0 auto;
  3016. text-align: center;
  3017. }
  3018. #empty .left_img{
  3019. display:inline-block;
  3020. color:#3f84f6;
  3021. }
  3022. #empty .left_img a{
  3023. font-size: 25px;
  3024. color:#3f84f6;
  3025. }
  3026. #empty .left_img a img{}
  3027. #empty .left_img a:last-child:before{
  3028. content: '';
  3029. position:relative;
  3030. top:6px;
  3031. display:inline-block;
  3032. width:2px;
  3033. height:27px;
  3034. background: #3f84f6;
  3035. margin: 0 10px;
  3036. }
  3037. #empty .right_link{
  3038. display:inline-block;
  3039. vertical-align:top;
  3040. padding-left:10px;
  3041. text-align: left;
  3042. }
  3043. #empty .right_link p{
  3044. margin: 0;
  3045. font-size: 14px;
  3046. color:#666;
  3047. }
  3048. #empty .right_link a{
  3049. color:#3f84f6;
  3050. font-size: 14px;
  3051. }
  3052. #empty_info{
  3053. padding-left: 60px;
  3054. padding-bottom:40px;
  3055. }
  3056. #empty_info .empty_title{
  3057. color:#3f84f6;
  3058. font-size: 18px;
  3059. }
  3060. #empty_info .empty_explain{
  3061. font-size: 16px;
  3062. color:#999;
  3063. }
  3064. #empty_info .empty_explain .info{
  3065. text-indent: -22px;
  3066. }
  3067. .title-div {
  3068. font-size: 14px;
  3069. font-weight: 600;
  3070. padding-left: 20px !important;
  3071. height: 50px;
  3072. padding-top: 11px;
  3073. }
  3074. .com_title01,.title-div{
  3075. border-bottom: 1px dashed #3f84f6 !important;
  3076. }
  3077. #order-detail-list{
  3078. font-size: 14px;
  3079. }
  3080. #order-detail-list .row{
  3081. width: 96%;
  3082. margin: 0 auto;
  3083. line-height: 30px;
  3084. }
  3085. #order-detail-list .title{
  3086. font-weight: inherit;
  3087. }
  3088. #order-detail-list .content{
  3089. color: #323232;
  3090. }
  3091. #order-detail-list .order-kh{
  3092. white-space: nowrap;
  3093. word-wrap: break-word;
  3094. overflow: hidden;
  3095. text-overflow: ellipsis;
  3096. width: 85%;
  3097. }
  3098. #order-detail-list .table-default .header {
  3099. border: none;
  3100. background: none;
  3101. }
  3102. #order-detail-list .table-default .header th{
  3103. border-bottom: none;
  3104. font-weight: normal;
  3105. color: #999;
  3106. }
  3107. #order-detail-list .table-default tbody tr{
  3108. background: none;
  3109. }
  3110. #order-detail-list .table-default tbody tr td{
  3111. vertical-align: middle;
  3112. color: #323232;
  3113. }
  3114. #order-detail-list .table-default th,#order-detail-list .table-default td{
  3115. border-top: #ddd 1px dotted;
  3116. }
  3117. .scoroll{
  3118. max-height: 800px;
  3119. overflow-y: scroll;
  3120. overflow-x: hidden;
  3121. display: inline-block;
  3122. position: relative;
  3123. }
  3124. #order-detail-list .content-hide{
  3125. white-space: nowrap;
  3126. overflow: hidden;
  3127. text-overflow: ellipsis;
  3128. width: 560px;
  3129. }
  3130. .title-div .end {
  3131. position: absolute;
  3132. top: 10px;
  3133. right: 0;
  3134. line-height: 24px;
  3135. padding-left: 15px;
  3136. background: #fff;
  3137. z-index: 2;
  3138. }
  3139. /*#order-detail-list .text-inverse{
  3140. width: 100%;
  3141. display: inline-block;
  3142. }*/
  3143. /*弹框搜索*/
  3144. #window-search .form-control{
  3145. height: 36px;
  3146. line-height: 36px;
  3147. border: #3f84f6 1px solid;
  3148. border-radius: 0px;
  3149. font-size: 14px;
  3150. }
  3151. #window-search .input-group-addon{
  3152. width: 70px;
  3153. height: 36px;
  3154. display: inline-block;
  3155. background: #3f84f6;
  3156. font-size: 16px;
  3157. text-align: center;
  3158. line-height: 36px;
  3159. color: #fff !important;
  3160. padding: 0;
  3161. border: none;
  3162. border-radius: 0;
  3163. position: absolute;
  3164. top: 0;
  3165. right: 15px;
  3166. }
  3167. #order-detail-list .list-menu>li:before{
  3168. top: 15px;
  3169. }
  3170. .table-bordered{
  3171. border: none !important;
  3172. }
  3173. .order-table .header>th{
  3174. border-top: none !important;
  3175. }
  3176. .tender-table .header{
  3177. border-bottom: #e8e8e8 1px solid !important;
  3178. }
  3179. .blue{
  3180. color: #5078cb;
  3181. }
  3182. .red{
  3183. color: #f00;
  3184. }
  3185. /*不可以提交的时候背景为灰色*/
  3186. .dropdown-menu li td button{
  3187. border: none;
  3188. }
  3189. /*
  3190. 日期按钮高度*/
  3191. .btn-ht34{
  3192. height: 34px !important;
  3193. width: 34px !important;
  3194. border: #b7b7b7 1px solid !important;
  3195. }
  3196. /*所有hover边框颜色*/
  3197. .sale-view .order-table>tbody:hover{
  3198. border: #3f84f6 2px solid !important;
  3199. }
  3200. /*.sale-view .order-table>tbody:hover tr:first-child td{
  3201. border-top: #d32526 1px solid !important;
  3202. }*/
  3203. /*.sale-view .order-table>tbody{
  3204. border: #f00 2px solid !important;
  3205. }*/
  3206. .order-table>tbody{
  3207. border: none !important;
  3208. }
  3209. /*.order-bd{
  3210. border-bottom: none !important;
  3211. }*/
  3212. .btn-warning{
  3213. color: #5078cb;
  3214. background-color: #fff;
  3215. border-color: #5078cb;
  3216. }
  3217. .btn-warning:hover{
  3218. background: #3a89d1;
  3219. border-color: #5078cb;
  3220. }
  3221. .modal-header{
  3222. padding: 10px !important;
  3223. }
  3224. .modal-header h3{
  3225. font-size: 14px;
  3226. }
  3227. .modal-header h3 i{
  3228. display: none;
  3229. }
  3230. .modal-header h3 span{
  3231. font-size: 14px;
  3232. }
  3233. /*disabled*/
  3234. .many-file-btn button:disabled,
  3235. .bid-content>div>div.btn-bid>button:disabled,
  3236. .tender-content>div>div.btn-publish>button:disabled,
  3237. .tender-content>div>div.btn-save>button:disabled,
  3238. .per-data ul li button.save:disabled,
  3239. .purchase .save:disabled,
  3240. .modal-footer button:disabled{
  3241. background: #999 !important;
  3242. border: none !important;
  3243. }
  3244. .public-btn01{
  3245. border: 1px;
  3246. width: 94px !important;
  3247. height: 36px !important;
  3248. line-height: 36px !important;
  3249. font-size: 14px;
  3250. display: inline-block;
  3251. text-align: center;
  3252. padding: 0;
  3253. color: #fff;
  3254. background: #5078cb;
  3255. }
  3256. .public-btn01:disabled {
  3257. background: #999 !important;
  3258. }
  3259. input::-ms-clear{display:none;}
  3260. input::-webkit-clear{display:none;}
  3261. .modal-body .table-bordered{
  3262. border-top: #e8e8e8 1px solid !important;
  3263. }
  3264. /*ie修改*/
  3265. /*.tender-input01{
  3266. width: 150px !important;
  3267. }*/
  3268. .enterprise-btn{
  3269. position: relative;
  3270. }
  3271. .enterprise-btn div{
  3272. position: absolute;
  3273. top: 30px;
  3274. left: 48px;
  3275. }
  3276. .enterprise-btn div a{
  3277. text-align: center;
  3278. font-size: 14px;
  3279. width: 110px;
  3280. height: 30px;
  3281. line-height: 30px;
  3282. background: #ddb732;
  3283. display: inline-block;
  3284. color: #fff;
  3285. border-radius: 5px;
  3286. margin-top: 15px;
  3287. position: relative;
  3288. }
  3289. .enterprise-btn div a em{
  3290. width: 10px;
  3291. height: 10px;
  3292. display: inline-block;
  3293. background: #ea5a60;
  3294. position: absolute;
  3295. right: -5px;
  3296. border-radius: 100%;
  3297. top: -5px;
  3298. }
  3299. .enterprise-btn div a:hover{
  3300. text-decoration: none;
  3301. background: #f6c20d;
  3302. }
  3303. /*所有列表筛选改动样式*/
  3304. #topSearch a{
  3305. width: 88px;
  3306. height: 34px;
  3307. display: inline-block;
  3308. font-size: 14px;
  3309. text-align: center;
  3310. line-height: 34px;
  3311. margin-right: 5px;
  3312. }
  3313. #topSearch a:hover,#topSearch a.active{
  3314. background: #3f84f6;
  3315. color: #fff;
  3316. text-decoration: none;
  3317. }
  3318. .toggle p{
  3319. font-size: 14px;
  3320. line-height: 40px;
  3321. }
  3322. .toggle p em{
  3323. font-size: 14px;
  3324. color: #5078cb;
  3325. font-style: inherit;
  3326. }
  3327. .result{
  3328. width: 110px;
  3329. float: right;
  3330. }
  3331. .more-list{
  3332. margin-left: -15px;
  3333. }
  3334. .more-list .form-control{
  3335. border: #bfbfbf 1px solid;
  3336. }
  3337. .more-list .input-group-btn .btn{
  3338. border-color: #bfbfbf;
  3339. }
  3340. .btn-group button em{
  3341. font-style: inherit;
  3342. }
  3343. /*企业圈样式修改*/
  3344. .myReuest .add{
  3345. font-size: 16px;
  3346. color: #5078cb;
  3347. }
  3348. .myReuest .add img{
  3349. margin-right: 5px;
  3350. vertical-align: middle;
  3351. }
  3352. .myReuest{
  3353. padding-left: 0;
  3354. }
  3355. .myReuest p{
  3356. font-size: 14px;
  3357. line-height: 40px;
  3358. text-align: left;
  3359. }
  3360. .myReuest p em{
  3361. font-style: inherit;
  3362. color: #5078cb;
  3363. font-size: 14px;
  3364. }
  3365. .myReuest .col-xs-3{
  3366. text-align: right;
  3367. line-height: 40px;
  3368. }
  3369. .wid_1170{
  3370. /*margin-left: -240px;*/
  3371. width: 1170px;
  3372. }
  3373. .myReuest .col-xs-4{
  3374. padding-left: 0;
  3375. }
  3376. /*
  3377. #myquest-public .block{
  3378. background: none;
  3379. }*/
  3380. #myquest-public .group-container{
  3381. width: 100%;
  3382. }
  3383. #myquest-public table>tbody:last-child{
  3384. border-bottom: none !important;
  3385. }
  3386. #myquest-public table{
  3387. margin-bottom: 0;
  3388. }
  3389. #myquest-public .group-container .btn-group {
  3390. width: 160px;
  3391. border: none;
  3392. height: 45px;
  3393. }
  3394. #myquest-public .group-container .btn-group .btn {
  3395. border: none;
  3396. font-size: 16px;
  3397. }
  3398. #myquest-public .group-container .btn-group .btn em {
  3399. color: #d32526;
  3400. font-style: inherit;
  3401. }
  3402. #myquest-public .group-container .btn-group .btn:hover {
  3403. background: #fff;
  3404. color: #d32526;
  3405. }
  3406. #myquest-public .group-container .btn-group .btn-info {
  3407. color: #d32526;
  3408. background: #fff;
  3409. border: none;
  3410. }
  3411. #myquest-public .margin-bot{
  3412. margin-bottom: 10px;
  3413. }
  3414. #myquest-public .group-container{
  3415. /*height: 45px;*/
  3416. padding: 0;
  3417. background: #fff;
  3418. }
  3419. #myquest-public #public .search-bg .input-group-addon{
  3420. width: 85px;
  3421. }
  3422. #myquest-public .customer-tab .customer-hd:first-child{
  3423. background: #fff;
  3424. font-size: 16px;
  3425. height: 40px;
  3426. line-height: 40px;
  3427. border-bottom: #ddd 1px solid;
  3428. }
  3429. #myquest-public .customer-tab .customer-hd span{
  3430. font-size: 16px;
  3431. margin-left: 35px;
  3432. }
  3433. .text-left{
  3434. text-align: left !important;
  3435. }
  3436. #myquest-public .customer-tab .customer-bd{
  3437. background: #fff;
  3438. line-height: 50px;
  3439. position: relative;
  3440. }
  3441. #myquest-public .customer-tab tbody{
  3442. border-bottom: #f5f5f5 16px solid;
  3443. }
  3444. #myquest-public .customer-tab .customer-bd.first {
  3445. line-height: 25px;
  3446. font-size: 14px;
  3447. padding-top: 10px;
  3448. padding-bottom: 10px;
  3449. }
  3450. #myquest-public .customer-tab .customer-bd td{
  3451. text-align: left;
  3452. }
  3453. #myquest-public .customer-tab .customer-bd div{
  3454. margin-left: 20px;
  3455. line-height: 30px;
  3456. }
  3457. #myquest-public .customer-tab .customer-bd div span{
  3458. font-size: 14px;
  3459. }
  3460. #myquest-public .customer-tab thead{
  3461. display: none;
  3462. }
  3463. #myquest-public .all-btn a{
  3464. width: 80px;
  3465. height: 24px;
  3466. line-height: 22px;
  3467. border-radius: 4px;
  3468. text-align: center;
  3469. color: #3f84f6;
  3470. font-size: 14px;
  3471. display: inline-block;
  3472. margin: 0 auto;
  3473. margin-left: 10px;
  3474. border: #3f84f6 1px solid;
  3475. }
  3476. #myquest-public .all-btn a.btn01{
  3477. /* background: #27b6da;*/
  3478. margin-bottom: 5px;
  3479. }
  3480. #myquest-public .all-btn a.btn02{
  3481. /*background: #3f84f6;*/
  3482. border: #27b6da 1px solid;
  3483. color: #27b6da;
  3484. }
  3485. #myquest-public .all-btn a:hover{
  3486. background: #5078cb;
  3487. color: #fff;
  3488. }
  3489. .sreach-index{
  3490. background: #f5f5f5;
  3491. text-align: center;
  3492. width: 1170px;
  3493. /*margin-left: -240px;*/
  3494. }
  3495. .sreach-index .form-control{
  3496. height: 36px;
  3497. line-height: 36px;
  3498. border: #3f84f6 1px solid;
  3499. border-radius: 0px;
  3500. font-size: 14px;
  3501. text-align: center;
  3502. padding-right: 85px;
  3503. }
  3504. .sreach-index .row:first-child{
  3505. margin-top: 15%;
  3506. margin-bottom: 35px;
  3507. }
  3508. .sreach-index .serach-btn{
  3509. width: 85px;
  3510. height: 36px;
  3511. display: inline-block;
  3512. background: #3f84f6;
  3513. font-size: 16px;
  3514. text-align: center;
  3515. line-height: 36px;
  3516. color: #fff;
  3517. padding: 0;
  3518. border: none;
  3519. border-radius: 0;
  3520. position: absolute;
  3521. top: 0;
  3522. right: 0;
  3523. }
  3524. .new-dot{
  3525. width: 10px;
  3526. height: 10px;
  3527. display: inline-block;
  3528. background: #ea5a60;
  3529. position: absolute;
  3530. border-radius: 100%;
  3531. top: 15px;
  3532. }
  3533. .left-nav>ul>li.active .new-dot,.left-nav>ul>li:hover .new-dot{
  3534. background: #3f84f6 !important;
  3535. }
  3536. .left-nav>ul>li a{
  3537. position: relative;
  3538. }
  3539. .left-nav>ul>li .new-dot{
  3540. left: 22px;
  3541. }
  3542. .view-slide-in .tab-active{
  3543. /*border-bottom: 1px solid #d32526 !important;*/
  3544. height: 45px;
  3545. }
  3546. .view-slide-in .tab-active .btn-group .btn-info{
  3547. border-bottom: 2px solid #d32526 !important;
  3548. border-radius: 0 !important;
  3549. }
  3550. .no-record{
  3551. text-align: center;
  3552. color: #666;
  3553. border-top: #e8e8e8 1px dotted;
  3554. line-height: 40px;
  3555. border-bottom: #e8e8e8 1px dotted;
  3556. }
  3557. .tab-first{
  3558. width: 100%;
  3559. background: #f5f5f5;
  3560. height: 45px;
  3561. margin-bottom: 15px;
  3562. }
  3563. .tab-first .row{
  3564. margin: 0;
  3565. }
  3566. .tab-first .row a{
  3567. width: 180px;
  3568. display: inline-block;
  3569. height: 45px;
  3570. line-height: 45px;
  3571. text-align: center;
  3572. font-size: 18px;
  3573. float: left;
  3574. background: #eaeaea;
  3575. border-top-right-radius: 10px;
  3576. border-top-left-radius: 10px;
  3577. margin-right: 5px;
  3578. }
  3579. .tab-first .row a.active{
  3580. background: #fff;
  3581. border:#e8e8e8 1px solid;
  3582. border-bottom: #fff 1px solid;
  3583. }
  3584. #myquest-public .group-container .btn-group .btn,#myrequest-btn .btn-group .btn{
  3585. width: 80px;
  3586. text-align: center;
  3587. height: 45px;
  3588. line-height: 45px;
  3589. padding: 0;
  3590. margin-left: 26%;
  3591. }
  3592. #myquest-public .group-container .btn-group .style-btn, #myrequest-btn .btn-group .style-btn{
  3593. width: 150px;
  3594. text-align: center;
  3595. height: 45px;
  3596. line-height: 45px;
  3597. padding: 0;
  3598. margin-left: 20%;
  3599. }
  3600. #myquest-public .group-container .btn-group .btn.btn-info,#myrequest-btn .btn-group .btn.btn-info{
  3601. border-bottom: #d32526 2px solid !important;
  3602. border-radius: 0 !important;
  3603. }
  3604. #myquest-public .group-container .btn-group,.view-slide-in #myrequest-btn .btn-group{
  3605. width: 190px !important;
  3606. }
  3607. .order-table .product .text-muted{
  3608. word-break: break-all;
  3609. }
  3610. /*hover移上去2px 2017-05-09*/
  3611. .tender-list02 .comment-oder:hover,.tender-list dl dd:hover{
  3612. border: #3f84f6 2px solid !important;
  3613. }
  3614. /*2017-05-10*/
  3615. .unPrinted{
  3616. color: #5078cb !important;
  3617. }
  3618. .textmore{display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
  3619. #order-detail-list .table-default .header{
  3620. box-shadow: none;
  3621. }
  3622. input[required]:invalid, input:focus:invalid, textarea[required]:invalid, textarea:focus:invalid{
  3623. -moz-box-shadow: none;
  3624. }
  3625. .search-title{
  3626. font-size: 14px;
  3627. line-height: 90px;
  3628. font-weight: bold;
  3629. margin:0 30px 0 5px;
  3630. }
  3631. .result-title{
  3632. font-size: 14px;
  3633. line-height: 90px;
  3634. text-align: left;
  3635. }
  3636. .result-title em{
  3637. color: #5078cb;
  3638. font-size: 14px;
  3639. }
  3640. .pro-search .search {
  3641. margin-top: 26px !important;
  3642. }
  3643. /*统一弹出框背景透明度*/
  3644. .bomb-box{
  3645. background: rgba(0,0,0,.5) !important;
  3646. }
  3647. .purchase .com_title01 a{
  3648. font-size: 14px;
  3649. }
  3650. .tender-content .tender-list02 dl dd:hover{
  3651. border: #3f84f6 2px solid;
  3652. }
  3653. .no-record-tab{
  3654. background: #fff;
  3655. text-align: center;
  3656. }
  3657. .right tbody.no-record-tab{
  3658. border-bottom: 0 !important;
  3659. }
  3660. .no-record-tab tr{
  3661. height: 165px !important;
  3662. }
  3663. .no-record-tab tr td{
  3664. vertical-align: middle !important;
  3665. }
  3666. .no-record-tab tr td h3{
  3667. margin: 0;
  3668. }
  3669. .no-record-tab tr td h3 img{
  3670. vertical-align: sub;
  3671. margin-right: 10px;
  3672. }
  3673. /*开关按钮*/
  3674. .checkbox{
  3675. width:54px;
  3676. margin:0px auto;
  3677. text-align: center;
  3678. }
  3679. .checkbox span{
  3680. width:54px;
  3681. height: 26px;
  3682. display: inline-block;
  3683. border-radius: 18px;
  3684. border: #e4e4e4 1px solid;
  3685. background-color: #fff;
  3686. cursor: pointer;
  3687. position: relative;
  3688. box-shadow: 1px 1px 5px #eee;
  3689. transition: background-color .1s ease-out;
  3690. }
  3691. .checkbox span:after{
  3692. content: "";
  3693. position: absolute;
  3694. width:22px;
  3695. top:1px;
  3696. left:0;
  3697. height: 22px;
  3698. line-height: 22px;
  3699. background-color: #fff;
  3700. border:#eee 1px solid;
  3701. border-radius: 50%;
  3702. box-shadow: -1px 2px 1px #999;
  3703. transition: background-color .1s ease-out;
  3704. color: #666;
  3705. font-size: 12px;
  3706. }
  3707. .checkbox span.off{
  3708. background-color: #4bd562;
  3709. transition: background-color .1s ease-in;
  3710. border: #4bd562 1px solid;
  3711. }
  3712. .checkbox span.off:after{
  3713. content: "";
  3714. left: 29px;
  3715. transition: left .1s ease-in;
  3716. box-shadow: 1px 1px -1px #ccc;
  3717. }
  3718. .switch .checkbox{
  3719. padding-top: 6px;
  3720. }
  3721. .switch{
  3722. padding-left: 48px;
  3723. line-height: 35px;
  3724. }
  3725. .switch span:first-child{
  3726. font-size: 14px;
  3727. }
  3728. #myquest-public .customer-tab .customer-hd .checkbox span{
  3729. /*margin-top: 5px;*/
  3730. }
  3731. /*加入标准与非标标志*/
  3732. .order-hd td.hover-show{
  3733. position: relative;
  3734. padding: 0 !important;
  3735. }
  3736. .hover-show a{
  3737. width: 100%;
  3738. padding: 0;
  3739. padding-right: 30px;
  3740. display: inline-block;
  3741. }
  3742. .hover-show.bg01{
  3743. background: url(../img/icon/standard.png) no-repeat top right;
  3744. background-position-y: -1px;
  3745. }
  3746. .hover-show.bg02{
  3747. background: url(../img/icon/no-standard.png) no-repeat top right;
  3748. background-position-y: -1px;
  3749. }
  3750. /*分页样式统一调整*/
  3751. .ng-table-pager{
  3752. height: auto;
  3753. padding: 25px 0;
  3754. background: #fff;
  3755. }
  3756. .ng-table-pager .pagination{
  3757. height: 40px;
  3758. margin-top: 10px;
  3759. }
  3760. .ng-table-pager .btn-default.active,.ng-table-pager .btn-default:hover,.ng-table-pager .pagination>.disabled>a,.ng-table-pager .pagination>li>a:hover{
  3761. color: #fff;
  3762. background-color: #3f84f6;
  3763. border-color: #3f84f6;
  3764. }
  3765. .ng-table-pager .pagination>.disabled>a{
  3766. box-shadow: none;
  3767. }
  3768. .ng-table-pager .pagination>li>a, .ng-table-pager .pagination>li>span{
  3769. font-size: 12px;
  3770. color: #333;
  3771. padding: 5px 10px;
  3772. }
  3773. .ng-table-pager .pagination>li:first-child.disabled>a,.ng-table-pager .pagination>li:nth-last-child(2).disabled>a{
  3774. color: #333;
  3775. background-color: #fff;
  3776. border: 1px solid #ddd;
  3777. }
  3778. .ng-table-pager .pagination>li:first-child a{
  3779. border-bottom-left-radius: 20px;
  3780. border-top-left-radius: 20px;
  3781. }
  3782. .ng-table-pager .pagination>li:nth-last-child(2) a{
  3783. border-bottom-right-radius: 20px;
  3784. border-top-right-radius: 20px;
  3785. }
  3786. .ng-table-pager .pagination>li.disabled>a[ng-switch-when="more"]{
  3787. color: #333;
  3788. background-color: #fff;
  3789. border: 1px solid #ddd;
  3790. }
  3791. /*
  3792. 服务修改*/
  3793. /*.dropdown-tab{
  3794. display: inline-block !important;
  3795. }*/
  3796. .dropdown-tab .content{
  3797. width: 1170px;
  3798. margin: 0 auto;
  3799. }
  3800. .dropdown-tab .heed-tab{
  3801. width: 100%;
  3802. height: 45px;
  3803. line-height: 45px;
  3804. border-bottom: #cfcfcf 1px solid;
  3805. }
  3806. .dropdown-tab .heed-tab ul{
  3807. width: 100%;
  3808. height: 100%;
  3809. -webkit-padding-start: 0;
  3810. }
  3811. .dropdown-tab .heed-tab ul li{
  3812. width: 116px;
  3813. float: left;
  3814. height: 45px;
  3815. text-align: center;
  3816. }
  3817. .dropdown-tab .heed-tab ul li a{
  3818. display: inline-block;
  3819. width: 100%;
  3820. height: 100%;
  3821. font-size: 16px;
  3822. position: relative;
  3823. }
  3824. .dropdown-tab .heed-tab ul li a:after{
  3825. content: '';
  3826. position: absolute;
  3827. width: 1px;
  3828. height: 17px;
  3829. top: 16px;
  3830. right: 0;
  3831. display: inline-block;
  3832. background: #999999;
  3833. }
  3834. .dropdown-tab .heed-tab ul li:last-child a:after{
  3835. background: none;
  3836. }
  3837. .dropdown-tab .heed-tab ul li a em{
  3838. display: inline-block;
  3839. width: 20px;
  3840. height: 20px;
  3841. margin-right: 8px;
  3842. position: relative;
  3843. top: 4px;
  3844. }
  3845. .dropdown-tab .heed-tab ul li a:hover{
  3846. text-decoration: none;
  3847. color: #d8271c;
  3848. }
  3849. .dropdown-tab .heed-tab ul li a:hover{
  3850. cursor: pointer;
  3851. }
  3852. .dropdown-tab .heed-tab ul li a em.list01{
  3853. background: url("../img/icon/list01.png") no-repeat center;
  3854. }
  3855. .dropdown-tab .heed-tab ul li a em.list02{
  3856. background: url("../img/icon/list02.png") no-repeat center;
  3857. }
  3858. .dropdown-tab .heed-tab ul li a em.list03{
  3859. background: url("../img/icon/list03.png") no-repeat center;
  3860. }
  3861. .dropdown-tab .heed-tab ul li a em.list04{
  3862. background: url("../img/icon/list04.png") no-repeat center;
  3863. }
  3864. .dropdown-tab .heed-tab ul li.active a{
  3865. color: #d8271c;
  3866. }
  3867. .dropdown-tab .heed-tab ul li.active a em.list01,.dropdown-tab .heed-tab ul li:hover a em.list01{
  3868. background: url("../img/icon/list01-act.png") no-repeat center;
  3869. }
  3870. .dropdown-tab .heed-tab ul li.active a em.list02,.dropdown-tab .heed-tab ul li:hover a em.list02{
  3871. background: url("../img/icon/list02-act.png") no-repeat center;
  3872. }
  3873. .dropdown-tab .heed-tab ul li.active a em.list03,.dropdown-tab .heed-tab ul li:hover a em.list03{
  3874. background: url("../img/icon/list03-act.png") no-repeat center;
  3875. }
  3876. .dropdown-tab .heed-tab ul li.active a em.list04,.dropdown-tab .heed-tab ul li:hover a em.list04{
  3877. background: url("../img/icon/list04-act.png") no-repeat center;
  3878. }
  3879. .tab-list{
  3880. width: 100%;
  3881. margin: 0 auto;
  3882. padding: 30px 0;
  3883. }
  3884. .tab-list .tab{
  3885. display: none;
  3886. }
  3887. /*销售tab*/
  3888. .tab-list .tab01{
  3889. width: 1170px;
  3890. height: 426px;
  3891. background: url("../img/icon/list-bg01.png") no-repeat center;
  3892. }
  3893. .tab-list .tab a[href='']{
  3894. cursor: default !important;
  3895. background: inherit !important;
  3896. }
  3897. .tab-list .tab01 div{
  3898. float: left;
  3899. }
  3900. .tab-list .tab01 .line01{
  3901. width: 70px;
  3902. height: 426px;
  3903. margin-left: 35px;
  3904. }
  3905. .tab-list .tab01 .line01 a{
  3906. width: 70px;
  3907. height: 70px;
  3908. padding: 16px 0;
  3909. border-radius: 100%;
  3910. }
  3911. .tab-list .tab01 a{
  3912. font-size: 14px;
  3913. color: #fff;
  3914. text-align: center;
  3915. display: inline-block;
  3916. border-radius: 5px;
  3917. /*background: #f47a86;*/
  3918. }
  3919. .tab-list .tab01 a:hover{
  3920. text-decoration: none;
  3921. background: #f47a86;
  3922. }
  3923. .tab-list .tab01 a.a01{
  3924. margin-top: 57px;
  3925. }
  3926. .tab-list .tab01 a.a02{
  3927. margin-top: 228px;
  3928. }
  3929. .tab-list .tab01 .line02{
  3930. width: 98px;
  3931. height: 426px;
  3932. margin-left: 75px;
  3933. }
  3934. .tab-list .tab01 .line02 a,.tab-list .tab01 .line03 a,.tab-list .tab01 .line04 a,.tab-list .tab01 .line05 a,.tab-list .tab01 .line06 a,.tab-list .tab01 .line07 a{
  3935. width: 98px;
  3936. height: 26px;
  3937. line-height: 26px;
  3938. }
  3939. .tab-list .tab01 a.a03{
  3940. margin-top: 0;
  3941. }
  3942. .tab-list .tab01 a.a04{
  3943. margin-top: 54px;
  3944. }
  3945. .tab-list .tab01 a.a05{
  3946. margin-top: 142px;
  3947. }
  3948. .tab-list .tab01 a.a06{
  3949. margin-top: 100px;
  3950. margin-left: 2px;
  3951. }
  3952. .tab-list .tab01 .line03{
  3953. width: 98px;
  3954. height: 426px;
  3955. margin-left: 73px;
  3956. }
  3957. .tab-list .tab01 a.a07{
  3958. margin-top: 44px;
  3959. }
  3960. .tab-list .tab01 a.a08{
  3961. margin-top: 43px;
  3962. height: 42px;
  3963. line-height: inherit;
  3964. }
  3965. .tab-list .tab01 a.a09{
  3966. margin-top: 92px;
  3967. }
  3968. .tab-list .tab01 a.a10{
  3969. margin-top: 99px;
  3970. position: relative;
  3971. left: -2px;
  3972. }
  3973. .tab-list .tab01 .line04{
  3974. width: 98px;
  3975. height: 426px;
  3976. margin-left: 68px;
  3977. }
  3978. .tab-list .tab01 a.a11{
  3979. margin-top: 81px;
  3980. }
  3981. .tab-list .tab01 a.a12{
  3982. margin-top: 58px;
  3983. }
  3984. .tab-list .tab01 a.a13{
  3985. margin-top: 58px;
  3986. }
  3987. .tab-list .tab01 .line05{
  3988. width: 98px;
  3989. height: 426px;
  3990. margin-left: 74px;
  3991. }
  3992. .tab-list .tab01 a.a14{
  3993. margin-top: 36px;
  3994. height: 42px;
  3995. line-height: inherit;
  3996. }
  3997. .tab-list .tab01 a.a15{
  3998. margin-top: 43px;
  3999. }
  4000. .tab-list .tab01 a.a16{
  4001. margin-top: 52px;
  4002. }
  4003. .tab-list .tab01 .line06{
  4004. width: 98px;
  4005. height: 426px;
  4006. margin-left: 69px;
  4007. }
  4008. .tab-list .tab01 a.a17{
  4009. margin-top: 122px;
  4010. }
  4011. .tab-list .tab01 .line07{
  4012. width: 98px;
  4013. height: 426px;
  4014. margin-left: 74px;
  4015. }
  4016. .tab-list .tab01 a.a18{
  4017. margin-top: 44px;
  4018. }
  4019. .tab-list .tab01 a.a19{
  4020. margin-top: 53px;
  4021. }
  4022. .tab-list .tab01 a.a20{
  4023. margin-top: 52px;
  4024. }
  4025. /*采购tab*/
  4026. .tab-list .tab02{
  4027. width: 928px;
  4028. height: 196px;
  4029. background: url("../img/icon/list-bg02.png") no-repeat left;
  4030. margin-left: 20px;
  4031. margin-top: 50px;
  4032. margin-bottom: 40px;
  4033. }
  4034. .tab-list .tab02 div{
  4035. float: left;
  4036. }
  4037. .tab-list .tab02 .line01{
  4038. width: 70px;
  4039. height: 196px;
  4040. margin-left: 1px;
  4041. }
  4042. .tab-list .tab02 .line01 a{
  4043. width: 70px;
  4044. height: 70px;
  4045. padding: 16px 0;
  4046. border-radius: 100%;
  4047. }
  4048. .tab-list .tab02 a{
  4049. font-size: 14px;
  4050. color: #fff;
  4051. text-align: center;
  4052. display: inline-block;
  4053. border-radius: 5px;
  4054. /*background: #f47a86;*/
  4055. }
  4056. .tab-list .tab02 a:hover{
  4057. text-decoration: none;
  4058. background: #f47a86;
  4059. }
  4060. .tab-list .tab02 a.a01{
  4061. margin-top: 14px;
  4062. }
  4063. .tab-list .tab02 .line02 a,.tab-list .tab02 .line03 a,.tab-list .tab02 .line04 a,.tab-list .tab02 .line05 a,.tab-list .tab02 .line06 a{
  4064. width: 98px;
  4065. height: 26px;
  4066. line-height: 26px;
  4067. }
  4068. .tab-list .tab02 .line02{
  4069. width: 98px;
  4070. height: 196px;
  4071. margin-left: 75px;
  4072. }
  4073. .tab-list .tab02 a.a02{
  4074. margin-top: 0;
  4075. }
  4076. .tab-list .tab02 a.a03{
  4077. margin-top: 56px;
  4078. }
  4079. .tab-list .tab02 a.a12{
  4080. margin-top: 62px;
  4081. }
  4082. .tab-list .tab02 .line03{
  4083. width: 98px;
  4084. height: 196px;
  4085. margin-left: 72px;
  4086. }
  4087. .tab-list .tab02 a.a04{
  4088. margin-top: 0;
  4089. }
  4090. .tab-list .tab02 a.a05{
  4091. margin-top: 55px;
  4092. }
  4093. .tab-list .tab02 .line04{
  4094. width: 98px;
  4095. height: 196px;
  4096. margin-left: 70px;
  4097. }
  4098. .tab-list .tab02 a.a06{
  4099. margin-top: 0;
  4100. }
  4101. .tab-list .tab02 a.a07{
  4102. margin-top: 56px;
  4103. }
  4104. .tab-list .tab02 a.a08{
  4105. margin-top: 62px;
  4106. }
  4107. .tab-list .tab02 .line05{
  4108. width: 98px;
  4109. height: 196px;
  4110. margin-left: 74px;
  4111. }
  4112. .tab-list .tab02 a.a09{
  4113. margin-top: 82px;
  4114. }
  4115. .tab-list .tab02 .line06{
  4116. width: 98px;
  4117. height: 196px;
  4118. margin-left: 76px;
  4119. }
  4120. .tab-list .tab02 a.a10{
  4121. margin-top: 43px;
  4122. }
  4123. .tab-list .tab02 a.a11{
  4124. margin-top: 54px;
  4125. }
  4126. /*企业圈tab*/
  4127. .tab-list .tab03{
  4128. width: 928px;
  4129. height: 109px;
  4130. background: url("../img/icon/list-bg03.png") no-repeat left;
  4131. margin-left: 20px;
  4132. margin-top: 50px;
  4133. margin-bottom: 40px;
  4134. }
  4135. .tab-list .tab03 div{
  4136. float: left;
  4137. }
  4138. .tab-list .tab03 .line01{
  4139. width: 70px;
  4140. height: 109px;
  4141. margin-left: 1px;
  4142. }
  4143. .tab-list .tab03 .line01 a{
  4144. width: 70px;
  4145. height: 70px;
  4146. padding: 15px 0;
  4147. border-radius: 100%;
  4148. }
  4149. .tab-list .tab03 a{
  4150. font-size: 14px;
  4151. color: #fff;
  4152. text-align: center;
  4153. display: inline-block;
  4154. border-radius: 5px;
  4155. /*background: #f47a86;*/
  4156. }
  4157. .tab-list .tab03 a:hover{
  4158. text-decoration: none;
  4159. background: #f47a86;
  4160. }
  4161. .tab-list .tab03 a.a01{
  4162. margin-top: 17px;
  4163. }
  4164. .tab-list .tab03 .line02 a,.tab-list .tab03 .line03 a,.tab-list .tab03 .line04 a{
  4165. width: 98px;
  4166. height: 26px;
  4167. line-height: 26px;
  4168. }
  4169. .tab-list .tab03 .line02{
  4170. width: 98px;
  4171. height: 109px;
  4172. margin-left: 63px;
  4173. }
  4174. .tab-list .tab03 a.a02{
  4175. margin-top: 39px;
  4176. }
  4177. .tab-list .tab03 .line03{
  4178. width: 98px;
  4179. height: 109px;
  4180. margin-left: 81px;
  4181. }
  4182. .tab-list .tab03 a.a03{
  4183. margin-top: 0;
  4184. }
  4185. .tab-list .tab03 a.a04{
  4186. margin-top: 56px;
  4187. }
  4188. /*财务tab*/
  4189. .tab-list .tab04{
  4190. width: 1170px;
  4191. height: 245px;
  4192. background: url("../img/icon/list-bg04.png") no-repeat left;
  4193. margin-top: 40px;
  4194. margin-bottom: 40px;
  4195. }
  4196. .tab-list .tab04 div{
  4197. float: left;
  4198. }
  4199. .tab-list .tab04 .line01{
  4200. width: 70px;
  4201. height: 245px;
  4202. margin-left: 44px;
  4203. }
  4204. .tab-list .tab04 .line01 a{
  4205. width: 70px;
  4206. height: 70px;
  4207. line-height: 70px;
  4208. border-radius: 100%;
  4209. }
  4210. .tab-list .tab04 a{
  4211. font-size: 14px;
  4212. color: #fff;
  4213. text-align: center;
  4214. display: inline-block;
  4215. border-radius: 5px;
  4216. /*background: #f47a86;*/
  4217. }
  4218. .tab-list .tab04 a:hover{
  4219. text-decoration: none;
  4220. background: #f47a86;
  4221. }
  4222. .tab-list .tab04 a.a01{
  4223. margin-top: 0;
  4224. }
  4225. .tab-list .tab04 a.a02{
  4226. margin-top: 104px;
  4227. }
  4228. .tab-list .tab04 .line02 a,.tab-list .tab04 .line03 a,.tab-list .tab04 .line04 a{
  4229. width: 98px;
  4230. height: 26px;
  4231. line-height: 26px;
  4232. }
  4233. .tab-list .tab04 .line02{
  4234. width: 98px;
  4235. height: 254px;
  4236. margin-left: 75px;
  4237. }
  4238. .tab-list .tab04 a.a03{
  4239. margin-top: 24px;
  4240. }
  4241. .tab-list .tab04 a.a04{
  4242. margin-top: 148px;
  4243. }
  4244. .tab-list .tab04 .line03{
  4245. width: 98px;
  4246. height: 254px;
  4247. margin-left: 72px;
  4248. }
  4249. .tab-list .tab04 a.a05{
  4250. margin-top: 24px;
  4251. }
  4252. .tab-list .tab04 a.a06{
  4253. margin-top: 148px;
  4254. }
  4255. /*分页修改*/
  4256. .ng-table-pager{
  4257. }
  4258. .ng-table-pager .pagination>.disabled>a{
  4259. box-shadow: none;
  4260. }
  4261. .ng-table-pager .pagination>li{
  4262. float: left;
  4263. }
  4264. .ng-table-pager .pagination>li a{
  4265. margin: 0 1px;
  4266. box-shadow:0 0 3px #ccc inset;
  4267. }
  4268. .ng-table-pager .pagination>li .page-record{
  4269. }
  4270. .ng-table-pager .pagination>li .page-record span{
  4271. font-size: 12px;
  4272. margin: 0 12px;
  4273. }
  4274. .ng-table-pager .pagination>li .page-record span input{
  4275. width: 40px;
  4276. height: 25px;
  4277. border: #b8b8b8 1px solid;
  4278. margin: 0 5px;
  4279. text-align: center;
  4280. }
  4281. .ng-table-pager .pagination>li .page-record span button{
  4282. width: 48px;
  4283. height: 26px;
  4284. text-align: center;
  4285. color: #fff;
  4286. background: #3f84f6;
  4287. border: none;
  4288. border-radius: 5px;
  4289. margin: 0 5px;
  4290. }
  4291. .ng-table-pager .ng-table-counts{
  4292. display: none;
  4293. }
  4294. .ng-table-pager .pagination>li:first-child.disabled>a{
  4295. box-shadow:0 0 3px #ccc inset;
  4296. }
  4297. .ng-table-pager .pagination>li.disabled>a[ng-switch-when="more"]{
  4298. border: none;
  4299. }
  4300. .pagination>li>a, .pagination>li>span{
  4301. border: #ccc 1px solid;
  4302. }
  4303. .ng-table-pager .pagination>li button[disabled]{
  4304. cursor: not-allowed;
  4305. }
  4306. /*企业圈新修改*/
  4307. #myquest-public{
  4308. position: relative;
  4309. }
  4310. .com-tab-menu{
  4311. margin-top: 18px;
  4312. }
  4313. .com-tab-menu ul{
  4314. width: 100%;
  4315. margin: 0 auto;
  4316. }
  4317. .com-tab-menu ul li{
  4318. float: left;
  4319. height: 30px;
  4320. list-style: none;
  4321. position: relative;
  4322. padding: 0 10px;
  4323. }
  4324. .com-tab-menu ul li.no-after:after{
  4325. display: none;
  4326. }
  4327. .com-tab-menu ul li:first-child{
  4328. padding-left: 0;
  4329. }
  4330. .com-tab-menu ul li:after{
  4331. content: '';
  4332. position: absolute;
  4333. width: 1px;
  4334. height: 16px;
  4335. top: 8px;
  4336. right: 0;
  4337. display: inline-block;
  4338. background: #999999;
  4339. }
  4340. .com-tab-menu ul li:last-child:after{
  4341. display: none;
  4342. }
  4343. .com-tab-menu ul li a{
  4344. width: 100%;
  4345. height: 100%;
  4346. display: inline-block;
  4347. font-size: 16px;
  4348. line-height: 30px;
  4349. padding: 0 10px;
  4350. }
  4351. .com-tab-menu ul.distance li{
  4352. padding: 0px 7px;
  4353. }
  4354. .com-tab-menu ul.distance li a{
  4355. padding: 0;
  4356. }
  4357. .com-tab-menu ul li a.add-btn{
  4358. width: auto;
  4359. height: 24px;
  4360. line-height: 22px;
  4361. border: #3f84f6 1px solid;
  4362. border-radius: 5px;
  4363. color: #3f84f6;
  4364. font-size: 14px;
  4365. text-align: center;
  4366. padding: 0 2px;
  4367. margin-top: 4px;
  4368. }
  4369. .com-tab-menu ul li a.add-btn:hover,.com-tab-menu ul li a.add-btn.active{
  4370. background:#3f84f6;
  4371. color: #fff;
  4372. border-bottom: none !important;
  4373. }
  4374. .com-tab-menu ul li a.active{
  4375. border-bottom: #d32526 2px solid!important;
  4376. color:#d32526 ;
  4377. }
  4378. .form-input .form-group-sm .form-control{
  4379. height: 36px;
  4380. line-height: 36px;
  4381. border: #3f84f6 1px solid;
  4382. border-radius: 0px;
  4383. font-size: 14px;
  4384. }
  4385. .form-input.search-bg .input-group-addon {
  4386. width: 85px;
  4387. height: 36px;
  4388. display: inline-block;
  4389. background: #3f84f6;
  4390. font-size: 16px;
  4391. text-align: center;
  4392. line-height: 36px;
  4393. color: #fff;
  4394. padding: 0;
  4395. border: none;
  4396. border-radius: 0;
  4397. position: absolute;
  4398. top: 0;
  4399. right: 0;
  4400. }
  4401. .form-input.search-bg{
  4402. margin-top: 20px;
  4403. margin-bottom: 15px;
  4404. }
  4405. .filter-list{
  4406. height: 30px;
  4407. }
  4408. .filter-list span{
  4409. color: #999;
  4410. }
  4411. .filter-list .input-select{
  4412. width: 110px;
  4413. }
  4414. .text-icon{
  4415. display: inline-block;
  4416. padding: 2px 20px;
  4417. font-size: 14px;
  4418. transform: rotate(-10deg);
  4419. border-radius: 5px;
  4420. white-space: nowrap;
  4421. text-align: center;
  4422. color: #e07b7c;
  4423. border: #e07b7c 1px solid;
  4424. position: relative;
  4425. line-height: inherit !important;
  4426. position: absolute;
  4427. right: 200px;
  4428. }
  4429. .form-input .col-xs-3{
  4430. font-size: 14px;
  4431. }
  4432. .form-input .col-xs-3 p{
  4433. margin: 0;
  4434. line-height: 38px;
  4435. }
  4436. .form-input .col-xs-3 p em{
  4437. font-size: 14px;
  4438. color: #3f84f6;
  4439. font-style: inherit;
  4440. margin: 0 2px;
  4441. }
  4442. #myquest-public{
  4443. border: #e8e8e8 1px solid;
  4444. border-top: none;
  4445. }
  4446. .tab-first{
  4447. position: relative;
  4448. }
  4449. .tab-first .row{
  4450. border-bottom: #e8e8e8 1px solid;
  4451. height: 45px;
  4452. }
  4453. .tab-first .row:before{
  4454. content: '';
  4455. position: absolute;
  4456. display: inline-block;
  4457. height: 45px;
  4458. width: 1px;
  4459. background: #f5f5f5;
  4460. left: -1px;
  4461. top: 0;
  4462. }
  4463. .tab-first .row:after{
  4464. content: '';
  4465. position: absolute;
  4466. display: inline-block;
  4467. height: 45px;
  4468. width: 1px;
  4469. background: #f5f5f5;
  4470. right: -1px;
  4471. top: 0;
  4472. }
  4473. .line24{
  4474. line-height: 24px !important;
  4475. }
  4476. .height72{
  4477. height: 72px !important;
  4478. }
  4479. ::-webkit-scrollbar {
  4480. width: 8px;
  4481. height: 8px;
  4482. }
  4483. ::-webkit-scrollbar-thumb {
  4484. background-color: #d8d4d4;
  4485. border-radius: 5px;
  4486. padding-left: 0 !important;
  4487. }
  4488. ::-webkit-scrollbar-thumb:hover {
  4489. background-color: #b1abab;
  4490. }
  4491. /*
  4492. 查看大图*/
  4493. .upload-pro .well{
  4494. padding: 0;
  4495. width: 100px;
  4496. height: 100px;
  4497. position: relative;
  4498. top: -110px;
  4499. overflow: hidden;
  4500. }
  4501. .upload-pro .hover-show{
  4502. position: absolute;
  4503. width: 100%;
  4504. height: 100%;
  4505. top: 100%;
  4506. left: 0;
  4507. background: rgba(0,0,0,.5);
  4508. }
  4509. .upload-pro .hover-show .delete{
  4510. padding: 0;
  4511. width: 30px;
  4512. height: 30px;
  4513. float: right;
  4514. text-align: center;
  4515. line-height: 30px;
  4516. }
  4517. .upload-pro .hover-show .delete:hover{
  4518. cursor: pointer;
  4519. }
  4520. .upload-pro .hover-show .delete em{
  4521. color: #fff;
  4522. font-size: 18px;
  4523. margin-top: 10px;
  4524. }
  4525. .upload-pro .hover-show a{
  4526. display: inline-block;
  4527. width: 100%;
  4528. height: 70px;
  4529. font-size: 14px;
  4530. color: #fff;
  4531. text-align: center;
  4532. line-height:45px;
  4533. padding-right: 0;
  4534. }
  4535. .upload-pro .hover-show a:hover{
  4536. cursor: pointer;
  4537. }
  4538. .upload-pro .hover-show a em{
  4539. margin-right: 5px;
  4540. font-size: 16px;
  4541. }
  4542. .upload-pro .well:hover .hover-show{
  4543. top: 0;
  4544. }
  4545. /* 预览框 end */
  4546. #image-box .x-floating-wrap {
  4547. position: fixed;
  4548. z-index: 99998;
  4549. background: #000;
  4550. top: 0;
  4551. left: 0;
  4552. width: 100%;
  4553. height: 100%;
  4554. opacity: 0.5;
  4555. }
  4556. #image-box .x-floating {
  4557. position: fixed;
  4558. z-index: 99999;
  4559. width: 1200px;
  4560. height: 600px;
  4561. top: 50%;
  4562. left: 50%;
  4563. margin-left: -600px;
  4564. margin-top: -300px;
  4565. line-height: 560px;
  4566. text-align: center;
  4567. vertical-align: middle;
  4568. }
  4569. #image-box .x-floating img {
  4570. margin: auto auto;
  4571. max-width: 100% !important;
  4572. max-height: 600px !important;
  4573. -webkit-user-select: none;
  4574. -moz-user-select: none;
  4575. -ms-user-select: none;
  4576. user-select: none
  4577. }
  4578. #image-box .x-close-wrap {
  4579. position: fixed;
  4580. top: 0;
  4581. right: 0;
  4582. z-index: 100000;
  4583. width: 120px;
  4584. height: 120px;
  4585. margin: -60px -60px 0 0;
  4586. border-radius: 100%;
  4587. background: #000;
  4588. opacity: .3
  4589. }
  4590. #image-box .x-close-wrap a {
  4591. position: absolute;
  4592. left: 25px;
  4593. bottom: 25px;
  4594. font-size: 42px;
  4595. color: #fff
  4596. }
  4597. #image-box .x-close-wrap:hover {
  4598. opacity: .7
  4599. }
  4600. a.order-detail {
  4601. color: #3f84f6 !important;
  4602. }
  4603. /*新手引导*/
  4604. #mask{
  4605. display: none;
  4606. position: absolute;
  4607. top: 0;
  4608. left: 0;
  4609. height: 100%;
  4610. width: 100%;
  4611. background: #000;
  4612. opacity: 0.5;
  4613. }
  4614. #searchTip{
  4615. display: none;
  4616. position: fixed;
  4617. left: 0;
  4618. right: 0;
  4619. top: 0;
  4620. bottom: 0;
  4621. width: 100%;
  4622. height: 100%;
  4623. z-index: 1000;
  4624. }
  4625. #searchTip div{
  4626. display: none;
  4627. position: relative ;
  4628. margin: 0 auto;
  4629. width: 100%;
  4630. height: 100%;
  4631. }
  4632. #searchTip div a{
  4633. display: inline-block;
  4634. position: absolute;
  4635. bottom: 20px;
  4636. right: 20px;
  4637. padding: 0;
  4638. width: 105px;
  4639. height: 40px;
  4640. line-height: 40px;
  4641. text-align: center;
  4642. text-decoration: none;
  4643. font-size: 18px;
  4644. color: #fff;
  4645. cursor: pointer;
  4646. background: #d32526;
  4647. }
  4648. #searchTip div span{
  4649. position: fixed;
  4650. top: 5px;
  4651. right: 10px;
  4652. z-index: 100000;
  4653. margin: -60px -60px 0 0;
  4654. padding: 55px 0 0 24px;
  4655. width: 120px;
  4656. height: 120px;
  4657. font-size: 47px;
  4658. border-radius: 100%;
  4659. background: #000;
  4660. opacity: .3;
  4661. }
  4662. #searchTip div span:hover{
  4663. opacity: .7;
  4664. color: #fff;
  4665. }
  4666. #searchTip div em.img{
  4667. display: inline-block;
  4668. width: 100%;
  4669. height: 100%;
  4670. /*background: url('../img/guide/more00001.png');*/
  4671. }
  4672. .stepA em.img{
  4673. background: url(../img/guide/more1.png) no-repeat center 0;
  4674. }
  4675. .stepB em.img{
  4676. background: url(../img/guide/more2.png) no-repeat center center;
  4677. }
  4678. .stepC em.img{
  4679. background: url(../img/guide/more3.png) no-repeat center center;
  4680. }
  4681. /**
  4682. * 金控广告
  4683. **/
  4684. .jinkong_bottom{
  4685. width:100%;
  4686. height:241px;
  4687. position:fixed;
  4688. bottom:0;
  4689. left: 0;
  4690. z-index:10000;
  4691. background: url(../img/jinkong/tangchuan.png)no-repeat center center;
  4692. }
  4693. .jinkong_animation{
  4694. margin-bottom:-241px;
  4695. animation: shift_up 3s linear forwards;
  4696. -o-animation: shift_up 3s linear forwards;
  4697. -webkit-animation: shift_up 3s linear forwards;
  4698. -moz-animation: shift_up 3s linear forwards;
  4699. }
  4700. @keyframes shift_up {
  4701. form{margin-bottom: -241px;opacity:0;}
  4702. to{margin-bottom:0;opacity:1;}
  4703. }
  4704. @-o-keyframes shift_up {
  4705. form{margin-bottom: -241px;opacity:0;}
  4706. to{margin-bottom:0;opacity:1;}
  4707. }
  4708. @-webkit-keyframes shift_up {
  4709. form{margin-bottom: -241px;opacity:0;}
  4710. to{margin-bottom:0;opacity:1;}
  4711. }
  4712. @-moz-keyframes shift_up {
  4713. form{margin-bottom: -241px;opacity:0;}
  4714. to{margin-bottom:0;opacity:1;}
  4715. }
  4716. .jinkong .close{
  4717. display:inline-block;
  4718. width:20px;
  4719. height:20px;
  4720. background: #fff;
  4721. color:#666;
  4722. border-radius:50%;
  4723. font-size: 18px;
  4724. line-height: 16px;
  4725. text-align: center;
  4726. opacity:.7;
  4727. }
  4728. .jinkong{
  4729. position:fixed;
  4730. bottom:-130px;
  4731. z-index:10000;
  4732. width:100%;
  4733. }
  4734. .jinkong .img{
  4735. position:relative;
  4736. width:80px;
  4737. height:130px;
  4738. top:-230px;
  4739. right:-765px;
  4740. transform:scale(.8);
  4741. -o-transform:scale(.8);
  4742. -webkit-transform:scale(.8);
  4743. -moz-transform:scale(.8);
  4744. }
  4745. .img_stater{
  4746. animation: shift_left 1s linear forwards;
  4747. -webkit-animation: shift_left 1s linear forwards;
  4748. -o-animation: shift_left 1s linear forwards;
  4749. -moz-animation: shift_left 1s linear forwards;
  4750. }
  4751. .jinkong .animation_xr{
  4752. animation:img_scale 1s linear 2s infinite;
  4753. -o-animation:img_scale 1s linear 2s infinite;
  4754. -webkit-animation:img_scale 1s linear 2s infinite;
  4755. -moz-animation:img_scale 1s linear 2s infinite;
  4756. }
  4757. @keyframes shift_left {
  4758. 0%{right: -765px;transform:scale(.8);}
  4759. 80%{right: -65px;transform:scale(.8);}
  4760. 100%{right:-20px;transform:scale(1);}
  4761. }
  4762. @-o-keyframes shift_left {
  4763. 0%{right: -765px;transform:scale(.8);}
  4764. 80%{right: -65px;transform:scale(.8);}
  4765. 100%{right:-20px;transform:scale(1);}
  4766. }
  4767. @-webkit-keyframes shift_left {
  4768. 0%{right: -765px;transform:scale(.8);}
  4769. 80%{right: -65px;transform:scale(.8);}
  4770. 100%{right:-20px;transform:scale(1);}
  4771. }
  4772. @-moz-keyframes shift_left {
  4773. 0%{right: -765px;transform:scale(.8);}
  4774. 80%{right: -65px;transform:scale(.8);}
  4775. 100%{right:-20px;transform:scale(1);}
  4776. }
  4777. @keyframes img_scale {
  4778. 0%{transform:scale(1);}
  4779. 50%{transform:scale(.8);}
  4780. 100%{transform:scale(1);}
  4781. }
  4782. @-o-keyframes img_scale {
  4783. 0%{transform:scale(1);}
  4784. 50%{transform:scale(.8);}
  4785. 100%{transform:scale(1);}
  4786. }
  4787. @-webkit-keyframes img_scale {
  4788. 0%{transform:scale(1);}
  4789. 50%{transform:scale(.8);}
  4790. 100%{transform:scale(1);}
  4791. }
  4792. @-moz-keyframes img_scale {
  4793. 0%{transform:scale(1);}
  4794. 50%{transform:scale(.8);}
  4795. 100%{transform:scale(1);}
  4796. }
  4797. .jinkong .img .qcrode_close{
  4798. position:absolute;
  4799. right:-40px;
  4800. top:0;
  4801. }
  4802. .jinkong .img .time{
  4803. position:absolute;
  4804. right:-70px;
  4805. top:0;
  4806. color:#333;
  4807. background:none;
  4808. }
  4809. .jinkong .img .qcrode_close:hover{
  4810. background: #666;
  4811. color:#fff;
  4812. }
  4813. .jinkong .img img{
  4814. display:block;
  4815. vertical-align: top;
  4816. text-align: center;
  4817. }
  4818. #img_xiaoren{
  4819. position:relative;
  4820. top:10px;
  4821. }
  4822. /*左侧树结构*/
  4823. #tree{
  4824. background-color: #ffffff;
  4825. border-radius: 5px;
  4826. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4827. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4828. -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4829. -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4830. }
  4831. #tree .tree-header{
  4832. padding-left: 10px;
  4833. width: 100%;
  4834. height: 35px;
  4835. line-height: 35px;
  4836. font-size: 14px;
  4837. font-weight: bold;
  4838. color: #fff;
  4839. background-color: #3f84f6;
  4840. border-top-left-radius: 5px;
  4841. border-top-right-radius: 5px;
  4842. }
  4843. #tree .tree-header img{
  4844. margin-right: 10px;
  4845. }
  4846. /* 头部公告样式 */
  4847. .article-top{
  4848. position:relative;
  4849. line-height: 30px;
  4850. height:30px;
  4851. text-align: center;
  4852. color:#473D16;
  4853. font-size:12px;
  4854. background: #FFFABE;
  4855. }
  4856. .article-top span{
  4857. margin-left:40px;
  4858. cursor:pointer;
  4859. }
  4860. /*金控广告*/
  4861. .jk{
  4862. width: 202px;
  4863. height: 534px;
  4864. line-height: 534px;
  4865. text-align: center;
  4866. background-color: #ffffff;
  4867. border-radius: 5px;
  4868. box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4869. -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4870. -o-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4871. -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  4872. }
  4873. .jk img{
  4874. width: 184px;
  4875. height: 512px;
  4876. }
  4877. @keyframes spin {
  4878. 0% { transform: rotate(360deg); }
  4879. 100% { transform: rotate(0deg); }
  4880. }
  4881. .loading>.wrap { width: 64px; height: 64px; position: absolute;left: 50%;top:50%;margin-left:-32px;margin-top: -32px; }
  4882. .outer {
  4883. background-repeat: no-repeat;
  4884. background-size:100%; position: absolute; width: 100%; height: 100%; background-image: url("../img/all/loading.png"); animation: spin 800ms infinite linear; }