index.css 75 KB

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