index.css 79 KB

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