index.css 80 KB

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