| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179 |
- /*
- 主要参数,方便查阅
- background-color: #eff2f9; 浅灰色
- min-width: 1170px;
- default-color: #56a022; 绿色
- */
- body {
- line-height: 1.6;
- font-family: "Microsoft YaHei", "微软雅黑" !important;
- color: #222;
- font-size: 14px;
- background-color: #f5f5f5;
- }
- #top, #header, #footer {
- min-width: 1170px;
- }
- #top .container {
- margin-bottom: -10px;
- }
- #top>.container, #header>.container, #footer>.container {
- width: 1170px;
- margin: 0 auto;
- padding: 0 15px;
- }
- h1,h2,h3 {
- font-size: 20px;
- font-weight: 400;
- font-style: normal;
- }
- table {
- outline: none
- }
- a {
- color: #333;
- text-decoration: none;
- }
- a.none:hover {
- text-decoration: none;
- }
- .block {
- background-color: #fff;
- width: 100%;
- position: relative;
- }
- .empty-block {
- margin: 0 auto;
- padding-top: 20px 25px;
- text-align: center;
- text-shadow: 0 2px 0 #fff, 0 -2px 0 #f8f6f2;
- }
- .empty-block i {
- font-size: 120px;
- color: #d9d7d3;
- }
- .f12 {
- font-size: 12px !important;
- }
- .f14 {
- font-size: 14px !important;
- }
- .f16 {
- font-size: 16px !important;
- }
- [ng-click] {
- cursor: pointer;
- }
- .br-r {
- border-right: 1px solid #e6e6e6;
- }
- .br-l {
- border-left: 1px solid #e6e6e6;
- }
- .br-b {
- border-bottom: 1px solid #e6e6e6;
- }
- /*inverse*/
- .text-default {
- color: #333333;
- }
- .text-blue {
- color: #327ebe;
- }
- .text-inverse {
- color: #f40 !important
- }
- .text-muted {
- color: #888 !important;
- }
- .text-light {
- color: #666;
- }
- .text-simple {
- color: #aaa;
- }
- .text-num {
- font-style: normal;
- }
- .text-small {
- font-size: 10px;
- -webkit-transform: scale(0.83);
- -o-transform: scale(0.83);
- transform: scale(0.83);
- }
- .text-bold {
- font-weight: 700;
- }
- .text-border-success {
- border: 1px solid #f40;
- color: #f40;
- background-color: #fff;
- padding: 2px 4px;
- }
- .text-trans {
- position: absolute;
- margin-top: 5px;
- right: 5px;
- background-color: #fff;
- border: 1px solid;
- padding: 3px 14px;
- font-size: 16px;
- font-family: "LiShu";
- border-radius: 10px;
- -moz-transform: rotate(-10deg);
- -webkit-transform: rotate(-10deg);
- -o-transform: rotate(-10deg);
- transform: rotate(-10deg);
- border-radius: 10px;
- opacity: 0.7;
- white-space: nowrap;
- }
- .text-trans.todo {
- color: #56a022;
- border-color: #56a022;
- }
- .text-trans.success {
- color: #ffb433;
- border-color: #ffb433;
- }
- .text-trans.half {
- color: #55b6ff;
- border-color: #55b6ff;
- }
- .text-trans.error {
- color: #d44950;
- border-color: #d44950;
- }
- .text-trans.warning {
- color: #7f64b5;
- border-color: #7f64b5;
- }
- .text-ellipsis {
- float: left;
- width: 260px;
- clear: left;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- }
- .text-link {
- color: #5e696e;
- cursor: pointer;
- text-decoration: underline;
- }
- .text-title {
- font-size: 1.2em;
- font-weight: bold;
- text-indent: 1em;
- line-height: 2em;
- border-bottom: 1px solid #ddd;
- margin-bottom: 15px;
- color: #828282
- }
- .form-control {
- border-color: #e1e1e1;
- }
- .input-xs, .input-group-xs>.form-control, .input-group-xs>.input-group-addon, .input-group-xs>.input-group-btn>.btn {
- border-color: #327ebe;
- }
- .form-group-sm .form-control-feedback {
- width: 30px;
- height: 30px;
- line-height: 30px;
- }
- .btn-default {
- border-color: #dcdcdc;
- }
- .btn-icon-left {
- margin-top: -1px
- }
- /*dropdown*/
- .dropdown-menu {
- min-width: 100%;
- }
- .dropdown>.dropdown-toggle {
- border-style: solid;
- border-width: 0 1px;
- border-color: transparent;
- }
- .dropdown:hover>.dropdown-toggle {
- position: relative;
- background-color: #e8e8e8;
- border-top: 0;
- border-bottom: 0;
- z-index: 1001;
- }
- .dropdown:hover>.dropdown-menu {
- display: block;
- position: absolute;
- border-color: #eee;
- webkit-box-shadow: none;
- box-shadow: none;
- margin-top: -2px;
- min-width: 100%;
- font-size: 12px;
- }
- .dropdown-submenu {
- position: relative;
- }
- .dropdown-submenu>.dropdown-menu {
- top: 0;
- left: 100%;
- margin-top: -144px;
- }
- .dropdown-submenu:hover>.dropdown-toggle {
- position: relative;
- background-color: #ffffff;
- border-color: transparent;
- z-index: 1001;
- }
- .dropdown-submenu:hover>.dropdown-menu {
- display: block;
- min-width: 120px;
- font-size: 12px;
- }
- .dropup .dropdown-submenu>.dropdown-menu {
- top: auto;
- bottom: 0;
- margin-top: 0;
- margin-bottom: -2px;
- }
- .dropdown-submenu.pull-left {
- float: none;
- }
- .dropdown-submenu.pull-left>.dropdown-menu {
- left: -100%;
- margin-left: 10px;
- -webkit-border-radius: 6px 0 6px 6px;
- -moz-border-radius: 6px 0 6px 6px;
- border-radius: 6px 0 6px 6px;
- }
- .dropdown-menu.arrow:before,.dropdown-menu.arrow:after {
- content: '';
- position: absolute;
- top: 18%;
- width: 0;
- height: 0;
- border: 10px solid transparent;
- }
- .dropdown-menu.arrow.left:before {
- margin-top: -11px;
- left: -20px;
- border: 10px solid transparent;
- border-right-color: #aaa;
- }
- .dropdown-menu.arrow.left:after {
- margin-top: -11px;
- left: -19px;
- border: 10px solid transparent;
- border-right-color: #e8e8e8;
- }
- .navbar {
- margin-bottom: 0;
- border-radius: 0;
- }
- .icon-left {
- margin-right: 5px;
- }
- /*chart*/
- [ac-chart] {
- width: 100%;
- }
- .pie-charts>ul>li,.line-charts >ul>li {
- height: 250px;
- position: relative;
- }
- .pie-charts [ac-chart] {
- height: 200px;
- }
- .pie-charts>ul>li .empty {
- position: absolute;
- top: 80px;
- left: 0;
- right: 0;
- bottom: 0;
- text-align: center;
- }
- .line-charts {
- padding-bottom: 10px;
- position: relative;
- }
- .line-charts .empty {
- position: absolute;
- top: 0;
- left: 0;
- right: 0;
- bottom: 0;
- background: url("../img/all/empty-notice.png") no-repeat top center;
- background-color: #fff;
- padding: 160px 120px;
- }
- .line-charts [ac-chart] {
- height: 350px;
- }
- .pie-charts .chart {
- padding-right: 0;
- }
- .ac-title {
- height: 39px;
- line-height: 39px;
- padding: 0 15px;
- color: #333;
- font-weight: 500 !important;
- border-bottom: 1px solid #e8e8e8;
- -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
- box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
- }
- .ac-chart {
- margin-top: 30px;
- }
- .ac-legend {
- color: #666;
- margin-top: 30px;
- }
- .ac-legend tr>td {
- padding: 2px 0;
- max-width: 120px;
- overflow: hidden;
- text-overflow: ellipsis;
- white-space: nowrap;
- word-wrap: normal;
- }
- .ac-legend-box {
- border-radius: 10px;
- margin-right: 3px;
- }
- .angular-charts-template table {
- margin-left: 15px !important;
- }
- .list-menu>li {
- padding: 5px 5px 5px 15px;
- position: relative;
- border-bottom: 1px dotted #ddd;
- }
- .list-menu>li:before {
- position: absolute;
- left: 0;
- top: -2px;
- content: ".";
- font-size: 16px;
- font-weight: bold;
- color: #999;
- }
- ul>li.item-link>a {
- padding: 10px 15px;
- margin: 0 5px;
- border-bottom: 1px dotted #ddd;
- }
- .throughline {
- position: relative;
- }
- .throughline .line {
- position: absolute;
- border-top: 1px dashed #e5e2e2;
- left: 15px;
- right: 15px;
- top: 10px;
- z-index: 0;
- }
- .throughline .content {
- position: relative;
- color: #56a022;
- padding: 0 10px;
- margin: 3px 0;
- background: #fff;
- display: inline-block;
- }
- .stepline {
- position: relative;
- height: 40px;
- line-height: 40px;
- margin: 40px 0 0;
- }
- .stepline:after, .stepline:before {
- background-color: #ddd;
- content: "";
- height: 2px;
- position: absolute;
- top: 19px;
- width: 50%;
- }
- .stepline:before {
- background-image: -webkit-gradient(linear, right top, left top, from(#ddd), to(#fff));
- background-image: -webkit-linear-gradient(right, #ddd, #fff);
- background-image: -moz-linear-gradient(right, #ddd, #fff);
- background-image: -ms-linear-gradient(right, #ddd, #fff);
- background-image: -o-linear-gradient(right, #ddd, #fff);
- background-image: linear-gradient(right, #ddd, #fff);
- left: 0;
- }
- .stepline:after {
- background-image: -webkit-gradient(linear, left top, right top, from(#ddd), to(#fff));
- background-image: -webkit-linear-gradient(left, #ddd, #fff);
- background-image: -moz-linear-gradient(left, #ddd, #fff);
- background-image: -ms-linear-gradient(left, #ddd, #fff);
- background-image: -o-linear-gradient(left, #ddd, #fff);
- background-image: linear-gradient(left, #ddd, #fff);
- left: 50%;
- }
- .stepline .item {
- position: relative;
- }
- .stepline .item span {
- position: absolute;
- left: 50%;
- height: 40px;
- width: 40px;
- margin-left: -20px;
- text-align: center;
- background-color: #fff;
- border: 2px solid #777;
- border-radius: 500px;
- color: #777;
- font-size: 18px;
- font-weight: bold;
- z-index: 4;
- }
- .stepline .item .title {
- margin-top: 45px;
- text-align: center;
- line-height: 1.5;
- }
- /* top css stylesheet*/
- #top {
- background-color: #f5f5f5;
- height: 35px;
- line-height: 35px;
- z-index: 5;
- font: 12px/23px Tahoma, Arial, "\5B8B\4F53", sans-serif;
- color: #6c6c6c;
- }
- #top.navbar {
- min-height: 35px;
- border-bottom: 10px solid #333333;
- }
- #top ul>li>a {
- color: #6c6c6c;
- margin-top: -5px;
- }
- #top ul>li>a:hover {
- text-decoration: none;
- background: none;
- }
- #top .navbar-nav>li>a,#top .navbar-nav>li.brand {
- padding-top: 0;
- padding-bottom: 0;
- line-height: 35px;
- }
- #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 *
- {
- color: #f40;
- }
- #top .dropdown .fa-angle-down {
- transition: transform .2s ease-in 0s;
- -webkit-transition: -webkit-transform .2s ease-in 0s;
- }
- #top .dropdown:hover .fa-angle-down {
- transform: rotate(180deg);
- -webkit-transform: rotate(180deg);
- filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
- }
- #top .dropdown:hover>.dropdown-menu {
- margin-top: -1px;
- min-width: 100%;
- font-size: 12px;
- }
- #top .dropdown-menu ul>li>h4 {
- font-size: 100%;
- font-weight: 700;
- color: #404040;
- }
- #top .dropdown-menu .nav-pills>li+li {
- margin-left: 0;
- }
- #top .dropdown-menu .nav-pills>li>a {
- padding: 5px 10px;
- }
- #top .dropdown-menu .pills>div {
- border-right: 1px solid #eee;
- padding: 5px 15px;
- }
- #top .dropdown-menu .pills>div:last-child {
- border-right: none;
- }
- #top .dropdown-menu .pills ul>li {
- }
- #top .dropdown-menu .pills ul>li>a {
- color: #3c3c3c;
- text-align: left;
- padding: 5px 8px;
- }
- #top .dropdown-menu .pills ul>li:hover a {
- color: white;
- text-decoration: none;
- }
- #top .dropdown-menu .pills>div>h4 {
- font-family: "Microsoft YaHei", "Hiragino Sans GB";
- font-weight: 700;
- font-size: 17px;
- text-align: left;
- }
- #top .dropdown-menu .pills>div:nth-child(1) h4 {
- color: #f50;
- }
- #top .dropdown-menu .pills>div:nth-child(2) h4 {
- color: #a0b959;
- }
- #top .dropdown-menu .pills>div:nth-child(3) h4 {
- color: #df61ab;
- }
- #top .dropdown-menu .pills>div:nth-child(4) h4 {
- color: #52a0e5;
- }
- #top .dropdown-menu .pills>div:nth-child(5) h4 {
- color: #52a015;
- }
- #top .dropdown-menu .pills>div:nth-child(6) h4 {
- color: #b68571;
- }
- #top .dropdown-menu .pills ul>li>a:hover {
- color: #fff;
- }
- #top .dropdown-menu .pills>div:nth-child(1) ul>li>a:hover {
- background-color: #f50
- }
- #top .dropdown-menu .pills>div:nth-child(2) ul>li>a:hover {
- background-color: #a0b959
- }
- #top .dropdown-menu .pills>div:nth-child(3) ul>li>a:hover {
- background-color: #df61ab
- }
- #top .dropdown-menu .pills>div:nth-child(4) ul>li>a:hover {
- background-color: #52a0e5
- }
- #top .dropdown-menu .pills>div:nth-child(5) ul>li>a:hover {
- background-color: #52a015
- }
- #top .dropdown-menu .pills>div:nth-child(6) ul>li>a:hover {
- background-color: #b68571
- }
- /* header css stylesheet*/
- #header {
- color: #ffffff;
- z-index: 4;
- }
- #header a {
- font-family: "\5fae\8f6f\96c5\9ed1", sans-serif;
- }
- #header .navbar-nav>li>a {
- color: #ffffff;
- font-size: 16px;
- font-weight: 500;
- }
- #header.navbar-inverse {
- background-color: #e8e8e8;
- border: none;
- border-top: 10px solid #d32526;
- box-shadow: 0 0 10px #6f6f6f;
- position: relative;
- }
- #header.navbar-inverse .navbar-brand {
- color: #ffffff;
- }
- #header.navbar-inverse .navbar-brand:hover,#header.navbar-inverse .navbar-brand:focus
- {
- color: #ffffff;
- background-color: transparent;
- }
- #header.navbar-inverse .navbar-text {
- color: #969696;
- }
- #header.navbar-inverse .navbar-nav>li{
- margin-left: 70px;
- }
- #header.navbar-inverse .navbar-nav>li:last-child{
- margin-left: 60px;
- }
- #header.navbar-inverse .navbar-nav>li>a {
- font-size: 20px;
- font-famliy: Microsoft Yahei;
- color: #000000;
- width: 100px;
- height: 50px;
- text-align: center;
- }
- /** 顶部 start **/
- #home-search {
- margin-left: 580px;
- margin-top: 7px;
- position: absolute;
- }
- #home-search a {
- border-radius: 0;
- width: 85px;
- height: 36px;
- color: #ffffff !important;
- background-color: #d32526;
- border: 1px solid #d32526;
- font-size: 16px;
- }
- #home-search input {
- border-radius: 0;
- border: 1px solid #d32526;
- width: 365px;
- height: 36px;
- color: #000000;
- text-align: center;
- font-size: 16px;
- }
- @media screen and (max-width: 1366px) {
- #home-search input{
- width: 250px;
- }
- }
- #home-search input:focus {
- outline: none;
- }
- /** placeholder 格式 **/
- #home-search input::-webkit-input-placeholder{ /*WebKit browsers*/
- padding-left: 10px;
- }
- #home-search input::-moz-input-placeholder{ /*Mozilla Firefox*/
- padding-left: 10px;
- }
- #home-search input::-ms-input-placeholder{ /*Internet Explorer*/
- padding-left: 10px;
- }
- #home-headerBtns {
- width: 200px;
- margin-top: 15px;
- color: #333333;
- position: absolute;
- right: 0;
- font-size: 16px;
- }
- #home-headerBtns i {
- padding-left: 20px;
- }
- /** 顶部 end **/
- /**dropdown-menu 样式 start **/
- #dropdown-menu-sale {
- color: #333333;
- font-size: 14px;
- height: 164px;
- border-bottom: 1px solid #e8e8e8;
- margin-top: 10px;
- }
- #dropdown-menu-sale img {
- margin-top: 50%;
- }
- #dropdown-menu-purc {
- color: #333333;
- font-size: 14px;
- height: 86px;
- border-bottom: 1px solid #e8e8e8;
- margin-top: 20px;
- }
- #dropdown-menu-purc img {
- margin-top: 15%;
- }
- #dropdown-menu-finance {
- color: #333333;
- font-size: 14px;
- height: 86px;
- border-bottom: 1px solid #e8e8e8;
- margin-top: 20px;
- }
- #dropdown-menu-finance img {
- margin-top: 15%;
- }
- #dropdown-menu-report {
- color: #333333;
- font-size: 14px;
- height: 86px;
- margin-top: 20px;
- }
- #dropdown-menu-report img {
- margin-top: 15%;
- }
- #home-dropdown:hover>.dropdown-menu {
- margin-top: 0;
- width: 500px;
- }
- /**dropdown-menu 样式 end **/
- #header.navbar-inverse .navbar-nav>li>a:hover,#header.navbar-inverse .navbar-nav>li>a:focus
- {
- color: #d32526;
- background-color: #e8e8e8;
- }
- #header.navbar-inverse .navbar-nav>.active>a,#header.navbar-inverse .navbar-nav>.active>a:hover,#header.navbar-inverse .navbar-nav>.active>a:focus
- {
- color: #d32526;
- background-color: #e8e8e8;
- font-color: #d32526;
- border-bottom: 4px solid #d32526;
- }
- #header.navbar-inverse .navbar-nav>.disabled>a,#header.navbar-inverse .navbar-nav>.disabled>a:hover,#header.navbar-inverse .navbar-nav>.disabled>a:focus
- {
- color: #444444;
- background-color: transparent;
- }
- #header.navbar-inverse .navbar-toggle {
- border-color: #333333;
- }
- #header.navbar-inverse .navbar-toggle:hover,#header.navbar-inverse .navbar-toggle:focus
- {
- background-color: #333333;
- }
- #header.navbar-inverse .navbar-toggle .icon-bar {
- background-color: #ffffff;
- }
- #header.navbar-inverse .navbar-collapse,#header.navbar-inverse .navbar-form
- {
- border-color: #101010;
- }
- #header.navbar-inverse .navbar-nav>.open>a,#header.navbar-inverse .navbar-nav>.open>a:hover,#header.navbar-inverse .navbar-nav>.open>a:focus
- {
- background-color: #56a022;
- color: #ffffff;
- }
- #header.navbar-inverse .navbar-link {
- color: #777777;
- }
- #header.navbar-inverse .navbar-link:hover {
- color: #ffffff;
- }
- #header.navbar-inverse .btn-link {
- color: #777777;
- }
- #header.navbar-inverse .btn-link:hover,#header.navbar-inverse .btn-link:focus
- {
- color: #ffffff;
- }
- #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
- {
- color: #444444;
- }
- #header.navbar-inverse .dropdown-menu>li>a {
- font-size: 14px;
- }
- #header.navbar-inverse .dropdown-menu>li>a:hover {
- background-color: #56a022;
- color: #ffffff;
- }
- #header .navbar-header .navbar-brand {
- background: url("../img/logo/logo.png") no-repeat center;
- width: 218px;
- margin: 0;
- padding: 0;
- line-height: 50px;
- }
- #header .navbar-header .navbar-brand a{
- width: 44%;
- float: left;
- display: inline-block;
- height: 50px;
- }
- #header .navbar-header .navbar-brand a:first-child{
- width: 56%;
- }
- #header .dropdown:hover>.dropdown-menu {
- margin-top: 0;
- }
- /*body*/
- .body {
- width: 1170px;
- margin: 0 auto;
- padding: 0 0;
- margin-top: 85px;
- }
- .body:before,.body:after {
- content: " ";
- display: table;
- clear: both;
- }
- .body>.left {
- width: 219px;
- float: left;
- margin-right: 14px;
- /* border-right: 1px solid #ddd; */
- }
- .body>.right {
- width: 930px;
- float: right;
- font-size: 12px;
- min-height: 718px;
- }
- @media ( max-height : 768px) {
- .body>.right{
- min-height: 400px;
- }
- .sreach-index .row:first-child{
- margin-top: 10% !important;
- }
- }
- .body ul {
- margin-bottom: 0;
- }
- .user {
- font-size: 12px;
- }
- .user .user-image {
- float: left;
- /*margin-top: 20px;*/
- height: 286px;
- width: 218px;
- cursor: pointer;
- background-color: #ffffff;
- border: 1px solid #e8e8e8;
- }
- .user-image img {
- /* border-radius: 5%; */
- border: 1px solid #ccc;
- width: 124px;
- height: 124px;
- margin-left: 20%;
- margin-top: 20px;
- }
- .user-image li {
- padding-top: 15px;
- list-style-type: none;
- font-family: Microsoft YaHei, SimHei, Verdana;
- font-size: 14px;
- }
- .user .user-name {
- width: 90px;
- margin-top: 35px;
- color: #333;
- }
- .user .user-lv {
- padding-left: 20px;
- clear: both;
- height: 40px;
- margin-bottom: 20px;
- }
- .user .user-count {
- display: table;
- width: 100%;
- table-layout: fixed;
- border-collapse: separate;
- background-color: #fbfbfb;
- padding: 18px 5px;
- border-top: 1px solid #e8e8e8;
- border-bottom: 1px solid #e8e8e8;
- }
- .user-count>li {
- display: table-cell;
- float: none;
- width: 1%;
- height: 50px;
- text-align: center;
- }
- .user-count>li:not(:last-child){
- border-right: 1px solid #e8e8e8;
- }
- .user-count .count {
- color: #56a022;
- font-size: 24px;
- line-height: 32px;
- font-family: Arial;
- }
- .use .use-label {
- line-height: 50px;
- border-bottom: 1px solid #e8e8e8;
- text-indent: 25px;
- position: relative;
- }
- .use-label>i {
- position: absolute;
- left: 30px;
- border-color: transparent;
- border-style: solid;
- border-width: 0 4px 4px 4px;
- border-bottom-color: #ddd;
- }
- .use-label .notice-header {
- margin-top: 300px;
- width: 218px;
- position: absolute;
- background-color: #e8e8e8;
- }
- .use-label .notice-body {
- padding-top: 20px;
- margin-top: 360px;
- position: absolute;
- }
- .use>ul {
- padding: 10px 0;
- border-bottom: 1px solid #e8e8e8;
- }
- .use>ul>li {
- padding: 8px 25px;
- }
- .left-nav>ul>li {
- text-indent: 15px;
- }
- .left-nav>ul>li>a {
- display: block;
- padding: 6px 20px;
- clear: both;
- line-height: 1.42857143;
- /*white-space: nowrap;*/
- font-size: 14px;
- }
- .use>ul>li:hover,.left-nav>ul>li:hover,.left-nav>ul>li.active {
- background-color: #6f6f6f;
- }
- .left-nav>ul>li.active {
- background-color: #6f6f6f;
- }
- .use>ul>li:hover *,.left-nav>ul>li:hover *,.left-nav>ul>li.active * {
- color: #fff;
- text-decoration: none;
- background-color: #6f6f6f;
- }
- .icon-right {
- float: right;
- color: #888;
- line-height: 1.6
- }
- .left-nav {
- /*margin-top: 10px;*/
- padding-bottom: 10px;
- border-bottom: 1px solid #e8e8e8;
- background-color: #ffffff;
- }
- .left-nav.left-home {
- padding: 0;
- margin: 0;
- }
- .nav-home {
- height: 50px;
- line-height: 50px;
- cursor: pointer;
- }
- .nav-label {
- text-indent: 35px;
- height: 40px;
- line-height: 40px;
- color: #333333;
- cursor: pointer;
- position: relative;
- background-color: #eaeaea;
- font-size: 14px;
- }
- .nav-label>i {
- position: absolute;
- left: 15px;
- top: 18px;
- width: 0;
- height: 0;
- border-color: transparent;
- border-style: solid;
- border-width: 5px 5px 0 5px;
- border-top-color: #9ea9c0;
- }
- .left-nav .icon-left {
- margin-left: 15px;
- margin-right: 10px;
- }
- .right .company {
- margin-bottom: 15px;
- }
- .company .inner {
- line-height: 40px;
- height: 40px;
- padding-left: 12px;
- }
- .company .inner>div {
- float: left;
- margin-right: 3px;
- }
- .right .data-wrap {
- float: left;
- width: 660px;
- }
- .data-wrap .todo {
- margin-bottom: 15px;
- }
- .todo .todo-label {
- width: 100%;
- height: 40px;
- line-height: 45px;
- background: url("../img/approvalFlow/comm_bg02.png") no-repeat bottom;
- background-color: #f5f5f5;
- background-size: 660px 100%;
- }
- .todo .todo-label i {
- margin-left: 20px;
- }
- .todo .todo-label label{
- margin-left: 10px;
- font-family: Microsoft YaHei, SimHei, Verdana;
- font-size: 14px;
- }
- .todo .todo-label>li {
- float: left;
- margin-left: 140px;
- text-align: center;
- background-image: url("../img/all/line.png");
- background-repeat: no-repeat;
- background-position: 8px 32px;
- height: 55px;
- font-size: 14px;
- }
- .todo .todo-content {
- clear: both;
- background-color: #ffffff;
- width: 660px;
- margin-left: 0px;
- border-bottom: 1px solid #e8e8e8;
- display: inline-block;
- }
- .todo .todo-content a:hover{
- color: #f40 !important;
- }
- .todo .todo-content #tips {
- margin-top: 40px;
- font-family: Microsoft YaHei, SimHei, Verdana;
- font-size: 16px;
- width: 100%;
- }
- .todo .todo-content a {
- color: #666;
- text-decoration: none;
- }
- .todo .todo-content a:hover,.todo .todo-content a:focus {
- color: #d32526;
- }
- .todo .todo-content>ul:not(:last-child){
- border-bottom: 1px solid #e8e8e8;
- }
- .todo-content .icon {
- margin-left: 20px;
- float: left;
- width: 52px;
- height: 52px;
- line-height: 40px;
- text-align: center;
- margin-top: 55px;
- font-size: 16px;
- list-style-type: none;
- /* border: 1px solid #56a022; */
- font-weight: bold;
- }
- .todo #operateTips a{
- padding: 0;
- margin-bottom: 15px;
- }
- .todo-content .start {
- float: left;
- padding-top: 5px;
- font-size: 14px;
- width: 100%;
- }
- .todo-content #operateTips {
- margin-top: 10px;
- padding-top: 20px;
- margin-bottom: 20px;
- font-family: Microsoft YaHei, SimHei, Verdana;
- font-size: 14px;
- cursor: pointer;
- border-top: 1px dashed #919090;
- display: inline-block;
- width: 100%;
- }
- .todo-content .start li,.todo-content .doing li,.todo-content .end li {
- float: left;
- line-height: 28px;
- width: 33.33333333%;
- }
- .todo-content .doing {
- float: left;
- height: 50px;
- width: 200px;
- text-align: center;
- margin-top: 47px;
- }
- .todo-content .end {
- width: 200px;
- float: left;
- margin-top: 47px;
- }
- /** left .feed-wrap start **/
- .left .feed-wrap {
- float: right;
- width: 218px;
- }
- .pane {
- /*margin-top: 20px;*/
- margin-bottom: 15px;
- background-color: #fff;
- }
- .pane .pane-header {
- height: 30px;
- background: #e8e8e8;
- line-height: 39px;
- font-size: 14px;
- padding: 0 15px;
- border-bottom: 1px solid #e8e8e8;
- color: #333
- }
- .pane .pane-header .pull-right>a {
- margin-left: 3px;
- }
- .pane .pane-body {
- padding: 15px;
- }
- .pane.addon {
- height: 185px;
- text-align: center;
- line-height: 1.4;
- cursor: pointer;
- }
- .pane.addon .pane-body {
- padding-top: 60px;
- }
- .pane.addon i,.pane.addon span {
- display: block;
- }
- .notice {
- height: 244px;
- }
- .notice .detail>li {
- clear: both;
- display: block;
- padding: 8px 10px 8px 15px;
- position: relative;
- }
- .notice .detail>li:before {
- position: absolute;
- left: 0;
- top: 5px;
- }
- .feed-wrap .service .detail>li {
- height: 28px;
- line-height: 28px;
- }
- .state-wrap {
- position: relative;
- height: 40px;
- line-height: 40px;
- padding: 0 20px;
- border-bottom: 1px solid #e8e8e8;
- font-size: 14px;
- }
- .state-wrap a:hover {
- text-decoration: none;
- }
- .state-wrap li {
- width: 100px;
- text-align: center;
- position: relative;
- }
- .state-wrap li.active {
- border-bottom: 2px solid #f40;
- }
- .state-wrap li.active a {
- color: #f40;
- }
- .state-wrap li em {
- font-style: normal;
- margin-left: 5px;
- color: #f40;
- }
- .state-wrap li:after {
- position: absolute;
- content: "|";
- margin-left: 20px;
- color: #eee
- }
- /**left .feed-wrap end**/
- /** .right .feed-wrap start **/
- .right .feed-wrap {
- float: right;
- width: 218px;
- }
- .feed-wrap .side-image {
- /*margin-top: 20px;*/
- }
- .side-image img {
- margin-bottom: 15px;
- /*cursor: pointer;*/
- }
- .side-image img:hover {
- /*opacity: 0.8;*/
- top: 0px;
- }
- .pane {
- margin-bottom: 15px;
- background-color: #fff;
- }
- .pane .pane-header {
- height: 30px;
- background: #e8e8e8;
- line-height: 30px;
- font-size: 14px;
- padding: 0 15px;
- border-bottom: 1px solid #e8e8e8;
- color: #333
- }
- .pane .pane-header .pull-right>a {
- margin-left: 3px;
- }
- .pane .pane-body {
- padding: 10px;
- }
- .feed-wrap .pane-body{
- height: 110px;
- /*overflow-y: auto;
- overflow-x: hidden;*/
- }
- .pane.addon {
- height: 185px;
- text-align: center;
- line-height: 1.4;
- cursor: pointer;
- }
- .pane.addon .pane-body {
- padding-top: 60px;
- }
- .pane.addon i,.pane.addon span {
- display: block;
- }
- .notice {
- height: 154px;
- border: #e8e8e8 1px solid;
- }
- .notice .detail>li {
- clear: both;
- display: block;
- padding: 0 10px 8px 15px;
- position: relative;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .notice .detail>li:before {
- position: absolute;
- left: 0;
- top: 5px;
- }
- .service {
- height: 154px;
- }
- .feed-wrap .service .detail>li {
- height: 28px;
- line-height: 28px;
- padding: 0 10px 8px 15px;
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- }
- .state-wrap {
- position: relative;
- height: 40px;
- line-height: 40px;
- padding: 0 20px;
- border-bottom: 1px solid #e8e8e8;
- font-size: 14px;
- }
- .state-wrap a:hover {
- text-decoration: none;
- }
- .state-wrap li {
- width: 100px;
- text-align: center;
- position: relative;
- }
- .state-wrap li.active {
- border-bottom: 2px solid #f40;
- }
- .state-wrap li.active a {
- color: #f40;
- }
- .state-wrap li em {
- font-style: normal;
- margin-left: 5px;
- color: #f40;
- }
- .state-wrap li:after {
- position: absolute;
- content: "|";
- margin-left: 20px;
- color: #eee
- }
- /** .right .feed-wrap end **/
- @media ( min-width : 1100px) {
- .right {
- width: 930px;
- }
- }
- @media ( min-width : 1024px) {
- .right {
- width: 810px;
- }
- }
- @media ( min-width : 910px) {
- .right {
- width: 760px;
- }
- }
- /*footer*/
- #footer {
- color: #f1f1f1;
- background-color: #333333;
- margin-top: 20px;
- padding: 20px 0;
- font-size: 14px;
- }
- #footer a {
- color: #f1f1f1;
- }
- #footer ul {
- margin: 0;
- }
- #footer .qrcode-text {
- padding: 32px 0 0 20px;
- font-size: 14px;
- }
- #footer .list-inline>li:not(:last-child):after {
- margin-left: 15px;
- content: "|"
- }
- /*loading*/
- .loading {
- display: none;
- position: absolute;
- width: 100%;
- height: 300px;
- top: 0;
- left: 0;
- }
- .loading.in {
- display: block;
- z-index: 99999;
- }
- .loading.in>i {
- position: absolute;
- top: 50%;
- left: 50%;
- margin: -33px 0 0 -33px;
- background: url("../img/all/loading.gif") no-repeat center center;
- width: 66px;
- height: 66px;
- }
- /*sale */
- .sale .state {
- margin-left: 0;
- margin-bottom: 15px;
- }
- .sale .state .todo {
- padding: 30px 0 15px 0;
- border-right: 1px solid #e8e8e8;
- }
- .sale .state .todo>ul {
- margin: 0 auto;
- }
- .sale .state .todo>ul>li {
- width: 32%;
- height: 60px;
- border-left: 1px dashed #e6e6e6;
- text-align: center;
- position: relative;
- }
- .sale .state .todo>ul>li .title {
- margin-bottom: 5px;
- }
- .sale .state .todo>ul>li:nth-child(3n+1) {
- border-left: none;
- }
- .sale .state .level {
- padding: 15px 100px;
- color: #666;
- }
- .sale .sale-main .left {
- float: left;
- width: 50%;
- padding-right: 8px;
- }
- .sale .sale-main .right {
- float: right;
- width: 50%;
- padding-left: 8px;
- }
- .input-trigger .dropdown-menu tr>td>.btn {
- border-radius: 0;
- border: none;
- }
- .input-sm,.input-group-sm>.form-control,.input-group-sm>.input-group-addon,.input-group-sm>.input-group-btn>.btn
- {
- height: 30px;
- padding: 0 7px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
- }
- .input-xs,.input-group-xs>.form-control,.input-group-xs>.input-group-addon,.input-group-xs>.input-group-btn>.btn
- {
- height: 26px;
- padding: 0 5px;
- font-size: 12px;
- line-height: 1.5;
- border-radius: 3px;
- }
- .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 {
- border-top-left-radius: 0;
- border-bottom-left-radius: 0;
- }
- .input-group+.input-group .input-group-btn:last-child>.btn, .input-group+.input-group .input-group-btn:last-child>.btn-group {
- margin-left: -2px
- }
- .form-horizontal .form-group-inline, .form-horizontal .form-group-inline .form-group {
- margin-left: 0;
- margin-right: 0
- }
- .form-horizontal .form-group-inline .input-group {
- display: inline-table
- }
- .form-horizontal .form-group-sm .control-label {
- padding-top: 5px
- }
- .form-group-inline .has-feedback .form-control-feedback {
- right: 5px
- }
- .form-group.form-group-sm {
- margin-bottom: 10px
- }
- .form-group .form-group {
- margin-bottom: 0
- }
- .ng-table-pager {
- padding: 10px 15px;
- height: 55px;
- width: 100%;
- margin: 0 auto;
- text-align: center;
- }
- .ng-table-pager .pagination {
- margin: 0 auto;
- max-width: 930px;
- text-align: center;
- }
- .headerline {
- font-size: 24px;
- font-family: Microsoft YaHei, SimHei, Verdana;
- font-weight: 500;
- line-height: 22px;
- margin: 25px 0 25px -15px;
- clear: both;
- zoom: 1;
- border-top: 1px solid #eee;
- position: relative;
- font-size: 18px;
- }
- .headerline .index {
- position: absolute;
- top: -12px;
- left: 0;
- width: 25px;
- height: 24px;
- line-height: 24px;
- background: #327ebe;
- color: #fff;
- text-align: center;
- border-radius: 0 2px 2px 0;
- z-index: 2;
- }
- .headerline .content {
- position: absolute;
- top: -12px;
- left: 25px;
- line-height: 24px;
- padding: 0 15px 0 10px;
- background: #fff;
- z-index: 2;
- }
- .headerline .center {
- position: absolute;
- top: -12px;
- left: 40%;
- line-height : 24px;
- padding: 0 15px;
- background: #fff;
- z-index: 2;
- }
- .headerline .end {
- position: absolute;
- top: -12px;
- right: 0;
- line-height: 24px;
- padding-left: 15px;
- background: #fff;
- z-index: 2;
- }
- .total {
- line-height: 30px;
- }
- /*account*/
- .user-role>.role-item{
- float: left;
- }
- .user-role>.role-item>.icon{
- text-align: center;
- color: #333;
- padding: 1px 3px;
- border-radius: 50%;
- border: 1px solid #333;
- }
- .user-role>.role-item>.icon.info{
- color: #56a022;
- border: 1px solid #56a022;
- }
- .user-role>.role-item>.icon.warning{
- color: #8a6d3b;
- border: 1px solid #8a6d3b;
- }
- .row-operator {
- position: relative;
- }
- .row-operator>.operator-menu {
- position: absolute;
- width: 140px;
- height: 0;
- line-height: 30px;
- padding: 0 10px;
- top: 12px;
- left: 100%;
- background-color: #333;
- border-radius: 0 3px 3px 0;
- opacity: 0;
- }
- .row-operator>.operator-menu a {
- color: #fff;
- }
- .row-operator>.operator-menu a:hover {
- color: #56a022;
- }
- .row-operator:hover>.operator-menu {
- height: 30px;
- opacity: .75;
- -webkit-transition: all 0.25s ease-in-out;
- -moz-transition: all 0.25s ease-in-out;
- transition: all 0.25s ease-in-out;
- }
- .resource-container,.role-container {
- padding: 15px;
- min-height: 645px;
- }
- .simple-list {
- padding: 10px 15px;
- }
- .simple-list>li {
- clear: both;
- display: block;
- height: 26px;
- line-height: 26px;
- padding: 8px 10px 8px 15px;
- position: relative;
- }
- .simple-list>li:before {
- position: absolute;
- left: 0;
- top: 5px;
- content: "."
- }
- .simple-list>li .title {
- width: 200px;
- float: left;
- }
- .simple-list>li .content {
- float: left;
- color: #999;
- }
- .resource-container>.resource-item {
- position: relative;
- padding-bottom: 15px;
- }
- .resource-container>.resource-item>.simple-list {
- display: none;
- }
- .resource-container>.resource-item.active>.simple-list {
- display: block;
- }
- .role-container>.role-list {
- width: 100%;
- }
- .role-container>.role-list:nth-child(1){
- border-bottom: #e8e8e8 1px solid;
- }
- .role-container>.role-list:before,.role-container>.role-list:after {
- display: table;
- content: " ";
- clear: both;
- }
- .role-container>.role-list>.item {
- float: left;
- width: 33%;
- height: 150px;
- padding: 10px 25px;
- }
- .role-container>.role-list .desc h3 a{
- font-size: 16px;
- }
- .role-container>.role-list>.item>.icon{
- float: left;
- width: 60px;
- height: 60px;
- line-height: 60px;
- text-align: center;
- margin-top: 30px;
- color: #56a022;
- font-size: 52px;
- border-radius: 50%;
- -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
- box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
- background-color: #f3f3f4;
- }
- .role-container>.role-list>.item>.icon i{
- font-size: 36px;
- position: relative;
- top: -10px;
- }
- .role-container>.role-list>.item>.desc {
- margin-left: 80px;
- }
- .userrole-list {
- width: 576px;
- font-size: 12px;
- max-height: 500px;
- }
- .userrole-list:before,.userrole-list:after {
- display: table;
- content: " ";
- clear: both;
- }
- .userrole-list>.item {
- float: left;
- width: 192px;
- height: 120px;
- padding: 5px 10px;
- border: 2px dashed;
- border-color: #fff #ededed #ededed #fff;
- position: relative;
- }
- .userrole-list>.item.checked {
- border-color: #ff7300;
- }
- .userrole-list>.item>.icon{
- float: left;
- width: 60px;
- height: 60px;
- line-height: 60px;
- text-align: center;
- color: #56a022;
- font-size: 36px;
- border-radius: 50%;
- -webkit-box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
- box-shadow: inset 0 0 1px rgba(0, 0, 0, 0.03);
- background-color: #f3f3f4;
- }
- .userrole-list>.item>.desc {
- margin-left: 70px;
- text-overflow: ellipsis;
- }
- .userrole-list>.item:hover>.icon {
- background-color: #fff1d0;
- }
- .userrole-list>.item.checked>.checker {
- position: absolute;
- left: -2px;
- top: -2px;
- width: 0;
- height: 0;
- border: 8px solid;
- border-color: #ff7300 #fff #fff #ff7300;
- }
- .choose-inline {
- display: table;
- width: 100%;
- margin-top: 10px;
- padding: 10px;
- table-layout: fixed;
- border-collapse: separate;
- border: 1px solid #e1e1e1;
- }
- .choose-inline>.item {
- display: table-cell;
- }
- .choose-inline>.item>ul {
- height: 260px;
- overflow-x: hidden;
- overflow-y: scroll;
- }
- .choose-inline>.item>ul>li {
- line-height: 30px;
- padding-left: 5px;
- }
- .choose-inline>.item>ul>li:hover {
- background: #f1f1f1;
- }
- .choose-inline>.item>ul>li.active {
- background: #fff1d0;
- }
- .choose-inline>.item>ul>li:hover a,.choose-inline>.item>ul>li.active a {
- color: #ff7300;
- text-decoration: none;
- }
- .choose-inline>.item>ul>li>a {
- color: #666666;
- }
- .choose-inline>.item .caret {
- float: right;
- margin-top: 14px;
- margin-right: 8px;
- border-left: 3px solid;
- border-right: none;
- border-top: 3px solid transparent;
- border-bottom: 3px solid transparent;
- }
- .role-resources input[type="checkbox"] {
- margin-right: 5px;
- height: 16px;
- vertical-align: text-bottom;
- margin-top: 0;
- cursor: pointer;
- }
- /*attach*/
- .global_icon {
- background: url("../img/merge/full_ico.png") no-repeat bottom right;
- }
- .global_icon.larger {
- height: 118px;
- width: 118px;
- }
- .icon_xls_l {
- background-position: 0 -855px !important;
- }
- .icon_pdf_l {
- background-position: -120px -735px !important;
- }
- .icon_doc_l {
- background-position: -282px -495px !important;
- }
- .icon_txt_l {
- background-position: -360px -735px !important;
- }
- .icon_zip_l {
- background-position: -120px -855px !important;
- }
- .icon_image_l {
- background-position: -120px -615px !important;
- }
- .icon_undefined_l {
- background-position: 0 -735px;
- }
- .attach .item {
- position: relative;
- cursor: pointer;
- width: 180px;
- height: 180px;
- border: 1px solid #d6d6d6;
- margin-bottom: 25px;
- margin-right: 25px;
- -webkit-box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
- -moz-box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
- box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
- zoom: 1;
- }
- .attach .item .title {
- position: absolute;
- bottom: 0;
- left: 0;
- width: 100%;
- height: 30px;
- line-height: 30px;
- text-align: center;
- padding: 0 5px;
- color: #222;
- border-top: 1px solid #ccc;
- background-color: #fff;
- z-index: 10;
- text-overflow: ellipsis;
- white-space: nowrap;
- overflow: hidden;
- }
- .attach .item .bg {
- position: absolute;
- width: 100%;
- height: 149px;
- line-height: 149px;
- left: 0;
- top: 0;
- overflow: hidden;
- text-align: center;
- vertical-align: middle;
- background-color: #f6f6f9;
- color: #999;
- }
- .attach .item .download {
- position: absolute;
- left: 0;
- top: 119px;
- width: 0;
- height: 30px;
- line-height: 30px;
- background: #090909;
- opacity: 0;
- text-align: center;
- z-index: 99;
- -webkit-transition: width 0.2s ease-in-out;
- -moz-transition: width 0.2s ease-in-out;
- transition: width 0.2s ease-in-out;
- }
- .attach .item:hover .download {
- width: 100%;
- opacity: .5;
- }
- .attach .download a {
- color: #fff;
- }
- .attach .bg .global_icon {
- margin: 20px auto;
- }
- /*process*/
- .progress.progress-sm {
- height: 14px;
- margin-bottom: 8px;
- }
- .row.row-sm {
- margin-left: -5px;
- margin-right: -5px;
- }
- .row-sm [class*="col-"] {
- padding-left: 5px;
- padding-right: 5px;
- }
- /*data view*/
- .condition {
- padding: 10px 15px;
- }
- .condition .form-group {
- margin-bottom: 0;
- }
- .condition .toggle {
- height: 30px;
- line-height: 30px;
- }
- .condition .toggle>a:hover {
- color: #f40;
- }
- .condition .more {
- height: 0;
- opacity: 0;
- -webkit-transition: all 0.2s ease-in-out;
- -moz-transition: all 0.2s ease-in-out;
- transition: all 0.2s ease-in-out;
- }
- .btn-menu .btn-xs,.btn-menu .btn-group-xs>.btn {
- height: 26px;
- }
- .condition .more.open {
- margin-top: 10px;
- height: 26px;
- opacity: 1;
- }
- .condition .more label{
- margin-left: 8px;
- }
- .condition .more .form-control{
- width: 141px;
- }
- /*enterprise*/
- .base-info {
- /*-webkit-box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
- box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
- border-bottom: 1px solid #d9d9d9;*/
- margin-bottom: 10px;
- }
- .base-info .item {
- line-height: 26px;
- /*border-bottom: 1px dotted #e8e8e8;*/
- padding: 5px 0;
- }
- .base-info .title {
- float: left;
- width: 78px;
- color: #999;
- font-weight: bold;
- }
- .base-info .content {
- float: left;
- white-space: nowrap;
- }
- .events {
- position: relative;
- margin: 5px 0 60px 148px;
- padding-top: 40px;
- width: 650px;
- }
- .events dd {
- position: relative;
- border-left: 1px solid #e1e3e6;
- padding-bottom: 45px;
- }
- .events dd:first-child {
- margin-top: -40px;
- padding-top: 40px;
- }
- .events dd:last-child {
- padding-bottom: 0;
- border-color: transparent;
- }
- .events dd .year,.events dd .date {
- position: absolute;
- left: -148px;
- top: 0;
- width: 120px;
- height: 25px;
- line-height: 25px;
- font-size: 16px;
- color: #9ea9c0;
- text-align: right;
- }
- .events dd .year {
- font-size: 24px;
- color: #56a022;
- }
- .events dd .year .character {
- font-size: 16px;
- margin-left: 2px;
- }
- .events dd:first-child .year {
- margin-top: 40px;
- }
- .events dd .icon {
- position: absolute;
- left: -18px;
- top: -5px;
- border: 5px solid #fff;
- width: 35px;
- height: 35px;
- border-radius: 8px;
- text-align: center;
- background: #e5e5e5;
- }
- .events dd .icon.year-icon {
- border-radius: 50%;
- }
- .events dd:first-child .icon {
- margin-top: 40px;
- }
- .events dd .icon i {
- line-height: 25px;
- font-size: 16px;
- color: #c2c2c2;
- }
- .events dd .event {
- padding-top: 12px;
- }
- .events dd .event .event_tit-wrapper {
- height: 25px;
- line-height: 25px;
- font-size: 16px;
- border-top: 1px solid #e1e3e6;
- }
- .events dd .event .event_tit-wrapper .event_tit {
- position: relative;
- top: -13px;
- margin-left: 35px;
- padding-left: 5px;
- background: #fff;
- }
- .events dd .event .event_cnt {
- margin: -6px 0 0 40px;
- font-size: 14px;
- color: #999;
- }
- .events dd .event a {
- color: #56a022;
- }
- .events dd .event {
- padding-top: 12px;
- }
- .table-default .header {
- background: #f5f5f5;
- border-left: 1px solid #ddd;
- border-top: 1px solid #e8e8e8;
- border-bottom: 1px solid #e8e8e8;
- -webkit-box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
- box-shadow: 0 0 7px 0 rgba(119, 119, 119, 0.2);
- }
- .table-default .header>th {
- padding: 10px;
- text-align: center;
- }
- .table-bordered .header>th {
- border-right: 1px solid #ddd;
- }
- .table-bordered .header>th:hover {
- background: #e1e1e1;
- }
- .table-hover>tbody>tr:hover {
- background-color: #d0e9c6;
- -webkit-transition: all 0.15s ease-in-out;
- -moz-transition: all 0.15s ease-in-out;
- transition: all 0.15s ease-in-out;
- }
- .file {
- color: #3a89d1;
- margin-right: 10px;
- }
- /*form valid*/
- input.ng-invalid.ng-dirty,textarea.ng-invalid.ng-dirty {
- box-shadow: 0 0 2px #f00;
- border: #f00 1px solid;
- }
- .form-control[disabled], .form-control[readonly], fieldset[disabled] .form-control {
- cursor: pointer;
- }
- .form-group {
- position: relative;
- }
- .form-group .tooltip.right.control-tooltip {
- top: 5px;
- left: 92%;
- }
- .form-group .tooltip.left.control-tooltip {
- top: 3px;
- right: 0;
- }
- .tooltip.control-tooltip .tooltip-inner {
- padding: 5px 10px;
- }
- /*ng-view*/
- .view-slide-in.ng-enter {
- transition: all .5s ease;
- -webkit-transition:all .5s ease;
- -moz-transition: all .5s ease;
- -o-transition: all .5s ease;
- position: relative;
- opacity: 0;
- top: 10px;
- left: 20px;
- }
- .view-slide-in.ng-enter.ng-enter-active {
- top: 0;
- left: 0;
- opacity: 1;
- }
- .view-slide-in.ng-leave.ng-leave-active{
- top: 5px;
- left: 5px;
- opacity: 1;
- }
- .view-slide-in.ng-leave{
- top: 0;
- left: 0;
- opacity: 0;
- }
- /*search*/
- .search-advance {
- position: absolute;
- right: 35px;
- top: 5px;
- line-height: 20px;
- visibility: hidden;
- white-space: nowrap;
- cursor: pointer;
- }
- .search-advance.active,input[type="search"]:focus + .search-advance{
- visibility: visible;
- }
- .has-feedback input[type="search"] {
- padding-right: 80px;
- }
- #searchContainer {
- width: 500px;
- transition: all 0.2s ease-in-out;
- }
- #searchContainer .block {
- padding-top: 15px;
- }
- #searchContainer .form-group {
- margin-bottom: 15px;
- }
- .warningLg {
- line-height: 40px;
- height: 40px;
- font-family: "Microsoft YaHei", "Hiragino Sans GB";
- font-weight: 700;
- font-size: 17px;
- color:red;
- }
- .dropdown-tab{
- width: 100%;
- height: 100%;
- position: fixed;
- z-index: 1;
- background: rgba(0, 0, 0, 0.2);
- left: 0;
- display: none;
- transition: display .2s ease-in;
- }
- .fixed-menu{
- position: fixed;
- width: 100%;
- top: 0;
- z-index: 1000;
- }
- .dropdown-tab01{
- width: 100%;
- position: absolute;
- background: #fff;
- box-shadow: 0 0 30px #888;
- font-family: "Microsoft YaHei", "微软雅黑";
- transition: all .2s ease-in;
- }
- .dropdown-menu01{
- width: 1100px;
- margin: 0 auto;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- .dropdown-tab .nav-pills>li{
- width: 16%;
- text-align: left;
- line-height: 40px;
- }
- .dropdown-tab .nav-pills>li a{
- padding: 0;
- font-size: 16px;
- color: #000;
- }
- .dropdown-tab .nav-pills>li a:hover{
- color: #d32526;
- }
- .dropdown-tab .col-xs-2{
- font-size: 14px;
- font-weight: bold;
- float: left;
- }
- .dropdown-tab .col-xs-2 img{
- margin-bottom: 5px;
- }
- .dropdown-tab #dropdown-menu-sale img{
- margin-top: 25%;
- }
- .dropdown-tab #dropdown-menu-purc img,.dropdown-tab #dropdown-menu-finance img,.dropdown-tab #dropdown-menu-report img{
- margin-top: 0;
- vertical-align: middle;
- }
- .dropdown-tab #dropdown-menu-purc li,.dropdown-tab #dropdown-menu-finance li,.dropdown-tab #dropdown-menu-report li{
- line-height: 60px;
- }
- .todo .todo-label em{
- margin-right: 20px;
- }
- .todo .todo-content .col-xs-10{
- margin-top:42px;
- }
- #change-company{
- min-width: inherit;
- min-width: 222px;
- border: #ccc 1px solid;
- padding: 0;
- margin: 0;
- top: -100%;
- }
- #change-company:before{
- width: 18px;
- height: 18px;
- border-top: #ccc 1px solid;
- border-left: #ccc 1px solid;
- background: #fff;
- content: "";
- display: inline-block;
- position: absolute;
- top: 52px;
- left: -9px;
- transform: rotate(-45deg);
- box-shadow: -1px -1px 2px #ccc;
- z-index: -100;
- }
- #change-company .text-muted {
- line-height: 40px;
- padding: 0;
- margin: 0;
- padding-left: 10px;
- font-weight: inherit;
- }
- #change-company li{
- padding-top: 0;
- }
- #change-company li a{
- padding: 0;
- margin: 0;
- padding-left: 10px;
- line-height: 50px;
- border-bottom: #ccc 1px solid;
- padding-right: 10px;
- }
- .todo .list-unstyled{
- display: inline-block;
- width: 100%;
- }
- .todo .todo-content:last-child{
- border-bottom: none;
- }
- .feed-wrap .carousel-inner{
- width: 246px;
- height: 600px;
- }
- .feed-wrap .carousel-inner .item img{
- width: 246px;
- height: 568px;
- }
- .feed-wrap .carousel-indicators .active{
- background: #050505;
- border: none;
- }
- .feed-wrap .carousel-indicators{
- bottom: -10px;
- left: 125px;
- }
- .feed-wrap .carousel-indicators li{
- background: #c2c2c2;
- width: 11px;
- height: 11px;
- margin: 3px;
- border-radius: 100%;
- border: none;
- }
- .pane-header img{
- vertical-align: text-bottom;
- }
- .height6{
- width: 100%;
- height: 0px;
- background: #333333;
- }
- .back-home{
- width:100px;
- height: 30px;
- display: inline-block;
- background: #05acd1;
- font-size: 14px;
- color: #fff;
- text-align: center;
- line-height: 30px;
- border-radius: 5px;
- float: right;
- bottom: 50px;
- position: relative;
- right: 90px;
- }
- #footer .margin-left{
- margin-left: 8%;
- }
- .back-home:hover{
- background: #3a89d1;
- text-decoration: none;
- }
- .data-wrap .todo{
- margin-top: 0 !important;
- }
- #footer .col-sm-4 p{
- font-size: 14px;
- line-height: 25px;
- padding: 0;
- margin: 0;
- }
- #footer .col-sm-4{
- margin-top: 10px;
- }
- .modal-content{
- margin-top: 90px;
- }
- .erweima-tk{
- position: absolute;
- text-align: center;
- display: none;
- right: 160px;
- top: 30px;
- /*animation: slideDown .2s ease-in 1 normal both;*/
- }
- .erweima-tk div{
- width: 130px;
- height: 175px;
- background: #fff;
- margin-top: 28px;
- box-shadow: 0 0 2px #ccc;
- }
- .erweima-tk p{
- text-align: center;
- font-size: 12px;
- padding-top: 10px;
- color: #323232;
- }
- @-webkit-keyframes slideDown {
- from {
- -webkit-opacity:0;
- -moz-opacity:0;
- opacity:0;
- -webkit-transform:translate3d(0,-20%,0);
- -moz-transform:translate3d(0,-20%,0);
- -ms-transform:translate3d(0,-20%,0);
- -o-transform:translate3d(0,-20%,0);
- transform:translate3d(0,-20%,0)
- }
- to {
- -webkit-opacity:1;
- -moz-opacity:1;
- opacity:1;
- -webkit-transform:translate3d(0,0,0);
- -moz-transform:translate3d(0,0,0);
- -ms-transform:translate3d(0,0,0);
- -o-transform:translate3d(0,0,0);
- transform:translate3d(0,0,0)
- }
- }
- input:-webkit-autofill { box-shadow: 0 0 0 1000px white inset !important;}
- .bule{
- color: #3a89d1 !important;
- }
- #customer-tab .content{
- width:930px;
- }
- .notice-dot{
- position: relative;
- }
- .notice-dot em{
- width: 8px;
- height: 8px;
- display: inline-block;
- background: #d32526;
- position: absolute;
- right: -5px;
- border-radius: 100%;
- }
- /*公共详情*/
- .pub-com_head {
- width: 100%;
- height: 40px;
- line-height: 44px;
- background: url("../img/approvalFlow/comm_bg01.png") no-repeat left;
- background-color: #f5f5f5;
- background-size: 100% 100%;
- }
- .pub-com_head span {
- margin-left: 30px;
- color: #000;
- font-size: 14px;
- }
- .pub-com_head .p-right{
- float: right;
- }
- .pub-com_head .p-right a{
- color: #3a89d1;
- font-size: 14px;
- margin-right: 20px;
- }
- .pub-com_head .p-right a:hover{
- color: #d32526;
- text-decoration: underline;
- }
- .title-div {
- font-size: 14px;
- font-weight: 600;
- padding-left: 24px;
- height: 50px;
- padding-top: 11px;
- }
- .com_title01,.title-div{
- border-bottom: 1px dashed #327ebe !important;
- }
- #order-detail-list{
- font-size: 14px;
- }
- #order-detail-list .row{
- width: 96%;
- margin: 0 auto;
- line-height: 40px;
- }
- #order-detail-list .title{
- font-weight: inherit;
- }
- #order-detail-list .content{
- color: #323232;
- }
- #order-detail-list .table-default .header {
- border: none;
- background: none;
- }
- #order-detail-list .table-default .header th{
- border-bottom: none;
- font-weight: normal;
- color: #999;
- }
- #order-detail-list .table-default tbody tr{
- background: none;
- }
- #order-detail-list .table-default tbody tr td{
- vertical-align: middle;
- color: #323232;
- }
- #order-detail-list .table-default th,#order-detail-list .table-default td{
- border-top: #ddd 1px dotted;
- }
- .scoroll{
- max-height: 800px;
- overflow-y: scroll;
- overflow-x: hidden;
- display: inline-block;
- position: relative;
- }
- #order-detail-list .content-hide{
- white-space: nowrap;
- overflow: hidden;
- text-overflow: ellipsis;
- width: 560px;
- }
- .title-div .end {
- position: absolute;
- top: 10px;
- right: 0;
- line-height: 24px;
- padding-left: 15px;
- background: #fff;
- z-index: 2;
- }
- /*#order-detail-list .text-inverse{
- width: 100%;
- display: inline-block;
- }*/
- /*弹框搜索*/
- #window-search .form-control{
- height: 36px;
- line-height: 36px;
- border: #327ebe 1px solid;
- border-radius: 0px;
- font-size: 14px;
- }
- #window-search .input-group-addon{
- width: 70px;
- height: 36px;
- display: inline-block;
- background: #327ebe;
- font-size: 16px;
- text-align: center;
- line-height: 36px;
- color: #fff !important;
- padding: 0;
- border: none;
- border-radius: 0;
- position: absolute;
- top: 0;
- right: 15px;
- }
- #order-detail-list .list-menu>li:before{
- top: 15px;
- }
- .table-bordered{
- border: none !important;
- }
- .order-table .header>th{
- border-top: none !important;
- }
- .tender-table .header{
- border-bottom: #e8e8e8 1px solid !important;
- }
- .blue{
- color: #5078cb;
- }
- .red{
- color: #f00;
- }
- /*不可以提交的时候背景为灰色*/
- .dropdown-menu li td button{
- border: none;
- }
- /*
- 日期按钮高度*/
- .btn-ht34{
- height: 34px !important;
- width: 34px !important;
- border: #b7b7b7 1px solid !important;
- }
- /*所有hover边框颜色*/
- .sale-view .order-table>tbody:hover{
- border: #d32526 2px solid !important;
- }
- /*.sale-view .order-table>tbody:hover tr:first-child td{
- border-top: #d32526 1px solid !important;
- }*/
- /*.sale-view .order-table>tbody{
- border: #f00 2px solid !important;
- }*/
- .order-table>tbody{
- border: none !important;
- }
- /*.order-bd{
- border-bottom: none !important;
- }*/
- .btn-warning{
- color: #5078cb;
- background-color: #fff;
- border-color: #5078cb;
- }
- .btn-warning:hover{
- background: #3a89d1;
- border-color: #5078cb;
- }
- .modal-header{
- padding: 10px !important;
- }
- .modal-header h3{
- font-size: 14px;
- }
- .modal-header h3 i{
- display: none;
- }
- .modal-header h3 span{
- font-size: 14px;
- }
- /*disabled*/
- .many-file-btn button:disabled,
- .bid-content>div>div.btn-bid>button:disabled,
- .tender-content>div>div.btn-publish>button:disabled,
- .tender-content>div>div.btn-save>button:disabled,
- .per-data ul li button.save:disabled,
- .purchase .save:disabled,
- .modal-footer button:disabled{
- background: #999 !important;
- border: none !important;
- }
- .public-btn01{
- border: 1px;
- width: 94px !important;
- height: 36px !important;
- line-height: 36px !important;
- font-size: 14px;
- display: inline-block;
- text-align: center;
- padding: 0;
- color: #fff;
- background: #5078cb;
- }
- .public-btn01:disabled {
- background: #999 !important;
- }
- input::-ms-clear{display:none;}
- input::-webkit-clear{display:none;}
- .modal-body .table-bordered{
- border-top: #e8e8e8 1px solid !important;
- }
- /*ie修改*/
- /*.tender-input01{
- width: 150px !important;
- }*/
- .enterprise-btn{
- position: relative;
- }
- .enterprise-btn div{
- position: absolute;
- top: 45px;
- left: 65px;
- }
- .enterprise-btn div a{
- text-align: center;
- font-size: 14px;
- width: 110px;
- height: 30px;
- line-height: 30px;
- background: #ddb732;
- display: inline-block;
- color: #fff;
- border-radius: 5px;
- margin-top: 15px;
- position: relative;
- }
- .enterprise-btn div a em{
- width: 10px;
- height: 10px;
- display: inline-block;
- background: #ea5a60;
- position: absolute;
- right: -5px;
- border-radius: 100%;
- top: -5px;
- }
- .enterprise-btn div a:hover{
- text-decoration: none;
- background: #f6c20d;
- }
- /*所有列表筛选改动样式*/
- #topSearch a{
- width: 88px;
- height: 34px;
- display: inline-block;
- font-size: 14px;
- text-align: center;
- line-height: 34px;
- margin-right: 5px;
- }
- #topSearch a:hover,#topSearch a.active{
- background: #5078cb;
- color: #fff;
- text-decoration: none;
- }
- .toggle p{
- font-size: 14px;
- line-height: 40px;
- }
- .toggle p em{
- font-size: 14px;
- color: #5078cb;
- font-style: inherit;
- }
- .result{
- width: 110px;
- float: right;
- }
- .more-list{
- margin-left: -15px;
- }
- .more-list .form-control{
- border: #bfbfbf 1px solid;
- }
- .more-list .input-group-btn .btn{
- border-color: #bfbfbf;
- }
- .btn-group button em{
- font-style: inherit;
- }
- /*企业圈样式修改*/
- .myReuest .add{
- font-size: 16px;
- color: #5078cb;
- }
- .myReuest .add img{
- margin-right: 5px;
- vertical-align: middle;
- }
- .myReuest{
- padding-left: 0;
- }
- .myReuest p{
- font-size: 14px;
- line-height: 40px;
- text-align: left;
- }
- .myReuest p em{
- font-style: inherit;
- color: #5078cb;
- font-size: 14px;
- }
- .myReuest .col-xs-3{
- text-align: right;
- line-height: 40px;
- }
- .wid_1170{
- margin-left: -240px;
- width: 1170px;
- }
- .myReuest .col-xs-4{
- padding-left: 0;
- }
- /*
- #myquest-public .block{
- background: none;
- }*/
- #myquest-public .group-container{
- width: 100%;
- }
- #myquest-public .group-container .btn-group {
- width: 160px;
- border: none;
- height: 45px;
- }
- #myquest-public .group-container .btn-group .btn {
- border: none;
- font-size: 16px;
- }
- #myquest-public .group-container .btn-group .btn em {
- color: #d32526;
- font-style: inherit;
- }
- #myquest-public .group-container .btn-group .btn:hover {
- background: #fff;
- color: #d32526;
- }
- #myquest-public .group-container .btn-group .btn-info {
- color: #d32526;
- background: #fff;
- border: none;
- }
- #myquest-public .margin-bot{
- margin-bottom: 10px;
- }
- #myquest-public .group-container{
- /*height: 45px;*/
- padding: 0;
- background: #fff;
- }
- #myquest-public #public .search-bg .input-group-addon{
- width: 85px;
- }
- #myquest-public .customer-tab .customer-hd:first-child{
- background: #fff;
- font-size: 16px;
- height: 40px;
- line-height: 40px;
- border-bottom: #ddd 1px solid;
- }
- #myquest-public .customer-tab .customer-hd span{
- font-size: 16px;
- margin-left: 35px;
- }
- .text-left{
- text-align: left !important;
- }
- #myquest-public .customer-tab .customer-bd{
- background: #fff;
- line-height: 50px;
- position: relative;
- }
- #myquest-public .customer-tab tbody{
- border-bottom: #f5f5f5 16px solid;
- }
- #myquest-public .customer-tab .customer-bd.first {
- line-height: 25px;
- font-size: 14px;
- padding-top: 10px;
- padding-bottom: 10px;
- }
- #myquest-public .customer-tab .customer-bd td{
- text-align: left;
- }
- #myquest-public .customer-tab .customer-bd div{
- margin-left: 20px;
- line-height: 30px;
- }
- #myquest-public .customer-tab .customer-bd div span{
- font-size: 14px;
- }
- #myquest-public .customer-tab thead{
- display: none;
- }
- #myquest-public .all-btn a{
- width: 80px;
- height: 24px;
- line-height: 22px;
- border-radius: 4px;
- text-align: center;
- color: #327ebe;
- font-size: 14px;
- display: inline-block;
- margin: 0 auto;
- margin-left: 10px;
- border: #327ebe 1px solid;
- }
- #myquest-public .all-btn a.btn01{
- /* background: #27b6da;*/
- margin-bottom: 5px;
- }
- #myquest-public .all-btn a.btn02{
- /*background: #327ebe;*/
- border: #27b6da 1px solid;
- color: #27b6da;
- }
- #myquest-public .all-btn a:hover{
- background: #5078cb;
- color: #fff;
- }
- .sreach-index{
- background: #f5f5f5;
- text-align: center;
- width: 1170px;
- margin-left: -240px;
- }
- .sreach-index .form-control{
- height: 36px;
- line-height: 36px;
- border: #327ebe 1px solid;
- border-radius: 0px;
- font-size: 14px;
- text-align: center;
- padding-right: 85px;
- }
- .sreach-index .row:first-child{
- margin-top: 15%;
- margin-bottom: 35px;
- }
- .sreach-index .serach-btn{
- width: 85px;
- height: 36px;
- display: inline-block;
- background: #327ebe;
- font-size: 16px;
- text-align: center;
- line-height: 36px;
- color: #fff;
- padding: 0;
- border: none;
- border-radius: 0;
- position: absolute;
- top: 0;
- right: 0;
- }
- .new-dot{
- width: 10px;
- height: 10px;
- display: inline-block;
- background: #ea5a60;
- position: absolute;
- border-radius: 100%;
- top: 10px;
- }
- .left-nav>ul>li.active .new-dot,.left-nav>ul>li:hover .new-dot{
- background: #ea5a60 !important;
- }
- .left-nav>ul>li a{
- position: relative;
- }
- .left-nav>ul>li .new-dot{
- left: 22px;
- }
- .view-slide-in .tab-active{
- /*border-bottom: 1px solid #d32526 !important;*/
- height: 45px;
- }
- .view-slide-in .tab-active .btn-group .btn-info{
- border-bottom: 2px solid #d32526 !important;
- border-radius: 0 !important;
- }
- .no-record{
- text-align: center;
- color: #666;
- border-top: #e8e8e8 1px dotted;
- line-height: 40px;
- border-bottom: #e8e8e8 1px dotted;
- }
- .tab-first{
- width: 100%;
- background: #f5f5f5;
- height: 45px;
- margin-bottom: 15px;
- }
- .tab-first .row{
- margin: 0;
- }
- .tab-first .row a{
- width: 180px;
- display: inline-block;
- height: 45px;
- line-height: 45px;
- text-align: center;
- font-size: 18px;
- float: left;
- background: #eaeaea;
- border-top-right-radius: 10px;
- border-top-left-radius: 10px;
- margin-right: 5px;
- }
- .tab-first .row a.active{
- background: #fff;
- border:#e8e8e8 1px solid;
- border-bottom: #fff 1px solid;
- }
- #myquest-public .group-container .btn-group .btn,#myrequest-btn .btn-group .btn{
- width: 80px;
- text-align: center;
- height: 45px;
- line-height: 45px;
- padding: 0;
- margin-left: 26%;
- }
- #myquest-public .group-container .btn-group .style-btn, #myrequest-btn .btn-group .style-btn{
- width: 150px;
- text-align: center;
- height: 45px;
- line-height: 45px;
- padding: 0;
- margin-left: 20%;
- }
- #myquest-public .group-container .btn-group .btn.btn-info,#myrequest-btn .btn-group .btn.btn-info{
- border-bottom: #d32526 2px solid !important;
- border-radius: 0 !important;
- }
- #myquest-public .group-container .btn-group,.view-slide-in #myrequest-btn .btn-group{
- width: 190px !important;
- }
- .order-table .product .text-muted{
- word-break: break-all;
- }
- /*hover移上去2px 2017-05-09*/
- .tender-list02 .comment-oder:hover,.tender-list dl dd:hover{
- border: #d32526 2px solid !important;
- }
- /*2017-05-10*/
- .unPrinted{
- color: #5078cb !important;
- }
- .left-nav>ul>li:hover a{
- background: #999;
- }
- .textmore{display: block;white-space: nowrap;overflow: hidden;text-overflow: ellipsis;}
- #order-detail-list .table-default .header{
- box-shadow: none;
- }
- input[required]:invalid, input:focus:invalid, textarea[required]:invalid, textarea:focus:invalid{
- -moz-box-shadow: none;
- }
- .search-title{
- font-size: 14px;
- line-height: 90px;
- font-weight: bold;
- margin:0 30px 0 5px;
- }
- .result-title{
- font-size: 14px;
- line-height: 90px;
- text-align: left;
- }
- .result-title em{
- color: #5078cb;
- font-size: 14px;
- }
- .pro-search .search {
- margin-top: 26px !important;
- }
- /*统一弹出框背景透明度*/
- .bomb-box{
- background: rgba(0,0,0,.5) !important;
- }
- .purchase .com_title01 a{
- font-size: 14px;
- }
- .tender-content .tender-list02 dl dd:hover{
- border: #d32526 2px solid;
- }
- .no-record-tab{
- background: #fff;
- text-align: center;
- }
- .right tbody.no-record-tab{
- border-bottom: 0 !important;
- }
- .no-record-tab tr{
- height: 165px !important;
- }
- .no-record-tab tr td{
- vertical-align: middle !important;
- }
- .no-record-tab tr td h3{
- margin: 0;
- }
- .no-record-tab tr td h3 img{
- vertical-align: sub;
- margin-right: 10px;
- }
- /*开关按钮*/
- .checkbox{
- width:54px;
- margin:0px auto;
- text-align: center;
- }
- .checkbox span{
- width:54px;
- height: 26px;
- display: inline-block;
- border-radius: 18px;
- border: #e4e4e4 1px solid;
- background-color: #fff;
- cursor: pointer;
- position: relative;
- box-shadow: 1px 1px 5px #eee;
- transition: background-color .1s ease-out;
- }
- .checkbox span:after{
- content: "";
- position: absolute;
- width:22px;
- top:1px;
- left:0;
- height: 22px;
- line-height: 22px;
- background-color: #fff;
- border:#eee 1px solid;
- border-radius: 50%;
- box-shadow: -1px 2px 1px #999;
- transition: background-color .1s ease-out;
- color: #666;
- font-size: 12px;
- }
- .checkbox span.off{
- background-color: #4bd562;
- transition: background-color .1s ease-in;
- border: #4bd562 1px solid;
- }
- .checkbox span.off:after{
- content: "";
- left: 29px;
- transition: left .1s ease-in;
- box-shadow: 1px 1px -1px #ccc;
- }
- .switch .checkbox{
- padding-top: 6px;
- }
- .switch{
- padding-left: 48px;
- line-height: 35px;
- }
- .switch span:first-child{
- font-size: 14px;
- }
- #myquest-public .customer-tab .customer-hd .checkbox span{
- /*margin-top: 5px;*/
- }
- /*加入标准与非标标志*/
- .order-hd td.hover-show{
- position: relative;
- padding: 0 !important;
- }
- .hover-show a{
- width: 100%;
- padding: 0;
- padding-right: 30px;
- display: inline-block;
- }
- .hover-show.bg01{
- background: url(../img/icon/standard.png) no-repeat top right;
- background-position-y: -1px;
- }
- .hover-show.bg02{
- background: url(../img/icon/no-standard.png) no-repeat top right;
- background-position-y: -1px;
- }
- /*分页样式统一调整*/
- .ng-table-pager{
- height: auto;
- padding: 25px 0;
- background: #fff;
- }
- .ng-table-pager .pagination{
- height: 40px;
- margin-top: 10px;
- }
- .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{
- color: #fff;
- background-color: #327ebe;
- border-color: #327ebe;
- }
- .ng-table-pager .pagination>.disabled>a{
- box-shadow: none;
- }
- .ng-table-pager .pagination>li>a, .ng-table-pager .pagination>li>span{
- font-size: 14px;
- color: #333;
- }
- .ng-table-pager .pagination>li:first-child.disabled>a,.ng-table-pager .pagination>li:nth-last-child(2).disabled>a{
- color: #333;
- background-color: #fff;
- border: 1px solid #ddd;
- }
- .ng-table-pager .pagination>li:first-child a{
- border-bottom-left-radius: 20px;
- border-top-left-radius: 20px;
- }
- .ng-table-pager .pagination>li:nth-last-child(2) a{
- border-bottom-right-radius: 20px;
- border-top-right-radius: 20px;
- }
- .ng-table-pager .pagination>li.disabled>a[ng-switch-when="more"]{
- color: #333;
- background-color: #fff;
- border: 1px solid #ddd;
- }
- /*
- 服务修改*/
- /*.dropdown-tab{
- display: inline-block !important;
- }*/
- .dropdown-tab .content{
- width: 1170px;
- margin: 0 auto;
- }
- .dropdown-tab .heed-tab{
- width: 100%;
- height: 45px;
- line-height: 45px;
- border-bottom: #cfcfcf 1px solid;
- }
- .dropdown-tab .heed-tab ul{
- width: 100%;
- height: 100%;
- -webkit-padding-start: 0;
- }
- .dropdown-tab .heed-tab ul li{
- width: 116px;
- float: left;
- height: 45px;
- text-align: center;
- }
- .dropdown-tab .heed-tab ul li a{
- display: inline-block;
- width: 100%;
- height: 100%;
- font-size: 16px;
- position: relative;
- }
- .dropdown-tab .heed-tab ul li a:after{
- content: '';
- position: absolute;
- width: 1px;
- height: 17px;
- top: 16px;
- right: 0;
- display: inline-block;
- background: #999999;
- }
- .dropdown-tab .heed-tab ul li:last-child a:after{
- background: none;
- }
- .dropdown-tab .heed-tab ul li a em{
- display: inline-block;
- width: 20px;
- height: 20px;
- margin-right: 8px;
- position: relative;
- top: 4px;
- }
- .dropdown-tab .heed-tab ul li a:hover{
- text-decoration: none;
- color: #d8271c;
- }
- .dropdown-tab .heed-tab ul li a:hover{
- cursor: pointer;
- }
- .dropdown-tab .heed-tab ul li a em.list01{
- background: url("../img/icon/list01.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li a em.list02{
- background: url("../img/icon/list02.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li a em.list03{
- background: url("../img/icon/list03.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li a em.list04{
- background: url("../img/icon/list04.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li.active a{
- color: #d8271c;
- }
- .dropdown-tab .heed-tab ul li.active a em.list01,.dropdown-tab .heed-tab ul li:hover a em.list01{
- background: url("../img/icon/list01-act.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li.active a em.list02,.dropdown-tab .heed-tab ul li:hover a em.list02{
- background: url("../img/icon/list02-act.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li.active a em.list03,.dropdown-tab .heed-tab ul li:hover a em.list03{
- background: url("../img/icon/list03-act.png") no-repeat center;
- }
- .dropdown-tab .heed-tab ul li.active a em.list04,.dropdown-tab .heed-tab ul li:hover a em.list04{
- background: url("../img/icon/list04-act.png") no-repeat center;
- }
- .tab-list{
- width: 100%;
- margin: 0 auto;
- padding: 30px 0;
- }
- .tab-list .tab{
- display: none;
- }
- /*销售tab*/
- .tab-list .tab01{
- width: 1170px;
- height: 426px;
- background: url("../img/icon/list-bg01.png") no-repeat center;
- }
- .tab-list .tab a[href='']{
- cursor: default !important;
- background: inherit !important;
- }
- .tab-list .tab01 div{
- float: left;
- }
- .tab-list .tab01 .line01{
- width: 70px;
- height: 426px;
- margin-left: 35px;
- }
- .tab-list .tab01 .line01 a{
- width: 70px;
- height: 70px;
- padding: 16px 0;
- border-radius: 100%;
- }
- .tab-list .tab01 a{
- font-size: 14px;
- color: #fff;
- text-align: center;
- display: inline-block;
- border-radius: 5px;
- /*background: #f47a86;*/
- }
- .tab-list .tab01 a:hover{
- text-decoration: none;
- background: #f47a86;
- }
- .tab-list .tab01 a.a01{
- margin-top: 57px;
- }
- .tab-list .tab01 a.a02{
- margin-top: 228px;
- }
- .tab-list .tab01 .line02{
- width: 98px;
- height: 426px;
- margin-left: 75px;
- }
- .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{
- width: 98px;
- height: 26px;
- line-height: 26px;
- }
- .tab-list .tab01 a.a03{
- margin-top: 0;
- }
- .tab-list .tab01 a.a04{
- margin-top: 54px;
- }
- .tab-list .tab01 a.a05{
- margin-top: 142px;
- }
- .tab-list .tab01 a.a06{
- margin-top: 100px;
- margin-left: 2px;
- }
- .tab-list .tab01 .line03{
- width: 98px;
- height: 426px;
- margin-left: 73px;
- }
- .tab-list .tab01 a.a07{
- margin-top: 44px;
- }
- .tab-list .tab01 a.a08{
- margin-top: 43px;
- height: 42px;
- line-height: inherit;
- }
- .tab-list .tab01 a.a09{
- margin-top: 92px;
- }
- .tab-list .tab01 a.a10{
- margin-top: 99px;
- position: relative;
- left: -2px;
- }
- .tab-list .tab01 .line04{
- width: 98px;
- height: 426px;
- margin-left: 68px;
- }
- .tab-list .tab01 a.a11{
- margin-top: 81px;
- }
- .tab-list .tab01 a.a12{
- margin-top: 58px;
- }
- .tab-list .tab01 a.a13{
- margin-top: 58px;
- }
- .tab-list .tab01 .line05{
- width: 98px;
- height: 426px;
- margin-left: 74px;
- }
- .tab-list .tab01 a.a14{
- margin-top: 36px;
- height: 42px;
- line-height: inherit;
- }
- .tab-list .tab01 a.a15{
- margin-top: 43px;
- }
- .tab-list .tab01 a.a16{
- margin-top: 52px;
- }
- .tab-list .tab01 .line06{
- width: 98px;
- height: 426px;
- margin-left: 69px;
- }
- .tab-list .tab01 a.a17{
- margin-top: 122px;
- }
- .tab-list .tab01 .line07{
- width: 98px;
- height: 426px;
- margin-left: 74px;
- }
- .tab-list .tab01 a.a18{
- margin-top: 44px;
- }
- .tab-list .tab01 a.a19{
- margin-top: 53px;
- }
- .tab-list .tab01 a.a20{
- margin-top: 52px;
- }
- /*采购tab*/
- .tab-list .tab02{
- width: 928px;
- height: 196px;
- background: url("../img/icon/list-bg02.png") no-repeat left;
- margin-left: 20px;
- margin-top: 50px;
- margin-bottom: 40px;
- }
- .tab-list .tab02 div{
- float: left;
- }
- .tab-list .tab02 .line01{
- width: 70px;
- height: 196px;
- margin-left: 1px;
- }
- .tab-list .tab02 .line01 a{
- width: 70px;
- height: 70px;
- padding: 16px 0;
- border-radius: 100%;
- }
- .tab-list .tab02 a{
- font-size: 14px;
- color: #fff;
- text-align: center;
- display: inline-block;
- border-radius: 5px;
- /*background: #f47a86;*/
- }
- .tab-list .tab02 a:hover{
- text-decoration: none;
- background: #f47a86;
- }
- .tab-list .tab02 a.a01{
- margin-top: 14px;
- }
- .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{
- width: 98px;
- height: 26px;
- line-height: 26px;
- }
- .tab-list .tab02 .line02{
- width: 98px;
- height: 196px;
- margin-left: 75px;
- }
- .tab-list .tab02 a.a02{
- margin-top: 0;
- }
- .tab-list .tab02 a.a03{
- margin-top: 56px;
- }
- .tab-list .tab02 .line03{
- width: 98px;
- height: 196px;
- margin-left: 72px;
- }
- .tab-list .tab02 a.a04{
- margin-top: 0;
- }
- .tab-list .tab02 a.a05{
- margin-top: 55px;
- }
- .tab-list .tab02 .line04{
- width: 98px;
- height: 196px;
- margin-left: 70px;
- }
- .tab-list .tab02 a.a06{
- margin-top: 0;
- }
- .tab-list .tab02 a.a07{
- margin-top: 56px;
- }
- .tab-list .tab02 a.a08{
- margin-top: 62px;
- }
- .tab-list .tab02 .line05{
- width: 98px;
- height: 196px;
- margin-left: 74px;
- }
- .tab-list .tab02 a.a09{
- margin-top: 82px;
- }
- .tab-list .tab02 .line06{
- width: 98px;
- height: 196px;
- margin-left: 76px;
- }
- .tab-list .tab02 a.a10{
- margin-top: 43px;
- }
- .tab-list .tab02 a.a11{
- margin-top: 54px;
- }
- /*企业圈tab*/
- .tab-list .tab03{
- width: 928px;
- height: 109px;
- background: url("../img/icon/list-bg03.png") no-repeat left;
- margin-left: 20px;
- margin-top: 50px;
- margin-bottom: 40px;
- }
- .tab-list .tab03 div{
- float: left;
- }
- .tab-list .tab03 .line01{
- width: 70px;
- height: 109px;
- margin-left: 1px;
- }
- .tab-list .tab03 .line01 a{
- width: 70px;
- height: 70px;
- padding: 15px 0;
- border-radius: 100%;
- }
- .tab-list .tab03 a{
- font-size: 14px;
- color: #fff;
- text-align: center;
- display: inline-block;
- border-radius: 5px;
- /*background: #f47a86;*/
- }
- .tab-list .tab03 a:hover{
- text-decoration: none;
- background: #f47a86;
- }
- .tab-list .tab03 a.a01{
- margin-top: 17px;
- }
- .tab-list .tab03 .line02 a,.tab-list .tab03 .line03 a,.tab-list .tab03 .line04 a{
- width: 98px;
- height: 26px;
- line-height: 26px;
- }
- .tab-list .tab03 .line02{
- width: 98px;
- height: 109px;
- margin-left: 63px;
- }
- .tab-list .tab03 a.a02{
- margin-top: 39px;
- }
- .tab-list .tab03 .line03{
- width: 98px;
- height: 109px;
- margin-left: 81px;
- }
- .tab-list .tab03 a.a03{
- margin-top: 0;
- }
- .tab-list .tab03 a.a04{
- margin-top: 56px;
- }
- /*财务tab*/
- .tab-list .tab04{
- width: 1170px;
- height: 245px;
- background: url("../img/icon/list-bg04.png") no-repeat left;
- margin-top: 40px;
- margin-bottom: 40px;
- }
- .tab-list .tab04 div{
- float: left;
- }
- .tab-list .tab04 .line01{
- width: 70px;
- height: 245px;
- margin-left: 44px;
- }
- .tab-list .tab04 .line01 a{
- width: 70px;
- height: 70px;
- line-height: 70px;
- border-radius: 100%;
- }
- .tab-list .tab04 a{
- font-size: 14px;
- color: #fff;
- text-align: center;
- display: inline-block;
- border-radius: 5px;
- /*background: #f47a86;*/
- }
- .tab-list .tab04 a:hover{
- text-decoration: none;
- background: #f47a86;
- }
- .tab-list .tab04 a.a01{
- margin-top: 0;
- }
- .tab-list .tab04 a.a02{
- margin-top: 104px;
- }
- .tab-list .tab04 .line02 a,.tab-list .tab04 .line03 a,.tab-list .tab04 .line04 a{
- width: 98px;
- height: 26px;
- line-height: 26px;
- }
- .tab-list .tab04 .line02{
- width: 98px;
- height: 254px;
- margin-left: 75px;
- }
- .tab-list .tab04 a.a03{
- margin-top: 24px;
- }
- .tab-list .tab04 a.a04{
- margin-top: 148px;
- }
- .tab-list .tab04 .line03{
- width: 98px;
- height: 254px;
- margin-left: 72px;
- }
- .tab-list .tab04 a.a05{
- margin-top: 24px;
- }
- .tab-list .tab04 a.a06{
- margin-top: 148px;
- }
- /*分页修改*/
- .ng-table-pager{
- }
- .ng-table-pager .pagination>.disabled>a{
- box-shadow: none;
- }
- .ng-table-pager .pagination>li{
- float: left;
- }
- .ng-table-pager .pagination>li a{
- margin: 0 1px;
- box-shadow:0 0 3px #ccc inset;
- }
- .ng-table-pager .pagination>li .page-record{
- }
- .ng-table-pager .pagination>li .page-record span{
- font-size: 14px;
- margin: 0 12px;
- }
- .ng-table-pager .pagination>li .page-record span input{
- width: 34px;
- height: 34px;
- border: #b8b8b8 1px solid;
- margin: 0 5px;
- text-align: center;
- }
- .ng-table-pager .pagination>li .page-record span button{
- width: 60px;
- height: 34px;
- text-align: center;
- color: #fff;
- background: #327ebe;
- border: none;
- border-radius: 5px;
- margin: 0 5px;
- }
- .ng-table-pager .ng-table-counts{
- display: none;
- }
- .ng-table-pager .pagination>li:first-child.disabled>a{
- box-shadow:0 0 3px #ccc inset;
- }
- .ng-table-pager .pagination>li.disabled>a[ng-switch-when="more"]{
- border: none;
- }
- .pagination>li>a, .pagination>li>span{
- border: #ccc 1px solid;
- }
- .ng-table-pager .pagination>li button[disabled]{
- cursor: not-allowed;
- }
- /*企业圈新修改*/
- #myquest-public{
- position: relative;
- }
- .com-tab-menu{
- margin-top: 18px;
- }
- .com-tab-menu ul{
- width: 100%;
- margin: 0 auto;
- }
- .com-tab-menu ul li{
- float: left;
- height: 30px;
- list-style: none;
- position: relative;
- padding: 0 20px;
- }
- .com-tab-menu ul li.no-after:after{
- display: none;
- }
- .com-tab-menu ul li:first-child{
- padding-left: 0;
- }
- .com-tab-menu ul li:after{
- content: '';
- position: absolute;
- width: 1px;
- height: 16px;
- top: 8px;
- right: 0;
- display: inline-block;
- background: #999999;
- }
- .com-tab-menu ul li:last-child:after{
- display: none;
- }
- .com-tab-menu ul li a{
- width: 100%;
- height: 100%;
- display: inline-block;
- font-size: 16px;
- line-height: 30px;
- padding: 0 10px;
- }
- .com-tab-menu ul li a.add-btn{
- width: 110px;
- height: 24px;
- line-height: 22px;
- border: #327ebe 1px solid;
- border-radius: 5px;
- color: #327ebe;
- font-size: 14px;
- text-align: center;
- padding: 0;
- margin-top: 6px;
- }
- .com-tab-menu ul li a.add-btn:hover,.com-tab-menu ul li a.add-btn.active{
- background:#327ebe;
- color: #fff;
- border-bottom: none !important;
- }
- .com-tab-menu ul li a.active{
- border-bottom: #d32526 2px solid!important;
- color:#d32526 ;
- }
- .form-input .form-group-sm .form-control{
- height: 36px;
- line-height: 36px;
- border: #327ebe 1px solid;
- border-radius: 0px;
- font-size: 14px;
- }
- .form-input.search-bg .input-group-addon {
- width: 85px;
- height: 36px;
- display: inline-block;
- background: #327ebe;
- font-size: 16px;
- text-align: center;
- line-height: 36px;
- color: #fff;
- padding: 0;
- border: none;
- border-radius: 0;
- position: absolute;
- top: 0;
- right: 0;
- }
- .form-input.search-bg{
- margin-top: 15px;
- }
- .filter-list{
- height: 30px;
- }
- .filter-list span{
- color: #999;
- }
- .filter-list .input-select{
- width: 110px;
- }
- .text-icon{
- display: inline-block;
- padding: 2px 20px;
- font-size: 14px;
- transform: rotate(-10deg);
- border-radius: 5px;
- white-space: nowrap;
- text-align: center;
- color: #e07b7c;
- border: #e07b7c 1px solid;
- position: relative;
- line-height: inherit !important;
- position: absolute;
- right: 330px;
- }
- .form-input .col-xs-3{
- font-size: 14px;
- }
- .form-input .col-xs-3 p{
- margin: 0;
- line-height: 38px;
- }
- .form-input .col-xs-3 p em{
- font-size: 14px;
- color: #327ebe;
- font-style: inherit;
- margin: 0 2px;
- }
- #myquest-public{
- border: #e8e8e8 1px solid;
- border-top: none;
- }
- .tab-first{
- position: relative;
- }
- .tab-first .row{
- border-bottom: #e8e8e8 1px solid;
- height: 45px;
- }
- .tab-first .row:before{
- content: '';
- position: absolute;
- display: inline-block;
- height: 45px;
- width: 1px;
- background: #f5f5f5;
- left: -1px;
- top: 0;
- }
- .tab-first .row:after{
- content: '';
- position: absolute;
- display: inline-block;
- height: 45px;
- width: 1px;
- background: #f5f5f5;
- right: -1px;
- top: 0;
- }
- .line24{
- line-height: 24px !important;
- }
- .height72{
- height: 72px !important;
- }
|