325f45c2b28fe28f7f3bb509ce40ed72a90c1130.svn-base 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587
  1. /* html{
  2. scrollbar-face-color: #DDEEFF; 主色调
  3. scrollbar-highlight-color: #FFFFFF;
  4. scrollbar-shadow-color: #689ee4; 描边颜色
  5. scrollbar-3dlight-color: #689ee4; 左侧边高光颜色
  6. scrollbar-arrow-color: #6688AA; 小三角颜色
  7. scrollbar-darkshadow-color: #DDEEFF;
  8. }
  9. ::-webkit-scrollbar {
  10. width:8px;
  11. height:8px;
  12. background-color:#fff;
  13. }
  14. ::-webkit-scrollbar-track {
  15. background-color:#fefefe;
  16. border-radius:10px;
  17. -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.4)
  18. }
  19. ::-webkit-scrollbar-track:hover {
  20. -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.4);
  21. background-color:#fefefe;
  22. }
  23. ::-webkit-scrollbar-track:active {
  24. -webkit-box-shadow:inset 0 0 6px rgba(0,0,0,0.4);
  25. background-color:#f0f0f0;
  26. }
  27. ::-webkit-scrollbar-thumb {
  28. background-color: rgba(0,0,0,0.2);
  29. border-radius:10px;
  30. -webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1)
  31. }
  32. ::-webkit-scrollbar-thumb:hover {
  33. background-color: rgba(0,0,0,0.4);
  34. -webkit-box-shadow:inset 1px 1px 0 rgba(0,0,0,.1)
  35. }
  36. ::-webkit-scrollbar-thumb:active {
  37. background: rgba(0,0,0,0.6)
  38. }
  39. */
  40. /*两侧默认背景色*/
  41. #lbox{
  42. padding: 0;
  43. background-color:#ffffff;
  44. }
  45. #rbox{
  46. padding: 0;
  47. background-color:#ffffff;
  48. }
  49. /*盒子模型*/
  50. .box1{
  51. }
  52. /* .box1 .box_topcenter{
  53. width: 100%;
  54. height: 6px;
  55. background-image: url(box/box1_topcenter.png);
  56. background-repeat: repeat-x;
  57. background-position:0% 100%;
  58. overflow: hidden;
  59. line-height: 12px;
  60. } */
  61. .box1 .box_topleft{
  62. width: 100%;
  63. height: 100%;
  64. background-image: url(box/box1_topleft.png);
  65. background-repeat: no-repeat;
  66. background-position:0% 100%;
  67. overflow: hidden;
  68. }
  69. .box1 .box_topright{
  70. width: 100%;
  71. height: 100%;
  72. background-image: url(box/box1_topright.png);
  73. background-repeat: no-repeat;
  74. background-position: 100% 0%;
  75. overflow: hidden;
  76. }
  77. .box1 .box_middlecenter{
  78. width: 100%;
  79. background-color: #ffffff;
  80. }
  81. .box1 .box_middleleft{
  82. width: 100%;
  83. background-image: url(box/box1_middleleft.jpg);
  84. background-repeat: repeat-y;
  85. }
  86. .box1 .box_middleright{
  87. width: 100%;
  88. background-image: url(box/box1_middleright.jpg);
  89. background-repeat: repeat-y;
  90. background-position: 100% 0%;
  91. }
  92. .box1 .box_bottomcenter{
  93. width: 100%;
  94. height: 9px;
  95. background-image: url(box/box1_bottomcenter.png);
  96. background-repeat: repeat-x;
  97. overflow: hidden;
  98. line-height: 9px;
  99. }
  100. .box1 .box_bottomleft{
  101. width: 100%;
  102. height: 100%;
  103. background-image: url(box/box1_bottomleft.png);
  104. background-repeat: no-repeat;
  105. overflow: hidden;
  106. }
  107. .box1 .box_bottomright{
  108. width: 100%;
  109. height: 100%;
  110. background-image: url(box/box1_bottomright.png);
  111. background-repeat: no-repeat;
  112. background-position: 100% 0%;
  113. overflow: hidden;
  114. }
  115. /* .box1 .boxContent{
  116. padding:0 8px 0 8px;
  117. }
  118. */
  119. .box1 .boxContent form{
  120. margin:0 8px 0 8px;
  121. }
  122. .box1_custom{
  123. }
  124. .box1_custom .box_topcenter{
  125. width: 100%;
  126. height: 8px;
  127. background-image: url(box/box1_custom_topcenter.jpg);
  128. background-repeat: repeat-x;
  129. overflow: hidden;
  130. line-height: 8px;
  131. }
  132. .box1_custom .box_topleft{
  133. width: 100%;
  134. height: 100%;
  135. background-image: url(box/box1_custom_topleft.jpg);
  136. background-repeat: no-repeat;
  137. overflow: hidden;
  138. }
  139. .box1_custom .box_topright{
  140. width: 100%;
  141. height: 100%;
  142. background-image: url(box/box1_custom_topright.jpg);
  143. background-repeat: no-repeat;
  144. background-position: 100% 0%;
  145. overflow: hidden;
  146. }
  147. .box1_custom .box_middlecenter{
  148. width: 100%;
  149. background-color: #f3f3f3;
  150. }
  151. .box1_custom .box_middleleft{
  152. width: 100%;
  153. background-image: url(box/box1_custom_middleleft.jpg);
  154. background-repeat: repeat-y;
  155. }
  156. .box1_custom .box_middleright{
  157. width: 100%;
  158. background-image: url(box/box1_custom_middleright.jpg);
  159. background-repeat: repeat-y;
  160. background-position: 100% 0%;
  161. }
  162. .box1_custom .box_bottomcenter{
  163. width: 100%;
  164. height: 8px;
  165. background-image: url(box/box1_custom_bottomcenter.jpg);
  166. background-repeat: repeat-x;
  167. overflow: hidden;
  168. line-height: 8px;
  169. }
  170. .box1_custom .box_bottomleft{
  171. width: 100%;
  172. height: 100%;
  173. background-image: url(box/box1_custom_bottomleft.jpg);
  174. background-repeat: no-repeat;
  175. overflow: hidden;
  176. }
  177. .box1_custom .box_bottomright{
  178. width: 100%;
  179. height: 100%;
  180. background-image: url(box/box1_custom_bottomright.jpg);
  181. background-repeat: no-repeat;
  182. background-position: 100% 0%;
  183. overflow: hidden;
  184. }
  185. .box1_custom .boxContent{
  186. padding:0 8px 0 20px;
  187. }
  188. .box2{
  189. padding:2px 4px 0px 0;
  190. }
  191. .box2 .box_topcenter{
  192. width: 100%;
  193. height: 34px;
  194. background-image: url(form/groupTitleBottom.jpg);
  195. background-repeat: repeat-x;
  196. background-position:0% 100%;
  197. overflow: hidden;
  198. line-height: 34px;
  199. }
  200. .box2 .box_topleft{
  201. width: 100%;
  202. height: 100%;
  203. overflow: hidden;
  204. }
  205. .box2 .box_topright{
  206. width: 100%;
  207. height: 100%;
  208. overflow: hidden;
  209. background-color: #F2F2F2;
  210. }
  211. .box2 .box_middlecenter{
  212. width: 100%;
  213. background-color: #ffffff;
  214. }
  215. .box2 .box_middleleft{
  216. width: 100%;
  217. }
  218. .box2 .box_middleright{
  219. width: 100%;
  220. }
  221. .box2 .box_bottomcenter{
  222. width: 100%;
  223. /* height: 5px; */
  224. overflow: hidden;
  225. }
  226. .box2 .box_bottomleft{
  227. width: 100%;
  228. /* height: 100%; */
  229. overflow: hidden;
  230. }
  231. .box2 .box_bottomright{
  232. width: 100%;
  233. height: 100%;
  234. overflow: hidden;
  235. }
  236. .box2 .title{
  237. color:#000000;
  238. font-size:16px;
  239. float:left;
  240. padding:0px 5px 0 5px;
  241. text-align:center;
  242. font-weight:bold;
  243. /* background-image: url(form/groupTitle.jpg); */
  244. background-repeat: repeat-x;
  245. background-position:0% 100%;
  246. height:100%;
  247. display:inline-block;
  248. }
  249. .box2 .title_icon span{
  250. padding-left:18px!important;
  251. }
  252. .box2 .boxSubTitle{
  253. float:left;
  254. }
  255. .box2 .status{
  256. float:right;
  257. padding:0px 10px 0 0;
  258. color:white;
  259. height:34px;
  260. line-height:34px;
  261. }
  262. /****************************************梁俊鹏 2015-11-25 去掉box2的内边距***********************************************************/
  263. /* .box2 .boxContent{
  264. padding:0px 4px 0 10px;
  265. } */
  266. .box2 .ss{
  267. cursor:pointer;
  268. cursor:hand;
  269. color:black;
  270. }
  271. .box2_custom{
  272. padding:2px 4px 4px 0;
  273. }
  274. .box2_custom .box_topcenter{
  275. width: 100%;
  276. height: 33px;
  277. background-image: url(box/box2_custom_topcenter.jpg);
  278. background-repeat: repeat-x;
  279. overflow: hidden;
  280. line-height: 33px;
  281. }
  282. .box2_custom .box_topleft{
  283. width: 100%;
  284. height: 100%;
  285. background-image: url(box/box2_custom_topleft.jpg);
  286. background-repeat: no-repeat;
  287. overflow: hidden;
  288. }
  289. .box2_custom .box_topright{
  290. width: 100%;
  291. height: 100%;
  292. background-image: url(box/box2_custom_topright.jpg);
  293. background-repeat: no-repeat;
  294. background-position: 100% 0%;
  295. overflow: hidden;
  296. }
  297. .box2_custom .box_middlecenter{
  298. width: 100%;
  299. background-color: #ffffff;
  300. }
  301. .box2_custom .box_middleleft{
  302. width: 100%;
  303. background-image: url(box/box2_custom_middleleft.jpg);
  304. background-repeat: repeat-y;
  305. }
  306. .box2_custom .box_middleright{
  307. width: 100%;
  308. background-image: url(box/box2_custom_middleright.jpg);
  309. background-repeat: repeat-y;
  310. background-position: 100% 0%;
  311. }
  312. .box2_custom .box_bottomcenter{
  313. width: 100%;
  314. height: 2px;
  315. background-image: url(box/box2_custom_bottomcenter.jpg);
  316. background-repeat: repeat-x;
  317. overflow: hidden;
  318. }
  319. .box2_custom .box_bottomleft{
  320. width: 100%;
  321. height: 100%;
  322. background-image: url(box/box2_custom_bottomleft.jpg);
  323. background-repeat: no-repeat;
  324. overflow: hidden;
  325. }
  326. .box2_custom .box_bottomright{
  327. width: 100%;
  328. height: 100%;
  329. background-image: url(box/box2_custom_bottomright.jpg);
  330. background-repeat: no-repeat;
  331. background-position: 100% 0%;
  332. overflow: hidden;
  333. }
  334. .box2_custom .title{
  335. color:#ffffff;
  336. padding:0px 0 0 5px;
  337. float:left;
  338. font-weight:bold;
  339. font-size:14px;
  340. }
  341. .box2_custom .title_icon span{
  342. padding-left:25px!important;
  343. }
  344. .box2_custom .boxSubTitle{
  345. float:left;
  346. }
  347. .box2_custom .status{
  348. float:right;
  349. padding:0px 10px 0 0;
  350. height:43px;
  351. line-height:43px;
  352. }
  353. .box2_custom .boxContent{
  354. padding:8px 2px 0 10px;
  355. }
  356. .box2_custom .ss{
  357. cursor:pointer;
  358. cursor:hand;
  359. }
  360. .box2_custom .ss a{
  361. text-decoration:none;
  362. }
  363. .box2_custom .ss a:hover{
  364. text-decoration: underline;
  365. }
  366. .box4{
  367. padding:2px 4px 4px 0;
  368. }
  369. .box4_topcenter{
  370. width: 100%;
  371. height: 26px;
  372. background-image: url(box/box4_topcenter.jpg);
  373. background-repeat: repeat-x;
  374. overflow: hidden;
  375. line-height: 26px;
  376. }
  377. .box4_topleft{
  378. width: 100%;
  379. height: 100%;
  380. background-image: url(box/box4_topleft.jpg);
  381. background-repeat: no-repeat;
  382. overflow: hidden;
  383. }
  384. .box4_topright{
  385. width: 100%;
  386. height: 100%;
  387. background-image: url(box/box4_topright.jpg);
  388. background-repeat: no-repeat;
  389. background-position: 100% 0%;
  390. overflow: hidden;
  391. }
  392. .box4_topcenter_notitle{
  393. width: 100%;
  394. height: 1px;
  395. overflow:hidden;
  396. border-top:solid 1px #80c0e7;/*box4顶上边框色*/
  397. background-color:#ffffff;
  398. }
  399. .box4_topleft_notitle{
  400. }
  401. .box4_topright_notitle{
  402. }
  403. .box4_middlecenter{
  404. width: 100%;
  405. background-color: #ffffff;
  406. }
  407. .box4_middleleft{
  408. width: 100%;
  409. background-image: url(box/box4_middleleft.jpg);
  410. background-repeat: repeat-y;
  411. }
  412. .box4_middleright{
  413. width: 100%;
  414. background-image: url(box/box4_middleright.jpg);
  415. background-repeat: repeat-y;
  416. background-position: 100% 0%;
  417. }
  418. .box4_bottomcenter{
  419. width: 100%;
  420. height: 5px;
  421. background-image: url(box/box4_bottomcenter.jpg);
  422. background-repeat: repeat-x;
  423. overflow: hidden;
  424. }
  425. .box4_bottomleft{
  426. width: 100%;
  427. height: 100%;
  428. background-image: url(box/box4_bottomleft.jpg);
  429. background-repeat: no-repeat;
  430. overflow: hidden;
  431. }
  432. .box4_bottomright{
  433. width: 100%;
  434. height: 100%;
  435. background-image: url(box/box4_bottomright.jpg);
  436. background-repeat: no-repeat;
  437. background-position: 100% 0%;
  438. overflow: hidden;
  439. }
  440. .box4 .title{
  441. color:white;
  442. height:26px;
  443. line-height:26px;
  444. padding:0px 0 0 10px;
  445. font-weight:bold;
  446. }
  447. .box4 .boxContent{
  448. padding:0;
  449. }
  450. .box4 .boxContent .subtitle{
  451. padding:0 3px 0 1px;
  452. }
  453. .box4 .boxContent .subtitle_con{
  454. background-image: url(box/box4_subbg.jpg);
  455. background-repeat: repeat-x;
  456. height:25px;
  457. width:100%;
  458. line-height:25px;
  459. text-indent:20px;
  460. font-weight:bold;
  461. color:#ffffff;
  462. border-left:solid 1px #ffffff;
  463. border-right:solid 1px #ffffff;
  464. }
  465. .box4 .boxContent .subtitle_con a{
  466. color:#ffffff;
  467. }
  468. .box4 .boxContent .subtitle_con a:hover{
  469. color:#ffffff;
  470. }
  471. .box4 .boxContent ul{
  472. padding:0 0 8px 0;
  473. }
  474. .box4 .boxContent li{
  475. padding:5px 0 0 4%;
  476. }
  477. .box4 .boxContent li a{
  478. display:block;
  479. width:95%;
  480. height:25px;
  481. line-height:25px;
  482. background-image: url(box/box4_listBg.jpg);
  483. background-repeat: repeat-x;
  484. border:solid 1px #aec9fe;/*边框颜色*/
  485. text-indent:10px;
  486. }
  487. .box4 .boxContent li a:hover{
  488. background-image: url(box/box4_listBg_hover.jpg);
  489. background-repeat: repeat-x;
  490. border:solid 1px #80c0e7;/*边框颜色*/
  491. text-decoration:none;
  492. color:#0b5ea0;/*文字颜色*/
  493. }
  494. .box4 .boxContent li .current{
  495. background-image: url(box/box4_listBg_hover.jpg);
  496. background-repeat: repeat-x;
  497. border:solid 1px #80c0e7;/*边框颜色*/
  498. text-decoration:none;
  499. color:#0b5ea0;/*文字颜色*/
  500. }
  501. .box4 .boxContent .line_dot{
  502. height:4px;
  503. overflow:hidden;
  504. border-top:dotted 1px #619cc5;/*线颜色*/
  505. }
  506. /*盒子模型*/
  507. /*信息提示*/
  508. .tooltip .top{
  509. padding: 30px 8px 0;
  510. background: url(tooltip/bt.gif) no-repeat top;
  511. display:block;
  512. }
  513. .tooltip .bottom{
  514. padding:3px 8px 15px;
  515. color: #548912;
  516. background: url(tooltip/bt.gif) no-repeat bottom;
  517. display:block;
  518. }
  519. .tooltip_min .top{
  520. padding: 25px 8px 0;
  521. background: url(tooltip/bt_min.gif) no-repeat top;
  522. display:block;
  523. }
  524. .tooltip_min .bottom{
  525. padding:3px 8px 5px;
  526. color: #548912;
  527. background: url(tooltip/bt_min.gif) no-repeat bottom;
  528. display:block;
  529. }
  530. .tooltip_mid .top{
  531. padding: 25px 8px 0;
  532. text-align:left;
  533. line-height:150%;
  534. background: url(tooltip/bt_mid.gif) no-repeat top;
  535. display:block;
  536. }
  537. .tooltip_mid .bottom{
  538. padding:3px 8px 5px;color: #548912;
  539. text-align:left;
  540. line-height:150%;
  541. background: url(tooltip/bt_mid.gif) no-repeat bottom;
  542. display:block;
  543. }
  544. .tooltip_r .top{
  545. padding: 10px 8px 5px;
  546. background: url(tooltip/bt_r.gif) no-repeat top;
  547. display:block;
  548. }
  549. .tooltip_r .bottom{
  550. padding:30px 8px 0px;
  551. color: #548912;
  552. background: url(tooltip/bt_r.gif) no-repeat bottom;
  553. display:block;
  554. }
  555. .tooltip_min_r .top{
  556. padding: 10px 8px 5px;
  557. background: url(tooltip/bt_min_r.gif) no-repeat top;
  558. display:block;
  559. }
  560. .tooltip_min_r .bottom{
  561. padding:25px 8px 0px;
  562. color: #548912;
  563. background: url(tooltip/bt_min_r.gif) no-repeat bottom;
  564. display:block;
  565. }
  566. .tooltip_mid_r .top{
  567. padding: 10px 8px 5px;
  568. background: url(tooltip/bt_mid_r.gif) no-repeat top;
  569. display:block;
  570. }
  571. .tooltip_mid_r .bottom{
  572. padding:25px 8px 0px;
  573. color: #548912;
  574. background: url(tooltip/bt_mid_r.gif) no-repeat bottom;
  575. display:block;
  576. }
  577. .tooltip_s .top{
  578. padding: 30px 8px 0;
  579. background: url(tooltip/bt_s.gif) no-repeat top;
  580. display:block;
  581. }
  582. .tooltip_s .bottom{
  583. padding:3px 8px 15px;
  584. color: #548912;
  585. background: url(tooltip/bt_s.gif) no-repeat bottom;
  586. display:block;
  587. }
  588. .tooltip_min_s .top{
  589. padding: 25px 8px 0;
  590. background: url(tooltip/bt_min_s.gif) no-repeat top;
  591. display:block;
  592. }
  593. .tooltip_min_s .bottom{
  594. padding:3px 8px 5px;
  595. color: #548912;
  596. background: url(tooltip/bt_min_s.gif) no-repeat bottom;
  597. display:block;
  598. }
  599. .tooltip_mid_s .top{
  600. padding: 25px 8px 0;
  601. text-align:left;
  602. line-height:150%;
  603. background: url(tooltip/bt_mid_s.gif) no-repeat top;
  604. display:block;
  605. }
  606. .tooltip_mid_s .bottom{
  607. padding:3px 8px 5px;color: #548912;
  608. text-align:left;
  609. line-height:150%;
  610. background: url(tooltip/bt_mid_s.gif) no-repeat bottom;
  611. display:block;
  612. }
  613. .formErrorContent{
  614. padding: 25px 8px 0;
  615. text-align:left;
  616. line-height:150%;
  617. background: url(tooltip/bt_error.gif) no-repeat top;
  618. display:block;
  619. }
  620. .formErrorBottom{
  621. padding:3px 8px 5px;color: #548912;
  622. text-align:left;
  623. line-height:150%;
  624. background: url(tooltip/bt_error.gif) no-repeat bottom;
  625. display:block;
  626. }
  627. /*信息提示*/
  628. /*弹出窗口*/
  629. .zDialogCon{
  630. padding-top:5px;
  631. }
  632. .dialog_main{
  633. box-shadow: 0px 5px 8px rgba(0, 0, 0, 0.5);
  634. border:solid 1px #999999;
  635. }
  636. .dialog_borderWidth{
  637. width:0px;
  638. }
  639. .dialog_title{
  640. padding: 10px 0 0 10px;
  641. float: left;
  642. font-weight: bold;
  643. color:#fff;
  644. }
  645. .dialog_lt{
  646. background-color:#3994c7;
  647. height:40px;
  648. }
  649. .dialog_ct{
  650. background-color:#3994c7;
  651. height:40px;
  652. vertical-align:top;
  653. }
  654. .dialog_rt{
  655. background-color:#3994c7;
  656. height:40px;
  657. }
  658. .dialog_closebtn{
  659. background-image:url(popup/dialog_closebtn.jpg);
  660. border:0;
  661. background-repeat:no-repeat;
  662. background-color:transparent;
  663. background-position:50% 50%;
  664. margin: 10px 5px 0 0;
  665. position: relative;
  666. top:auto;
  667. cursor: pointer;
  668. float: right;
  669. height: 22px;
  670. width: 22px;
  671. }
  672. .dialog_closebtn_over{
  673. background-image:url(popup/dialog_closebtn_over.jpg);
  674. border:0;
  675. background-repeat:no-repeat;
  676. background-color:transparent;
  677. background-position:50% 50%;
  678. margin: 10px 5px 0 0;
  679. position: relative;
  680. top:auto;
  681. cursor: pointer;
  682. float: right;
  683. height: 22px;
  684. width: 22px;
  685. }
  686. .dialog_maxbtn{
  687. background-image:url(popup/dialog_maxbtn.jpg);
  688. border:0;
  689. background-repeat:no-repeat;
  690. background-color:transparent;
  691. background-position:50% 50%;
  692. margin: 10px 5px 0 0;
  693. position: relative;
  694. top:auto;
  695. cursor: pointer;
  696. float: right;
  697. height: 22px;
  698. width: 22px;
  699. }
  700. .dialog_minbtn{
  701. background-image:url(popup/dialog_minbtn.jpg);
  702. border:0;
  703. background-repeat:no-repeat;
  704. background-color:transparent;
  705. background-position:50% 50%;
  706. margin: 10px 5px 0 0;
  707. position: relative;
  708. top:auto;
  709. cursor: pointer;
  710. float: right;
  711. height: 22px;
  712. width: 22px;
  713. }
  714. .dialog_decreasebtn{
  715. background-image:url(popup/dialog_decreasebtn.jpg)!important;
  716. }
  717. .dialog_mlm{
  718. background-color:#ffffff;
  719. }
  720. .dialog_bg{
  721. background:#eaece9 url(popup/dialog_bg.jpg) no-repeat scroll right top;
  722. }
  723. .dialog_messageIcon{
  724. background-image:url(popup/window.gif);
  725. border:0;
  726. background-repeat:no-repeat;
  727. background-color:transparent;
  728. background-position:50% 50%;
  729. width:32px;
  730. height:32px;
  731. }
  732. .dialog_mrm{
  733. background-color:#ffffff;
  734. }
  735. .dialog_lb{
  736. background-color:#ffffff;
  737. height:0px;
  738. }
  739. .dialog_cb{
  740. background-color:#ffffff;
  741. height:0px;
  742. }
  743. .dialog_rb{
  744. background-color:#ffffff;
  745. height:0px;
  746. }
  747. .icon_alert{
  748. background-image: url(popup/icon_alert.png) !important;
  749. background-image: url(popup/icon_alert.gif);
  750. border:0;
  751. background-repeat:no-repeat;
  752. background-color:transparent;
  753. background-position:50% 50%;
  754. width:48px;
  755. height:48px;
  756. }
  757. .icon_query{
  758. background-image:url(popup/icon_confirm.png);
  759. border:0;
  760. background-repeat:no-repeat;
  761. background-color:transparent;
  762. background-position:50% 50%;
  763. width:79px;
  764. height:79px;
  765. }
  766. .dialog_sample_top{
  767. border:solid 1px #999999;
  768. background-color:#eeeeee;
  769. height:32px;
  770. font-weight:bold;
  771. color:black;
  772. }
  773. .dialog__simple_closebtn{
  774. background-image:url(popup/simple_close.gif);
  775. border:0;
  776. background-repeat:no-repeat;
  777. background-color:transparent;
  778. background-position:50% 50%;
  779. width:10px;
  780. height:10px;
  781. margin: 10px 8px 0 0;
  782. position: relative;
  783. top: auto;
  784. cursor: pointer;
  785. float: right;
  786. }
  787. .dialog_sample_middle{
  788. border-left:solid 1px #999999;
  789. border-right:solid 1px #999999;
  790. border-bottom:solid 1px #999999;
  791. background-color:#ffffff;
  792. }
  793. .dialog_tip_middle{
  794. border-left:solid 1px #999999;
  795. border-right:solid 1px #999999;
  796. background-color:#ffffff;
  797. }
  798. .dialog_tip_bottom{
  799. height:31px;
  800. background-image:url(popup/simple_bottomLine.gif);
  801. background-repeat:repeat-x;;
  802. }
  803. .dialog_tip_bottomArr{
  804. height:100%;
  805. background-image: url(popup/simple_tip.png) !important;
  806. background: url(popup/simple_tip.gif) no-repeat center top;
  807. }
  808. .dialog_shadow_lt{
  809. background-image:url(popup/shadow_lt.gif);
  810. background-repeat:no-repeat;
  811. background-color:#ffffff;
  812. height:39px;
  813. width:220px;
  814. }
  815. .dialog_shadow_ct{
  816. background-image:url(popup/shadow_ct.gif);
  817. background-repeat: repeat-x;
  818. background-color:#ffffff;
  819. height:39px;
  820. }
  821. .dialog_shadow_rt{
  822. background-image:url(popup/shadow_rt.gif);
  823. background-repeat:no-repeat;
  824. height:39px;
  825. width:225px;
  826. }
  827. .dialog_shadow_lm{
  828. background-image:url(popup/shadow_lm.gif);
  829. background-repeat: repeat-y;
  830. background-color:#ffffff;
  831. }
  832. .dialog_shadow_cm{
  833. background-color:#ffffff;
  834. }
  835. .dialog_shadow_rm{
  836. background-image:url(popup/shadow_rm.gif);
  837. background-repeat: repeat-y;
  838. }
  839. .dialog_shadow_lb{
  840. background-image: url(popup/shadow_lb.png) !important;
  841. background-image:url(popup/shadow_lb.gif);
  842. background-repeat:no-repeat;
  843. height:130px;
  844. width:220px;
  845. }
  846. .dialog_shadow_cb{
  847. background-image: url(popup/shadow_cb.png) !important;
  848. background-image:url(popup/shadow_cb.gif);
  849. background-repeat: repeat-x;
  850. background-position:0 100%;
  851. height:130px;
  852. }
  853. .dialog_shadow_rb{
  854. background-image: url(popup/shadow_rb.png) !important;
  855. background-image:url(popup/shadow_rb.gif);
  856. background-repeat:no-repeat;
  857. height:130px;
  858. width:225px;
  859. }
  860. .dialog_shadow_content{
  861. position:absolute;
  862. z-index:100;
  863. padding:0 0 0 4px;
  864. }
  865. .dialog_shadow_content_top{
  866. height:39px;
  867. font-weight:bold;
  868. color:black;
  869. }
  870. .dialog_trans_icon{
  871. background-image:url(popup/trans.gif);
  872. border:0;
  873. background-repeat:no-repeat;
  874. background-color:transparent;
  875. background-position:50% 50%;
  876. width:1px;
  877. height:1px;
  878. float:left;
  879. }
  880. .dialog_icon_default{
  881. background-image: url(popup/icon_dialog.png);
  882. _background-image: url(popup/icon_dialog.gif);
  883. background-repeat: no-repeat;
  884. background-position: 0 50%;
  885. padding-left:15px;
  886. display:inline-block;
  887. word-break: keep-all;
  888. word-wrap: normal;
  889. }
  890. .dialogTaskBg{
  891. height:27px;
  892. width:100%;
  893. position:absolute;
  894. bottom:0;
  895. background-image:url(popup/taskBar.jpg);
  896. background-repeat: repeat-x;
  897. padding:2px 5px 0 0;
  898. z-index:3000;
  899. }
  900. .taskItemContainer {
  901. height: 26px;
  902. left: 18px;
  903. position: absolute;
  904. top: 4px;
  905. width: 9999px;
  906. z-index:5;
  907. }
  908. .taskItemButtonLeft{
  909. position:absolute;
  910. top:4px;
  911. left:0;
  912. width:17px;
  913. height:23px;
  914. background-image: url(popup/item_leftBtn.gif);
  915. background-repeat: no-repeat;
  916. cursor:pointer;
  917. cursor:hand;
  918. z-index:10;
  919. }
  920. .taskItemButtonRight{
  921. position:absolute;
  922. right:0;
  923. top:4px;
  924. width:17px;
  925. height:23px;
  926. background-image: url(popup/item_rightBtn.gif);
  927. background-repeat: no-repeat;
  928. cursor:pointer;
  929. cursor:hand;
  930. z-index:10;
  931. }
  932. .dialogTaskItem{
  933. display:inline-block;
  934. height:26px;
  935. width:100px;
  936. background-image:url(popup/taskItemRight.jpg);
  937. background-repeat:no-repeat;
  938. background-position:100% 0%;
  939. margin:0 0 0 2px;
  940. padding:0 5px 0 0;
  941. text-decoration:none;
  942. }
  943. .dialogTaskItem .dialogTaskItemRight{
  944. display:block;
  945. background-image:url(popup/taskItemLeft.jpg);
  946. background-repeat:no-repeat;
  947. height:26px;
  948. line-height:26px;
  949. color:#ffffff;
  950. padding:0 0px 0 5px;
  951. overflow:hidden;
  952. white-space:nowrap;
  953. text-overflow:ellipsis;
  954. text-decoration:none;
  955. }
  956. .dialogTaskItem:hover{
  957. text-decoration:none;
  958. }
  959. .dialogTaskItemCurrent{
  960. background-image:url(popup/taskItemRightCurrent.jpg)!important;
  961. }
  962. .dialogTaskItemCurrent .dialogTaskItemRight{
  963. background-image:url(popup/taskItemLeftCurrent.jpg)!important;
  964. }
  965. .dialogTaskItemIcon{
  966. overflow:hidden;
  967. width:100%;
  968. text-overflow:ellipsis;
  969. }
  970. .dialogMinEffect{
  971. border:dotted 1px #000000;
  972. filter:alpha(opacity=40);
  973. opacity:0.4;
  974. background-color:#000000;
  975. position:absolute;
  976. z-index:9999;
  977. }
  978. /*弹出窗口*/
  979. /*浮动面板*/
  980. .floatPanel{
  981. position:absolute;
  982. }
  983. .searchMain{
  984. position:absolute;
  985. }
  986. .searchPanTop{
  987. background-color:#f8fbfe;/*背景颜色*/
  988. border-left:solid 1px #80c0e7;/*边框颜色*/
  989. border-right:solid 1px #80c0e7;/*边框颜色*/
  990. border-bottom:solid 1px #80c0e7;/*边框颜色*/
  991. background-image: url(floatPanel/searchPan.jpg);
  992. background-position:0 100%;
  993. background-repeat:repeat-x;
  994. }
  995. .searchPanLeft{
  996. background-color:#f8fbfe;/*背景颜色*/
  997. border-top:solid 1px #80c0e7;/*边框颜色*/
  998. border-right:solid 1px #80c0e7;/*边框颜色*/
  999. border-bottom:solid 1px #80c0e7;/*边框颜色*/
  1000. background-image: url(floatPanel/searchPan.jpg);
  1001. background-position:0 100%;
  1002. background-repeat:repeat-x;
  1003. }
  1004. .searchPanRight{
  1005. background-color:#f8fbfe;/*背景颜色*/
  1006. border-top:solid 1px #80c0e7;/*边框颜色*/
  1007. border-left:solid 1px #80c0e7;/*边框颜色*/
  1008. border-bottom:solid 1px #80c0e7;/*边框颜色*/
  1009. background-image: url(floatPanel/searchPan.jpg);
  1010. background-position:0 100%;
  1011. background-repeat:repeat-x;
  1012. }
  1013. .searchPanBottom{
  1014. background-color:#f8fbfe;/*背景颜色*/
  1015. border-top:solid 1px #80c0e7;/*边框颜色*/
  1016. border-left:solid 1px #80c0e7;/*边框颜色*/
  1017. border-right:solid 1px #80c0e7;/*边框颜色*/
  1018. background-image: url(floatPanel/searchPan.jpg);
  1019. background-position:0 100%;
  1020. background-repeat:repeat-x;
  1021. }
  1022. .searchPan_con{
  1023. padding:5px;
  1024. line-height:200%;
  1025. text-align:left;
  1026. overflow:auto;
  1027. }
  1028. .searchBtnTop{
  1029. background-color:#3b95c8;
  1030. width:156px;
  1031. height:27px;
  1032. color:white;
  1033. border:0;
  1034. cursor:pointer;
  1035. cursor:hand;
  1036. }
  1037. .searchBtnLeft{
  1038. background-color:#3b95c8;
  1039. width:28px;
  1040. height:156px;
  1041. color:white;
  1042. border:0;
  1043. cursor:pointer;
  1044. cursor:hand;
  1045. writing-mode:tb-rl;
  1046. letter-spacing:2px;
  1047. line-height:150%;
  1048. position:absolute;
  1049. }
  1050. .searchBtnRight{
  1051. background-color:#3b95c8;
  1052. width:28px;
  1053. height:156px;
  1054. color:white;
  1055. border:0;
  1056. cursor:pointer;
  1057. cursor:hand;
  1058. writing-mode:tb-rl;
  1059. letter-spacing:2px;
  1060. line-height:150%;
  1061. position:absolute;
  1062. }
  1063. .searchBtnBottom{
  1064. background-color:#3b95c8;
  1065. width:156px;
  1066. height:27px;
  1067. color:white;
  1068. border:0;
  1069. cursor:pointer;
  1070. cursor:hand;
  1071. }
  1072. .searchBtnConTop{
  1073. width:100%;
  1074. }
  1075. .searchBtnConLeft{
  1076. width:28px;
  1077. height:156px;
  1078. position:relative;
  1079. }
  1080. .searchBtnConRight{
  1081. width:28px;
  1082. height:156px;
  1083. position:relative;
  1084. }
  1085. .searchBtnConBottom{
  1086. width:100%;
  1087. }
  1088. .clearTop{
  1089. clear:both;
  1090. line-height:1px;
  1091. }
  1092. .searchBtnConLeft a{
  1093. top:2px;
  1094. right:2px;
  1095. }
  1096. .searchBtnConRight a{
  1097. top:2px;
  1098. left:2px;
  1099. }
  1100. .floatPanelClose{
  1101. background-image: url(floatPanel/close_normal.gif);
  1102. background-repeat: no-repeat;
  1103. background-position:50% 50%;
  1104. width:16px;
  1105. height:16px;
  1106. display:block;
  1107. position:absolute;
  1108. }
  1109. .floatPanelClose:hover{
  1110. background-image: url(floatPanel/close_hover.gif);
  1111. }
  1112. /*浮动面板*/
  1113. /*进度条*/
  1114. .progressBar{
  1115. width:305px;
  1116. height:22px;
  1117. background-image: url(nav/progressBar.gif);
  1118. background-repeat: no-repeat;
  1119. }
  1120. .loadmask-msg {
  1121. border: 1px solid #619cc5;/*边框颜色*/
  1122. background: #d9ebf5;/*背景颜色*/
  1123. }
  1124. /*进度条*/
  1125. /*弹出式提示框*/
  1126. .box_msg{
  1127. box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.5);
  1128. border:solid 1px #cccccc;
  1129. }
  1130. .box_msg .msg_topcenter{
  1131. width: 100%;
  1132. height: 33px;
  1133. background-color:#3b95c8;
  1134. overflow: hidden;
  1135. line-height: 33px;
  1136. }
  1137. .box_msg .msg_topleft{
  1138. width: 100%;
  1139. height: 100%;
  1140. overflow: hidden;
  1141. }
  1142. .box_msg .msg_topright{
  1143. width: 100%;
  1144. height: 100%;
  1145. overflow: hidden;
  1146. }
  1147. .box_msg .msg_middlecenter{
  1148. width: 100%;
  1149. background-color: #ffffff;/*内容区背景色*/
  1150. }
  1151. .box_msg .msg_middleleft{
  1152. width: 100%;
  1153. }
  1154. .box_msg .msg_middleright{
  1155. width: 100%;
  1156. }
  1157. .box_msg .msg_bottomcenter{
  1158. width: 100%;
  1159. height: 5px;
  1160. background-color: #ffffff;
  1161. overflow: hidden;
  1162. line-height: 5px;
  1163. }
  1164. .box_msg .msg_bottomleft{
  1165. width: 100%;
  1166. height: 100%;
  1167. overflow: hidden;
  1168. }
  1169. .box_msg .msg_bottomright{
  1170. width: 100%;
  1171. height: 100%;
  1172. overflow: hidden;
  1173. }
  1174. .box_msg .boxContent{
  1175. padding:0 5px 0 5px;
  1176. }
  1177. .box_msg .msg_title{
  1178. float:left;
  1179. padding:0 0 0 10px;
  1180. color:white;
  1181. font-weight:bold;
  1182. }
  1183. .box_msg .msg_close{
  1184. width:22px;
  1185. height:22px;
  1186. background-image: url(box/box_msg_close.jpg);
  1187. background-repeat: no-repeat;
  1188. background-position:0% 100%;
  1189. cursor:pointer;
  1190. cursor:hand;
  1191. float:right;
  1192. margin:6px 5px 0 0;
  1193. }
  1194. .box_msg_custom{
  1195. }
  1196. .box_msg_custom .msg_topcenter{
  1197. width: 100%;
  1198. height: 33px;
  1199. background-image: url(box/box_msg_custom_topcenter.jpg);
  1200. background-repeat: repeat-x;
  1201. overflow: hidden;
  1202. line-height: 33px;
  1203. }
  1204. .box_msg_custom .msg_topleft{
  1205. width: 100%;
  1206. height: 100%;
  1207. background-image: url(box/box_msg_custom_topleft.jpg);
  1208. background-repeat: no-repeat;
  1209. overflow: hidden;
  1210. }
  1211. .box_msg_custom .msg_topright{
  1212. width: 100%;
  1213. height: 100%;
  1214. background-image: url(box/box_msg_custom_topright.jpg);
  1215. background-repeat: no-repeat;
  1216. background-position: 100% 0%;
  1217. overflow: hidden;
  1218. }
  1219. .box_msg_custom .msg_middlecenter{
  1220. width: 100%;
  1221. background-color: #ffffff;/*内容区背景色*/
  1222. }
  1223. .box_msg_custom .msg_middleleft{
  1224. width: 100%;
  1225. background-image: url(box/box_msg_custom_middleleft.jpg);
  1226. background-repeat: repeat-y;
  1227. }
  1228. .box_msg_custom .msg_middleright{
  1229. width: 100%;
  1230. background-image: url(box/box_msg_custom_middleright.jpg);
  1231. background-repeat: repeat-y;
  1232. background-position: 100% 0%;
  1233. }
  1234. .box_msg_custom .msg_bottomcenter{
  1235. width: 100%;
  1236. height: 5px;
  1237. background-image: url(box/box_msg_custom_bottomcenter.jpg);
  1238. background-repeat: repeat-x;
  1239. overflow: hidden;
  1240. line-height: 5px;
  1241. }
  1242. .box_msg_custom .msg_bottomleft{
  1243. width: 100%;
  1244. height: 100%;
  1245. background-image: url(box/box_msg_custom_bottomleft.jpg);
  1246. background-repeat: no-repeat;
  1247. overflow: hidden;
  1248. }
  1249. .box_msg_custom .msg_bottomright{
  1250. width: 100%;
  1251. height: 100%;
  1252. background-image: url(box/box_msg_custom_bottomright.jpg);
  1253. background-repeat: no-repeat;
  1254. background-position: 100% 0%;
  1255. overflow: hidden;
  1256. }
  1257. .box_msg_custom .boxContent{
  1258. padding:5px;
  1259. }
  1260. .box_msg_custom .msg_title{
  1261. float:left;
  1262. padding:0 0 0 10px;
  1263. color:white;
  1264. font-weight:bold;
  1265. }
  1266. .box_msg_custom .msg_close{
  1267. width:25px;
  1268. height:25px;
  1269. background-image: url(box/box_msg_custom_close.jpg);
  1270. background-repeat: no-repeat;
  1271. background-position:0% 100%;
  1272. cursor:pointer;
  1273. cursor:hand;
  1274. float:right;
  1275. padding:3px 5px 0 0;
  1276. }
  1277. /*弹出式提示框*/
  1278. /*基本表格样式*/
  1279. .tableStyle{
  1280. border-collapse: collapse;
  1281. border: 1px solid #cbcbcb;
  1282. width: 100%;
  1283. background-color: White;
  1284. }
  1285. .noBottomLine{
  1286. border-bottom:0!important;
  1287. }
  1288. .th{
  1289. border-left: 1.0pt solid windowtext;
  1290. border-right: 1.0pt solid windowtext;
  1291. border-bottom: 1.0pt solid windowtext;
  1292. word-wrap: normal;
  1293. word-break: keep-all;
  1294. overflow:hidden;
  1295. border-color: #b6cad2;
  1296. height:34px;
  1297. padding: 0 2px 0 4px;
  1298. color:#000000;
  1299. background-image: url(table/th_bg.jpg);
  1300. background-repeat: repeat-x;
  1301. font-weight: normal;
  1302. line-height:32px;
  1303. }
  1304. .th_m{
  1305. border-left: 1.0pt solid windowtext;
  1306. border-right: 1.0pt solid windowtext;
  1307. border-bottom: 1.0pt solid windowtext;
  1308. word-wrap: normal;
  1309. word-break: keep-all;
  1310. overflow:hidden;
  1311. border-color: #b6cad2;
  1312. height:30px;
  1313. padding: 0 2px 0 4px;
  1314. color:#000000;
  1315. background-image: url(table/th_bg_m.jpg);
  1316. background-color:#e9f4fa;
  1317. background-repeat:repeat;
  1318. font-weight: normal;
  1319. line-height:30px;
  1320. }
  1321. .th_m2{
  1322. border-left: 1.0pt solid windowtext;
  1323. border-right: 1.0pt solid windowtext;
  1324. border-bottom: 1.0pt solid windowtext;
  1325. word-wrap: normal;
  1326. word-break: keep-all;
  1327. overflow:hidden;
  1328. border-color: #b6cad2;
  1329. padding: 0 2px 0 4px;
  1330. color:#000000;
  1331. background-image: url(table/th_bg_m.jpg);
  1332. background-repeat:repeat;
  1333. background-color:#e9f4fa;
  1334. font-weight: normal;
  1335. line-height:60px;
  1336. height:60px;
  1337. }
  1338. .th_m3{
  1339. border-left: 1.0pt solid windowtext;
  1340. border-right: 1.0pt solid windowtext;
  1341. border-bottom: 1.0pt solid windowtext;
  1342. word-wrap: normal;
  1343. word-break: keep-all;
  1344. overflow:hidden;
  1345. border-color: #b6cad2;
  1346. padding: 0 2px 0 4px;
  1347. color:#000000;
  1348. background-image: url(table/th_bg_m.jpg);
  1349. background-repeat:repeat;
  1350. background-color:#e9f4fa;
  1351. font-weight: normal;
  1352. line-height:90px;
  1353. height:90px;
  1354. }
  1355. .th_over{
  1356. border-left: 1.0pt solid windowtext;
  1357. border-right: 1.0pt solid windowtext;
  1358. border-bottom: 1.0pt solid windowtext;
  1359. word-wrap: normal;
  1360. word-break: keep-all;
  1361. overflow:hidden;
  1362. border-color: #b6cad2;
  1363. height:34px;
  1364. padding: 0 2px 0 4px;
  1365. color:#000000;
  1366. background-image: url(table/th_bg_over.jpg);
  1367. background-repeat: repeat-x;
  1368. font-weight: normal;
  1369. line-height:32px;
  1370. }
  1371. .tableStyle td{
  1372. border-left: 1.0pt solid windowtext;
  1373. border-right: 1.0pt solid windowtext;
  1374. border-bottom: 1.0pt solid windowtext;
  1375. border-color: #e2e2e2;
  1376. height:36px;
  1377. padding: 1px 2px 1px 4px;
  1378. }
  1379. .tableStyleWordWrap td{
  1380. word-wrap: normal;
  1381. word-break: keep-all;
  1382. }
  1383. .tableStyle tr{
  1384. color:#333333;
  1385. }
  1386. .tableStyle .viewModeEven{
  1387. /*修改*/
  1388. /*text-align:right;*/
  1389. /*background-color:#eeeeee;*/
  1390. /*修改*/
  1391. }
  1392. /*基本表格样式*/
  1393. /*表格隔行颜色、鼠标移入某行颜色、选中某行颜色*/
  1394. tr.odd{
  1395. background:#f7f7f7;
  1396. }
  1397. tr.highlight{
  1398. background:#e5ebee;/*鼠标移入高亮色*/
  1399. }
  1400. tr.selected{
  1401. background:#ffffd5;/*点击后背景色*/
  1402. }
  1403. /*表格隔行颜色、鼠标移入某行颜色、选中某行颜色*/
  1404. /*树形表格样式*/
  1405. .treeTable {
  1406. border-collapse: collapse;
  1407. border: 1px solid #cbcbcb;
  1408. width: 100%;
  1409. background-color: White;
  1410. }.treeTable th {
  1411. border-left: 1.0pt solid windowtext;
  1412. border-right: 1.0pt solid windowtext;
  1413. border-bottom: 1.0pt solid windowtext;
  1414. word-wrap: normal;
  1415. word-break: keep-all;
  1416. overflow:hidden;
  1417. border-color: #b6cad2;
  1418. height:34px;
  1419. padding: 0 2px 0 4px;
  1420. color:#000000;
  1421. background-image: url(table/th_bg.jpg);
  1422. background-repeat: repeat-x;
  1423. font-weight: normal;
  1424. line-height:32px;
  1425. }.treeTable td {
  1426. border-left: 1.0pt solid windowtext;
  1427. border-right: 1.0pt solid windowtext;
  1428. border-bottom: 1.0pt solid windowtext;
  1429. border-color: #e2e2e2;
  1430. height:36px;
  1431. padding: 1px 2px 1px 4px;
  1432. }
  1433. /*树形表格样式*/
  1434. /*分组样式*/
  1435. .groupTitle{
  1436. height:40px;
  1437. line-height:40px;
  1438. font-size:16px;
  1439. font-weight:bold;
  1440. background-image: url(form/groupTitleBottom.jpg);
  1441. background-repeat:repeat-x;
  1442. background-position:0% 100%;
  1443. margin: 0 0 10px 0;
  1444. }
  1445. .groupTitle span{
  1446. display:block;
  1447. height:100%;
  1448. width:120px;
  1449. background-image: url(form/groupTitle.jpg);
  1450. background-repeat:repeat-x;
  1451. background-position:0% 100%;
  1452. text-align:center;
  1453. }
  1454. /*分组样式*/
  1455. /*表单布局表格样式*/
  1456. .formTable{
  1457. border:0;
  1458. width:100%;
  1459. border-collapse: collapse;
  1460. }
  1461. .formTable td{
  1462. padding:8px 0 8px 0;
  1463. }
  1464. /*表单布局表格样式*/
  1465. /*文本框样式*/
  1466. input, textarea {
  1467. -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1468. -moz-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1469. box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  1470. -webkit-transition: border linear 0.2s, box-shadow linear 0.2s;
  1471. -moz-transition: border linear 0.2s, box-shadow linear 0.2s;
  1472. -ms-transition: border linear 0.2s, box-shadow linear 0.2s;
  1473. -o-transition: border linear 0.2s, box-shadow linear 0.2s;
  1474. transition: border linear 0.2s, box-shadow linear 0.2s;
  1475. }
  1476. .textinput{
  1477. background-color: #ffffff;
  1478. border-top:solid 1px #a7b5bc;
  1479. border-left:solid 1px #a7b5bc;
  1480. border-right:solid 1px #ced9df;
  1481. border-bottom:solid 1px #ced9df;
  1482. color:#333333;
  1483. width:200px;
  1484. height: 25px;
  1485. line-height: 25px;
  1486. }
  1487. .textinput_hover{
  1488. background-color: #ffffff;
  1489. border-top:solid 1px #a7b5bc;
  1490. border-left:solid 1px #a7b5bc;
  1491. border-right:solid 1px #ced9df;
  1492. border-bottom:solid 1px #ced9df;
  1493. color:#333333;
  1494. width:200px;
  1495. height: 25px;
  1496. line-height: 25px;
  1497. }
  1498. .textinput_click{
  1499. background-color:#ffffff;
  1500. border-top:solid 1px #a7b5bc;
  1501. border-left:solid 1px #a7b5bc;
  1502. border-right:solid 1px #ced9df;
  1503. border-bottom:solid 1px #ced9df;
  1504. color:#333333;
  1505. width:200px;
  1506. height: 25px;
  1507. line-height: 25px;
  1508. border-color:rgba(82,168,236,0.8);
  1509. outline:0;
  1510. -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1511. -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1512. box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)
  1513. }
  1514. /*文本框样式*/
  1515. /*文本域样式*/
  1516. .textarea{
  1517. background-color: #ffffff;
  1518. border-top:solid 1px #a7b5bc;
  1519. border-left:solid 1px #a7b5bc;
  1520. border-right:solid 1px #ced9df;
  1521. border-bottom:solid 1px #ced9df;
  1522. color:#333333;
  1523. overflow:auto;
  1524. word-break:break-all;
  1525. word-wrap:break-word;
  1526. width: 350px;
  1527. height: 100px;
  1528. }
  1529. .textarea_hover{
  1530. background-color: #ffffff;
  1531. border-top:solid 1px #a7b5bc;
  1532. border-left:solid 1px #a7b5bc;
  1533. border-right:solid 1px #ced9df;
  1534. border-bottom:solid 1px #ced9df;
  1535. color:#333333;
  1536. overflow:auto;
  1537. word-break:break-all;
  1538. word-wrap:break-word;
  1539. width: 350px;
  1540. height: 100px;
  1541. }
  1542. .textarea_click{
  1543. background-color: #ffffff;
  1544. border-top:solid 1px #a7b5bc;
  1545. border-left:solid 1px #a7b5bc;
  1546. border-right:solid 1px #ced9df;
  1547. border-bottom:solid 1px #ced9df;
  1548. color:#333333;
  1549. overflow:auto;
  1550. word-break:break-all;
  1551. word-wrap:break-word;
  1552. width: 350px;
  1553. height: 100px;
  1554. border-color:rgba(82,168,236,0.8);
  1555. outline:0;
  1556. -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1557. -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1558. box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)
  1559. }
  1560. /*文本域样式*/
  1561. /*按钮样式*/
  1562. .button{
  1563. background-color:#f4f7f8;
  1564. border:1px solid #d3dbde;
  1565. height:30px;
  1566. line-height:30px;
  1567. border-radius: 3px 3px 3px 3px;
  1568. color:#000000;
  1569. min-width:70px;
  1570. }
  1571. .button.button_hover{
  1572. background-color:#3c95c8!important;
  1573. border:1px solid #3c95c8!important;
  1574. color:#ffffff!important;
  1575. }
  1576. .button.toggle{
  1577. background-color:#3c95c8!important;
  1578. border:1px solid #3c95c8!important;
  1579. color:#ffffff!important;
  1580. }
  1581. .button2{
  1582. background-color:#3c95c8;
  1583. border:1px solid #3c95c8;
  1584. font-size:14px;
  1585. height:30px;
  1586. line-height:30px;
  1587. border-radius: 3px 3px 3px 3px;
  1588. color:#ffffff;
  1589. min-width:70px;
  1590. }
  1591. .button2.button_hover{
  1592. -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1593. -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1594. box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1595. color:yellow;
  1596. }
  1597. .buttonswich{
  1598. width:80px;
  1599. height:31px;
  1600. background-image:url(form/swich_off.png);
  1601. background-repeat:no-repeat;
  1602. background-color:transparent;
  1603. border:0;
  1604. cursor:pointer;
  1605. cursor:hand;
  1606. }
  1607. .buttonswich.toggle{
  1608. background-image:url(form/swith_on.png)!important;
  1609. }
  1610. .buttonswich2{
  1611. width:68px;
  1612. height:32px;
  1613. background-image:url(form/swich_off2.png);
  1614. background-repeat:no-repeat;
  1615. background-color:transparent;
  1616. border:0;
  1617. cursor:pointer;
  1618. cursor:hand;
  1619. }
  1620. .buttonswich2.toggle{
  1621. background-image:url(form/swith_on2.png)!important;
  1622. }
  1623. /*按钮样式*/
  1624. /*radio与checkbox*/
  1625. .checkboxRender [type="radio"]:not(:checked),
  1626. .checkboxRender [type="radio"]:checked {
  1627. position: absolute;
  1628. left: -9999px;
  1629. }
  1630. .checkboxRender [type="radio"]:not(:checked) + label,
  1631. .checkboxRender [type="radio"]:checked + label {
  1632. position: relative;
  1633. padding-left: 25px;
  1634. cursor: pointer;
  1635. }
  1636. .checkboxRender [type="radio"]:not(:checked) + label:before,
  1637. .checkboxRender [type="radio"]:checked + label:before {
  1638. content: '';
  1639. position: absolute;
  1640. left:0; top: 0px;
  1641. width: 17px; height: 17px;
  1642. border: 1px solid #aaa;
  1643. background: #f8f8f8;
  1644. border-radius: 30px;
  1645. box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
  1646. line-height:150%;
  1647. font-size:12px;
  1648. }
  1649. .checkboxRender [type="radio"]:not(:checked) + label:after,
  1650. .checkboxRender [type="radio"]:checked + label:after {
  1651. content: '●';
  1652. position: absolute;
  1653. top: 1px; left: 5px;
  1654. font-size: 14px;
  1655. color: #09ad7e;
  1656. transition: all .2s;
  1657. line-height:150%;
  1658. font-size:12px;
  1659. }
  1660. .checkboxRender [type="radio"]:not(:checked) + label:after {
  1661. opacity: 0;
  1662. transform: scale(0);
  1663. }
  1664. .checkboxRender [type="radio"]:checked + label:after {
  1665. opacity: 1;
  1666. transform: scale(1);
  1667. }
  1668. .checkboxRender [type="radio"]:disabled:not(:checked) + label:before,
  1669. .checkboxRender [type="radio"]:disabled:checked + label:before {
  1670. box-shadow: none;
  1671. border-color: #bbb;
  1672. background-color: #ddd;
  1673. }
  1674. .checkboxRender [type="radio"]:disabled:checked + label:after {
  1675. color: #999;
  1676. }
  1677. .checkboxRender [type="radio"]:disabled + label {
  1678. color: #aaa;
  1679. }
  1680. .checkboxRender [type="radio"]:checked:focus + label:before,
  1681. .checkboxRender [type="radio"]:not(:checked):focus + label:before {
  1682. }
  1683. .checkboxRender [type="checkbox"]:not(:checked),
  1684. .checkboxRender [type="checkbox"]:checked {
  1685. position: absolute;
  1686. left: -9999px;
  1687. }
  1688. .checkboxRender [type="checkbox"]:not(:checked) + label,
  1689. .checkboxRender [type="checkbox"]:checked + label {
  1690. position: relative;
  1691. padding-left: 25px;
  1692. cursor: pointer;
  1693. }
  1694. .checkboxRender [type="checkbox"]:not(:checked) + label:before,
  1695. .checkboxRender [type="checkbox"]:checked + label:before {
  1696. content: '';
  1697. position: absolute;
  1698. left:0; top: -1px;
  1699. width: 17px; height: 17px;
  1700. border: 1px solid #aaa;
  1701. background: #f8f8f8;
  1702. border-radius: 3px;
  1703. box-shadow: inset 0 1px 3px rgba(0,0,0,.3);
  1704. line-height:150%;
  1705. font-size:12px;
  1706. }
  1707. .checkboxRender [type="checkbox"]:not(:checked) + label:after,
  1708. .checkboxRender [type="checkbox"]:checked + label:after {
  1709. content: '✔';
  1710. position: absolute;
  1711. top: 0; left: 4px;
  1712. font-size: 14px;
  1713. color: #09ad7e;
  1714. transition: all .2s;
  1715. line-height:150%;
  1716. font-size:12px;
  1717. }
  1718. .checkboxRender [type="checkbox"]:not(:checked) + label:after {
  1719. opacity: 0;
  1720. transform: scale(0);
  1721. }
  1722. .checkboxRender [type="checkbox"]:checked + label:after {
  1723. opacity: 1;
  1724. transform: scale(1);
  1725. }
  1726. .checkboxRender [type="checkbox"]:disabled:not(:checked) + label:before,
  1727. .checkboxRender [type="checkbox"]:disabled:checked + label:before {
  1728. box-shadow: none;
  1729. border-color: #bbb;
  1730. background-color: #ddd;
  1731. }
  1732. .checkboxRender [type="checkbox"]:disabled:checked + label:after {
  1733. color: #999;
  1734. }
  1735. .checkboxRender [type="checkbox"]:disabled + label {
  1736. color: #aaa;
  1737. }
  1738. .checkboxRender [type="checkbox"]:checked:focus + label:before,
  1739. .checkboxRender [type="checkbox"]:not(:checked):focus + label:before {
  1740. }
  1741. /*radio与checkbox*/
  1742. /*单选下拉框样式*/
  1743. div.selectbox-wrapper {
  1744. border:#767676 1px solid; /*展开层边框色*/
  1745. position: absolute;
  1746. background-color:#fff;
  1747. text-align:left;
  1748. z-index: 100;
  1749. display:block;
  1750. left:0px;
  1751. top:18px;
  1752. >top:25px;
  1753. }
  1754. div.selectbox-wrapper ul li{
  1755. white-space:nowrap;
  1756. height:32px;
  1757. padding:0 0 0 3px!important;
  1758. line-height:32px;
  1759. }
  1760. div.selectbox-wrapper ul li.selected {
  1761. background-color: #d9ebf5;/*选中项背景色*/
  1762. }
  1763. div.selectbox-wrapper ul li.current {
  1764. color: #fff;
  1765. background-color: #0081dd;/*鼠标移入项背景色*/
  1766. border:0!important;
  1767. }
  1768. div.selectbox-wrapper ul li.group{
  1769. font-weight:bold;
  1770. background-image:url(form/selArr.gif);
  1771. background-repeat:no-repeat;
  1772. background-position:0% 50%;
  1773. text-indent:15px;
  1774. _width:80%;
  1775. }
  1776. .selectbox {
  1777. border:none;
  1778. cursor: pointer;
  1779. cursor: hand;
  1780. height: 30px;
  1781. line-height: 30px;
  1782. overflow-y:hidden;
  1783. border-left: solid 1px #a7b5bc;
  1784. border-top: solid 1px #a7b5bc;
  1785. border-bottom: solid 1px #ced9df;
  1786. background-color:#ffffff;
  1787. padding:0 0 0 5px;
  1788. }
  1789. .tipColor{
  1790. color:gray;
  1791. }
  1792. .selBtn{
  1793. width: 32px;
  1794. height: 32px;
  1795. border-left: 0;
  1796. border-right: solid 1px #ced9df;
  1797. border-top: solid 1px #a7b5bc;
  1798. border-bottom: solid 1px #ced9df;
  1799. background-image: url(form/selBtn.gif);
  1800. background-repeat: no-repeat;
  1801. background-position:50% 50%;
  1802. background-color:#ffffff;
  1803. cursor: pointer;
  1804. cursor: hand;
  1805. }
  1806. .selBtn_disabled{
  1807. background-image: url(form/selBtn.gif)!important;
  1808. background-color:#eeeeee!important;
  1809. border-top: solid 1px #ced9df;
  1810. cursor: default!important;
  1811. }
  1812. /*单选下拉框样式*/
  1813. /*树形下拉框样式*/
  1814. div.selectbox-tree {
  1815. border:#767676 1px solid; /*展开层边框色*/
  1816. position: absolute;
  1817. background-color:#fff;
  1818. text-align:left;
  1819. z-index: 100;
  1820. display:block;
  1821. left:0px;
  1822. top:18px;
  1823. >top:25px;
  1824. }
  1825. .selBtnMuiti{
  1826. background-image: url(form/selBtnMulti.gif)!important;
  1827. }
  1828. .selBtn_disabledMuiti{
  1829. background-image: url(form/selBtnMulti.gif)!important;
  1830. background-color:#eeeeee!important;
  1831. border-top: solid 1px #ced9df;
  1832. cursor: default!important;
  1833. }
  1834. .selectbox-tree a:hover{
  1835. background-color:#0081dd!important;/*鼠标移入项背景色*/
  1836. color:white!important;
  1837. text-decoration:none!important;
  1838. }
  1839. .multiSelectZtree li a:hover{
  1840. background-color:#0081dd!important;/*鼠标移入项背景色*/
  1841. }
  1842. .selectTree li a{
  1843. padding-top:3px!important;
  1844. padding-bottom:3px!important;
  1845. min-width:140px;
  1846. }
  1847. /*树形下拉框样式*/
  1848. /*日期控件文本框样式*/
  1849. .date{
  1850. background-color:#ffffff;
  1851. border-top:solid 1px #a7b5bc;
  1852. border-left:solid 1px #a7b5bc;
  1853. border-right:solid 1px #ced9df;
  1854. border-bottom:solid 1px #ced9df;
  1855. color:#333333;
  1856. width:200px;
  1857. height: 25px;
  1858. line-height: 25px;
  1859. }
  1860. .date_hover{
  1861. }
  1862. .date_click{
  1863. border-color:rgba(82,168,236,0.8)!important;
  1864. outline:0;
  1865. outline:thin dotted \9;
  1866. -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1867. -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  1868. box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)
  1869. }
  1870. .cusDate{
  1871. background-color: #ffffff;
  1872. border-top:solid 1px #a7b5bc;
  1873. border-left:solid 1px #a7b5bc;
  1874. border-right:solid 1px #ced9df;
  1875. border-bottom:solid 1px #ced9df;
  1876. }
  1877. .dateIcon{
  1878. background-color:#ffffff;
  1879. border-top:solid 1px #a7b5bc;
  1880. border-left:solid 1px #a7b5bc;
  1881. border-right:solid 1px #ced9df;
  1882. border-bottom:solid 1px #ced9df;
  1883. color:#333333;
  1884. width:200px;
  1885. height: 28px;
  1886. line-height: 28px;
  1887. }
  1888. /*日期控件文本框样式*/
  1889. /*自动提示框样式*/
  1890. .suggestion_input{
  1891. background-color: #ffffff;
  1892. border-top:solid 1px #a7b5bc;
  1893. border-left:solid 1px #a7b5bc;
  1894. border-right:solid 1px #ced9df;
  1895. border-bottom:solid 1px #ced9df;
  1896. color:#333333;
  1897. width:200px;
  1898. height: 28px;
  1899. line-height: 28px;
  1900. }
  1901. .suggestion_input_disabled{
  1902. background-color: #EEEEEE !important;
  1903. color: #C0BFBF !important;
  1904. }
  1905. .list_city {
  1906. position:absolute;
  1907. overflow: hidden; -moz-box-shadow: 2px 2px 5px rgb(51, 51, 51);
  1908. background: none repeat scroll 0 0 #FFFFFF;
  1909. border: 1px solid #7F9DB9;
  1910. margin: 0;
  1911. padding: 0 0 4px;
  1912. text-align: left;
  1913. left:0;
  1914. }
  1915. .list_city .list_city_head{
  1916. background-color: #3b95c8;
  1917. border: medium none;
  1918. color: #FFFFFF;
  1919. display: block;
  1920. line-height: 20px;
  1921. padding: 2px 0 2px 9px;
  1922. width: auto;
  1923. word-wrap: break-word;
  1924. }
  1925. .list_city .list_city_head .msg{
  1926. color:red;
  1927. }
  1928. .list_city .list_city_container{
  1929. margin: 0;
  1930. padding: 0;
  1931. }
  1932. .list_city .list_city_container a{
  1933. border-bottom: 1px solid #FFFFFF;
  1934. border-top: 1px solid #FFFFFF;
  1935. color: #0055AA;
  1936. cursor: pointer;
  1937. display:inline-block;
  1938. height: 22px;
  1939. line-height: 22px;
  1940. min-height: 22px;
  1941. overflow: hidden;
  1942. padding: 1px 9px 0;
  1943. text-align: left;
  1944. text-decoration: none;
  1945. height: 22px;
  1946. display: block;
  1947. }
  1948. .list_city .list_city_container a b{
  1949. font-weight:normal;
  1950. }
  1951. .list_city .list_city_container a:hover{
  1952. background: none repeat scroll 0 0 #E8F4FF;
  1953. border-bottom: 1px solid #7F9DB9;
  1954. border-top: 1px solid #7F9DB9;
  1955. text-decoration:none;
  1956. }
  1957. .list_city .list_city_container span{
  1958. margin: 0;
  1959. overflow: hidden;
  1960. padding: 0;
  1961. white-space: nowrap;
  1962. }
  1963. .list_city .selected{
  1964. background: none repeat scroll 0 0 #FFE6A6;
  1965. color: #FFFFFF;
  1966. height: 22px
  1967. }
  1968. .list_city .page_break {
  1969. line-height: 25px;
  1970. margin: 0;
  1971. padding: 0;
  1972. text-align: center;
  1973. }
  1974. .list_city .page_break a {
  1975. color: #0055AA;
  1976. margin: 0;
  1977. padding: 0 4px;
  1978. text-decoration: underline;
  1979. }
  1980. .list_city .page_break .current{
  1981. color: #000000;
  1982. text-decoration: none;
  1983. }
  1984. .pop_city{
  1985. left:0;
  1986. position: absolute;
  1987. border: 1px solid #B2DFFF;
  1988. background-color: #FFFFFF;
  1989. padding:0 0 5px 0;
  1990. }
  1991. .pop_city .pop_head{
  1992. background-color: #3b95c8;
  1993. border-color: #2C7ECF;
  1994. border-style: solid;
  1995. border-width: 1px 1px 0;
  1996. color: #CEE3FC;
  1997. height: 24px;
  1998. line-height: 24px;
  1999. padding-left: 10px;
  2000. color: #FFFFFF;
  2001. }
  2002. .pop_city .list_label{
  2003. list-style: none;
  2004. border-bottom: 1px #5DA9E2 solid;
  2005. padding-bottom: 24px;
  2006. padding-left:4px;
  2007. margin-top:15px;margin-bottom:10px;
  2008. }
  2009. .pop_city .list_label li {
  2010. float:left;
  2011. margin-left: 8px;
  2012. height:24px;line-height:24px;
  2013. }
  2014. .pop_city .list_label li a{
  2015. color: #005DAA;
  2016. ursor: pointer;
  2017. text-decoration: none;
  2018. background: #fff;
  2019. padding: 0px 4px;
  2020. }
  2021. .pop_city .list_label li a:hover{
  2022. }
  2023. .pop_city .list_label li a.current{
  2024. color:#666666;
  2025. display:block;
  2026. background:#FFF;
  2027. border: 1px #5DA9E2 solid;
  2028. border-bottom:1px solid #fff;
  2029. padding: 0px 4px ;
  2030. font-weight:bold;
  2031. }
  2032. .pop_city .pop_city_container{
  2033. padding:4px;margin-bottom:20px;
  2034. }
  2035. .pop_city .pop_city_container ul{
  2036. }
  2037. .pop_city .pop_city_container ul li{
  2038. float:left;margin-right:3px;
  2039. }
  2040. .pop_city .pop_city_container ul li a{
  2041. color: #000000;
  2042. display: block;
  2043. height: 22px;
  2044. line-height: 22px;
  2045. text-decoration:none;
  2046. border: 1px solid #fff;
  2047. padding:2px 0px;
  2048. }
  2049. .pop_city .pop_city_container ul li a:hover{
  2050. background-color: #E8F4FF;
  2051. border: 1px solid #ACCCEF;
  2052. }
  2053. /*自动提示框样式*/
  2054. /*自动完成框样式*/
  2055. .autoComplete{
  2056. background-color: #ffffff;
  2057. border-top:solid 1px #a7b5bc;
  2058. border-left:solid 1px #a7b5bc;
  2059. border-right:solid 1px #ced9df;
  2060. border-bottom:solid 1px #ced9df;
  2061. color:#333333;
  2062. width:200px;
  2063. height: 28px;
  2064. line-height: 28px;
  2065. }
  2066. .autoCompleteIcon{
  2067. background-color:#ffffff;/*初始背景色*/
  2068. border-color:#a2b3bd;/*初始边框色*/
  2069. }
  2070. /*自动完成框样式*/
  2071. /*双向选择器*/
  2072. .listerLinksLeft{
  2073. overflow:hidden;
  2074. }
  2075. .listerLinksRight{
  2076. overflow:hidden;
  2077. }
  2078. .listerHover{
  2079. background-color:#3b95c8;/*鼠标移入颜色*/
  2080. cursor:default;
  2081. margin-left:1px;
  2082. color:#ffffff;
  2083. }
  2084. ul.lister li{
  2085. height:24px;
  2086. line-height:24px;
  2087. display:block;
  2088. overflow:hidden;
  2089. white-space:nowrap;
  2090. text-overflow:ellipsis;
  2091. }
  2092. ul.lister{
  2093. color:#000000;/*箭头颜色*/
  2094. }
  2095. ul.lister .listerHover{
  2096. color:#ffffff!important;/*箭头颜色*/
  2097. }
  2098. ul.lister{
  2099. list-style:none;
  2100. text-align:left;
  2101. padding:10px;
  2102. margin:0;
  2103. overflow:auto;
  2104. margin-top:5px;
  2105. font-weight:normal;
  2106. display:block;
  2107. background-color:#ffffff;
  2108. border-top:solid 1px #a7b5bc;
  2109. border-left:solid 1px #a7b5bc;
  2110. border-right:solid 1px #ced9df;
  2111. border-bottom:solid 1px #ced9df;
  2112. border-radius: 3px 3px 3px 3px;
  2113. }
  2114. /*双向选择器*/
  2115. /*树形双选器*/
  2116. .dbSelectionMode{
  2117. border:1px solid #80c0e7;/*边框色*/
  2118. overflow-y:auto;
  2119. background-color:#ffffff;
  2120. border-top:solid 1px #a7b5bc;
  2121. border-left:solid 1px #a7b5bc;
  2122. border-right:solid 1px #ced9df;
  2123. border-bottom:solid 1px #ced9df;
  2124. border-radius: 3px 3px 3px 3px;
  2125. }
  2126. /*树形双选器*/
  2127. /*步进器样式*/
  2128. input.stepper-active {
  2129. background-repeat:no-repeat;
  2130. background-position:98% 50%;
  2131. background-image:url(form/steperNormal.gif);
  2132. background-color: #ffffff;
  2133. border-top:solid 1px #a7b5bc;
  2134. border-left:solid 1px #a7b5bc;
  2135. border-right:solid 1px #ced9df;
  2136. border-bottom:solid 1px #ced9df;
  2137. color:#333333;
  2138. width:200px;
  2139. height: 28px;
  2140. line-height: 28px;
  2141. }
  2142. input.stepper-active.stepper-up-hover {
  2143. background-image:url(form/steperUpOver.gif);
  2144. cursor:pointer;
  2145. }
  2146. input.stepper-active.stepper-down-hover {
  2147. background-image:url(form/steperDownOver.gif);
  2148. cursor:pointer;
  2149. }
  2150. input.stepper-active.stepper-up {
  2151. background-image:url(form/steperUpDown.gif);
  2152. cursor:pointer;
  2153. }
  2154. input.stepper-active.stepper-down {
  2155. background-image:url(form/steperDownDown.gif);
  2156. cursor:pointer;
  2157. }
  2158. /*步进器样式*/
  2159. .keypad{
  2160. background-color: #ffffff;
  2161. border-top:solid 1px #a7b5bc;
  2162. border-left:solid 1px #a7b5bc;
  2163. border-right:solid 1px #ced9df;
  2164. border-bottom:solid 1px #ced9df;
  2165. color:#333333;
  2166. width:200px;
  2167. height: 28px;
  2168. line-height: 28px;
  2169. }
  2170. .color{
  2171. background-color: #ffffff;
  2172. border-top:solid 1px #a7b5bc;
  2173. border-left:solid 1px #a7b5bc;
  2174. border-right:solid 1px #ced9df;
  2175. border-bottom:solid 1px #ced9df;
  2176. color:#333333;
  2177. width:200px;
  2178. height: 28px;
  2179. line-height: 28px;
  2180. }
  2181. /*上传控件样式*/
  2182. .file-container-main{
  2183. position:relative;
  2184. height:34px;
  2185. }
  2186. .file-container{
  2187. height:34px;
  2188. display:block;
  2189. position:absolute;
  2190. overflow:hidden;
  2191. top:0;
  2192. }
  2193. .fileBtn{
  2194. background-image: url(form/fileBtn.jpg);
  2195. width:60px;
  2196. height:32px;
  2197. background-repeat:no-repeat;
  2198. background-color:transparent;
  2199. border:0;
  2200. margin:0 0 0 2px;
  2201. }
  2202. /*上传控件样式*/
  2203. /*过滤器样式*/
  2204. .filter .current a{
  2205. padding-left:4px!important;
  2206. border:solid 1px #80c0e7!important;
  2207. background-image: url(form/filterClose.gif);
  2208. background-repeat: no-repeat;
  2209. background-position:98% 40%;
  2210. outline:thin dotted \9;
  2211. -webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  2212. -moz-box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6);
  2213. box-shadow:inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(82,168,236,0.6)
  2214. }
  2215. .filter .current a:hover{
  2216. background-image: url(form/filterCloseHover.gif);
  2217. }
  2218. .filter li{
  2219. padding-right:8px!important;
  2220. }
  2221. /*过滤器样式*/
  2222. /*上传组件*/
  2223. .upload_iconBg{
  2224. height: 16px;
  2225. width: 16px;
  2226. background-image: url(form/fj_main.gif);
  2227. background-repeat: no-repeat;
  2228. float:left;
  2229. }
  2230. .upload_icon_progess{
  2231. height: 100%;
  2232. width: 100%;
  2233. background-image: url(form/fj_progess.gif);
  2234. background-repeat: no-repeat;
  2235. background-position: -1px -2px;
  2236. }
  2237. .upload_icon_ok{
  2238. height: 100%;
  2239. width: 100%;
  2240. background-image: url(form/fj_ok.gif);
  2241. background-repeat: no-repeat;
  2242. background-position: -1px -2px;
  2243. }
  2244. .upload_icon_error{
  2245. height: 100%;
  2246. width: 100%;
  2247. background-image: url(form/fj_error.gif);
  2248. background-repeat: no-repeat;
  2249. background-position: -1px -2px;
  2250. }
  2251. .upload_progress_inner{
  2252. background-image: url(form/fj_progessbar.gif);
  2253. background-repeat:repeat-x;
  2254. height:100%;
  2255. }
  2256. /*上传组件*/
  2257. /*表单拆分导航*/
  2258. .titleMain{
  2259. height:34px;
  2260. line-height:34px;
  2261. overflow:hidden;
  2262. background-image: url(form/stepFormTitleBg.jpg);
  2263. background-repeat: no-repeat;
  2264. background-position:100% 0%;
  2265. background-color:#d5f0ff;/*导航按钮容器的背景色*/
  2266. }
  2267. .stepFormTitleCur{
  2268. float:left;
  2269. color:#ffffff;
  2270. }
  2271. .stepFormTitle{
  2272. float:left;
  2273. color:#266392;
  2274. padding:0 20px 0 20px;
  2275. }
  2276. .stepFormTitleCur .left{
  2277. background-image: url(form/formStepCurLeft.gif);
  2278. background-repeat: no-repeat;
  2279. width:9px;
  2280. height:34px;
  2281. float:left;
  2282. }
  2283. .stepFormTitleCur .center{
  2284. background-image: url(form/formStepCurCenter.gif);
  2285. background-repeat: repeat-x;
  2286. height:100%;
  2287. float:left;
  2288. padding:0 5px 0 5px;
  2289. }
  2290. .stepFormTitleCur .right{
  2291. background-image: url(form/formStepCurRight.gif);
  2292. background-repeat: no-repeat;
  2293. width:25px;
  2294. height:34px;
  2295. float:left;
  2296. }
  2297. /*表单拆分导航*/
  2298. /* DataGrid*/
  2299. .l-grid-mask{
  2300. position:absolute;left:0;top:0;width:100%;height:100%;
  2301. display1:none;font-size:1px; *zoom:1;overflow:hidden; display:none;z-index: 9000;
  2302. }
  2303. .l-panel
  2304. {
  2305. border:1px solid #cbcbcb;
  2306. position:relative;
  2307. text-align:left;
  2308. }
  2309. .l-panel table{ width:auto;}
  2310. .l-panel table,.l-panel td{ margin:0; padding:0;}
  2311. .l-panel-btn
  2312. {
  2313. display:block;
  2314. height:22px; overflow:hidden; line-height:22px; position:relative;
  2315. padding-left:15px; padding-right:15px; cursor:pointer;
  2316. text-align:center;color: #2C4D79; text-decoration:none; cursor:pointer;
  2317. }
  2318. .l-panel-btn .l-panel-btn-l,.l-panel-btn .l-panel-btn-r{ display:none;}
  2319. .l-panel-btn-over,.l-panel-btn-selected{background: #3b95c8;color:#ffffff;border-radius: 3px 3px 3px 3px;}
  2320. .l-panel-btn-over .l-panel-btn-l,.l-panel-btn-over .l-panel-btn-r,.l-panel-btn-selected .l-panel-btn-l,.l-panel-btn-selected .l-panel-btn-r{ display:block; }
  2321. .l-panel-btn-l
  2322. {
  2323. position:absolute; width:0px; left:0px; top:0px;height:22px;
  2324. }
  2325. .l-panel-btn-r
  2326. {position:absolute; width:0px; right:0px; top:0px;height:22px;
  2327. }
  2328. .l-panel-header{
  2329. color: #15428B;
  2330. font-weight: bold;
  2331. height:24px;
  2332. border-bottom:1px solid #99BBE8;
  2333. background: url(dataGrid/header-bg.gif) repeat-x left -1px; position:relative;
  2334. }
  2335. .l-panel-header-hasicon{ padding-left:13px;}
  2336. .l-panel-header img{ position:absolute; left:6px; top:5px; width:16px; height:16px; border:0px;}
  2337. .l-panel-header-text{ line-height:22px;padding-left:10px;}
  2338. .l-panel-body
  2339. {
  2340. position:relative; width:100%;
  2341. }
  2342. .l-panel-body .l-grid
  2343. {
  2344. }
  2345. /*表格整体*/
  2346. .l-grid
  2347. {
  2348. position:relative;text-align:left;
  2349. background:#ffffff;
  2350. }
  2351. .l-grid td div
  2352. {
  2353. }
  2354. .l-grid table{border-spacing:0 0;}
  2355. /*表格头部*/
  2356. .l-grid-header
  2357. {
  2358. border-bottom:1px solid #b6cad2;
  2359. height:32px;
  2360. line-height:120%!important;
  2361. background:#e9f4fa url(dataGrid/th_bg.jpg) repeat-x left bottom;
  2362. overflow:hidden;
  2363. width:100%;
  2364. }
  2365. .l-grid-header-multi{
  2366. background-image:none!important;
  2367. }
  2368. .l-grid-hd-cell
  2369. {
  2370. padding:0; margin:0;overflow:hidden;
  2371. border-right:1px solid #e2e2e2;
  2372. text-align:center;
  2373. }
  2374. /*表格身体*/
  2375. .l-grid-body
  2376. {
  2377. position: relative; width:100%;
  2378. top: 0px;
  2379. left: 0px;
  2380. overflow:auto;
  2381. }
  2382. /*单元格边框色*/
  2383. .l-grid-row-cell
  2384. {
  2385. border-right:1px solid #e2e2e2;border-bottom:1px solid #e2e2e2;
  2386. text-align:center;
  2387. }
  2388. .l-grid-row-last .l-grid-row-cell
  2389. {border-bottom:none;
  2390. }
  2391. .l-grid-row-cell-last
  2392. {
  2393. }
  2394. /*表格行背景色*/
  2395. .l-grid-row
  2396. {
  2397. background:#ffffff;
  2398. }
  2399. .l-grid-row-last
  2400. {
  2401. }
  2402. .l-grid-row-alt .l-grid-row-cell
  2403. {
  2404. background:#f7f7f7;
  2405. }
  2406. .l-grid-row-over .l-grid-row-cell,.l-grid-row-over
  2407. {
  2408. background:#e5ebee;/*鼠标移入后背景色*/
  2409. }
  2410. .l-selected .l-grid-row-cell,.l-selected
  2411. {
  2412. background:#ffffd5;/*点击后背景色*/
  2413. }
  2414. /*分页栏背景和边框*/
  2415. .l-panel-bar
  2416. {
  2417. height:32px;background-color:#eff3f8;overflow:hidden;
  2418. border-top:1px solid #cccccc;
  2419. }
  2420. /*工具条*/
  2421. .l-toolbar
  2422. {
  2423. background-color:#eff3f8; height:25px;
  2424. border:1px solid #cccccc; border-top:1px solid #EFF7F7;
  2425. border-left:none;
  2426. border-right:none;
  2427. padding-top:3px;
  2428. }
  2429. .l-toolbar-item
  2430. {
  2431. float:left;margin-left:4px;
  2432. }
  2433. .l-toolbar-item-right
  2434. {
  2435. float:right;margin-right:4px;
  2436. }
  2437. .l-toolbar-item .l-toolbar-item img{ position:absolute; left:2px; top:2px; display:block;}
  2438. .l-toolbar-item img{ width:16px; height:16px; border:0px;}
  2439. .l-toolbar-item-hasicon{ padding-left:12px;}
  2440. .l-icon{
  2441. }
  2442. .l-grid-scroller {
  2443. position: relative;
  2444. top: 0px;
  2445. left: 0px; height:220px;overflow: auto;
  2446. }
  2447. .l-grid-scroller-noscroll
  2448. {
  2449. height:auto;overflow:hidden;
  2450. }
  2451. .l-grid-body-table
  2452. {
  2453. }
  2454. .l-grid-body-table tr.l-checked td
  2455. {
  2456. background:#DCF8A8
  2457. }
  2458. .l-grid-popup
  2459. {
  2460. background: #eee url(dataGrid/popup-line.gif) repeat-y -1px top;
  2461. border: 1px solid #ccc;
  2462. border-top: 0px;
  2463. overflow: auto;
  2464. left: 0px;
  2465. position: absolute;
  2466. z-index: 999; display:none;
  2467. }
  2468. .l-grid-loading
  2469. {
  2470. position: absolute;z-index: 91000; border:1px solid #9BBBE6; top:40%; left:50%;
  2471. background:white url(dataGrid/loading.gif) no-repeat 8px 6px; padding-left:38px;
  2472. padding-top:10px; padding-bottom:10px; padding-right:10px; margin-left:-60px; display:none;
  2473. }
  2474. .l-grid-editor
  2475. {
  2476. position: absolute;z-index: 999;display:none; text-align:center;
  2477. }
  2478. .l-grid-editor .l-checkbox-wrapper{ margin-top:2px;}
  2479. .l-grid-popup table
  2480. {
  2481. display: table;
  2482. border-collapse: separate;
  2483. border-color: gray; margin:2px;
  2484. }
  2485. .l-grid-popup table tbody
  2486. {display: table-row-group;
  2487. vertical-align: middle;
  2488. border-color: inherit;
  2489. }
  2490. .l-grid-popup table td
  2491. {
  2492. padding: 2px 3px;
  2493. cursor: default;
  2494. }
  2495. .l-grid-popup td.l-column-left
  2496. {
  2497. border-right: 1px solid #ccc;
  2498. }
  2499. .l-grid-popup td.l-column-right
  2500. {
  2501. border-left: 1px solid #fff;
  2502. padding-right: 10px;
  2503. }
  2504. .l-grid-popup tr:hover .l-column-right,.l-grid-popup tr.l-popup-row-over .l-column-right
  2505. {
  2506. border-right: 1px solid #d2e3ec;border-top: 1px solid #d2e3ec;border-bottom: 1px solid #d2e3ec;
  2507. }
  2508. .l-grid-popup tr:hover .l-column-left,.l-grid-popup tr.l-popup-row-over .l-column-left
  2509. {
  2510. border-left: 1px solid #d2e3ec;border-top: 1px solid #d2e3ec;border-bottom: 1px solid #d2e3ec;
  2511. }
  2512. .l-grid-popup table tr:hover,.l-grid-popup table tr.l-popup-row-over
  2513. {
  2514. background: #d5effc url(dataGrid/popup-row-over.gif) repeat-x top;
  2515. border: 1px solid #a8d8eb;
  2516. }
  2517. .l-grid-hd-cell-mul
  2518. {
  2519. border-bottom: 1px solid #cccccc;
  2520. background:#e9f4fa;
  2521. }
  2522. .l-grid-hd-cell-detail
  2523. {
  2524. padding:0; margin:0;
  2525. }
  2526. .l-grid-hd-cell-inner
  2527. {
  2528. text-align:center;
  2529. }
  2530. .l-grid-dragging-line
  2531. {
  2532. background:#EC4262;width:1px;position:absolute; display:none; z-index:9999; padding:0; margin:0;
  2533. }
  2534. .l-grid-hd-cell-dropleft
  2535. {
  2536. position:absolute;left:0px;top:0px;
  2537. display: block;background: url(dataGrid/icon-prev.gif) no-repeat -2px center;width: 16px;height: 24px;
  2538. z-index: 3; display:none;
  2539. }
  2540. .l-grid-hd-cell-dropright
  2541. {
  2542. position:absolute;right:0px;top:0px;
  2543. display: block;background: url(dataGrid/icon-next.gif) no-repeat 0px center;width: 16px;height: 24px;
  2544. z-index: 3; display:none;
  2545. }
  2546. .l-grid-hd-cell-drop
  2547. {
  2548. position:absolute;right:-1px;top:0px;display: block; width:2px; height:24px; z-index:3; cursor:e-resize;
  2549. }
  2550. .l-grid-hd-cell-sort
  2551. {
  2552. overflow:hidden;
  2553. }
  2554. .l-grid-hd-cell-sort-asc
  2555. {
  2556. background:url(dataGrid/icon-sort-asc.gif) no-repeat center;
  2557. }
  2558. .l-grid-hd-cell-sort-desc
  2559. {
  2560. background:url(dataGrid/icon-sort-desc.gif) no-repeat center;
  2561. }
  2562. .l-grid-hd-cell-btn
  2563. {
  2564. position:absolute; right:0px; top:0px; overflow:hidden; border-left:1px solid #C1D6F0; cursor:pointer;
  2565. }
  2566. .l-grid-hd-cell-btn span
  2567. {
  2568. border-left:1px solid #F1F5FC; width:14px; height:22px;background:url(dataGrid/icon-down.gif) no-repeat 2px 8px; display:block;
  2569. }
  2570. .l-grid-hd-cell-drophandle
  2571. {
  2572. width:5px; height:22px; cursor:col-resize; float:right;position:absolute; top:0px; right:-3px;
  2573. }
  2574. .l-grid-hd-cell-text
  2575. {
  2576. text-align:center;
  2577. }
  2578. .l-grid-hd-cell-last
  2579. {
  2580. }
  2581. .l-grid-hd-cell-over,.l-grid-hd-cell-on
  2582. {
  2583. }
  2584. .l-grid-totalsummary
  2585. {
  2586. border-bottom:1px solid #A3C0E8; background:#EEF3FF; padding-top:5px; padding-bottom:5px;
  2587. }
  2588. .l-grid-totalsummary-nobottom
  2589. {
  2590. border-bottom:none;
  2591. }
  2592. .l-grid-totalsummary td
  2593. {
  2594. border-right:1px solid #EEF3FF; text-align:center;line-height: 23px;
  2595. }
  2596. .l-grid-totalsummary .l-grid-totalsummary-cell-last
  2597. { border-right:1px solid #A3C0E8;
  2598. }
  2599. .l-grid-totalsummary .l-grid-totalsummary-cell-inner
  2600. {
  2601. margin-left:3px; margin-right:3px; min-height:23px;_height:23px;
  2602. }
  2603. .l-grid-totalsummary .l-grid-totalsummary-cell-inner div
  2604. {
  2605. height:22px; line-height:22px;
  2606. }
  2607. /*
  2608. detail
  2609. */
  2610. .l-grid-detailpanel
  2611. {
  2612. }
  2613. .l-grid-detailpanel td{
  2614. border-right:1px solid #E2E2E2;border-bottom:1px solid #E2E2E2;
  2615. }
  2616. .l-grid-detailpanel-inner
  2617. {
  2618. margin-bottom:2px;
  2619. }
  2620. .l-grid-row-cell-detail .l-grid-row-cell-inner{margin-left:0px; margin-right:0px; width:27px; overflow:hidden;}
  2621. .l-grid-row-cell-detail .l-grid-row-cell-inner span
  2622. {
  2623. display:block; width:21px; height:25px; background:url(dataGrid/grid-detail-close.gif) no-repeat 10px 100%;
  2624. cursor:pointer; overflow:hidden;
  2625. }
  2626. .l-grid-row-cell-detail .l-grid-row-cell-inner span.l-open
  2627. {
  2628. background:url(dataGrid/grid-detail-open.gif) no-repeat 10px 100%;
  2629. }
  2630. .l-grid-row-cell-checkbox .l-grid-row-cell-inner{margin-left:0px; margin-right:0px;}
  2631. .l-grid-row-cell-checkbox span,.l-grid-hd-cell-checkbox .l-grid-hd-cell-inner span
  2632. {
  2633. display:block; width:16px; height:16px; background:url(dataGrid/checkbox.png) no-repeat;
  2634. background-position:0px 0px;
  2635. cursor:pointer; overflow:hidden;
  2636. margin:0 auto;
  2637. }
  2638. .l-grid-hd-cell-con-checkbox{
  2639. padding-top:8px;
  2640. }
  2641. .l-grid-row-cell-con-checkbox{
  2642. padding-top:10px;
  2643. }
  2644. .l-checked .l-grid-row-cell-checkbox span,.l-checked .l-grid-hd-cell-checkbox .l-grid-hd-cell-inner span
  2645. {
  2646. background-position:0px 0px;
  2647. background-image:url(dataGrid/checkbox-checked.png);
  2648. }
  2649. .l-selected .l-grid-row-cell-checkbox span,.l-selected .l-grid-hd-cell-checkbox .l-grid-hd-cell-inner span
  2650. {
  2651. background-position:0px 0px;
  2652. background-image:url(dataGrid/checkbox-checked.png);
  2653. }
  2654. .l-grid-hd-cell-checkbox
  2655. {
  2656. padding:0; margin:0;
  2657. vertical-align:top;
  2658. }
  2659. .l-grid-row-cell-edited .l-grid-row-cell-inner
  2660. {
  2661. background-image:url(dataGrid/icon-edited.gif);
  2662. background-repeat:no-repeat;
  2663. background-position:0px 2px;
  2664. text-indent:10px;
  2665. }
  2666. /**修改grid每个格贴边缘**/
  2667. .l-grid-row-cell-inner
  2668. {
  2669. text-align:center;line-height:38px; min-height:26px; _height:26px;
  2670. /*margin-left:3px; margin-right:3px;*/
  2671. margin-left:0px; margin-right:0px;
  2672. overflow:hidden;
  2673. }
  2674. .l-grid-row-cell-inner-fixedheight
  2675. {
  2676. height:25px;
  2677. }
  2678. .l-panel-bbar-inner
  2679. {
  2680. margin-top: 3px;
  2681. padding-left: -2px;
  2682. width:100%; position:relative; min-width:530px;
  2683. }
  2684. .l-bar-message
  2685. {
  2686. position:absolute; right:0px;
  2687. }
  2688. .l-bar-group {
  2689. float: left;
  2690. background: none;
  2691. height: 24px;
  2692. margin: 0px 5px;
  2693. }
  2694. .l-bar-right
  2695. {
  2696. float:right;
  2697. }
  2698. .l-bar-separator {
  2699. float: left;
  2700. height: 18px;
  2701. border-left: 1px solid #cccccc;
  2702. border-right: 1px solid white;
  2703. margin: 2px;
  2704. }
  2705. .l-bar-separator-right{
  2706. height: 18px;
  2707. border-left: 1px solid #9AC6FF;
  2708. border-right: 1px solid white;
  2709. margin: 2px;
  2710. float:right;
  2711. }
  2712. .l-bar-button {
  2713. float: left;
  2714. width: 22px;
  2715. height: 22px;
  2716. border: 0px;
  2717. cursor: pointer;
  2718. overflow: hidden;
  2719. }
  2720. .l-bar-button-over
  2721. {
  2722. background: url(dataGrid/bar-button-over.gif) no-repeat center;
  2723. }
  2724. .l-bar-button span {
  2725. width: 16px;
  2726. height: 16px;
  2727. display: block; margin-left:2px; margin-top:2px;
  2728. float: left; overflow:hidden;
  2729. }
  2730. .l-bar-btnfirst span
  2731. {
  2732. background: url(dataGrid/icon-first.gif) no-repeat; background-position:0px 0px;
  2733. }
  2734. .l-bar-btnprev span {
  2735. background: url(dataGrid/icon-prev.gif) no-repeat ; background-position:0px 0px;
  2736. }
  2737. .l-bar-btnnext span {
  2738. background: url(dataGrid/icon-next.gif) no-repeat; background-position:0px 0px;
  2739. }
  2740. .l-bar-btnlast span {
  2741. background: url(dataGrid/icon-last.gif) no-repeat; background-position:0px 0px;
  2742. }
  2743. .l-bar-btnload span {
  2744. background: url(dataGrid/icon-load.gif) no-repeat; background-position:0px 0px;
  2745. }
  2746. .l-bar-btnloading span {
  2747. background: url(dataGrid/icon-loading.gif) no-repeat; background-position:0px 0px;
  2748. }
  2749. .l-bar-button .l-disabled
  2750. {
  2751. background-position:0px -16px;
  2752. }
  2753. .l-bar-text
  2754. {
  2755. line-height:20px;
  2756. }
  2757. /*
  2758. grouping
  2759. */
  2760. .l-grid .l-grid-grouprow{ border-right:1px solid #A3C0E8}
  2761. .l-grid .l-grid-grouprow-cell{ padding:6px; border-bottom:1px solid #A3C0E8; background:#EAF3FF;}
  2762. .l-grid .l-grid-group-togglebtn{background:url(dataGrid/grid-detail-open.gif) no-repeat center; cursor:pointer}
  2763. .l-grid .l-grid-group-togglebtn-close{background:url(dataGrid/grid-detail-close.gif) no-repeat center;}
  2764. .l-grid .l-grid-totalsummary-group td{ background-color:#eeeeee; border-color:#eeeeee;}
  2765. /*
  2766. foot total
  2767. */
  2768. .l-panel-bar-total{ background:#F5F9FF; padding:8px; border-top:1px solid #84A0C4;}
  2769. /*
  2770. tree grid
  2771. */
  2772. .l-grid-tree-space
  2773. {
  2774. width:18px; height:35px; line-height:35px; overflow:hidden; float:left;
  2775. }
  2776. .l-grid-tree-link-open
  2777. {
  2778. cursor:pointer;background:url(dataGrid/grid-tree-open.gif) no-repeat center;
  2779. }
  2780. .l-grid-tree-link-close
  2781. {
  2782. cursor:pointer;background:url(dataGrid/grid-tree-close.gif) no-repeat center;
  2783. }
  2784. .l-grid-tree-link-loading
  2785. {
  2786. background-image:url(../../images/loading/ajax-loader.gif)!important;
  2787. }
  2788. /*
  2789. 锁定部分
  2790. */
  2791. .l-grid1{ display:none;}
  2792. .l-grid1 .l-grid-body{overflow:hidden;}
  2793. .l-grid1 .l-grid-detailpanel{border-right:1px solid white;}
  2794. .l-frozen .l-grid2{position:absolute; top:0px; left:0px; width:100%; }
  2795. .l-frozen .l-grid2 .l-grid-body{overflow-x:auto;}
  2796. .l-frozen .l-grid1{position:absolute; top:0px; left:0px;display:block;}
  2797. .l-grid-gray
  2798. {border-top:1px solid #DDDDDD;
  2799. }
  2800. .l-grid-gray .l-grid-header
  2801. {
  2802. border-bottom:1px solid #DDDDDD;
  2803. background:#E2F0FF url(dataGrid/header2-bg.jpg) repeat-x left bottom;
  2804. }
  2805. .l-grid-gray .l-grid-hd-cell
  2806. {
  2807. border-right:1px solid #DDDDDD;
  2808. }
  2809. .l-grid-gray .l-grid-row-cell {
  2810. border-bottom: 1px solid #DDDDDD;
  2811. border-right: 1px solid #DDDDDD;
  2812. }
  2813. /*
  2814. 菜单条
  2815. */
  2816. .l-menubar
  2817. {
  2818. background: url(dataGrid/panel-menu.gif) repeat-x; height:24px; border:1px solid #ADBED6;border-top:1px solid #EFF7F7;
  2819. }
  2820. .l-menubar-item
  2821. {
  2822. float:left; margin-left:6px;
  2823. }
  2824. .l-menubar-item-down
  2825. {
  2826. width:7px; height:4px; line-height:4px;
  2827. background:url(dataGrid/panel-menu-item-down.gif) no-repeat center; position:absolute; right:4px; top:9px; top:9px\9;_top:4px;
  2828. }
  2829. .l-menubar-item-over
  2830. {
  2831. }
  2832. /*
  2833. 搜索栏
  2834. */
  2835. .l-panel-search
  2836. {height:28px; padding-top:3px; padding-left:3px;
  2837. border-left:1px solid #99BBE8; border-right:1px solid #99BBE8;
  2838. }
  2839. .l-panel-search-item
  2840. {
  2841. float:left; margin-left:5px;
  2842. }
  2843. /*
  2844. 编辑
  2845. */
  2846. .l-grid-row-cell-editing-topcell {border-bottom-color:#CC8F81;}
  2847. .l-grid-row-cell-editing-leftcell {border-right-color:#CC8F81;}
  2848. .l-grid-row-cell-editing{ border-color:#CC8F81;}
  2849. .l-grid-row-cell .l-text,.l-grid-editor .l-text{ border:0px; border:none;}
  2850. .l-grid-detailpanel-edit{ padding-top:7px;padding-bottom:3px; background-color:#f7f7f7;}
  2851. .l-grid-detailpanel .l-editbox{ float:left; margin:2px;margin-left:6px; margin-right:10px;}
  2852. .l-grid-detailpanel .l-button{float:left;margin:2px;margin-left:4px; margin-right:6px;}
  2853. .l-grid-detailpanel .l-clear{ clear:both;}
  2854. /*行序号背景色*/
  2855. .l-grid-row-alt .l-grid-row-cell-rownumbers,.l-selected .l-grid-row-cell-rownumbers,.l-grid-row-over .l-grid-row-cell-rownumbers,.l-grid-row-cell-rownumbers{ background:#f1f1f1;}
  2856. /*右键菜单*/
  2857. .l-menu { border:1px solid #979797; background:#F5F5F5;position:absolute; overflow:hidden; padding-bottom:2px; z-index:1001;font-size:12px;}
  2858. .l-menu-shadow{z-index:1000;
  2859. FILTER: progid:DXImageTransform.Microsoft.Blur(pixelRadius=2,MakeShadow=false,ShadowOpacity=0.2);
  2860. BACKGROUND: #ddd;
  2861. -moz-border-radius: 5px;
  2862. -webkit-border-radius: 5px;
  2863. -moz-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  2864. -webkit-box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.2);
  2865. position: absolute;}
  2866. .l-menu-inner{ position:relative;width:100%;z-index:103;}
  2867. .l-menu-over{position:absolute;top:-24px;left:2px; z-index:102; height:22px; overflow:hidden;background:url('dataGrid/menu-item-over-m.gif') repeat-x;width:97%;}
  2868. .l-menu-yline { background:url('dataGrid/menu-line-y.gif') repeat-y; width:2px; height:2000px; position:absolute; left:28px; top:1px; z-index:101;}
  2869. .l-menu-over-l{background:url('dataGrid/menu-item-over-l.gif') no-repeat; width:28px; height:22px; position:absolute;top:0; left:0;}
  2870. .l-menu-over-r{background:url('dataGrid/menu-item-over-r.gif') no-repeat; width:3px;height:22px; position:absolute;top:0; right:0;}
  2871. .l-menu-item { position:relative; height:23px; line-height:23px; width:100%; cursor:pointer;}
  2872. .l-menu-item-line{background:url('dataGrid/menu-line-x.gif') repeat-x; height:2px; width:100%; margin-top:1px; margin-bottom:1px; margin-left:30px; line-height:2px; overflow:hidden;}
  2873. .l-menu-item-arrow{background:url('dataGrid/menu-item-arrow.gif') no-repeat; position:absolute; top:8px; right:9px; width:4px; height:7px;}
  2874. .l-menu-item-text{color:#000000;left: 33px;position: absolute;top: 0;}
  2875. .l-menu-item-icon{ left: 3px;top: 0;position: absolute; width:25px; height:22px; overflow:hidden;}
  2876. .l-menu-item-color{border: 1px solid #cccccc;left: 6px;top: 3px;position: absolute;width: 16px;height: 16px;overflow: hidden;}
  2877. .l-menu-item-disable{ cursor:default;}
  2878. .l-menu-item-disable .l-menu-item-text{ color:#A1A1A1;}
  2879. /*DataGrid*/
  2880. /*文章列表*/
  2881. .sgList li{
  2882. height:25px;
  2883. line-height:25px;
  2884. text-indent:15px;
  2885. }
  2886. .dbList li{
  2887. float:left;
  2888. padding:0 0 0 0px;
  2889. height:25px;
  2890. line-height:25px;
  2891. text-indent:15px;
  2892. }
  2893. .listArr{
  2894. background: url(nav/arrow.gif);
  2895. background-repeat:no-repeat;
  2896. background-position:5px 40%;
  2897. }
  2898. /*文章列表*/
  2899. /*弹出式菜单*/
  2900. .popupMenu{
  2901. width:50px;
  2902. }
  2903. .popupMenu .arrow{
  2904. background-image: url(nav/arror_down.gif);
  2905. background-repeat: no-repeat;
  2906. background-position:95% 40%;
  2907. }
  2908. .popupMenu .border{
  2909. border:solid 1px #80c0e7;/*菜单链接边框色*/
  2910. }
  2911. .popupMenu .hoverBorder{
  2912. border:solid 1px #80c0e7;/*菜单链接边框色*/
  2913. }
  2914. .popupMenu_link{
  2915. }
  2916. .popupMenu_link a{
  2917. padding:0 0 0 5px;
  2918. display:block;
  2919. }
  2920. .popupMenu_link a:hover{
  2921. text-decoration:none;
  2922. color:black;
  2923. }
  2924. .popupMenu_con{
  2925. display:none;
  2926. position:absolute;
  2927. z-index:6000;
  2928. }
  2929. .white_con{
  2930. width:100px;
  2931. border:solid 1px #80c0e7;/*菜单选项区边框色*/
  2932. background-color:white;
  2933. }
  2934. .white_con span{
  2935. display:block;
  2936. clear:both;
  2937. height:28px;
  2938. line-height:28px;
  2939. }
  2940. .white_con a{
  2941. display:block;
  2942. height:28px;
  2943. padding:0 0 0 5px;
  2944. }
  2945. .white_con a:hover{
  2946. background-color:#0081dd!important;/*菜单选项鼠标移入背景色*/
  2947. color:white!important;
  2948. text-decoration:none!important;
  2949. }
  2950. .pic_con{
  2951. width:100px;
  2952. background-image: url(nav/menuBg.jpg);
  2953. background-repeat:repeat-y;
  2954. background-color:white;
  2955. border: 1px solid #80c0e7;/*菜单容器边框*/
  2956. padding:2px 4px 4px 1px;
  2957. }
  2958. .pic_con span{
  2959. display:block;
  2960. clear:both;
  2961. height:28px;
  2962. line-height:28px;
  2963. }
  2964. .pic_con a{
  2965. display:block;
  2966. height:28px;
  2967. text-indent:30px;
  2968. }
  2969. .pic_con a:hover{
  2970. text-decoration:none;
  2971. color:black;
  2972. filter:alpha(opacity=60);
  2973. background-color: #ffeec2;
  2974. border: solid 1px #80c0e7;/*菜单项边框*/
  2975. }
  2976. .icon_con{
  2977. width:100px;
  2978. background-image: url(nav/menuLine.jpg);
  2979. background-repeat:repeat-y;
  2980. background-position:25px 0;
  2981. background-color:#f9f9f9;
  2982. border: 1px solid #80c0e7;/*菜单容器边框*/
  2983. padding:2px 4px 2px 3px;
  2984. }
  2985. .icon_con span{
  2986. display:block;
  2987. clear:both;
  2988. height:28px;
  2989. line-height:28px;
  2990. background-position:2px 60%;
  2991. }
  2992. .icon_con a{
  2993. display:block;
  2994. height:28px;
  2995. text-indent:12px;
  2996. }
  2997. .icon_con a:hover{
  2998. text-decoration:none;
  2999. color:black;
  3000. filter:alpha(opacity=60);
  3001. background-color: #ffeec2;
  3002. border: solid 1px #80c0e7;/*菜单项边框*/
  3003. }
  3004. .multi_con{
  3005. background: white;
  3006. border: 1px solid #619cc5;/*菜单容器边框*/
  3007. border-width: 5px 1px;
  3008. padding: 10px;
  3009. width:560px;
  3010. }
  3011. .multi_con li{
  3012. width:100%;
  3013. height:28px;
  3014. }
  3015. .multi_con li a{
  3016. display:block;
  3017. height:100%;
  3018. padding:0 0 0 5px;
  3019. border: solid 1px #ffffff;
  3020. }
  3021. .multi_con li a:hover{
  3022. text-decoration:none;
  3023. color:black;
  3024. filter:alpha(opacity=60);
  3025. background-color: #ffeec2;
  3026. border: solid 1px #80c0e7;/*菜单项边框*/
  3027. }
  3028. .multi_con .column{
  3029. float: left;
  3030. width: 180px;
  3031. margin-right: 5px;
  3032. }
  3033. .multi_con .column ul{
  3034. margin: 0;
  3035. padding: 0;
  3036. list-style-type: none;
  3037. }
  3038. .multi_con .column ul li{
  3039. padding-bottom: 5px;
  3040. }
  3041. .multi_con .column h3{
  3042. background: #0081dd;/*分组标题背景色*/
  3043. font-weight: bold;
  3044. font-size: 14px;
  3045. margin: 0 0 5px 0;
  3046. color:white;
  3047. height:28px;
  3048. line-height:28px;
  3049. display:block;
  3050. text-indent:10px;
  3051. }
  3052. /*弹出式菜单*/
  3053. /*基本选项卡*/
  3054. .basicTab{
  3055. background-color:white;
  3056. }
  3057. .basicTab_con{
  3058. border:0;
  3059. padding:5px;
  3060. }
  3061. .basicTab_normal_left{
  3062. float:left;
  3063. height:30px;
  3064. }
  3065. .basicTab_normal_center{
  3066. background-color:#f4f7f8;
  3067. border:1px solid #d3dbde;
  3068. height:30px;
  3069. line-height:30px;
  3070. border-radius: 3px 3px 3px 3px;
  3071. color:#000000;
  3072. float:left;
  3073. padding:0 10px 0 10px;
  3074. cursor:pointer;
  3075. cursor:hand;
  3076. }
  3077. .basicTab_top{
  3078. height:32px;
  3079. overflow:hidden;
  3080. position: relative;
  3081. white-space: nowrap;
  3082. }
  3083. .basicTab_top_Container {
  3084. height: 32px;
  3085. left: 0px;
  3086. position: absolute;
  3087. top: 0px;
  3088. width: 9999px;
  3089. }
  3090. .basicTab_tabButtonLeft{
  3091. position:absolute;
  3092. top:0px;
  3093. width:19px;
  3094. height:32px;
  3095. background-image: url(dynamicTab/tab_leftBtn.jpg);
  3096. background-repeat: no-repeat;
  3097. cursor:pointer;
  3098. cursor:hand;
  3099. }
  3100. .basicTab_tabButtonRight{
  3101. position:absolute;
  3102. right:0;
  3103. top:0px;
  3104. width:19px;
  3105. height:32px;
  3106. background-image: url(dynamicTab/tab_rightBtn.jpg);
  3107. background-repeat: no-repeat;
  3108. cursor:pointer;
  3109. cursor:hand;
  3110. }
  3111. .basicTab_top a{
  3112. display:block;
  3113. }
  3114. .basicTab_normal_center a{
  3115. color:black;
  3116. }
  3117. .basicTab_normal_center a:hover{
  3118. color:black;
  3119. text-decoration:none;
  3120. }
  3121. .basicTab_normal_middle{
  3122. float:left;
  3123. width:10px;
  3124. height:30px;
  3125. }
  3126. .basicTab_normal_right{
  3127. float:left;
  3128. width:20px;
  3129. height:30px;
  3130. }
  3131. .basicTab_current_left{
  3132. }
  3133. .basicTab_current_center{
  3134. background-color:#3c95c8!important;
  3135. border:1px solid #3c95c8!important;
  3136. color:#ffffff!important;
  3137. }
  3138. .basicTab_current_middle{
  3139. }
  3140. .basicTab_current_middle2{
  3141. }
  3142. .basicTab_current_right{
  3143. }
  3144. .basicTab_hover_center{
  3145. background-color:#3c95c8!important;
  3146. border:1px solid #3c95c8!important;
  3147. color:#ffffff!important;
  3148. }
  3149. .basicTab_content{
  3150. padding:3px 0 0 0;
  3151. }
  3152. .basicTab_top .disabled{
  3153. color:#999999!important;
  3154. cursor:default!important;
  3155. }
  3156. .basicTab_top a:hover{
  3157. text-decoration:none;
  3158. }
  3159. .basicTabContent{
  3160. overflow:auto;
  3161. }
  3162. /*基本选项卡*/
  3163. /*基本选项卡-样式2*/
  3164. .basicTabModern{
  3165. margin:5px 0 0 0;
  3166. }
  3167. .basicTabModern_top{
  3168. height:37px;
  3169. background-image: url(basicTabModern/tab_bg_center.jpg);
  3170. background-repeat:repeat-x;
  3171. background-position:0% 100%;
  3172. width:100%;
  3173. }
  3174. .basicTabModern_top_left{
  3175. height:100%;
  3176. width:100%;
  3177. }
  3178. .basicTabModern_top_right{
  3179. height:100%;
  3180. width:100%;
  3181. height:37px;
  3182. overflow:hidden;
  3183. position: relative;
  3184. white-space: nowrap;
  3185. }
  3186. .basicTabModern_top_Container {
  3187. height: 37px;
  3188. left: 2px;
  3189. position: absolute;
  3190. top: 0px;
  3191. width: 9999px;
  3192. }
  3193. .basicTabModern_tabButtonLeft{
  3194. position:absolute;
  3195. top:0px;
  3196. width:19px;
  3197. height:37px;
  3198. background-image: url(dynamicTab/tab_leftBtn.jpg);
  3199. background-repeat: no-repeat;
  3200. cursor:pointer;
  3201. cursor:hand;
  3202. }
  3203. .basicTabModern_tabButtonRight{
  3204. position:absolute;
  3205. right:0;
  3206. top:0px;
  3207. width:19px;
  3208. height:37px;
  3209. background-image: url(dynamicTab/tab_rightBtn.jpg);
  3210. background-repeat: no-repeat;
  3211. cursor:pointer;
  3212. cursor:hand;
  3213. }
  3214. .basicTabModern_top a{
  3215. display:block;
  3216. }
  3217. .basicTabModern_normal_center a{
  3218. color:#000000;
  3219. }
  3220. .basicTabModern_normal_center a:hover{
  3221. color:#000000;
  3222. text-decoration:none;
  3223. }
  3224. .basicTabModern_current_center a{
  3225. color:#000000;
  3226. }
  3227. .basicTabModern_current_center a:hover{
  3228. color:#000000;
  3229. text-decoration:none;
  3230. }
  3231. .basicTabModern_con{
  3232. padding:2px 0 0 5px;
  3233. }
  3234. .basicTabModern_normal_left{
  3235. float:left;
  3236. width:0px;
  3237. height:100%;
  3238. }
  3239. .basicTabModern_normal_left_fix{
  3240. border-left:solid 1px #d3dbde!important;
  3241. }
  3242. .basicTabModern_current_left_fix{
  3243. width:0!important;
  3244. }
  3245. .basicTabModern_normal_center{
  3246. float:left;
  3247. height:100%;
  3248. background-image: url(basicTabModern/tab_center.jpg);
  3249. background-repeat:repeat-x;
  3250. padding:0 20px 0 20px;
  3251. cursor:pointer;
  3252. cursor:hand;
  3253. line-height:35px;
  3254. color:#000000;
  3255. font-weight:normal;
  3256. }
  3257. .basicTabModern_normal_right{
  3258. float:left;
  3259. width:4px;
  3260. height:100%;
  3261. background-image: url(basicTabModern/tab_right.jpg);
  3262. background-repeat:no-repeat;
  3263. background-position:50% 50%;
  3264. }
  3265. .basicTabModern_current_left{
  3266. background-image: url(basicTabModern/tab_current_left.jpg)!important;
  3267. width:5px;
  3268. height:100%;
  3269. }
  3270. .basicTabModern_current_center{
  3271. background-image: url(basicTabModern/tab_current_center.jpg)!important;
  3272. height:100%;
  3273. line-height:37px;
  3274. color:#000000;
  3275. font-weight:bold;
  3276. }
  3277. .basicTabModern_current_right{
  3278. background-image: url(basicTabModern/tab_current_right.jpg)!important;
  3279. width:4px;
  3280. height:100%;
  3281. }
  3282. .basicTabModern_content{
  3283. padding:3px 0 0 0;
  3284. }
  3285. .basicTabModern_top .disabled{
  3286. color:#999999!important;
  3287. cursor:default!important;
  3288. }
  3289. .basicTabModern_top a:hover{
  3290. text-decoration:none;
  3291. }
  3292. .basicTabModern_content{
  3293. padding:10px 10px 0 10px;
  3294. }
  3295. .basicTabModern_content2{
  3296. padding:10px 10px 0 20px;
  3297. }
  3298. .basicTabModern_title{
  3299. float:left;
  3300. color:#000000;
  3301. padding-top:2px;
  3302. font-weight:bold;
  3303. line-height:200%;
  3304. }
  3305. .basicTabModern_subTitle{
  3306. float:left;
  3307. color:#000000;
  3308. padding:4px 0 0 5px;
  3309. line-height:200%;
  3310. }
  3311. .basicTabModern_status{
  3312. float:right;
  3313. color:#000000;
  3314. padding:4px 5px 0 0;
  3315. font-weight:bold;
  3316. line-height:200%;
  3317. }
  3318. .basicTabModern_status a{
  3319. color:#000000;
  3320. }
  3321. .basicTabModern_status a:hover{
  3322. color:#000000;
  3323. text-decoration:underline;
  3324. }
  3325. .basicTabModern_tabcon{
  3326. float:right;
  3327. height:100%;
  3328. }
  3329. .basicTabModern_top_info{
  3330. float:left;
  3331. padding:10px 0 0 10px;
  3332. color:#000000;
  3333. }
  3334. .basicTabModern_top_more{
  3335. float:right;
  3336. padding:10px 10px 0 0;
  3337. color:#000000;
  3338. }
  3339. .basicTabModern_top_more a{
  3340. color:#000000;
  3341. }
  3342. /*基本选项卡-样式2*/
  3343. /*基本选项卡-样式3*/
  3344. .basicTabProcess{
  3345. margin:5px 0 0 0;
  3346. }
  3347. .basicTabProcess_top{
  3348. height:55px;
  3349. background-image: url(basicTabProcess/tab_bg_center.jpg);
  3350. background-repeat:repeat-x;
  3351. background-position:0% 15px;
  3352. width:100%;
  3353. }
  3354. .basicTabProcess_top_left{
  3355. height:100%;
  3356. width:100%;
  3357. }
  3358. .basicTabProcess_top_right{
  3359. height:100%;
  3360. width:100%;
  3361. height:55px;
  3362. overflow:hidden;
  3363. position: relative;
  3364. white-space: nowrap;
  3365. }
  3366. .basicTabProcess_top_Container {
  3367. height: 55px;
  3368. left: 2px;
  3369. position: absolute;
  3370. top: 0px;
  3371. width: 9999px;
  3372. }
  3373. .basicTabProcess_tabButtonLeft{
  3374. position:absolute;
  3375. top:0px;
  3376. width:22px;
  3377. height:55px;
  3378. background-image: url(basicTabProcess/tab_leftBtn.jpg);
  3379. background-repeat: no-repeat;
  3380. cursor:pointer;
  3381. cursor:hand;
  3382. }
  3383. .basicTabProcess_tabButtonRight{
  3384. position:absolute;
  3385. right:0;
  3386. top:0px;
  3387. width:22px;
  3388. height:55px;
  3389. background-image: url(basicTabProcess/tab_rightBtn.jpg);
  3390. background-repeat: no-repeat;
  3391. cursor:pointer;
  3392. cursor:hand;
  3393. }
  3394. .basicTabProcess_top a{
  3395. }
  3396. .basicTabProcess_normal_center a{
  3397. color:#000000;
  3398. }
  3399. .basicTabProcess_normal_center a:hover{
  3400. color:#000000;
  3401. text-decoration:none;
  3402. }
  3403. .basicTabProcess_current_center a{
  3404. color:#000000;
  3405. }
  3406. .basicTabProcess_current_center a:hover{
  3407. color:#000000;
  3408. text-decoration:none;
  3409. }
  3410. .basicTabProcess_con{
  3411. padding:2px 0 0 5px;
  3412. }
  3413. .basicTabProcess_normal_left{
  3414. float:left;
  3415. width:0px;
  3416. height:100%;
  3417. }
  3418. .basicTabProcess_normal_left_fix{
  3419. }
  3420. .basicTabProcess_current_left_fix{
  3421. }
  3422. .basicTabProcess_normal_center{
  3423. float:left;
  3424. height:100%;
  3425. cursor:pointer;
  3426. cursor:hand;
  3427. color:#000000;
  3428. font-weight:normal;
  3429. }
  3430. .basicTabProcess_normal_center span{
  3431. padding:25px 50px 0 50px;
  3432. }
  3433. .basicTabProcess_normal_right{
  3434. float:left;
  3435. width:0;
  3436. height:100%;
  3437. }
  3438. .basicTabProcess_current_left{
  3439. }
  3440. .basicTabProcess_current_center{
  3441. }
  3442. .basicTabProcess_current_right{
  3443. }
  3444. .basicTabProcess_content{
  3445. padding:3px 0 0 0;
  3446. }
  3447. .basicTabProcess_top .disabled{
  3448. color:#999999!important;
  3449. cursor:default!important;
  3450. }
  3451. .basicTabProcess_top a:hover{
  3452. text-decoration:none;
  3453. }
  3454. .basicTabProcess_content{
  3455. padding:10px 10px 0 10px;
  3456. }
  3457. .basicTabProcess_content2{
  3458. padding:10px 10px 0 20px;
  3459. }
  3460. .basicTabProcess_title{
  3461. float:left;
  3462. color:#ff9900;
  3463. padding-top:2px;
  3464. font-weight:bold;
  3465. line-height:200%;
  3466. background-color:#ffffff;
  3467. padding-left:20px;
  3468. padding-right:20px;
  3469. font-size:16px;
  3470. }
  3471. .basicTabProcess_subTitle{
  3472. float:left;
  3473. color:#000000;
  3474. padding:4px 0 0 5px;
  3475. line-height:200%;
  3476. }
  3477. .basicTabProcess_status{
  3478. float:right;
  3479. color:#000000;
  3480. padding:4px 5px 0 0;
  3481. font-weight:bold;
  3482. line-height:200%;
  3483. }
  3484. .basicTabProcess_status a{
  3485. color:#000000;
  3486. }
  3487. .basicTabProcess_status a:hover{
  3488. color:#000000;
  3489. text-decoration:underline;
  3490. }
  3491. .basicTabProcess_tabcon{
  3492. float:right;
  3493. height:100%;
  3494. }
  3495. .basicTabProcess_top_info{
  3496. float:left;
  3497. padding:10px 0 0 10px;
  3498. color:#000000;
  3499. }
  3500. .basicTabProcess_top_more{
  3501. float:right;
  3502. padding:10px 10px 0 0;
  3503. color:#000000;
  3504. }
  3505. .basicTabProcess_top_more a{
  3506. color:#000000;
  3507. }
  3508. .basicTabProcess_top_right table{
  3509. margin:0 auto;
  3510. }
  3511. .basicTabProcess_normal_center .process_item1{
  3512. background-image: url(basicTabProcess/tab_item1.jpg);
  3513. background-repeat: no-repeat;
  3514. background-position:50% 0%;
  3515. min-width:40px;
  3516. display:inline-block;
  3517. height:30px;
  3518. }
  3519. .basicTabProcess_current_center .process_item1{
  3520. background-image: url(basicTabProcess/tab_item1_current.jpg)!important;
  3521. }
  3522. .basicTabProcess_normal_center .process_item2{
  3523. background-image: url(basicTabProcess/tab_item2.jpg);
  3524. background-repeat: no-repeat;
  3525. background-position:50% 0%;
  3526. min-width:40px;
  3527. display:inline-block;
  3528. height:30px;
  3529. }
  3530. .basicTabProcess_current_center .process_item2{
  3531. background-image: url(basicTabProcess/tab_item2_current.jpg)!important;
  3532. }
  3533. .basicTabProcess_normal_center .process_item3{
  3534. background-image: url(basicTabProcess/tab_item3.jpg);
  3535. background-repeat: no-repeat;
  3536. background-position:50% 0%;
  3537. min-width:40px;
  3538. display:inline-block;
  3539. height:30px;
  3540. }
  3541. .basicTabProcess_current_center .process_item3{
  3542. background-image: url(basicTabProcess/tab_item3_current.jpg)!important;
  3543. }
  3544. .basicTabProcess_normal_center .process_item4{
  3545. background-image: url(basicTabProcess/tab_item4.jpg);
  3546. background-repeat: no-repeat;
  3547. background-position:50% 0%;
  3548. min-width:40px;
  3549. display:inline-block;
  3550. height:30px;
  3551. }
  3552. .basicTabProcess_current_center .process_item4{
  3553. background-image: url(basicTabProcess/tab_item4_current.jpg)!important;
  3554. }
  3555. .basicTabProcess_normal_center .process_item5{
  3556. background-image: url(basicTabProcess/tab_item5.jpg);
  3557. background-repeat: no-repeat;
  3558. background-position:50% 0%;
  3559. min-width:40px;
  3560. display:inline-block;
  3561. height:30px;
  3562. }
  3563. .basicTabProcess_current_center .process_item5{
  3564. background-image: url(basicTabProcess/tab_item5_current.jpg)!important;
  3565. }
  3566. .basicTabProcess_normal_center .process_item6{
  3567. background-image: url(basicTabProcess/tab_item6.jpg);
  3568. background-repeat: no-repeat;
  3569. background-position:50% 0%;
  3570. min-width:40px;
  3571. display:inline-block;
  3572. height:30px;
  3573. }
  3574. .basicTabProcess_current_center .process_item6{
  3575. background-image: url(basicTabProcess/tab_item6_current.jpg)!important;
  3576. }
  3577. .basicTabProcess_normal_center .process_item7{
  3578. background-image: url(basicTabProcess/tab_item7.jpg);
  3579. background-repeat: no-repeat;
  3580. background-position:50% 0%;
  3581. min-width:40px;
  3582. display:inline-block;
  3583. height:30px;
  3584. }
  3585. .basicTabProcess_current_center .process_item7{
  3586. background-image: url(basicTabProcess/tab_item7_current.jpg)!important;
  3587. }
  3588. .basicTabProcess_normal_center .process_item8{
  3589. background-image: url(basicTabProcess/tab_item8.jpg);
  3590. background-repeat: no-repeat;
  3591. background-position:50% 0%;
  3592. min-width:40px;
  3593. display:inline-block;
  3594. height:30px;
  3595. }
  3596. .basicTabProcess_current_center .process_item8{
  3597. background-image: url(basicTabProcess/tab_item8_current.jpg)!important;
  3598. }
  3599. .basicTabProcess_normal_center .process_item9{
  3600. background-image: url(basicTabProcess/tab_item9.jpg);
  3601. background-repeat: no-repeat;
  3602. background-position:50% 0%;
  3603. min-width:40px;
  3604. display:inline-block;
  3605. height:30px;
  3606. }
  3607. .basicTabProcess_current_center .process_item9{
  3608. background-image: url(basicTabProcess/tab_item9_current.jpg)!important;
  3609. }
  3610. /*基本选项卡-样式3*/
  3611. /*动态选项卡*/
  3612. .benma_ui_tab .tab_item1 {
  3613. width: 1px;
  3614. z-index: 100;
  3615. white-space: nowrap;
  3616. height:30px;
  3617. background-image: url(basicTabModern/tab_left.jpg);
  3618. background-repeat: no-repeat;
  3619. }
  3620. .benma_ui_tab .tab_item2 {
  3621. background-image: url(basicTabModern/tab_center.jpg);
  3622. background-repeat: repeat-x;
  3623. white-space: nowrap;
  3624. z-index: 101;
  3625. height:30px;
  3626. line-height:30px;
  3627. padding-left:10px;
  3628. padding-right:10px;
  3629. }
  3630. .benma_ui_tab .tab_item3 {
  3631. background-image: url(basicTabModern/tab_right.jpg);
  3632. background-repeat: no-repeat;
  3633. width: 4px;
  3634. height:30px;
  3635. }
  3636. .benma_ui_tab .tab_item1_selected{
  3637. background-image: url(basicTabModern/tab_current_left.jpg)!important;
  3638. background-position:0 0!important;
  3639. width:5px;
  3640. }
  3641. .benma_ui_tab .tab_item2_selected{
  3642. background-image: url(basicTabModern/tab_current_center.jpg)!important;
  3643. background-position:0 0!important;
  3644. color:#000000;
  3645. font-weight:bold;
  3646. }
  3647. .benma_ui_tab .tab_item3_selected{
  3648. background-image: url(basicTabModern/tab_current_right.jpg)!important;
  3649. background-position:0 0!important;
  3650. }
  3651. .benma_ui_tab .tab_item1_mouseover{
  3652. background-position:0 0!important;
  3653. }
  3654. .benma_ui_tab .tab_item2_mouseover{
  3655. background-position:0 0!important;
  3656. }
  3657. .benma_ui_tab .tab_item3_mouseover{
  3658. background-position:0 0!important;
  3659. }
  3660. .benma_ui_tab .tab_close {
  3661. background-image: url(dynamicTab/close.gif);
  3662. background-repeat: no-repeat;
  3663. position: relative;
  3664. top: -1px;
  3665. height: 14px;
  3666. width: 14px;
  3667. font-size: 9px;
  3668. }
  3669. .benma_ui_tab .tab_item1_bottom {
  3670. width: 1;
  3671. height:35px;
  3672. background-image: url(basicTabModern/tab_left.jpg);
  3673. background-repeat: no-repeat;
  3674. }
  3675. .benma_ui_tab .tab_item2_bottom {
  3676. background-image: url(basicTabModern/tab_center_bottom.jpg);
  3677. background-repeat: repeat-x;
  3678. background-position:0 0!important;
  3679. white-space: nowrap;
  3680. z-index: 101;
  3681. height:30px;
  3682. line-height:30px;
  3683. padding-left:10px;
  3684. padding-right:10px;
  3685. }
  3686. .benma_ui_tab .tab_item3_bottom {
  3687. background-image: url(basicTabModern/tab_right_bottom.jpg);
  3688. background-repeat: no-repeat;
  3689. width: 4px;
  3690. height:30px;
  3691. }
  3692. .benma_ui_tab .tab_item1_selected_bottom{
  3693. background-image: url(basicTabModern/tab_current_left_bottom.jpg)!important;
  3694. background-position:0 0!important;
  3695. width:5px;
  3696. }
  3697. .benma_ui_tab .tab_item2_selected_bottom{
  3698. background-image: url(basicTabModern/tab_current_center_bottom.jpg)!important;
  3699. background-position:0 0!important;
  3700. color:#000000;
  3701. font-weight:bold;
  3702. }
  3703. .benma_ui_tab .tab_item3_selected_bottom{
  3704. background-image: url(basicTabModern/tab_current_right_bottom.jpg)!important;
  3705. background-position:0 0!important;
  3706. }
  3707. .benma_ui_tab .tab_item1_mouseover_bottom{
  3708. }
  3709. .benma_ui_tab .tab_item2_mouseover_bottom{
  3710. background-position:0 0!important;
  3711. }
  3712. .benma_ui_tab .tab_item3_mouseover_bottom{
  3713. background-position:0 0!important;
  3714. }
  3715. .benma_ui_tab .tab_hr {
  3716. width: 100%;
  3717. height: 2px;
  3718. background-image: url(basicTabModern/tab_bg_center.jpg);
  3719. background-repeat:repeat-x;
  3720. background-position:0% 0%;
  3721. position: relative;
  3722. top: 35px;
  3723. z-index: 0;
  3724. font-size: 0px;
  3725. display: block;
  3726. }
  3727. .benma_ui_tab .tab_hr_bottom {
  3728. width: 100%;
  3729. height: 2px;
  3730. background-image: url(basicTabModern/tab_bg_center.jpg);
  3731. background-repeat:repeat-x;
  3732. position: relative;
  3733. top: 2px;
  3734. z-index: 0;
  3735. font-size: 0px;
  3736. display: block;
  3737. position: relative;
  3738. }
  3739. .benma_ui_tab .tab_item{
  3740. margin-left:0!important;
  3741. }
  3742. .benma_ui_tab .tab_item_bottom{
  3743. margin-left:0!important;
  3744. }
  3745. .benma_ui_tab{
  3746. height:37px;
  3747. }
  3748. .benma_ui_tab .tab_title{
  3749. }
  3750. .tabContainer{
  3751. width:9999px;
  3752. height:37px;
  3753. position:absolute;
  3754. top:4px;
  3755. left:2px;
  3756. }
  3757. .tabButtonLeft{
  3758. position:absolute;
  3759. top:4px;
  3760. width:19px;
  3761. height:37px;
  3762. background-image: url(dynamicTab/tab_leftBtn.jpg);
  3763. background-repeat: no-repeat;
  3764. cursor:pointer;
  3765. cursor:hand;
  3766. }
  3767. .tabButtonRight{
  3768. position:absolute;
  3769. right:0;
  3770. top:4px;
  3771. width:19px;
  3772. height:37px;
  3773. background-image: url(dynamicTab/tab_rightBtn.jpg);
  3774. background-repeat: no-repeat;
  3775. cursor:pointer;
  3776. cursor:hand;
  3777. }
  3778. #tab_menu{
  3779. overflow:hidden;
  3780. }
  3781. /*动态选项卡*/
  3782. /*一级纵向导航*/
  3783. .singleNav{
  3784. width:100%;
  3785. /* background-image: url(nav/singleNav_bg.jpg);
  3786. background-repeat:no-repeat;
  3787. background-position:0% 100%; */
  3788. padding:5px 0 130px 0;
  3789. top:0px;
  3790. left:10px;
  3791. }
  3792. .singleNav span{
  3793. display:block;
  3794. cursor:pointer;
  3795. cursor:hand;
  3796. padding:0 0 0 20px;
  3797. width:100%;
  3798. height:100%;
  3799. }
  3800. .singleNav span a{
  3801. color:black;
  3802. text-decoration:none;
  3803. width:100%;
  3804. display:block;
  3805. }
  3806. .singleNav span a:hover{
  3807. color:black;
  3808. text-decoration:none;
  3809. }
  3810. .singleNav div{
  3811. border-bottom: 1px solid #ccc;
  3812. line-height:36px;
  3813. }
  3814. .singleNav div:hover{
  3815. background-color: #6991d3;
  3816. }
  3817. .singleNav .current{
  3818. background-color: #6991d3;
  3819. }
  3820. .singleNav .current span a{
  3821. color:#fff;
  3822. }
  3823. .singleNavMin{
  3824. width:100%;
  3825. padding:5px 0 130px 0;
  3826. top:0px;
  3827. left:10px;
  3828. }
  3829. .singleNavMin span{
  3830. display:inline-block;
  3831. cursor:pointer;
  3832. cursor:hand;
  3833. padding:0 0 0 10px;
  3834. width:calc(100% - 25px);
  3835. height:100%;
  3836. }
  3837. .singleNavMin span a{
  3838. color:black;
  3839. text-decoration:none;
  3840. width:100%;
  3841. display:block;
  3842. word-break: keep-all;
  3843. word-wrap: normal;
  3844. white-space:nowrap;
  3845. width:90px;
  3846. overflow:hidden;
  3847. text-overflow:ellipsis;
  3848. }
  3849. .singleNavMin span a:hover{
  3850. color:black;
  3851. text-decoration:none;
  3852. }
  3853. .singleNavMin div{
  3854. width:100%;
  3855. height:36px;
  3856. line-height:36px;
  3857. border-bottom: 1px dashed #ccc;
  3858. }
  3859. .singleNavMin .current{
  3860. background-color: #6546E3;
  3861. width:100%;
  3862. overflow: hidden;
  3863. }
  3864. .singleNavMin1{
  3865. width:100%;
  3866. padding:5px 0 130px 0;
  3867. top:0px;
  3868. left:10px;
  3869. }
  3870. .singleNavMin1 span{
  3871. display:inline-block;
  3872. cursor:pointer;
  3873. cursor:hand;
  3874. padding:0 0 0 10px;
  3875. width:calc(100% - 25px);
  3876. height:100%;
  3877. }
  3878. .singleNavMin1 span a{
  3879. color:black;
  3880. text-decoration:none;
  3881. width:100%;
  3882. display:block;
  3883. word-break: keep-all;
  3884. word-wrap: normal;
  3885. white-space:nowrap;
  3886. width:90px;
  3887. overflow:hidden;
  3888. text-overflow:ellipsis;
  3889. }
  3890. .singleNavMin1 span a:hover{
  3891. color:black;
  3892. text-decoration:none;
  3893. }
  3894. .singleNavMin1 div{
  3895. width:100%;
  3896. height:36px;
  3897. line-height:36px;
  3898. border-bottom: 1px solid #ccc;
  3899. }
  3900. .singleNavMin1 div:hover{
  3901. background-color: #6991d3;
  3902. }
  3903. .singleNavMin1 .current{
  3904. background-color: #6991d3;
  3905. width:100%;
  3906. overflow: hidden;
  3907. }
  3908. /*一级纵向导航*/
  3909. /*纵向抽屉容器*/
  3910. .accordition {
  3911. border-left: 1px solid #d3dbde;
  3912. border-right: 1px solid #d3dbde;
  3913. border-bottom: 1px solid #d3dbde;
  3914. }
  3915. .accordition div {
  3916. /* background-color: #fff; */
  3917. }
  3918. .accordition .titlebar{
  3919. cursor:pointer;
  3920. display:block;
  3921. text-decoration: none;
  3922. color: black;
  3923. padding-left: 40px;
  3924. background-color:#6991d3;
  3925. color:#fff;
  3926. height:40px;
  3927. line-height: 40px;
  3928. background-image: url(../../icons/file_close.png);
  3929. background-repeat: no-repeat;
  3930. background-position: 15px 50%;
  3931. _background-position: 15px 40%;
  3932. border-bottom: 1px #fff solid;
  3933. }
  3934. .accordition .titlebar:hover {
  3935. background-color:#3c95c8;
  3936. }
  3937. .accordition .titlebar.selected {
  3938. background-image: url(../../icons/file_open.png);
  3939. }
  3940. /* .accordition .titlebar.selected {
  3941. background-color:#3c95c8;
  3942. border-top:1px solid #3c95c8;
  3943. color:white;
  3944. } */
  3945. /*纵向抽屉容器*/
  3946. /*所在位置*/
  3947. .positionSimple{
  3948. height:22px;
  3949. line-height:22px;
  3950. margin:5px 5px 2px 0;
  3951. padding:0 0 0 0px;
  3952. background-image: url(nav/position_simpleBg.jpg);
  3953. background-repeat:repeat-x;
  3954. }
  3955. .positionSimple span{
  3956. padding:0 0 0 10px;
  3957. color:#0b5ea0!important;/*文字颜色*/
  3958. }
  3959. .positionSimple a{
  3960. color:#0b5ea0;/*文字颜色*/
  3961. text-decoration:none;
  3962. }
  3963. .positionSimple a:hover{
  3964. color:#0b5ea0;/*文字颜色*/
  3965. text-decoration:underline;
  3966. }
  3967. .position{
  3968. height:30px;
  3969. line-height:30px;
  3970. margin:5px 5px 2px 0;
  3971. padding:0 0 0 0px;
  3972. }
  3973. .position .center{
  3974. background-image: url(nav/position_center.jpg);
  3975. background-repeat:repeat-x;
  3976. width:100%;
  3977. height:100%;
  3978. }
  3979. .position .left{
  3980. background-image: url(nav/position_left.jpg);
  3981. background-repeat: no-repeat;
  3982. width:100%;
  3983. height:100%;
  3984. }
  3985. .position .right{
  3986. background-image: url(nav/position_right.jpg);
  3987. background-repeat: no-repeat;
  3988. background-position:100% 0%;
  3989. width:100%;
  3990. height:100%;
  3991. }
  3992. .position .right span{
  3993. padding:0 0 0 65px;
  3994. color:#0b5ea0!important;/*文字颜色*/
  3995. }
  3996. .position a{
  3997. color:#0b5ea0;/*文字颜色*/
  3998. text-decoration:none;
  3999. }
  4000. .position a:hover{
  4001. color:#0b5ea0;/*文字颜色*/
  4002. text-decoration:underline;
  4003. }
  4004. /*所在位置*/
  4005. /*图标导航*/
  4006. .navIcon_right_title{
  4007. font-weight:bold;
  4008. }
  4009. .navIcon_hover{
  4010. background-color:#3c95c8!important; /*鼠标移入背景色*/
  4011. border:solid 1px #3c95c8!important; /*鼠标移入边框色*/
  4012. color:#ffffff;
  4013. }
  4014. .navIcon{
  4015. border:solid 1px #d3dbde; /*边框色*/
  4016. background-color:#f4f7f8;/*背景色*/
  4017. height:90px;
  4018. overflow:hidden;
  4019. }
  4020. .navIcon .img{
  4021. width:80px;
  4022. height:80px;
  4023. }
  4024. .navIcon a{
  4025. display:block;
  4026. }
  4027. .navIconSmall{
  4028. border:solid 1px #d3dbde; /*边框色*/
  4029. background-color:#f4f7f8;/*背景色*/
  4030. width:80px;
  4031. margin:10px 10px 0 0;
  4032. display:inline;
  4033. text-align:center;
  4034. float:left;
  4035. cursor:pointer;
  4036. cursor:hand;
  4037. }
  4038. .navIconSmall img{
  4039. width:60px;
  4040. height:60px;
  4041. }
  4042. .navIconSmall_hover{
  4043. background-color:#3c95c8!important; /*鼠标移入背景色*/
  4044. border:solid 1px #3c95c8!important; /*鼠标移入边框色*/
  4045. color:#ffffff;
  4046. }
  4047. .navIconSmall_current{
  4048. background-color:#3c95c8!important; /*鼠标移入背景色*/
  4049. border:solid 1px #3c95c8!important; /*鼠标移入边框色*/
  4050. color:#ffffff;
  4051. }
  4052. /*图标导航*/
  4053. /*图标工具栏*/
  4054. .box_tool{
  4055. height:62px;
  4056. color:#000000;
  4057. }
  4058. .box_tool .center{
  4059. width:100%;
  4060. height:100%;
  4061. background-color:#eff3f8;
  4062. border:solid 1px #cbcbcb;
  4063. }
  4064. .box_tool .left{
  4065. width:100%;
  4066. height:100%;
  4067. }
  4068. .box_tool .right{
  4069. background-position:100% 0%;
  4070. width:100%;
  4071. height:100%;
  4072. }
  4073. .box_tool a:hover .navIconTool{
  4074. color:red;
  4075. text-decoration:none;
  4076. }
  4077. .navIconTool{
  4078. width:60px;
  4079. margin:5px 10px 0 0;
  4080. display:inline;
  4081. text-align:center;
  4082. color:#000000; /*标题文字颜色*/
  4083. cursor:pointer;
  4084. cursor:hand;
  4085. float:left;
  4086. }
  4087. .navIconTool img{
  4088. width:30px;
  4089. height:30px;
  4090. }
  4091. .box_tool_mid{
  4092. height:54px;
  4093. color:#000000;
  4094. }
  4095. .box_tool_mid .center{
  4096. background-color:#eff3f8;
  4097. border:solid 1px #cbcbcb;
  4098. width:100%;
  4099. height:100%;
  4100. }
  4101. .box_tool_mid .left{
  4102. width:100%;
  4103. height:100%;
  4104. }
  4105. .box_tool_mid .right{
  4106. width:100%;
  4107. height:100%;
  4108. color:#000000;
  4109. }
  4110. .box_tool_min a{
  4111. float:left;
  4112. }
  4113. .box_tool_min a span{
  4114. padding-right:4px;
  4115. padding-left:22px;
  4116. border-radius: 3px 3px 3px 3px;
  4117. background-position:5px 60%!important;
  4118. }
  4119. .box_tool_min{
  4120. height:35px;
  4121. color:#000000;
  4122. overflow:hidden;
  4123. }
  4124. .box_tool_min .center{
  4125. background-color:#eff3f8;
  4126. border:solid 1px #cbcbcb;
  4127. width:100%;
  4128. height:100%;
  4129. }
  4130. .box_tool_min .left{
  4131. width:100%;
  4132. height:100%;
  4133. }
  4134. .box_tool_min .right{
  4135. background-position:100% 0%;
  4136. width:100%;
  4137. height:100%;
  4138. color:#000000;
  4139. }
  4140. .box_tool_min a:hover{
  4141. text-decoration:none!important;
  4142. }
  4143. .box_tool_min a:hover span{
  4144. background-color:#3b95c8;/*鼠标悬停背景色*/
  4145. color:#ffffff;
  4146. text-decoration:none!important;
  4147. }
  4148. .box_tool_line{
  4149. float:left;
  4150. width:15px;
  4151. display:block;
  4152. height:19px;
  4153. overflow:hidden;
  4154. background-image: url(box/box_tool_line.gif);
  4155. background-repeat: no-repeat;
  4156. background-position:5px 4px;
  4157. }
  4158. /*图标工具栏*/
  4159. /*数字分页样式*/
  4160. .pageNumber {
  4161. line-height:100%;
  4162. }
  4163. .pageNumber a , .pageNumber span{
  4164. text-decoration: none;
  4165. border: solid 1px #80c0e7;/*边框颜色*/
  4166. color: #333333;
  4167. line-height:26px;
  4168. font-weight: normal;
  4169. text-align: center;
  4170. border: 1px solid #AAA;
  4171. border-right: none;
  4172. min-width: 14px;
  4173. background-color: #ffffff;
  4174. }
  4175. .pageNumber a:hover{
  4176. text-decoration:none;
  4177. background-color: #f5f5f5;
  4178. }
  4179. .pageNumber a, .pageNumber span {
  4180. display: block;
  4181. float: left;
  4182. padding: 2px 8px 2px 8px;;
  4183. margin-bottom: 0px;
  4184. min-width: 14px;
  4185. }
  4186. .pageNumber .current {
  4187. background-color: #eeeeee;
  4188. cursor: default;
  4189. font-weight:bold;
  4190. }
  4191. .pageNumber .prev{
  4192. border-radius: 3px 0 0 3px;
  4193. }
  4194. .pageNumber .next{
  4195. border-right: 1px solid #AAA;
  4196. border-radius: 0 3px 3px 0;
  4197. }
  4198. .pageNumber .current.prev, .pageNumber .current.next{
  4199. font-weight:normal;
  4200. color: #333333;
  4201. }
  4202. .pageNumber .ellipse {
  4203. padding-left:10px!important;
  4204. padding-right:10px!important;
  4205. cursor: default!important;
  4206. }
  4207. /*数字分页样式*/
  4208. /*箭头分页样式*/
  4209. .pageArrow {
  4210. line-height:150%;
  4211. }
  4212. .pageArrow a, .pageArrow span {
  4213. display: block;
  4214. float: left;
  4215. padding:4px 3px 0 3px;
  4216. }
  4217. .pageArrow .current {
  4218. color: red;
  4219. font-weight:bold;
  4220. }
  4221. .pageArrow_next{
  4222. background-image:url(nav/arrow_right.gif);
  4223. background-repeat:no-repeat;
  4224. background-position:0% 100%;
  4225. width:16px;
  4226. height:18px;
  4227. }
  4228. .pageArrow_prev{
  4229. background-image:url(nav/arrow_left.gif);
  4230. background-repeat:no-repeat;
  4231. background-position:0% 100%;
  4232. width:16px;
  4233. height:18px;
  4234. }
  4235. .pageArrow_last{
  4236. background-image:url(nav/arrow_right_db.gif);
  4237. background-repeat:no-repeat;
  4238. background-position:0% 100%;
  4239. width:16px;
  4240. height:18px;
  4241. }
  4242. .pageArrow_first{
  4243. background-image:url(nav/arrow_left_db.gif);
  4244. background-repeat:no-repeat;
  4245. background-position:0% 100%;
  4246. width:16px;
  4247. height:18px;
  4248. }
  4249. /*箭头分页样式*/
  4250. /*横向导航样式*/
  4251. .nav_single_h{
  4252. width:100%;
  4253. height:40px;
  4254. border-left:solid 1px #E2E2E2;
  4255. border-right:solid 1px #E2E2E2;
  4256. border-bottom:solid 3px #15A8EB;
  4257. background-image:url(nav/nav_h_bg.jpg);
  4258. background-repeat:repeat-x;
  4259. background-position:0% 100%;
  4260. }
  4261. .nav_single_h ul{
  4262. padding:0 0 0 10px;
  4263. }
  4264. .nav_single_h li{
  4265. float:left;
  4266. width:155px;
  4267. height:44px;
  4268. text-align:center;
  4269. line-height:40px;
  4270. }
  4271. .nav_single_h .current{
  4272. background-image:url(nav/nav_h_current.png);
  4273. background-repeat:no-repeat;
  4274. color:#ffffff;
  4275. font-weight:bold;
  4276. }
  4277. .nav_single_h li a{
  4278. display:block;
  4279. width:100%;
  4280. height:40px;
  4281. color:#000000;
  4282. }
  4283. .nav_single_h li a:hover{
  4284. text-decoration:none;
  4285. }
  4286. .nav_single_h .current a{
  4287. color:#ffffff;
  4288. }
  4289. /*横向导航样式*/
  4290. /*分隔条样式*/
  4291. .spliterTop{
  4292. width: 116px;/*横条箭头宽度*/
  4293. height: 10px;/*横条箭头高度*/
  4294. background-image: url(nav/spliter_top.jpg);
  4295. background-repeat: no-repeat;
  4296. cursor: pointer;
  4297. cursor: hand;
  4298. margin:0 auto;
  4299. }
  4300. .spliterBottom{
  4301. width: 116px;/*横条箭头宽度*/
  4302. height: 10px;/*横条箭头高度*/
  4303. background-image: url(nav/spliter_bottom.jpg);
  4304. background-repeat: no-repeat;
  4305. cursor: pointer;
  4306. cursor: hand;
  4307. margin:0 auto;
  4308. }
  4309. .spliterLeft{
  4310. width: 10px;/*竖条箭头宽度*/
  4311. height: 116px;/*竖条箭头高度*/
  4312. background-image: url(nav/spliter_left.jpg);
  4313. background-repeat: no-repeat;
  4314. cursor: pointer;
  4315. cursor: hand;
  4316. }
  4317. .spliterRight{
  4318. width: 10px;/*竖条箭头宽度*/
  4319. height: 116px;/*竖条箭头高度*/
  4320. background-image: url(nav/spliter_right.jpg);
  4321. background-repeat: no-repeat;
  4322. cursor: pointer;
  4323. cursor: hand;
  4324. }
  4325. .spliterStyleV{
  4326. width: 10px;/*竖条容器宽度*/
  4327. height: 100%;
  4328. background-image: url(nav/spliter_bg_v.jpg);
  4329. background-repeat: repeat-y;
  4330. }
  4331. .spliterStyleH{
  4332. width: 100%;
  4333. height: 10px;/*横条容器高度*/
  4334. background-image: url(nav/spliter_bg_h.jpg);
  4335. background-repeat: repeat-x;
  4336. overflow:hidden;
  4337. }
  4338. /*分隔条样式*/
  4339. /*布局控件*/
  4340. .l-layout{ position:relative;}
  4341. .l-layout-left,.l-layout-right,.l-layout-center,.l-layout-top,.l-layout-bottom{position:absolute;border:1px solid #BED5F3; background:white; z-index:10; overflow:hidden;}
  4342. .l-layout-top{width:100%;}
  4343. .l-layout-bottom{width:100%}
  4344. .l-layout-left .l-layout-header-toggle{position:absolute; right:3px; height:40px; width:20px; overflow:hidden; background:url('layout/togglebar111.png');background-position:0 50%;background-repeat: no-repeat; }
  4345. /* .l-layout-left .l-layout-header-toggle-over{ background-position:-20px -20px;} */
  4346. .l-layout-right .l-layout-header-toggle{position:absolute; left:3px; height:40px; width:20px; overflow:hidden; background:url('layout/togglebar111.png');background-position:0 50%;background-repeat: no-repeat;}
  4347. /* .l-layout-right .l-layout-header-toggle-over{ background-position:-20px -60px;}
  4348. */
  4349. .l-layout-center .l-layout-header{ cursor:default;}
  4350. .l-layout-header{ position:relative;padding-left:10px; color:#183152; font-weight:bold;height:40px; line-height:40px; background:rgb(255,255,255) repeat-x; overflow:hidden; cursor:pointer;border-bottom: 1px solid #bed5f3;}
  4351. .l-layout-header-inner{padding-right:22px;}
  4352. .l-layout-right .l-layout-header-inner { padding-left:22px; padding-right:auto;}
  4353. /* .l-layout-header-over{background:#EFF4FE url('layout/layout-header-over.gif') repeat-x;}
  4354. */
  4355. .l-layout-collapse-left,.l-layout-collapse-right{ width:24px; background:#EAF2FE;border:1px solid #B8D0D6; position:absolute;top:0px; height:100%;z-index:10;}
  4356. .l-layout-collapse-left-over,.l-layout-collapse-right-over{background:#F5F9FA;}
  4357. .l-layout-collapse-left-toggle,.l-layout-collapse-right-toggle{position:absolute; height:40px; width:20px; overflow:hidden;left:7px; background:url('layout/togglebar222.png');background-position:0 50%;background-repeat: no-repeat;cursor:pointer;}
  4358. .l-layout-collapse-left{left:2px;}
  4359. /* .l-layout-collapse-left-toggle{top:0px; right:2px; background-position:-20px -40px;}
  4360. .l-layout-collapse-left-toggle-over{background-position:-20px -60px;} */
  4361. .l-layout-collapse-right{right:2px;}
  4362. /* .l-layout-collapse-right-toggle{top:0px; left:2px; background-position:-20px 0px;}
  4363. .l-layout-collapse-right-toggle-over{background-position:-20px -20px;} */
  4364. .l-layout-drophandle-left{ position:absolute;width:5px;cursor:col-resize; z-index:10;}
  4365. .l-layout-drophandle-right{ position:absolute;width:5px;cursor:col-resize; z-index:10;}
  4366. .l-layout-drophandle-top{ position:absolute;height:5px;cursor:row-resize; z-index:10;line-height:1px;overflow:hidden;}
  4367. .l-layout-drophandle-bottom{ position:absolute;height:5px;cursor:row-resize; z-index:10;line-height:1px;overflow:hidden;}
  4368. .l-layout-dragging-xline{ background:#000000;height:1px;position:absolute;display:none; z-index:9999; padding:0; margin:0;line-height:1px; overflow:hidden;}
  4369. .l-layout-dragging-yline{ background:#000000;width:1px;position:absolute;display:none; z-index:9999; padding:0; margin:0;}
  4370. .l-layout-lock{ position:absolute; width:100%; height:100%; display:none; z-index:9990; margin:0; padding:0;}
  4371. .l-layout-content{position:relative; background:white; overflow:hidden;padding:0 2px 0 2px;}
  4372. .l-layout-drophandle{ position:absolute; top:0px; left:-5px; width:5px;cursor:col-resize; z-index:10;height:100%; display:none;}
  4373. .l-layout-collapse{ width:24px; background:#EAF2FE;border:1px solid #B8D0D6; position:absolute; top:0px; left:4px; display:none; height:100%;z-index:10;}
  4374. .l-layout-collapse-over{background:#F5F9FA;}
  4375. .l-layout-collapse-toggle{position:absolute; top:0px; right:2px; height:20px; width:20px; overflow:hidden; background:url('layout/togglebar111.png');background-position:0 50%;background-repeat: no-repeat; cursor:pointer;}
  4376. /* .l-layout-collapse-toggle-over{background-position:-20px -60px;} */
  4377. .l-layout-dragging-line{ background:#E0E4E2;width:4px;position:absolute;top:0px; display:none; z-index:9999; padding:0; margin:0;height:100%;}
  4378. .l-layout-xmask {
  4379. cursor: col-resize;z-index:9990;
  4380. }
  4381. .l-layout-ymask {
  4382. cursor: row-resize;z-index:9990;
  4383. }
  4384. /*布局控件*/
  4385. /*提示控件*/
  4386. .l-verify-tip{ padding:0; margin:0;position:absolute; display:block;z-index:888;}
  4387. .l-verify-tip-corner{ padding:0; margin:0;position:absolute;background:url('tooltip/verify-corner.gif') no-repeat; width:8px; line-height:9px; height:9px; overflow:hidden; top:5px; left:0px; z-index:10001;}
  4388. .l-verify-tip-corner2{ padding:0; margin:0;position:absolute;background:url('tooltip/verify-corner2.gif') no-repeat; width:9px; line-height:8px; height:8px; overflow:hidden; top:0px; left:20px; z-index:10001;}
  4389. .l-verify-tip-content{margin:0; position:absolute; left:7px;top:0px;border:1px solid #FFC340; background:#FFFCC7; z-index:10000; padding:4px 8px; }
  4390. .l-verify-tip-content2{margin:0; position:absolute; top:7px;left:0px;border:1px solid #FFC340; background:#FFFCC7; z-index:10000; padding:4px 8px; }
  4391. .staticTip{border:1px solid #FFC340; background:#FFFCC7; padding:4px 8px; width:400px; }
  4392. .l-verify-tip-close{background-image:url('tooltip/verify-close.gif');background-repeat:no-repeat;background-position:50% 0%;cursor:pointer;cursor:hand;float:right;overflow:hidden;width:12px;height:10px;}
  4393. .l-verify-tip-close-con{}
  4394. /*提示控件*/