styles.css 100 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-20px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u34199 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u34200_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1600px;
  33. height:1200px;
  34. background:inherit;
  35. background-color:rgba(242, 242, 242, 1);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  39. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  40. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  41. }
  42. #u34200 {
  43. border-width:0px;
  44. position:absolute;
  45. left:20px;
  46. top:40px;
  47. width:1600px;
  48. height:1200px;
  49. display:flex;
  50. }
  51. #u34200 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u34200_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u34201_div {
  65. border-width:0px;
  66. position:absolute;
  67. left:0px;
  68. top:0px;
  69. width:278px;
  70. height:1200px;
  71. background:inherit;
  72. background-color:rgba(255, 255, 255, 1);
  73. box-sizing:border-box;
  74. border-width:1px;
  75. border-style:solid;
  76. border-color:rgba(215, 215, 215, 1);
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  82. font-weight:400;
  83. font-style:normal;
  84. font-size:14px;
  85. color:#AAAAAA;
  86. text-align:center;
  87. line-height:30px;
  88. }
  89. #u34201 {
  90. border-width:0px;
  91. position:absolute;
  92. left:20px;
  93. top:40px;
  94. width:278px;
  95. height:1200px;
  96. display:flex;
  97. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  98. font-weight:400;
  99. font-style:normal;
  100. font-size:14px;
  101. color:#AAAAAA;
  102. text-align:center;
  103. line-height:30px;
  104. }
  105. #u34201 .text {
  106. position:absolute;
  107. align-self:center;
  108. padding:5px 10px 5px 10px;
  109. box-sizing:border-box;
  110. width:100%;
  111. }
  112. #u34201_text {
  113. border-width:0px;
  114. word-wrap:break-word;
  115. text-transform:none;
  116. visibility:hidden;
  117. }
  118. #u34202_div {
  119. border-width:0px;
  120. position:absolute;
  121. left:0px;
  122. top:0px;
  123. width:1600px;
  124. height:60px;
  125. background:inherit;
  126. background-color:rgba(255, 255, 255, 1);
  127. border:none;
  128. border-radius:0px;
  129. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  130. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  131. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  132. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  133. font-weight:400;
  134. font-style:normal;
  135. font-size:14px;
  136. color:#AAAAAA;
  137. text-align:center;
  138. line-height:30px;
  139. }
  140. #u34202 {
  141. border-width:0px;
  142. position:absolute;
  143. left:20px;
  144. top:40px;
  145. width:1600px;
  146. height:60px;
  147. display:flex;
  148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  149. font-weight:400;
  150. font-style:normal;
  151. font-size:14px;
  152. color:#AAAAAA;
  153. text-align:center;
  154. line-height:30px;
  155. }
  156. #u34202 .text {
  157. position:absolute;
  158. align-self:center;
  159. padding:5px 10px 5px 10px;
  160. box-sizing:border-box;
  161. width:100%;
  162. }
  163. #u34202_text {
  164. border-width:0px;
  165. word-wrap:break-word;
  166. text-transform:none;
  167. visibility:hidden;
  168. }
  169. #u34203_div {
  170. border-width:0px;
  171. position:absolute;
  172. left:0px;
  173. top:0px;
  174. width:127px;
  175. height:60px;
  176. background:inherit;
  177. background-color:rgba(255, 255, 255, 0);
  178. border:none;
  179. border-left:0px;
  180. border-top:0px;
  181. border-right:0px;
  182. border-radius:0px;
  183. border-bottom-right-radius:0px;
  184. border-bottom-left-radius:0px;
  185. -moz-box-shadow:none;
  186. -webkit-box-shadow:none;
  187. box-shadow:none;
  188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  189. font-weight:500;
  190. font-style:normal;
  191. font-size:18px;
  192. }
  193. #u34203 {
  194. border-width:0px;
  195. position:absolute;
  196. left:42px;
  197. top:40px;
  198. width:127px;
  199. height:60px;
  200. display:flex;
  201. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  202. font-weight:500;
  203. font-style:normal;
  204. font-size:18px;
  205. }
  206. #u34203 .text {
  207. position:absolute;
  208. align-self:center;
  209. padding:5px 0px 5px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u34203_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u34204_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:60px;
  224. height:30px;
  225. background:inherit;
  226. background-color:rgba(25, 140, 251, 1);
  227. border:none;
  228. border-radius:4px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  233. font-weight:400;
  234. font-style:normal;
  235. font-size:14px;
  236. color:#FFFFFF;
  237. }
  238. #u34204 {
  239. border-width:0px;
  240. position:absolute;
  241. left:1520px;
  242. top:55px;
  243. width:60px;
  244. height:30px;
  245. display:flex;
  246. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  247. font-weight:400;
  248. font-style:normal;
  249. font-size:14px;
  250. color:#FFFFFF;
  251. }
  252. #u34204 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u34204_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. }
  264. #u34205_div {
  265. border-width:0px;
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:1020px;
  270. height:130px;
  271. background:inherit;
  272. background-color:rgba(255, 255, 255, 1);
  273. border:none;
  274. border-radius:4px;
  275. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  276. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  277. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  279. font-weight:400;
  280. font-style:normal;
  281. font-size:14px;
  282. color:#AAAAAA;
  283. line-height:30px;
  284. }
  285. #u34205 {
  286. border-width:0px;
  287. position:absolute;
  288. left:309px;
  289. top:113px;
  290. width:1020px;
  291. height:130px;
  292. display:flex;
  293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  294. font-weight:400;
  295. font-style:normal;
  296. font-size:14px;
  297. color:#AAAAAA;
  298. line-height:30px;
  299. }
  300. #u34205 .text {
  301. position:absolute;
  302. align-self:center;
  303. padding:5px 10px 5px 10px;
  304. box-sizing:border-box;
  305. width:100%;
  306. }
  307. #u34205_text {
  308. border-width:0px;
  309. word-wrap:break-word;
  310. text-transform:none;
  311. visibility:hidden;
  312. }
  313. #u34206_input {
  314. position:absolute;
  315. left:0px;
  316. top:0px;
  317. width:946px;
  318. height:50px;
  319. padding:2px 2px 2px 2px;
  320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  321. font-weight:400;
  322. font-style:normal;
  323. font-size:18px;
  324. letter-spacing:normal;
  325. color:#000000;
  326. vertical-align:none;
  327. text-align:left;
  328. text-transform:none;
  329. background-color:transparent;
  330. border-color:transparent;
  331. }
  332. #u34206_input.disabled {
  333. position:absolute;
  334. left:0px;
  335. top:0px;
  336. width:946px;
  337. height:50px;
  338. padding:2px 2px 2px 2px;
  339. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  340. font-weight:400;
  341. font-style:normal;
  342. font-size:18px;
  343. letter-spacing:normal;
  344. color:#000000;
  345. vertical-align:none;
  346. text-align:left;
  347. text-transform:none;
  348. background-color:transparent;
  349. border-color:transparent;
  350. }
  351. #u34206_div {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:946px;
  357. height:50px;
  358. background:inherit;
  359. background-color:rgba(255, 255, 255, 0);
  360. border:none;
  361. border-radius:0px;
  362. -moz-box-shadow:none;
  363. -webkit-box-shadow:none;
  364. box-shadow:none;
  365. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  366. font-weight:400;
  367. font-style:normal;
  368. font-size:18px;
  369. }
  370. #u34206 {
  371. border-width:0px;
  372. position:absolute;
  373. left:337px;
  374. top:123px;
  375. width:946px;
  376. height:50px;
  377. display:flex;
  378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  379. font-weight:400;
  380. font-style:normal;
  381. font-size:18px;
  382. }
  383. #u34206 .text {
  384. position:absolute;
  385. align-self:center;
  386. padding:2px 2px 2px 2px;
  387. box-sizing:border-box;
  388. width:100%;
  389. }
  390. #u34206_div.disabled {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:946px;
  396. height:50px;
  397. background:inherit;
  398. background-color:rgba(240, 240, 240, 1);
  399. border:none;
  400. border-radius:0px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. font-size:18px;
  408. }
  409. #u34206.disabled {
  410. }
  411. #u34207_input {
  412. position:absolute;
  413. left:0px;
  414. top:0px;
  415. width:946px;
  416. height:50px;
  417. padding:2px 2px 2px 2px;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. font-size:14px;
  422. letter-spacing:normal;
  423. color:#7F7F7F;
  424. vertical-align:none;
  425. text-align:left;
  426. text-transform:none;
  427. background-color:transparent;
  428. border-color:transparent;
  429. }
  430. #u34207_input.disabled {
  431. position:absolute;
  432. left:0px;
  433. top:0px;
  434. width:946px;
  435. height:50px;
  436. padding:2px 2px 2px 2px;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. letter-spacing:normal;
  442. color:#7F7F7F;
  443. vertical-align:none;
  444. text-align:left;
  445. text-transform:none;
  446. background-color:transparent;
  447. border-color:transparent;
  448. }
  449. #u34207_div {
  450. border-width:0px;
  451. position:absolute;
  452. left:0px;
  453. top:0px;
  454. width:946px;
  455. height:50px;
  456. background:inherit;
  457. background-color:rgba(255, 255, 255, 0);
  458. border:none;
  459. border-radius:0px;
  460. -moz-box-shadow:none;
  461. -webkit-box-shadow:none;
  462. box-shadow:none;
  463. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  464. font-weight:400;
  465. font-style:normal;
  466. font-size:14px;
  467. color:#7F7F7F;
  468. }
  469. #u34207 {
  470. border-width:0px;
  471. position:absolute;
  472. left:337px;
  473. top:173px;
  474. width:946px;
  475. height:50px;
  476. display:flex;
  477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  478. font-weight:400;
  479. font-style:normal;
  480. font-size:14px;
  481. color:#7F7F7F;
  482. }
  483. #u34207 .text {
  484. position:absolute;
  485. align-self:center;
  486. padding:2px 2px 2px 2px;
  487. box-sizing:border-box;
  488. width:100%;
  489. }
  490. #u34207_div.disabled {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:946px;
  496. height:50px;
  497. background:inherit;
  498. background-color:rgba(240, 240, 240, 1);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:14px;
  508. color:#7F7F7F;
  509. }
  510. #u34207.disabled {
  511. }
  512. #u34208 {
  513. border-width:0px;
  514. position:absolute;
  515. left:0px;
  516. top:0px;
  517. width:0px;
  518. height:0px;
  519. }
  520. #u34209_img {
  521. border-width:0px;
  522. position:absolute;
  523. left:0px;
  524. top:0px;
  525. width:77px;
  526. height:21px;
  527. }
  528. #u34209 {
  529. border-width:0px;
  530. position:absolute;
  531. left:1108px;
  532. top:135px;
  533. width:77px;
  534. height:21px;
  535. display:flex;
  536. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  537. font-weight:400;
  538. font-style:normal;
  539. font-size:12px;
  540. }
  541. #u34209 .text {
  542. position:absolute;
  543. align-self:center;
  544. padding:2px 2px 2px 2px;
  545. box-sizing:border-box;
  546. width:100%;
  547. }
  548. #u34209_text {
  549. border-width:0px;
  550. white-space:nowrap;
  551. text-transform:none;
  552. }
  553. #u34210_img {
  554. border-width:0px;
  555. position:absolute;
  556. left:0px;
  557. top:0px;
  558. width:41px;
  559. height:21px;
  560. }
  561. #u34210 {
  562. border-width:0px;
  563. position:absolute;
  564. left:1205px;
  565. top:135px;
  566. width:41px;
  567. height:21px;
  568. display:flex;
  569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  570. font-weight:400;
  571. font-style:normal;
  572. font-size:12px;
  573. }
  574. #u34210 .text {
  575. position:absolute;
  576. align-self:center;
  577. padding:2px 2px 2px 2px;
  578. box-sizing:border-box;
  579. width:100%;
  580. }
  581. #u34210_text {
  582. border-width:0px;
  583. white-space:nowrap;
  584. text-transform:none;
  585. }
  586. #u34211_img {
  587. border-width:0px;
  588. position:absolute;
  589. left:0px;
  590. top:0px;
  591. width:41px;
  592. height:21px;
  593. }
  594. #u34211 {
  595. border-width:0px;
  596. position:absolute;
  597. left:1256px;
  598. top:135px;
  599. width:41px;
  600. height:21px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:12px;
  606. color:#AAAAAA;
  607. }
  608. #u34211 .text {
  609. position:absolute;
  610. align-self:center;
  611. padding:2px 2px 2px 2px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u34211_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u34212_div {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:278px;
  626. height:40px;
  627. background:inherit;
  628. background-color:rgba(242, 242, 242, 1);
  629. box-sizing:border-box;
  630. border-width:1px;
  631. border-style:solid;
  632. border-color:rgba(215, 215, 215, 1);
  633. border-radius:0px;
  634. -moz-box-shadow:none;
  635. -webkit-box-shadow:none;
  636. box-shadow:none;
  637. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  638. font-weight:400;
  639. font-style:normal;
  640. font-size:14px;
  641. }
  642. #u34212 {
  643. border-width:0px;
  644. position:absolute;
  645. left:20px;
  646. top:100px;
  647. width:278px;
  648. height:40px;
  649. display:flex;
  650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  651. font-weight:400;
  652. font-style:normal;
  653. font-size:14px;
  654. }
  655. #u34212 .text {
  656. position:absolute;
  657. align-self:center;
  658. padding:5px 0px 5px 20px;
  659. box-sizing:border-box;
  660. width:100%;
  661. }
  662. #u34212_text {
  663. border-width:0px;
  664. word-wrap:break-word;
  665. text-transform:none;
  666. }
  667. #u34213 {
  668. border-width:0px;
  669. position:absolute;
  670. left:0px;
  671. top:0px;
  672. width:0px;
  673. height:0px;
  674. }
  675. #u34214_div {
  676. border-width:0px;
  677. position:absolute;
  678. left:0px;
  679. top:0px;
  680. width:100px;
  681. height:27px;
  682. background:inherit;
  683. background-color:rgba(242, 242, 242, 0.16078431372549);
  684. box-sizing:border-box;
  685. border-width:1px;
  686. border-style:solid;
  687. border-color:rgba(215, 215, 215, 1);
  688. border-radius:2px;
  689. -moz-box-shadow:none;
  690. -webkit-box-shadow:none;
  691. box-shadow:none;
  692. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  693. font-weight:400;
  694. font-style:normal;
  695. font-size:12px;
  696. text-align:left;
  697. }
  698. #u34214 {
  699. border-width:0px;
  700. position:absolute;
  701. left:42px;
  702. top:191px;
  703. width:100px;
  704. height:27px;
  705. display:flex;
  706. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  707. font-weight:400;
  708. font-style:normal;
  709. font-size:12px;
  710. text-align:left;
  711. }
  712. #u34214 .text {
  713. position:absolute;
  714. align-self:center;
  715. padding:5px 15px 5px 30px;
  716. box-sizing:border-box;
  717. width:100%;
  718. }
  719. #u34214_text {
  720. border-width:0px;
  721. word-wrap:break-word;
  722. text-transform:none;
  723. }
  724. #u34215_img {
  725. border-width:0px;
  726. position:absolute;
  727. left:0px;
  728. top:0px;
  729. width:12px;
  730. height:12px;
  731. }
  732. #u34215 {
  733. border-width:0px;
  734. position:absolute;
  735. left:53px;
  736. top:198px;
  737. width:12px;
  738. height:12px;
  739. display:flex;
  740. }
  741. #u34215 .text {
  742. position:absolute;
  743. align-self:center;
  744. padding:2px 2px 2px 2px;
  745. box-sizing:border-box;
  746. width:100%;
  747. }
  748. #u34215_text {
  749. border-width:0px;
  750. word-wrap:break-word;
  751. text-transform:none;
  752. visibility:hidden;
  753. }
  754. #u34216 {
  755. border-width:0px;
  756. position:absolute;
  757. left:0px;
  758. top:0px;
  759. width:0px;
  760. height:0px;
  761. }
  762. #u34217_div {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:100px;
  768. height:27px;
  769. background:inherit;
  770. background-color:rgba(242, 242, 242, 0.16078431372549);
  771. box-sizing:border-box;
  772. border-width:1px;
  773. border-style:solid;
  774. border-color:rgba(215, 215, 215, 1);
  775. border-radius:2px;
  776. -moz-box-shadow:none;
  777. -webkit-box-shadow:none;
  778. box-shadow:none;
  779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  780. font-weight:400;
  781. font-style:normal;
  782. font-size:12px;
  783. text-align:left;
  784. }
  785. #u34217 {
  786. border-width:0px;
  787. position:absolute;
  788. left:42px;
  789. top:154px;
  790. width:100px;
  791. height:27px;
  792. display:flex;
  793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  794. font-weight:400;
  795. font-style:normal;
  796. font-size:12px;
  797. text-align:left;
  798. }
  799. #u34217 .text {
  800. position:absolute;
  801. align-self:center;
  802. padding:5px 15px 5px 30px;
  803. box-sizing:border-box;
  804. width:100%;
  805. }
  806. #u34217_text {
  807. border-width:0px;
  808. word-wrap:break-word;
  809. text-transform:none;
  810. }
  811. #u34218_img {
  812. border-width:0px;
  813. position:absolute;
  814. left:0px;
  815. top:0px;
  816. width:12px;
  817. height:12px;
  818. }
  819. #u34218 {
  820. border-width:0px;
  821. position:absolute;
  822. left:53px;
  823. top:161px;
  824. width:12px;
  825. height:12px;
  826. display:flex;
  827. }
  828. #u34218 .text {
  829. position:absolute;
  830. align-self:center;
  831. padding:2px 2px 2px 2px;
  832. box-sizing:border-box;
  833. width:100%;
  834. }
  835. #u34218_text {
  836. border-width:0px;
  837. word-wrap:break-word;
  838. text-transform:none;
  839. visibility:hidden;
  840. }
  841. #u34219 {
  842. border-width:0px;
  843. position:absolute;
  844. left:0px;
  845. top:0px;
  846. width:0px;
  847. height:0px;
  848. }
  849. #u34220_div {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:100px;
  855. height:27px;
  856. background:inherit;
  857. background-color:rgba(242, 242, 242, 0.16078431372549);
  858. box-sizing:border-box;
  859. border-width:1px;
  860. border-style:solid;
  861. border-color:rgba(215, 215, 215, 1);
  862. border-radius:2px;
  863. -moz-box-shadow:none;
  864. -webkit-box-shadow:none;
  865. box-shadow:none;
  866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  867. font-weight:400;
  868. font-style:normal;
  869. font-size:12px;
  870. text-align:left;
  871. }
  872. #u34220 {
  873. border-width:0px;
  874. position:absolute;
  875. left:166px;
  876. top:154px;
  877. width:100px;
  878. height:27px;
  879. display:flex;
  880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  881. font-weight:400;
  882. font-style:normal;
  883. font-size:12px;
  884. text-align:left;
  885. }
  886. #u34220 .text {
  887. position:absolute;
  888. align-self:center;
  889. padding:5px 15px 5px 30px;
  890. box-sizing:border-box;
  891. width:100%;
  892. }
  893. #u34220_text {
  894. border-width:0px;
  895. word-wrap:break-word;
  896. text-transform:none;
  897. }
  898. #u34221_img {
  899. border-width:0px;
  900. position:absolute;
  901. left:0px;
  902. top:0px;
  903. width:12px;
  904. height:12px;
  905. }
  906. #u34221 {
  907. border-width:0px;
  908. position:absolute;
  909. left:177px;
  910. top:161px;
  911. width:12px;
  912. height:12px;
  913. display:flex;
  914. }
  915. #u34221 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 2px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u34221_text {
  923. border-width:0px;
  924. word-wrap:break-word;
  925. text-transform:none;
  926. visibility:hidden;
  927. }
  928. #u34222 {
  929. border-width:0px;
  930. position:absolute;
  931. left:0px;
  932. top:0px;
  933. width:0px;
  934. height:0px;
  935. }
  936. #u34223_div {
  937. border-width:0px;
  938. position:absolute;
  939. left:0px;
  940. top:0px;
  941. width:100px;
  942. height:27px;
  943. background:inherit;
  944. background-color:rgba(242, 242, 242, 0.16078431372549);
  945. box-sizing:border-box;
  946. border-width:1px;
  947. border-style:solid;
  948. border-color:rgba(215, 215, 215, 1);
  949. border-radius:2px;
  950. -moz-box-shadow:none;
  951. -webkit-box-shadow:none;
  952. box-shadow:none;
  953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  954. font-weight:400;
  955. font-style:normal;
  956. font-size:12px;
  957. text-align:left;
  958. }
  959. #u34223 {
  960. border-width:0px;
  961. position:absolute;
  962. left:166px;
  963. top:191px;
  964. width:100px;
  965. height:27px;
  966. display:flex;
  967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  968. font-weight:400;
  969. font-style:normal;
  970. font-size:12px;
  971. text-align:left;
  972. }
  973. #u34223 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:5px 15px 5px 30px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u34223_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. }
  985. #u34224_img {
  986. border-width:0px;
  987. position:absolute;
  988. left:0px;
  989. top:0px;
  990. width:12px;
  991. height:12px;
  992. }
  993. #u34224 {
  994. border-width:0px;
  995. position:absolute;
  996. left:177px;
  997. top:198px;
  998. width:12px;
  999. height:12px;
  1000. display:flex;
  1001. }
  1002. #u34224 .text {
  1003. position:absolute;
  1004. align-self:center;
  1005. padding:2px 2px 2px 2px;
  1006. box-sizing:border-box;
  1007. width:100%;
  1008. }
  1009. #u34224_text {
  1010. border-width:0px;
  1011. word-wrap:break-word;
  1012. text-transform:none;
  1013. visibility:hidden;
  1014. }
  1015. #u34225 {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:0px;
  1021. height:0px;
  1022. }
  1023. #u34226_div {
  1024. border-width:0px;
  1025. position:absolute;
  1026. left:0px;
  1027. top:0px;
  1028. width:100px;
  1029. height:27px;
  1030. background:inherit;
  1031. background-color:rgba(242, 242, 242, 0.16078431372549);
  1032. box-sizing:border-box;
  1033. border-width:1px;
  1034. border-style:solid;
  1035. border-color:rgba(215, 215, 215, 1);
  1036. border-radius:2px;
  1037. -moz-box-shadow:none;
  1038. -webkit-box-shadow:none;
  1039. box-shadow:none;
  1040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1041. font-weight:400;
  1042. font-style:normal;
  1043. font-size:12px;
  1044. text-align:left;
  1045. }
  1046. #u34226 {
  1047. border-width:0px;
  1048. position:absolute;
  1049. left:42px;
  1050. top:228px;
  1051. width:100px;
  1052. height:27px;
  1053. display:flex;
  1054. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1055. font-weight:400;
  1056. font-style:normal;
  1057. font-size:12px;
  1058. text-align:left;
  1059. }
  1060. #u34226 .text {
  1061. position:absolute;
  1062. align-self:center;
  1063. padding:5px 15px 5px 30px;
  1064. box-sizing:border-box;
  1065. width:100%;
  1066. }
  1067. #u34226_text {
  1068. border-width:0px;
  1069. word-wrap:break-word;
  1070. text-transform:none;
  1071. }
  1072. #u34227_img {
  1073. border-width:0px;
  1074. position:absolute;
  1075. left:0px;
  1076. top:0px;
  1077. width:12px;
  1078. height:12px;
  1079. }
  1080. #u34227 {
  1081. border-width:0px;
  1082. position:absolute;
  1083. left:53px;
  1084. top:235px;
  1085. width:12px;
  1086. height:12px;
  1087. display:flex;
  1088. }
  1089. #u34227 .text {
  1090. position:absolute;
  1091. align-self:center;
  1092. padding:2px 2px 2px 2px;
  1093. box-sizing:border-box;
  1094. width:100%;
  1095. }
  1096. #u34227_text {
  1097. border-width:0px;
  1098. word-wrap:break-word;
  1099. text-transform:none;
  1100. visibility:hidden;
  1101. }
  1102. #u34228 {
  1103. border-width:0px;
  1104. position:absolute;
  1105. left:0px;
  1106. top:0px;
  1107. width:0px;
  1108. height:0px;
  1109. }
  1110. #u34229_div {
  1111. border-width:0px;
  1112. position:absolute;
  1113. left:0px;
  1114. top:0px;
  1115. width:100px;
  1116. height:27px;
  1117. background:inherit;
  1118. background-color:rgba(242, 242, 242, 0.16078431372549);
  1119. box-sizing:border-box;
  1120. border-width:1px;
  1121. border-style:solid;
  1122. border-color:rgba(215, 215, 215, 1);
  1123. border-radius:2px;
  1124. -moz-box-shadow:none;
  1125. -webkit-box-shadow:none;
  1126. box-shadow:none;
  1127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:12px;
  1131. text-align:left;
  1132. }
  1133. #u34229 {
  1134. border-width:0px;
  1135. position:absolute;
  1136. left:166px;
  1137. top:228px;
  1138. width:100px;
  1139. height:27px;
  1140. display:flex;
  1141. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1142. font-weight:400;
  1143. font-style:normal;
  1144. font-size:12px;
  1145. text-align:left;
  1146. }
  1147. #u34229 .text {
  1148. position:absolute;
  1149. align-self:center;
  1150. padding:5px 15px 5px 30px;
  1151. box-sizing:border-box;
  1152. width:100%;
  1153. }
  1154. #u34229_text {
  1155. border-width:0px;
  1156. word-wrap:break-word;
  1157. text-transform:none;
  1158. }
  1159. #u34230_img {
  1160. border-width:0px;
  1161. position:absolute;
  1162. left:0px;
  1163. top:0px;
  1164. width:12px;
  1165. height:12px;
  1166. }
  1167. #u34230 {
  1168. border-width:0px;
  1169. position:absolute;
  1170. left:177px;
  1171. top:235px;
  1172. width:12px;
  1173. height:12px;
  1174. display:flex;
  1175. }
  1176. #u34230 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u34230_text {
  1184. border-width:0px;
  1185. word-wrap:break-word;
  1186. text-transform:none;
  1187. visibility:hidden;
  1188. }
  1189. #u34231 {
  1190. border-width:0px;
  1191. position:absolute;
  1192. left:0px;
  1193. top:0px;
  1194. width:0px;
  1195. height:0px;
  1196. }
  1197. #u34232_div {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:100px;
  1203. height:27px;
  1204. background:inherit;
  1205. background-color:rgba(242, 242, 242, 0.16078431372549);
  1206. box-sizing:border-box;
  1207. border-width:1px;
  1208. border-style:solid;
  1209. border-color:rgba(215, 215, 215, 1);
  1210. border-radius:2px;
  1211. -moz-box-shadow:none;
  1212. -webkit-box-shadow:none;
  1213. box-shadow:none;
  1214. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1215. font-weight:400;
  1216. font-style:normal;
  1217. font-size:12px;
  1218. text-align:left;
  1219. }
  1220. #u34232 {
  1221. border-width:0px;
  1222. position:absolute;
  1223. left:42px;
  1224. top:265px;
  1225. width:100px;
  1226. height:27px;
  1227. display:flex;
  1228. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1229. font-weight:400;
  1230. font-style:normal;
  1231. font-size:12px;
  1232. text-align:left;
  1233. }
  1234. #u34232 .text {
  1235. position:absolute;
  1236. align-self:center;
  1237. padding:5px 15px 5px 30px;
  1238. box-sizing:border-box;
  1239. width:100%;
  1240. }
  1241. #u34232_text {
  1242. border-width:0px;
  1243. word-wrap:break-word;
  1244. text-transform:none;
  1245. }
  1246. #u34233_img {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:12px;
  1252. height:12px;
  1253. }
  1254. #u34233 {
  1255. border-width:0px;
  1256. position:absolute;
  1257. left:53px;
  1258. top:272px;
  1259. width:12px;
  1260. height:12px;
  1261. display:flex;
  1262. }
  1263. #u34233 .text {
  1264. position:absolute;
  1265. align-self:center;
  1266. padding:2px 2px 2px 2px;
  1267. box-sizing:border-box;
  1268. width:100%;
  1269. }
  1270. #u34233_text {
  1271. border-width:0px;
  1272. word-wrap:break-word;
  1273. text-transform:none;
  1274. visibility:hidden;
  1275. }
  1276. #u34234 {
  1277. border-width:0px;
  1278. position:absolute;
  1279. left:0px;
  1280. top:0px;
  1281. width:0px;
  1282. height:0px;
  1283. }
  1284. #u34235_div {
  1285. border-width:0px;
  1286. position:absolute;
  1287. left:0px;
  1288. top:0px;
  1289. width:100px;
  1290. height:27px;
  1291. background:inherit;
  1292. background-color:rgba(242, 242, 242, 0.16078431372549);
  1293. box-sizing:border-box;
  1294. border-width:1px;
  1295. border-style:solid;
  1296. border-color:rgba(215, 215, 215, 1);
  1297. border-radius:2px;
  1298. -moz-box-shadow:none;
  1299. -webkit-box-shadow:none;
  1300. box-shadow:none;
  1301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1302. font-weight:400;
  1303. font-style:normal;
  1304. font-size:12px;
  1305. text-align:left;
  1306. }
  1307. #u34235 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:166px;
  1311. top:265px;
  1312. width:100px;
  1313. height:27px;
  1314. display:flex;
  1315. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1316. font-weight:400;
  1317. font-style:normal;
  1318. font-size:12px;
  1319. text-align:left;
  1320. }
  1321. #u34235 .text {
  1322. position:absolute;
  1323. align-self:center;
  1324. padding:5px 15px 5px 30px;
  1325. box-sizing:border-box;
  1326. width:100%;
  1327. }
  1328. #u34235_text {
  1329. border-width:0px;
  1330. word-wrap:break-word;
  1331. text-transform:none;
  1332. }
  1333. #u34236_img {
  1334. border-width:0px;
  1335. position:absolute;
  1336. left:0px;
  1337. top:0px;
  1338. width:12px;
  1339. height:12px;
  1340. }
  1341. #u34236 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:177px;
  1345. top:272px;
  1346. width:12px;
  1347. height:12px;
  1348. display:flex;
  1349. }
  1350. #u34236 .text {
  1351. position:absolute;
  1352. align-self:center;
  1353. padding:2px 2px 2px 2px;
  1354. box-sizing:border-box;
  1355. width:100%;
  1356. }
  1357. #u34236_text {
  1358. border-width:0px;
  1359. word-wrap:break-word;
  1360. text-transform:none;
  1361. visibility:hidden;
  1362. }
  1363. #u34237 {
  1364. border-width:0px;
  1365. position:absolute;
  1366. left:0px;
  1367. top:0px;
  1368. width:0px;
  1369. height:0px;
  1370. }
  1371. #u34238_div {
  1372. border-width:0px;
  1373. position:absolute;
  1374. left:0px;
  1375. top:0px;
  1376. width:100px;
  1377. height:27px;
  1378. background:inherit;
  1379. background-color:rgba(242, 242, 242, 0.16078431372549);
  1380. box-sizing:border-box;
  1381. border-width:1px;
  1382. border-style:solid;
  1383. border-color:rgba(215, 215, 215, 1);
  1384. border-radius:2px;
  1385. -moz-box-shadow:none;
  1386. -webkit-box-shadow:none;
  1387. box-shadow:none;
  1388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1389. font-weight:400;
  1390. font-style:normal;
  1391. font-size:12px;
  1392. text-align:left;
  1393. }
  1394. #u34238 {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:42px;
  1398. top:302px;
  1399. width:100px;
  1400. height:27px;
  1401. display:flex;
  1402. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1403. font-weight:400;
  1404. font-style:normal;
  1405. font-size:12px;
  1406. text-align:left;
  1407. }
  1408. #u34238 .text {
  1409. position:absolute;
  1410. align-self:center;
  1411. padding:5px 15px 5px 30px;
  1412. box-sizing:border-box;
  1413. width:100%;
  1414. }
  1415. #u34238_text {
  1416. border-width:0px;
  1417. word-wrap:break-word;
  1418. text-transform:none;
  1419. }
  1420. #u34239_img {
  1421. border-width:0px;
  1422. position:absolute;
  1423. left:0px;
  1424. top:0px;
  1425. width:12px;
  1426. height:12px;
  1427. }
  1428. #u34239 {
  1429. border-width:0px;
  1430. position:absolute;
  1431. left:53px;
  1432. top:309px;
  1433. width:12px;
  1434. height:12px;
  1435. display:flex;
  1436. }
  1437. #u34239 .text {
  1438. position:absolute;
  1439. align-self:center;
  1440. padding:2px 2px 2px 2px;
  1441. box-sizing:border-box;
  1442. width:100%;
  1443. }
  1444. #u34239_text {
  1445. border-width:0px;
  1446. word-wrap:break-word;
  1447. text-transform:none;
  1448. visibility:hidden;
  1449. }
  1450. #u34240 {
  1451. border-width:0px;
  1452. position:absolute;
  1453. left:0px;
  1454. top:0px;
  1455. width:0px;
  1456. height:0px;
  1457. }
  1458. #u34241_div {
  1459. border-width:0px;
  1460. position:absolute;
  1461. left:0px;
  1462. top:0px;
  1463. width:100px;
  1464. height:27px;
  1465. background:inherit;
  1466. background-color:rgba(242, 242, 242, 0.16078431372549);
  1467. box-sizing:border-box;
  1468. border-width:1px;
  1469. border-style:solid;
  1470. border-color:rgba(215, 215, 215, 1);
  1471. border-radius:2px;
  1472. -moz-box-shadow:none;
  1473. -webkit-box-shadow:none;
  1474. box-shadow:none;
  1475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1476. font-weight:400;
  1477. font-style:normal;
  1478. font-size:12px;
  1479. text-align:left;
  1480. }
  1481. #u34241 {
  1482. border-width:0px;
  1483. position:absolute;
  1484. left:166px;
  1485. top:302px;
  1486. width:100px;
  1487. height:27px;
  1488. display:flex;
  1489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1490. font-weight:400;
  1491. font-style:normal;
  1492. font-size:12px;
  1493. text-align:left;
  1494. }
  1495. #u34241 .text {
  1496. position:absolute;
  1497. align-self:center;
  1498. padding:5px 15px 5px 30px;
  1499. box-sizing:border-box;
  1500. width:100%;
  1501. }
  1502. #u34241_text {
  1503. border-width:0px;
  1504. word-wrap:break-word;
  1505. text-transform:none;
  1506. }
  1507. #u34242_img {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:0px;
  1511. top:0px;
  1512. width:12px;
  1513. height:12px;
  1514. }
  1515. #u34242 {
  1516. border-width:0px;
  1517. position:absolute;
  1518. left:177px;
  1519. top:309px;
  1520. width:12px;
  1521. height:12px;
  1522. display:flex;
  1523. }
  1524. #u34242 .text {
  1525. position:absolute;
  1526. align-self:center;
  1527. padding:2px 2px 2px 2px;
  1528. box-sizing:border-box;
  1529. width:100%;
  1530. }
  1531. #u34242_text {
  1532. border-width:0px;
  1533. word-wrap:break-word;
  1534. text-transform:none;
  1535. visibility:hidden;
  1536. }
  1537. #u34243 {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:0px;
  1543. height:0px;
  1544. }
  1545. #u34244_div {
  1546. border-width:0px;
  1547. position:absolute;
  1548. left:0px;
  1549. top:0px;
  1550. width:100px;
  1551. height:27px;
  1552. background:inherit;
  1553. background-color:rgba(242, 242, 242, 0.16078431372549);
  1554. box-sizing:border-box;
  1555. border-width:1px;
  1556. border-style:solid;
  1557. border-color:rgba(215, 215, 215, 1);
  1558. border-radius:2px;
  1559. -moz-box-shadow:none;
  1560. -webkit-box-shadow:none;
  1561. box-shadow:none;
  1562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1563. font-weight:400;
  1564. font-style:normal;
  1565. font-size:12px;
  1566. text-align:left;
  1567. }
  1568. #u34244 {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:42px;
  1572. top:409px;
  1573. width:100px;
  1574. height:27px;
  1575. display:flex;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:12px;
  1580. text-align:left;
  1581. }
  1582. #u34244 .text {
  1583. position:absolute;
  1584. align-self:center;
  1585. padding:5px 15px 5px 30px;
  1586. box-sizing:border-box;
  1587. width:100%;
  1588. }
  1589. #u34244_text {
  1590. border-width:0px;
  1591. word-wrap:break-word;
  1592. text-transform:none;
  1593. }
  1594. #u34245_img {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:0px;
  1598. top:0px;
  1599. width:12px;
  1600. height:12px;
  1601. }
  1602. #u34245 {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:53px;
  1606. top:416px;
  1607. width:12px;
  1608. height:12px;
  1609. display:flex;
  1610. }
  1611. #u34245 .text {
  1612. position:absolute;
  1613. align-self:center;
  1614. padding:2px 2px 2px 2px;
  1615. box-sizing:border-box;
  1616. width:100%;
  1617. }
  1618. #u34245_text {
  1619. border-width:0px;
  1620. word-wrap:break-word;
  1621. text-transform:none;
  1622. visibility:hidden;
  1623. }
  1624. #u34246 {
  1625. border-width:0px;
  1626. position:absolute;
  1627. left:0px;
  1628. top:0px;
  1629. width:0px;
  1630. height:0px;
  1631. }
  1632. #u34247_div {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:0px;
  1636. top:0px;
  1637. width:100px;
  1638. height:27px;
  1639. background:inherit;
  1640. background-color:rgba(242, 242, 242, 0.16078431372549);
  1641. box-sizing:border-box;
  1642. border-width:1px;
  1643. border-style:solid;
  1644. border-color:rgba(215, 215, 215, 1);
  1645. border-radius:2px;
  1646. -moz-box-shadow:none;
  1647. -webkit-box-shadow:none;
  1648. box-shadow:none;
  1649. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1650. font-weight:400;
  1651. font-style:normal;
  1652. font-size:12px;
  1653. text-align:left;
  1654. }
  1655. #u34247 {
  1656. border-width:0px;
  1657. position:absolute;
  1658. left:166px;
  1659. top:409px;
  1660. width:100px;
  1661. height:27px;
  1662. display:flex;
  1663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1664. font-weight:400;
  1665. font-style:normal;
  1666. font-size:12px;
  1667. text-align:left;
  1668. }
  1669. #u34247 .text {
  1670. position:absolute;
  1671. align-self:center;
  1672. padding:5px 15px 5px 30px;
  1673. box-sizing:border-box;
  1674. width:100%;
  1675. }
  1676. #u34247_text {
  1677. border-width:0px;
  1678. word-wrap:break-word;
  1679. text-transform:none;
  1680. }
  1681. #u34248_img {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:0px;
  1685. top:0px;
  1686. width:12px;
  1687. height:12px;
  1688. }
  1689. #u34248 {
  1690. border-width:0px;
  1691. position:absolute;
  1692. left:177px;
  1693. top:416px;
  1694. width:12px;
  1695. height:12px;
  1696. display:flex;
  1697. }
  1698. #u34248 .text {
  1699. position:absolute;
  1700. align-self:center;
  1701. padding:2px 2px 2px 2px;
  1702. box-sizing:border-box;
  1703. width:100%;
  1704. }
  1705. #u34248_text {
  1706. border-width:0px;
  1707. word-wrap:break-word;
  1708. text-transform:none;
  1709. visibility:hidden;
  1710. }
  1711. #u34249 {
  1712. border-width:0px;
  1713. position:absolute;
  1714. left:0px;
  1715. top:0px;
  1716. width:0px;
  1717. height:0px;
  1718. }
  1719. #u34250_div {
  1720. border-width:0px;
  1721. position:absolute;
  1722. left:0px;
  1723. top:0px;
  1724. width:100px;
  1725. height:27px;
  1726. background:inherit;
  1727. background-color:rgba(242, 242, 242, 0.16078431372549);
  1728. box-sizing:border-box;
  1729. border-width:1px;
  1730. border-style:solid;
  1731. border-color:rgba(215, 215, 215, 1);
  1732. border-radius:2px;
  1733. -moz-box-shadow:none;
  1734. -webkit-box-shadow:none;
  1735. box-shadow:none;
  1736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1737. font-weight:400;
  1738. font-style:normal;
  1739. font-size:12px;
  1740. text-align:left;
  1741. }
  1742. #u34250 {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:42px;
  1746. top:446px;
  1747. width:100px;
  1748. height:27px;
  1749. display:flex;
  1750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1751. font-weight:400;
  1752. font-style:normal;
  1753. font-size:12px;
  1754. text-align:left;
  1755. }
  1756. #u34250 .text {
  1757. position:absolute;
  1758. align-self:center;
  1759. padding:5px 15px 5px 30px;
  1760. box-sizing:border-box;
  1761. width:100%;
  1762. }
  1763. #u34250_text {
  1764. border-width:0px;
  1765. word-wrap:break-word;
  1766. text-transform:none;
  1767. }
  1768. #u34251_img {
  1769. border-width:0px;
  1770. position:absolute;
  1771. left:0px;
  1772. top:0px;
  1773. width:12px;
  1774. height:12px;
  1775. }
  1776. #u34251 {
  1777. border-width:0px;
  1778. position:absolute;
  1779. left:53px;
  1780. top:453px;
  1781. width:12px;
  1782. height:12px;
  1783. display:flex;
  1784. }
  1785. #u34251 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 2px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u34251_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. visibility:hidden;
  1797. }
  1798. #u34252 {
  1799. border-width:0px;
  1800. position:absolute;
  1801. left:0px;
  1802. top:0px;
  1803. width:0px;
  1804. height:0px;
  1805. }
  1806. #u34253_div {
  1807. border-width:0px;
  1808. position:absolute;
  1809. left:0px;
  1810. top:0px;
  1811. width:100px;
  1812. height:27px;
  1813. background:inherit;
  1814. background-color:rgba(242, 242, 242, 0.16078431372549);
  1815. box-sizing:border-box;
  1816. border-width:1px;
  1817. border-style:solid;
  1818. border-color:rgba(215, 215, 215, 1);
  1819. border-radius:2px;
  1820. -moz-box-shadow:none;
  1821. -webkit-box-shadow:none;
  1822. box-shadow:none;
  1823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1824. font-weight:400;
  1825. font-style:normal;
  1826. font-size:12px;
  1827. text-align:left;
  1828. }
  1829. #u34253 {
  1830. border-width:0px;
  1831. position:absolute;
  1832. left:166px;
  1833. top:446px;
  1834. width:100px;
  1835. height:27px;
  1836. display:flex;
  1837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1838. font-weight:400;
  1839. font-style:normal;
  1840. font-size:12px;
  1841. text-align:left;
  1842. }
  1843. #u34253 .text {
  1844. position:absolute;
  1845. align-self:center;
  1846. padding:5px 15px 5px 30px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u34253_text {
  1851. border-width:0px;
  1852. word-wrap:break-word;
  1853. text-transform:none;
  1854. }
  1855. #u34254_img {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:12px;
  1861. height:12px;
  1862. }
  1863. #u34254 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:177px;
  1867. top:453px;
  1868. width:12px;
  1869. height:12px;
  1870. display:flex;
  1871. }
  1872. #u34254 .text {
  1873. position:absolute;
  1874. align-self:center;
  1875. padding:2px 2px 2px 2px;
  1876. box-sizing:border-box;
  1877. width:100%;
  1878. }
  1879. #u34254_text {
  1880. border-width:0px;
  1881. word-wrap:break-word;
  1882. text-transform:none;
  1883. visibility:hidden;
  1884. }
  1885. #u34255 {
  1886. border-width:0px;
  1887. position:absolute;
  1888. left:0px;
  1889. top:0px;
  1890. width:0px;
  1891. height:0px;
  1892. }
  1893. #u34256_div {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:100px;
  1899. height:27px;
  1900. background:inherit;
  1901. background-color:rgba(242, 242, 242, 0.16078431372549);
  1902. box-sizing:border-box;
  1903. border-width:1px;
  1904. border-style:solid;
  1905. border-color:rgba(215, 215, 215, 1);
  1906. border-radius:2px;
  1907. -moz-box-shadow:none;
  1908. -webkit-box-shadow:none;
  1909. box-shadow:none;
  1910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1911. font-weight:400;
  1912. font-style:normal;
  1913. font-size:12px;
  1914. text-align:left;
  1915. }
  1916. #u34256 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:42px;
  1920. top:483px;
  1921. width:100px;
  1922. height:27px;
  1923. display:flex;
  1924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1925. font-weight:400;
  1926. font-style:normal;
  1927. font-size:12px;
  1928. text-align:left;
  1929. }
  1930. #u34256 .text {
  1931. position:absolute;
  1932. align-self:center;
  1933. padding:5px 15px 5px 30px;
  1934. box-sizing:border-box;
  1935. width:100%;
  1936. }
  1937. #u34256_text {
  1938. border-width:0px;
  1939. word-wrap:break-word;
  1940. text-transform:none;
  1941. }
  1942. #u34257_img {
  1943. border-width:0px;
  1944. position:absolute;
  1945. left:0px;
  1946. top:0px;
  1947. width:12px;
  1948. height:12px;
  1949. }
  1950. #u34257 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:53px;
  1954. top:490px;
  1955. width:12px;
  1956. height:12px;
  1957. display:flex;
  1958. }
  1959. #u34257 .text {
  1960. position:absolute;
  1961. align-self:center;
  1962. padding:2px 2px 2px 2px;
  1963. box-sizing:border-box;
  1964. width:100%;
  1965. }
  1966. #u34257_text {
  1967. border-width:0px;
  1968. word-wrap:break-word;
  1969. text-transform:none;
  1970. visibility:hidden;
  1971. }
  1972. #u34258 {
  1973. border-width:0px;
  1974. position:absolute;
  1975. left:0px;
  1976. top:0px;
  1977. width:0px;
  1978. height:0px;
  1979. }
  1980. #u34259_div {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:0px;
  1984. top:0px;
  1985. width:100px;
  1986. height:27px;
  1987. background:inherit;
  1988. background-color:rgba(242, 242, 242, 0.16078431372549);
  1989. box-sizing:border-box;
  1990. border-width:1px;
  1991. border-style:solid;
  1992. border-color:rgba(215, 215, 215, 1);
  1993. border-radius:2px;
  1994. -moz-box-shadow:none;
  1995. -webkit-box-shadow:none;
  1996. box-shadow:none;
  1997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1998. font-weight:400;
  1999. font-style:normal;
  2000. font-size:12px;
  2001. text-align:left;
  2002. }
  2003. #u34259 {
  2004. border-width:0px;
  2005. position:absolute;
  2006. left:166px;
  2007. top:483px;
  2008. width:100px;
  2009. height:27px;
  2010. display:flex;
  2011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2012. font-weight:400;
  2013. font-style:normal;
  2014. font-size:12px;
  2015. text-align:left;
  2016. }
  2017. #u34259 .text {
  2018. position:absolute;
  2019. align-self:center;
  2020. padding:5px 15px 5px 30px;
  2021. box-sizing:border-box;
  2022. width:100%;
  2023. }
  2024. #u34259_text {
  2025. border-width:0px;
  2026. word-wrap:break-word;
  2027. text-transform:none;
  2028. }
  2029. #u34260_img {
  2030. border-width:0px;
  2031. position:absolute;
  2032. left:0px;
  2033. top:0px;
  2034. width:12px;
  2035. height:12px;
  2036. }
  2037. #u34260 {
  2038. border-width:0px;
  2039. position:absolute;
  2040. left:177px;
  2041. top:490px;
  2042. width:12px;
  2043. height:12px;
  2044. display:flex;
  2045. }
  2046. #u34260 .text {
  2047. position:absolute;
  2048. align-self:center;
  2049. padding:2px 2px 2px 2px;
  2050. box-sizing:border-box;
  2051. width:100%;
  2052. }
  2053. #u34260_text {
  2054. border-width:0px;
  2055. word-wrap:break-word;
  2056. text-transform:none;
  2057. visibility:hidden;
  2058. }
  2059. #u34261_div {
  2060. border-width:0px;
  2061. position:absolute;
  2062. left:0px;
  2063. top:0px;
  2064. width:278px;
  2065. height:40px;
  2066. background:inherit;
  2067. background-color:rgba(242, 242, 242, 1);
  2068. box-sizing:border-box;
  2069. border-width:1px;
  2070. border-style:solid;
  2071. border-color:rgba(215, 215, 215, 1);
  2072. border-radius:0px;
  2073. -moz-box-shadow:none;
  2074. -webkit-box-shadow:none;
  2075. box-shadow:none;
  2076. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2077. font-weight:400;
  2078. font-style:normal;
  2079. font-size:14px;
  2080. }
  2081. #u34261 {
  2082. border-width:0px;
  2083. position:absolute;
  2084. left:20px;
  2085. top:349px;
  2086. width:278px;
  2087. height:40px;
  2088. display:flex;
  2089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2090. font-weight:400;
  2091. font-style:normal;
  2092. font-size:14px;
  2093. }
  2094. #u34261 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:5px 0px 5px 20px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u34261_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. }
  2106. #u34262_div {
  2107. border-width:0px;
  2108. position:absolute;
  2109. left:0px;
  2110. top:0px;
  2111. width:278px;
  2112. height:40px;
  2113. background:inherit;
  2114. background-color:rgba(242, 242, 242, 1);
  2115. box-sizing:border-box;
  2116. border-width:1px;
  2117. border-style:solid;
  2118. border-color:rgba(215, 215, 215, 1);
  2119. border-radius:0px;
  2120. -moz-box-shadow:none;
  2121. -webkit-box-shadow:none;
  2122. box-shadow:none;
  2123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2124. font-weight:400;
  2125. font-style:normal;
  2126. font-size:14px;
  2127. }
  2128. #u34262 {
  2129. border-width:0px;
  2130. position:absolute;
  2131. left:20px;
  2132. top:530px;
  2133. width:278px;
  2134. height:40px;
  2135. display:flex;
  2136. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2137. font-weight:400;
  2138. font-style:normal;
  2139. font-size:14px;
  2140. }
  2141. #u34262 .text {
  2142. position:absolute;
  2143. align-self:center;
  2144. padding:5px 0px 5px 20px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u34262_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. }
  2153. #u34263 {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:0px;
  2159. height:0px;
  2160. }
  2161. #u34264_div {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:0px;
  2165. top:0px;
  2166. width:100px;
  2167. height:27px;
  2168. background:inherit;
  2169. background-color:rgba(242, 242, 242, 0.16078431372549);
  2170. box-sizing:border-box;
  2171. border-width:1px;
  2172. border-style:solid;
  2173. border-color:rgba(215, 215, 215, 1);
  2174. border-radius:2px;
  2175. -moz-box-shadow:none;
  2176. -webkit-box-shadow:none;
  2177. box-shadow:none;
  2178. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2179. font-weight:400;
  2180. font-style:normal;
  2181. font-size:12px;
  2182. text-align:left;
  2183. }
  2184. #u34264 {
  2185. border-width:0px;
  2186. position:absolute;
  2187. left:42px;
  2188. top:590px;
  2189. width:100px;
  2190. height:27px;
  2191. display:flex;
  2192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2193. font-weight:400;
  2194. font-style:normal;
  2195. font-size:12px;
  2196. text-align:left;
  2197. }
  2198. #u34264 .text {
  2199. position:absolute;
  2200. align-self:center;
  2201. padding:5px 15px 5px 30px;
  2202. box-sizing:border-box;
  2203. width:100%;
  2204. }
  2205. #u34264_text {
  2206. border-width:0px;
  2207. word-wrap:break-word;
  2208. text-transform:none;
  2209. }
  2210. #u34265_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:12px;
  2216. height:12px;
  2217. }
  2218. #u34265 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:53px;
  2222. top:597px;
  2223. width:12px;
  2224. height:12px;
  2225. display:flex;
  2226. }
  2227. #u34265 .text {
  2228. position:absolute;
  2229. align-self:center;
  2230. padding:2px 2px 2px 2px;
  2231. box-sizing:border-box;
  2232. width:100%;
  2233. }
  2234. #u34265_text {
  2235. border-width:0px;
  2236. word-wrap:break-word;
  2237. text-transform:none;
  2238. visibility:hidden;
  2239. }
  2240. #u34266_div {
  2241. border-width:0px;
  2242. position:absolute;
  2243. left:0px;
  2244. top:0px;
  2245. width:1020px;
  2246. height:987px;
  2247. background:inherit;
  2248. background-color:rgba(255, 255, 255, 1);
  2249. border:none;
  2250. border-radius:4px;
  2251. -moz-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2252. -webkit-box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2253. box-shadow:0px 0px 2px rgba(0, 0, 0, 0.349019607843137);
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:14px;
  2258. color:#AAAAAA;
  2259. line-height:30px;
  2260. }
  2261. #u34266 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:309px;
  2265. top:253px;
  2266. width:1020px;
  2267. height:987px;
  2268. display:flex;
  2269. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2270. font-weight:400;
  2271. font-style:normal;
  2272. font-size:14px;
  2273. color:#AAAAAA;
  2274. line-height:30px;
  2275. }
  2276. #u34266 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:5px 10px 5px 10px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u34266_text {
  2284. border-width:0px;
  2285. word-wrap:break-word;
  2286. text-transform:none;
  2287. visibility:hidden;
  2288. }
  2289. #u34267 {
  2290. border-width:0px;
  2291. position:absolute;
  2292. left:0px;
  2293. top:0px;
  2294. width:0px;
  2295. height:0px;
  2296. }
  2297. #u34268_div {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:0px;
  2301. top:0px;
  2302. width:954px;
  2303. height:110px;
  2304. background:inherit;
  2305. background-color:rgba(129, 211, 248, 0.0980392156862745);
  2306. border:none;
  2307. border-radius:11px;
  2308. -moz-box-shadow:none;
  2309. -webkit-box-shadow:none;
  2310. box-shadow:none;
  2311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2312. font-weight:400;
  2313. font-style:normal;
  2314. font-size:14px;
  2315. color:#AAAAAA;
  2316. text-align:center;
  2317. line-height:30px;
  2318. }
  2319. #u34268 {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:337px;
  2323. top:274px;
  2324. width:954px;
  2325. height:110px;
  2326. display:flex;
  2327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2328. font-weight:400;
  2329. font-style:normal;
  2330. font-size:14px;
  2331. color:#AAAAAA;
  2332. text-align:center;
  2333. line-height:30px;
  2334. }
  2335. #u34268 .text {
  2336. position:absolute;
  2337. align-self:center;
  2338. padding:5px 10px 5px 10px;
  2339. box-sizing:border-box;
  2340. width:100%;
  2341. }
  2342. #u34268_text {
  2343. border-width:0px;
  2344. word-wrap:break-word;
  2345. text-transform:none;
  2346. visibility:hidden;
  2347. }
  2348. #u34269_div {
  2349. border-width:0px;
  2350. position:absolute;
  2351. left:0px;
  2352. top:0px;
  2353. width:71px;
  2354. height:31px;
  2355. background:inherit;
  2356. background-color:rgba(255, 255, 255, 0);
  2357. border:none;
  2358. border-top:0px;
  2359. border-right:0px;
  2360. border-bottom:0px;
  2361. border-radius:0px;
  2362. border-top-left-radius:0px;
  2363. border-bottom-left-radius:0px;
  2364. -moz-box-shadow:none;
  2365. -webkit-box-shadow:none;
  2366. box-shadow:none;
  2367. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2368. font-weight:500;
  2369. font-style:normal;
  2370. font-size:15px;
  2371. }
  2372. #u34269 {
  2373. border-width:0px;
  2374. position:absolute;
  2375. left:355px;
  2376. top:293px;
  2377. width:71px;
  2378. height:31px;
  2379. display:flex;
  2380. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2381. font-weight:500;
  2382. font-style:normal;
  2383. font-size:15px;
  2384. }
  2385. #u34269 .text {
  2386. position:absolute;
  2387. align-self:center;
  2388. padding:5px 10px 5px 0px;
  2389. box-sizing:border-box;
  2390. width:100%;
  2391. }
  2392. #u34269_text {
  2393. border-width:0px;
  2394. white-space:nowrap;
  2395. text-transform:none;
  2396. }
  2397. #u34270 {
  2398. border-width:0px;
  2399. position:absolute;
  2400. left:0px;
  2401. top:0px;
  2402. width:0px;
  2403. height:0px;
  2404. }
  2405. #u34271_img {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:0px;
  2409. top:0px;
  2410. width:32px;
  2411. height:19px;
  2412. }
  2413. #u34271 {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:1217px;
  2417. top:274px;
  2418. width:32px;
  2419. height:19px;
  2420. display:flex;
  2421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2422. font-weight:400;
  2423. font-style:normal;
  2424. font-size:10px;
  2425. }
  2426. #u34271 .text {
  2427. position:absolute;
  2428. align-self:center;
  2429. padding:2px 2px 2px 2px;
  2430. box-sizing:border-box;
  2431. width:100%;
  2432. }
  2433. #u34271_text {
  2434. border-width:0px;
  2435. word-wrap:break-word;
  2436. text-transform:none;
  2437. }
  2438. #u34272_img {
  2439. border-width:0px;
  2440. position:absolute;
  2441. left:0px;
  2442. top:0px;
  2443. width:32px;
  2444. height:19px;
  2445. }
  2446. #u34272 {
  2447. border-width:0px;
  2448. position:absolute;
  2449. left:1250px;
  2450. top:274px;
  2451. width:32px;
  2452. height:19px;
  2453. display:flex;
  2454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2455. font-weight:400;
  2456. font-style:normal;
  2457. font-size:10px;
  2458. }
  2459. #u34272 .text {
  2460. position:absolute;
  2461. align-self:center;
  2462. padding:2px 2px 2px 2px;
  2463. box-sizing:border-box;
  2464. width:100%;
  2465. }
  2466. #u34272_text {
  2467. border-width:0px;
  2468. word-wrap:break-word;
  2469. text-transform:none;
  2470. }
  2471. #u34273_input {
  2472. position:absolute;
  2473. left:0px;
  2474. top:0px;
  2475. width:909px;
  2476. height:42px;
  2477. padding:2px 2px 2px 10px;
  2478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2479. font-weight:400;
  2480. font-style:normal;
  2481. font-size:14px;
  2482. letter-spacing:normal;
  2483. color:#AAAAAA;
  2484. vertical-align:none;
  2485. text-align:left;
  2486. text-transform:none;
  2487. background-color:transparent;
  2488. border-color:transparent;
  2489. }
  2490. #u34273_input.disabled {
  2491. position:absolute;
  2492. left:0px;
  2493. top:0px;
  2494. width:909px;
  2495. height:42px;
  2496. padding:2px 2px 2px 10px;
  2497. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2498. font-weight:400;
  2499. font-style:normal;
  2500. font-size:14px;
  2501. letter-spacing:normal;
  2502. color:#AAAAAA;
  2503. vertical-align:none;
  2504. text-align:left;
  2505. text-transform:none;
  2506. background-color:transparent;
  2507. border-color:transparent;
  2508. }
  2509. #u34273_div {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:0px;
  2513. top:0px;
  2514. width:909px;
  2515. height:42px;
  2516. background:inherit;
  2517. background-color:rgba(255, 255, 255, 1);
  2518. box-sizing:border-box;
  2519. border-width:1px;
  2520. border-style:solid;
  2521. border-color:rgba(215, 215, 215, 1);
  2522. border-radius:0px;
  2523. -moz-box-shadow:none;
  2524. -webkit-box-shadow:none;
  2525. box-shadow:none;
  2526. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2527. font-weight:400;
  2528. font-style:normal;
  2529. font-size:14px;
  2530. color:#AAAAAA;
  2531. }
  2532. #u34273 {
  2533. border-width:0px;
  2534. position:absolute;
  2535. left:355px;
  2536. top:328px;
  2537. width:909px;
  2538. height:42px;
  2539. display:flex;
  2540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2541. font-weight:400;
  2542. font-style:normal;
  2543. font-size:14px;
  2544. color:#AAAAAA;
  2545. }
  2546. #u34273 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 10px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u34273_div.disabled {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:0px;
  2557. top:0px;
  2558. width:909px;
  2559. height:42px;
  2560. background:inherit;
  2561. background-color:rgba(240, 240, 240, 1);
  2562. box-sizing:border-box;
  2563. border-width:1px;
  2564. border-style:solid;
  2565. border-color:rgba(215, 215, 215, 1);
  2566. border-radius:0px;
  2567. -moz-box-shadow:none;
  2568. -webkit-box-shadow:none;
  2569. box-shadow:none;
  2570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2571. font-weight:400;
  2572. font-style:normal;
  2573. font-size:14px;
  2574. color:#AAAAAA;
  2575. }
  2576. #u34273.disabled {
  2577. }
  2578. #u34274 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:0px;
  2582. top:0px;
  2583. width:0px;
  2584. height:0px;
  2585. }
  2586. #u34275_div {
  2587. border-width:0px;
  2588. position:absolute;
  2589. left:0px;
  2590. top:0px;
  2591. width:280px;
  2592. height:40px;
  2593. background:inherit;
  2594. background-color:rgba(255, 255, 255, 1);
  2595. box-sizing:border-box;
  2596. border-width:1px;
  2597. border-style:solid;
  2598. border-color:rgba(215, 215, 215, 1);
  2599. border-radius:0px;
  2600. -moz-box-shadow:none;
  2601. -webkit-box-shadow:none;
  2602. box-shadow:none;
  2603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:14px;
  2607. color:#FFFFFF;
  2608. text-align:center;
  2609. line-height:30px;
  2610. }
  2611. #u34275 {
  2612. border-width:0px;
  2613. position:absolute;
  2614. left:1340px;
  2615. top:110px;
  2616. width:280px;
  2617. height:40px;
  2618. display:flex;
  2619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2620. font-weight:400;
  2621. font-style:normal;
  2622. font-size:14px;
  2623. color:#FFFFFF;
  2624. text-align:center;
  2625. line-height:30px;
  2626. }
  2627. #u34275 .text {
  2628. position:absolute;
  2629. align-self:center;
  2630. padding:5px 10px 5px 10px;
  2631. box-sizing:border-box;
  2632. width:100%;
  2633. }
  2634. #u34275_text {
  2635. border-width:0px;
  2636. word-wrap:break-word;
  2637. text-transform:none;
  2638. visibility:hidden;
  2639. }
  2640. #u34276_div {
  2641. border-width:0px;
  2642. position:absolute;
  2643. left:0px;
  2644. top:0px;
  2645. width:280px;
  2646. height:1090px;
  2647. background:inherit;
  2648. background-color:rgba(255, 255, 255, 1);
  2649. box-sizing:border-box;
  2650. border-width:1px;
  2651. border-style:solid;
  2652. border-color:rgba(215, 215, 215, 1);
  2653. border-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:14px;
  2661. color:#FFFFFF;
  2662. text-align:center;
  2663. line-height:30px;
  2664. }
  2665. #u34276 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:1340px;
  2669. top:150px;
  2670. width:280px;
  2671. height:1090px;
  2672. display:flex;
  2673. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:14px;
  2677. color:#FFFFFF;
  2678. text-align:center;
  2679. line-height:30px;
  2680. }
  2681. #u34276 .text {
  2682. position:absolute;
  2683. align-self:center;
  2684. padding:5px 10px 5px 10px;
  2685. box-sizing:border-box;
  2686. width:100%;
  2687. }
  2688. #u34276_text {
  2689. border-width:0px;
  2690. word-wrap:break-word;
  2691. text-transform:none;
  2692. }
  2693. #u34277_div {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:79px;
  2699. height:30px;
  2700. background:inherit;
  2701. background-color:rgba(255, 255, 255, 0);
  2702. border:none;
  2703. border-top:0px;
  2704. border-right:0px;
  2705. border-bottom:0px;
  2706. border-radius:0px;
  2707. border-top-left-radius:0px;
  2708. border-bottom-left-radius:0px;
  2709. -moz-box-shadow:none;
  2710. -webkit-box-shadow:none;
  2711. box-shadow:none;
  2712. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2713. font-weight:500;
  2714. font-style:normal;
  2715. font-size:14px;
  2716. }
  2717. #u34277 {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:1360px;
  2721. top:159px;
  2722. width:79px;
  2723. height:30px;
  2724. display:flex;
  2725. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2726. font-weight:500;
  2727. font-style:normal;
  2728. font-size:14px;
  2729. }
  2730. #u34277 .text {
  2731. position:absolute;
  2732. align-self:center;
  2733. padding:5px 10px 5px 0px;
  2734. box-sizing:border-box;
  2735. width:100%;
  2736. }
  2737. #u34277_text {
  2738. border-width:0px;
  2739. word-wrap:break-word;
  2740. text-transform:none;
  2741. }
  2742. #u34278 {
  2743. border-width:0px;
  2744. position:absolute;
  2745. left:0px;
  2746. top:0px;
  2747. width:0px;
  2748. height:0px;
  2749. }
  2750. #u34279_div {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:236px;
  2756. height:30px;
  2757. background:inherit;
  2758. background-color:rgba(255, 255, 255, 1);
  2759. box-sizing:border-box;
  2760. border-width:1px;
  2761. border-style:solid;
  2762. border-color:rgba(215, 215, 215, 1);
  2763. border-radius:2px;
  2764. -moz-box-shadow:none;
  2765. -webkit-box-shadow:none;
  2766. box-shadow:none;
  2767. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2768. font-weight:400;
  2769. font-style:normal;
  2770. font-size:12px;
  2771. text-align:left;
  2772. }
  2773. #u34279 {
  2774. border-width:0px;
  2775. position:absolute;
  2776. left:1360px;
  2777. top:295px;
  2778. width:236px;
  2779. height:30px;
  2780. display:flex;
  2781. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2782. font-weight:400;
  2783. font-style:normal;
  2784. font-size:12px;
  2785. text-align:left;
  2786. }
  2787. #u34279 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:5px 15px 5px 30px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u34279_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u34280_input {
  2801. position:absolute;
  2802. left:0px;
  2803. top:0px;
  2804. width:212px;
  2805. height:28px;
  2806. padding:2px 2px 2px 2px;
  2807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2808. font-weight:400;
  2809. font-style:normal;
  2810. font-size:14px;
  2811. letter-spacing:normal;
  2812. color:#000000;
  2813. vertical-align:none;
  2814. text-align:left;
  2815. text-transform:none;
  2816. background-color:transparent;
  2817. border-color:transparent;
  2818. }
  2819. #u34280_input.disabled {
  2820. position:absolute;
  2821. left:0px;
  2822. top:0px;
  2823. width:212px;
  2824. height:28px;
  2825. padding:2px 2px 2px 2px;
  2826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2827. font-weight:400;
  2828. font-style:normal;
  2829. font-size:14px;
  2830. letter-spacing:normal;
  2831. color:#000000;
  2832. vertical-align:none;
  2833. text-align:left;
  2834. text-transform:none;
  2835. background-color:transparent;
  2836. border-color:transparent;
  2837. }
  2838. #u34280_div {
  2839. border-width:0px;
  2840. position:absolute;
  2841. left:0px;
  2842. top:0px;
  2843. width:212px;
  2844. height:28px;
  2845. background:inherit;
  2846. background-color:rgba(255, 255, 255, 0);
  2847. border:none;
  2848. border-radius:0px;
  2849. -moz-box-shadow:none;
  2850. -webkit-box-shadow:none;
  2851. box-shadow:none;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. }
  2857. #u34280 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:1371px;
  2861. top:296px;
  2862. width:212px;
  2863. height:28px;
  2864. display:flex;
  2865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2866. font-weight:400;
  2867. font-style:normal;
  2868. font-size:14px;
  2869. }
  2870. #u34280 .text {
  2871. position:absolute;
  2872. align-self:center;
  2873. padding:2px 2px 2px 2px;
  2874. box-sizing:border-box;
  2875. width:100%;
  2876. }
  2877. #u34280_div.disabled {
  2878. border-width:0px;
  2879. position:absolute;
  2880. left:0px;
  2881. top:0px;
  2882. width:212px;
  2883. height:28px;
  2884. background:inherit;
  2885. background-color:rgba(240, 240, 240, 1);
  2886. border:none;
  2887. border-radius:0px;
  2888. -moz-box-shadow:none;
  2889. -webkit-box-shadow:none;
  2890. box-shadow:none;
  2891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2892. font-weight:400;
  2893. font-style:normal;
  2894. font-size:14px;
  2895. }
  2896. #u34280.disabled {
  2897. }
  2898. #u34281 {
  2899. border-width:0px;
  2900. position:absolute;
  2901. left:0px;
  2902. top:0px;
  2903. width:0px;
  2904. height:0px;
  2905. }
  2906. #u34282_div {
  2907. border-width:0px;
  2908. position:absolute;
  2909. left:0px;
  2910. top:0px;
  2911. width:41px;
  2912. height:40px;
  2913. background:inherit;
  2914. background-color:rgba(255, 255, 255, 0);
  2915. border:none;
  2916. border-top:0px;
  2917. border-right:0px;
  2918. border-bottom:0px;
  2919. border-radius:0px;
  2920. border-top-left-radius:0px;
  2921. border-bottom-left-radius:0px;
  2922. -moz-box-shadow:none;
  2923. -webkit-box-shadow:none;
  2924. box-shadow:none;
  2925. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2926. font-weight:500;
  2927. font-style:normal;
  2928. font-size:12px;
  2929. }
  2930. #u34282 {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:1360px;
  2934. top:325px;
  2935. width:41px;
  2936. height:40px;
  2937. display:flex;
  2938. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2939. font-weight:500;
  2940. font-style:normal;
  2941. font-size:12px;
  2942. }
  2943. #u34282 .text {
  2944. position:absolute;
  2945. align-self:center;
  2946. padding:5px 10px 5px 0px;
  2947. box-sizing:border-box;
  2948. width:100%;
  2949. }
  2950. #u34282_text {
  2951. border-width:0px;
  2952. word-wrap:break-word;
  2953. text-transform:none;
  2954. }
  2955. #u34283_img {
  2956. border-width:0px;
  2957. position:absolute;
  2958. left:0px;
  2959. top:0px;
  2960. width:11px;
  2961. height:11px;
  2962. }
  2963. #u34283 {
  2964. border-width:0px;
  2965. position:absolute;
  2966. left:1390px;
  2967. top:340px;
  2968. width:11px;
  2969. height:11px;
  2970. display:flex;
  2971. }
  2972. #u34283 .text {
  2973. position:absolute;
  2974. align-self:center;
  2975. padding:2px 2px 2px 2px;
  2976. box-sizing:border-box;
  2977. width:100%;
  2978. }
  2979. #u34283_text {
  2980. border-width:0px;
  2981. word-wrap:break-word;
  2982. text-transform:none;
  2983. visibility:hidden;
  2984. }
  2985. #u34284 {
  2986. border-width:0px;
  2987. position:absolute;
  2988. left:0px;
  2989. top:0px;
  2990. width:0px;
  2991. height:0px;
  2992. }
  2993. #u34285_div {
  2994. border-width:0px;
  2995. position:absolute;
  2996. left:0px;
  2997. top:0px;
  2998. width:236px;
  2999. height:30px;
  3000. background:inherit;
  3001. background-color:rgba(255, 255, 255, 1);
  3002. box-sizing:border-box;
  3003. border-width:1px;
  3004. border-style:solid;
  3005. border-color:rgba(215, 215, 215, 1);
  3006. border-radius:2px;
  3007. -moz-box-shadow:none;
  3008. -webkit-box-shadow:none;
  3009. box-shadow:none;
  3010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3011. font-weight:400;
  3012. font-style:normal;
  3013. font-size:12px;
  3014. text-align:left;
  3015. }
  3016. #u34285 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:1360px;
  3020. top:365px;
  3021. width:236px;
  3022. height:30px;
  3023. display:flex;
  3024. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3025. font-weight:400;
  3026. font-style:normal;
  3027. font-size:12px;
  3028. text-align:left;
  3029. }
  3030. #u34285 .text {
  3031. position:absolute;
  3032. align-self:center;
  3033. padding:5px 15px 5px 30px;
  3034. box-sizing:border-box;
  3035. width:100%;
  3036. }
  3037. #u34285_text {
  3038. border-width:0px;
  3039. word-wrap:break-word;
  3040. text-transform:none;
  3041. visibility:hidden;
  3042. }
  3043. #u34286_input {
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:212px;
  3048. height:28px;
  3049. padding:2px 2px 2px 2px;
  3050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3051. font-weight:400;
  3052. font-style:normal;
  3053. font-size:14px;
  3054. letter-spacing:normal;
  3055. color:#000000;
  3056. vertical-align:none;
  3057. text-align:left;
  3058. text-transform:none;
  3059. background-color:transparent;
  3060. border-color:transparent;
  3061. }
  3062. #u34286_input.disabled {
  3063. position:absolute;
  3064. left:0px;
  3065. top:0px;
  3066. width:212px;
  3067. height:28px;
  3068. padding:2px 2px 2px 2px;
  3069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:14px;
  3073. letter-spacing:normal;
  3074. color:#000000;
  3075. vertical-align:none;
  3076. text-align:left;
  3077. text-transform:none;
  3078. background-color:transparent;
  3079. border-color:transparent;
  3080. }
  3081. #u34286_div {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:212px;
  3087. height:28px;
  3088. background:inherit;
  3089. background-color:rgba(255, 255, 255, 0);
  3090. border:none;
  3091. border-radius:0px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:14px;
  3099. }
  3100. #u34286 {
  3101. border-width:0px;
  3102. position:absolute;
  3103. left:1371px;
  3104. top:366px;
  3105. width:212px;
  3106. height:28px;
  3107. display:flex;
  3108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3109. font-weight:400;
  3110. font-style:normal;
  3111. font-size:14px;
  3112. }
  3113. #u34286 .text {
  3114. position:absolute;
  3115. align-self:center;
  3116. padding:2px 2px 2px 2px;
  3117. box-sizing:border-box;
  3118. width:100%;
  3119. }
  3120. #u34286_div.disabled {
  3121. border-width:0px;
  3122. position:absolute;
  3123. left:0px;
  3124. top:0px;
  3125. width:212px;
  3126. height:28px;
  3127. background:inherit;
  3128. background-color:rgba(240, 240, 240, 1);
  3129. border:none;
  3130. border-radius:0px;
  3131. -moz-box-shadow:none;
  3132. -webkit-box-shadow:none;
  3133. box-shadow:none;
  3134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3135. font-weight:400;
  3136. font-style:normal;
  3137. font-size:14px;
  3138. }
  3139. #u34286.disabled {
  3140. }
  3141. #u34287_div {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:59px;
  3147. height:40px;
  3148. background:inherit;
  3149. background-color:rgba(255, 255, 255, 0);
  3150. border:none;
  3151. border-top:0px;
  3152. border-right:0px;
  3153. border-bottom:0px;
  3154. border-radius:0px;
  3155. border-top-left-radius:0px;
  3156. border-bottom-left-radius:0px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3161. font-weight:500;
  3162. font-style:normal;
  3163. font-size:12px;
  3164. }
  3165. #u34287 {
  3166. border-width:0px;
  3167. position:absolute;
  3168. left:1360px;
  3169. top:196px;
  3170. width:59px;
  3171. height:40px;
  3172. display:flex;
  3173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3174. font-weight:500;
  3175. font-style:normal;
  3176. font-size:12px;
  3177. }
  3178. #u34287 .text {
  3179. position:absolute;
  3180. align-self:center;
  3181. padding:5px 10px 5px 0px;
  3182. box-sizing:border-box;
  3183. width:100%;
  3184. }
  3185. #u34287_text {
  3186. border-width:0px;
  3187. word-wrap:break-word;
  3188. text-transform:none;
  3189. }
  3190. #u34288_div {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:59px;
  3196. height:30px;
  3197. background:inherit;
  3198. background-color:rgba(255, 255, 255, 1);
  3199. box-sizing:border-box;
  3200. border-width:1px;
  3201. border-style:solid;
  3202. border-color:rgba(215, 215, 215, 1);
  3203. border-radius:2px;
  3204. -moz-box-shadow:none;
  3205. -webkit-box-shadow:none;
  3206. box-shadow:none;
  3207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3208. font-weight:500;
  3209. font-style:normal;
  3210. font-size:12px;
  3211. }
  3212. #u34288 {
  3213. border-width:0px;
  3214. position:absolute;
  3215. left:1360px;
  3216. top:231px;
  3217. width:59px;
  3218. height:30px;
  3219. display:flex;
  3220. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3221. font-weight:500;
  3222. font-style:normal;
  3223. font-size:12px;
  3224. }
  3225. #u34288 .text {
  3226. position:absolute;
  3227. align-self:center;
  3228. padding:2px 2px 2px 2px;
  3229. box-sizing:border-box;
  3230. width:100%;
  3231. }
  3232. #u34288_text {
  3233. border-width:0px;
  3234. word-wrap:break-word;
  3235. text-transform:none;
  3236. }
  3237. #u34289_div {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:59px;
  3243. height:30px;
  3244. background:inherit;
  3245. background-color:rgba(255, 255, 255, 1);
  3246. box-sizing:border-box;
  3247. border-width:1px;
  3248. border-style:solid;
  3249. border-color:rgba(215, 215, 215, 1);
  3250. border-radius:2px;
  3251. -moz-box-shadow:none;
  3252. -webkit-box-shadow:none;
  3253. box-shadow:none;
  3254. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3255. font-weight:500;
  3256. font-style:normal;
  3257. font-size:12px;
  3258. }
  3259. #u34289 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1419px;
  3263. top:231px;
  3264. width:59px;
  3265. height:30px;
  3266. display:flex;
  3267. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3268. font-weight:500;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. }
  3272. #u34289 .text {
  3273. position:absolute;
  3274. align-self:center;
  3275. padding:2px 2px 2px 2px;
  3276. box-sizing:border-box;
  3277. width:100%;
  3278. }
  3279. #u34289_text {
  3280. border-width:0px;
  3281. word-wrap:break-word;
  3282. text-transform:none;
  3283. }
  3284. #u34290_div {
  3285. border-width:0px;
  3286. position:absolute;
  3287. left:0px;
  3288. top:0px;
  3289. width:59px;
  3290. height:30px;
  3291. background:inherit;
  3292. background-color:rgba(255, 255, 255, 1);
  3293. box-sizing:border-box;
  3294. border-width:1px;
  3295. border-style:solid;
  3296. border-color:rgba(215, 215, 215, 1);
  3297. border-radius:2px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3302. font-weight:500;
  3303. font-style:normal;
  3304. font-size:12px;
  3305. }
  3306. #u34290 {
  3307. border-width:0px;
  3308. position:absolute;
  3309. left:1478px;
  3310. top:231px;
  3311. width:59px;
  3312. height:30px;
  3313. display:flex;
  3314. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3315. font-weight:500;
  3316. font-style:normal;
  3317. font-size:12px;
  3318. }
  3319. #u34290 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 2px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u34290_text {
  3327. border-width:0px;
  3328. word-wrap:break-word;
  3329. text-transform:none;
  3330. }
  3331. #u34291_div {
  3332. border-width:0px;
  3333. position:absolute;
  3334. left:0px;
  3335. top:0px;
  3336. width:59px;
  3337. height:30px;
  3338. background:inherit;
  3339. background-color:rgba(245, 154, 35, 1);
  3340. box-sizing:border-box;
  3341. border-width:1px;
  3342. border-style:solid;
  3343. border-color:rgba(215, 215, 215, 1);
  3344. border-radius:2px;
  3345. -moz-box-shadow:none;
  3346. -webkit-box-shadow:none;
  3347. box-shadow:none;
  3348. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3349. font-weight:500;
  3350. font-style:normal;
  3351. font-size:12px;
  3352. color:#FFFFFF;
  3353. }
  3354. #u34291 {
  3355. border-width:0px;
  3356. position:absolute;
  3357. left:1536px;
  3358. top:231px;
  3359. width:59px;
  3360. height:30px;
  3361. display:flex;
  3362. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3363. font-weight:500;
  3364. font-style:normal;
  3365. font-size:12px;
  3366. color:#FFFFFF;
  3367. }
  3368. #u34291 .text {
  3369. position:absolute;
  3370. align-self:center;
  3371. padding:2px 2px 2px 2px;
  3372. box-sizing:border-box;
  3373. width:100%;
  3374. }
  3375. #u34291_text {
  3376. border-width:0px;
  3377. word-wrap:break-word;
  3378. text-transform:none;
  3379. }
  3380. #u34292 label {
  3381. left:0px;
  3382. width:100%;
  3383. }
  3384. #u34292_img {
  3385. border-width:0px;
  3386. position:absolute;
  3387. left:0px;
  3388. top:4px;
  3389. width:12px;
  3390. height:12px;
  3391. }
  3392. #u34292 {
  3393. border-width:0px;
  3394. position:absolute;
  3395. left:1360px;
  3396. top:700px;
  3397. width:118px;
  3398. height:20px;
  3399. display:flex;
  3400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3401. font-weight:400;
  3402. font-style:normal;
  3403. font-size:14px;
  3404. }
  3405. #u34292 .text {
  3406. position:absolute;
  3407. align-self:center;
  3408. padding:0px 2px 0px 2px;
  3409. box-sizing:border-box;
  3410. }
  3411. #u34292_img.selected {
  3412. }
  3413. #u34292.selected {
  3414. }
  3415. #u34292_img.disabled {
  3416. }
  3417. #u34292.disabled {
  3418. }
  3419. #u34292_img.selectedDisabled {
  3420. }
  3421. #u34292.selectedDisabled {
  3422. }
  3423. #u34292_text {
  3424. border-width:0px;
  3425. position:absolute;
  3426. left:14px;
  3427. top:0px;
  3428. width:102px;
  3429. word-wrap:break-word;
  3430. text-transform:none;
  3431. }
  3432. #u34292_input {
  3433. border-width:0px;
  3434. position:absolute;
  3435. left:0px;
  3436. top:0px;
  3437. width:0px;
  3438. height:0px;
  3439. opacity:0;
  3440. }
  3441. #u34293 label {
  3442. left:0px;
  3443. width:100%;
  3444. }
  3445. #u34293_img {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:0px;
  3449. top:4px;
  3450. width:12px;
  3451. height:12px;
  3452. }
  3453. #u34293 {
  3454. border-width:0px;
  3455. position:absolute;
  3456. left:1360px;
  3457. top:950px;
  3458. width:118px;
  3459. height:20px;
  3460. display:flex;
  3461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3462. font-weight:400;
  3463. font-style:normal;
  3464. font-size:14px;
  3465. }
  3466. #u34293 .text {
  3467. position:absolute;
  3468. align-self:center;
  3469. padding:0px 2px 0px 2px;
  3470. box-sizing:border-box;
  3471. }
  3472. #u34293_img.selected {
  3473. }
  3474. #u34293.selected {
  3475. }
  3476. #u34293_img.disabled {
  3477. }
  3478. #u34293.disabled {
  3479. }
  3480. #u34293_img.selectedDisabled {
  3481. }
  3482. #u34293.selectedDisabled {
  3483. }
  3484. #u34293_text {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:14px;
  3488. top:0px;
  3489. width:102px;
  3490. word-wrap:break-word;
  3491. text-transform:none;
  3492. }
  3493. #u34293_input {
  3494. border-width:0px;
  3495. position:absolute;
  3496. left:0px;
  3497. top:0px;
  3498. width:0px;
  3499. height:0px;
  3500. opacity:0;
  3501. }
  3502. #u34294 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:0px;
  3508. height:0px;
  3509. }
  3510. #u34295_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:236px;
  3516. height:30px;
  3517. background:inherit;
  3518. background-color:rgba(255, 255, 255, 1);
  3519. box-sizing:border-box;
  3520. border-width:1px;
  3521. border-style:solid;
  3522. border-color:rgba(215, 215, 215, 1);
  3523. border-radius:4px;
  3524. -moz-box-shadow:none;
  3525. -webkit-box-shadow:none;
  3526. box-shadow:none;
  3527. font-size:11px;
  3528. }
  3529. #u34295 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:1360px;
  3533. top:435px;
  3534. width:236px;
  3535. height:30px;
  3536. display:flex;
  3537. font-size:11px;
  3538. }
  3539. #u34295 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u34295_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u34296_input {
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:224px;
  3557. height:23px;
  3558. padding:2px 2px 2px 2px;
  3559. font-family:'ArialMT', 'Arial', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:11px;
  3563. letter-spacing:normal;
  3564. color:#AAAAAA;
  3565. vertical-align:none;
  3566. text-align:left;
  3567. text-transform:none;
  3568. background-color:transparent;
  3569. border-color:transparent;
  3570. }
  3571. #u34296_input.disabled {
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:224px;
  3576. height:23px;
  3577. padding:2px 2px 2px 2px;
  3578. font-family:'ArialMT', 'Arial', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:11px;
  3582. letter-spacing:normal;
  3583. color:#AAAAAA;
  3584. vertical-align:none;
  3585. text-align:left;
  3586. text-transform:none;
  3587. background-color:transparent;
  3588. border-color:transparent;
  3589. }
  3590. #u34296_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:224px;
  3596. height:23px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 1);
  3599. border:none;
  3600. border-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-size:11px;
  3605. color:#AAAAAA;
  3606. }
  3607. #u34296 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:1366px;
  3611. top:437px;
  3612. width:224px;
  3613. height:23px;
  3614. display:flex;
  3615. font-size:11px;
  3616. color:#AAAAAA;
  3617. }
  3618. #u34296 .text {
  3619. position:absolute;
  3620. align-self:flex-start;
  3621. padding:2px 2px 2px 2px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u34296_div.disabled {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:224px;
  3631. height:23px;
  3632. background:inherit;
  3633. background-color:rgba(240, 240, 240, 1);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-size:11px;
  3640. color:#AAAAAA;
  3641. }
  3642. #u34296.disabled {
  3643. }
  3644. .u34296_input_option {
  3645. font-size:11px;
  3646. }
  3647. #u34297_div {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:35px;
  3653. height:40px;
  3654. background:inherit;
  3655. background-color:rgba(255, 255, 255, 0);
  3656. border:none;
  3657. border-top:0px;
  3658. border-right:0px;
  3659. border-bottom:0px;
  3660. border-radius:0px;
  3661. border-top-left-radius:0px;
  3662. border-bottom-left-radius:0px;
  3663. -moz-box-shadow:none;
  3664. -webkit-box-shadow:none;
  3665. box-shadow:none;
  3666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3667. font-weight:400;
  3668. font-style:normal;
  3669. font-size:12px;
  3670. }
  3671. #u34297 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:1360px;
  3675. top:395px;
  3676. width:35px;
  3677. height:40px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:12px;
  3683. }
  3684. #u34297 .text {
  3685. position:absolute;
  3686. align-self:center;
  3687. padding:5px 10px 5px 0px;
  3688. box-sizing:border-box;
  3689. width:100%;
  3690. }
  3691. #u34297_text {
  3692. border-width:0px;
  3693. white-space:nowrap;
  3694. text-transform:none;
  3695. }
  3696. #u34298 label {
  3697. left:0px;
  3698. width:100%;
  3699. }
  3700. #u34298_img {
  3701. border-width:0px;
  3702. position:absolute;
  3703. left:0px;
  3704. top:4px;
  3705. width:12px;
  3706. height:12px;
  3707. }
  3708. #u34298 {
  3709. border-width:0px;
  3710. position:absolute;
  3711. left:1360px;
  3712. top:920px;
  3713. width:118px;
  3714. height:20px;
  3715. display:flex;
  3716. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3717. font-weight:400;
  3718. font-style:normal;
  3719. font-size:14px;
  3720. }
  3721. #u34298 .text {
  3722. position:absolute;
  3723. align-self:center;
  3724. padding:0px 2px 0px 2px;
  3725. box-sizing:border-box;
  3726. }
  3727. #u34298_img.selected {
  3728. }
  3729. #u34298.selected {
  3730. }
  3731. #u34298_img.disabled {
  3732. }
  3733. #u34298.disabled {
  3734. }
  3735. #u34298_img.selectedDisabled {
  3736. }
  3737. #u34298.selectedDisabled {
  3738. }
  3739. #u34298_text {
  3740. border-width:0px;
  3741. position:absolute;
  3742. left:14px;
  3743. top:0px;
  3744. width:102px;
  3745. word-wrap:break-word;
  3746. text-transform:none;
  3747. }
  3748. #u34298_input {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:0px;
  3754. height:0px;
  3755. opacity:0;
  3756. }
  3757. #u34299 label {
  3758. left:0px;
  3759. width:100%;
  3760. }
  3761. #u34299_img {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:0px;
  3765. top:4px;
  3766. width:12px;
  3767. height:12px;
  3768. }
  3769. #u34299 {
  3770. border-width:0px;
  3771. position:absolute;
  3772. left:1360px;
  3773. top:850px;
  3774. width:118px;
  3775. height:20px;
  3776. display:flex;
  3777. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3778. font-weight:400;
  3779. font-style:normal;
  3780. font-size:14px;
  3781. }
  3782. #u34299 .text {
  3783. position:absolute;
  3784. align-self:center;
  3785. padding:0px 2px 0px 2px;
  3786. box-sizing:border-box;
  3787. }
  3788. #u34299_img.selected {
  3789. }
  3790. #u34299.selected {
  3791. }
  3792. #u34299_img.disabled {
  3793. }
  3794. #u34299.disabled {
  3795. }
  3796. #u34299_img.selectedDisabled {
  3797. }
  3798. #u34299.selectedDisabled {
  3799. }
  3800. #u34299_text {
  3801. border-width:0px;
  3802. position:absolute;
  3803. left:14px;
  3804. top:0px;
  3805. width:102px;
  3806. word-wrap:break-word;
  3807. text-transform:none;
  3808. }
  3809. #u34299_input {
  3810. border-width:0px;
  3811. position:absolute;
  3812. left:0px;
  3813. top:0px;
  3814. width:0px;
  3815. height:0px;
  3816. opacity:0;
  3817. }
  3818. #u34300 label {
  3819. left:0px;
  3820. width:100%;
  3821. }
  3822. #u34300_img {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:0px;
  3826. top:4px;
  3827. width:12px;
  3828. height:12px;
  3829. }
  3830. #u34300 {
  3831. border-width:0px;
  3832. position:absolute;
  3833. left:1360px;
  3834. top:640px;
  3835. width:118px;
  3836. height:20px;
  3837. display:flex;
  3838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3839. font-weight:400;
  3840. font-style:normal;
  3841. font-size:14px;
  3842. }
  3843. #u34300 .text {
  3844. position:absolute;
  3845. align-self:center;
  3846. padding:0px 2px 0px 2px;
  3847. box-sizing:border-box;
  3848. }
  3849. #u34300_img.selected {
  3850. }
  3851. #u34300.selected {
  3852. }
  3853. #u34300_img.disabled {
  3854. }
  3855. #u34300.disabled {
  3856. }
  3857. #u34300_img.selectedDisabled {
  3858. }
  3859. #u34300.selectedDisabled {
  3860. }
  3861. #u34300_text {
  3862. border-width:0px;
  3863. position:absolute;
  3864. left:14px;
  3865. top:0px;
  3866. width:102px;
  3867. word-wrap:break-word;
  3868. text-transform:none;
  3869. }
  3870. #u34300_input {
  3871. border-width:0px;
  3872. position:absolute;
  3873. left:0px;
  3874. top:0px;
  3875. width:0px;
  3876. height:0px;
  3877. opacity:0;
  3878. }
  3879. #u34301 label {
  3880. left:0px;
  3881. width:100%;
  3882. }
  3883. #u34301_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:4px;
  3888. width:12px;
  3889. height:12px;
  3890. }
  3891. #u34301 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:1360px;
  3895. top:670px;
  3896. width:118px;
  3897. height:20px;
  3898. display:flex;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:14px;
  3903. }
  3904. #u34301 .text {
  3905. position:absolute;
  3906. align-self:center;
  3907. padding:0px 2px 0px 2px;
  3908. box-sizing:border-box;
  3909. }
  3910. #u34301_img.selected {
  3911. }
  3912. #u34301.selected {
  3913. }
  3914. #u34301_img.disabled {
  3915. }
  3916. #u34301.disabled {
  3917. }
  3918. #u34301_img.selectedDisabled {
  3919. }
  3920. #u34301.selectedDisabled {
  3921. }
  3922. #u34301_text {
  3923. border-width:0px;
  3924. position:absolute;
  3925. left:14px;
  3926. top:0px;
  3927. width:102px;
  3928. word-wrap:break-word;
  3929. text-transform:none;
  3930. }
  3931. #u34301_input {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:0px;
  3937. height:0px;
  3938. opacity:0;
  3939. }
  3940. #u34302_img {
  3941. border-width:0px;
  3942. position:absolute;
  3943. left:0px;
  3944. top:0px;
  3945. width:236px;
  3946. height:30px;
  3947. }
  3948. #u34302 {
  3949. border-width:0px;
  3950. position:absolute;
  3951. left:1360px;
  3952. top:590px;
  3953. width:236px;
  3954. height:30px;
  3955. display:flex;
  3956. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3957. font-weight:400;
  3958. font-style:normal;
  3959. font-size:10px;
  3960. }
  3961. #u34302 .text {
  3962. position:absolute;
  3963. align-self:center;
  3964. padding:2px 0px 2px 0px;
  3965. box-sizing:border-box;
  3966. width:100%;
  3967. }
  3968. #u34302_text {
  3969. border-width:0px;
  3970. word-wrap:break-word;
  3971. text-transform:none;
  3972. }
  3973. #u34303 {
  3974. border-width:0px;
  3975. position:absolute;
  3976. left:0px;
  3977. top:0px;
  3978. width:0px;
  3979. height:0px;
  3980. }
  3981. #u34304_div {
  3982. border-width:0px;
  3983. position:absolute;
  3984. left:0px;
  3985. top:0px;
  3986. width:41px;
  3987. height:40px;
  3988. background:inherit;
  3989. background-color:rgba(255, 255, 255, 0);
  3990. border:none;
  3991. border-top:0px;
  3992. border-right:0px;
  3993. border-bottom:0px;
  3994. border-radius:0px;
  3995. border-top-left-radius:0px;
  3996. border-bottom-left-radius:0px;
  3997. -moz-box-shadow:none;
  3998. -webkit-box-shadow:none;
  3999. box-shadow:none;
  4000. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4001. font-weight:500;
  4002. font-style:normal;
  4003. font-size:12px;
  4004. }
  4005. #u34304 {
  4006. border-width:0px;
  4007. position:absolute;
  4008. left:1360px;
  4009. top:261px;
  4010. width:41px;
  4011. height:40px;
  4012. display:flex;
  4013. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4014. font-weight:500;
  4015. font-style:normal;
  4016. font-size:12px;
  4017. }
  4018. #u34304 .text {
  4019. position:absolute;
  4020. align-self:center;
  4021. padding:5px 10px 5px 0px;
  4022. box-sizing:border-box;
  4023. width:100%;
  4024. }
  4025. #u34304_text {
  4026. border-width:0px;
  4027. word-wrap:break-word;
  4028. text-transform:none;
  4029. }
  4030. #u34305_img {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:11px;
  4036. height:11px;
  4037. }
  4038. #u34305 {
  4039. border-width:0px;
  4040. position:absolute;
  4041. left:1390px;
  4042. top:276px;
  4043. width:11px;
  4044. height:11px;
  4045. display:flex;
  4046. }
  4047. #u34305 .text {
  4048. position:absolute;
  4049. align-self:center;
  4050. padding:2px 2px 2px 2px;
  4051. box-sizing:border-box;
  4052. width:100%;
  4053. }
  4054. #u34305_text {
  4055. border-width:0px;
  4056. word-wrap:break-word;
  4057. text-transform:none;
  4058. visibility:hidden;
  4059. }
  4060. #u34306 {
  4061. border-width:0px;
  4062. position:absolute;
  4063. left:0px;
  4064. top:0px;
  4065. width:0px;
  4066. height:0px;
  4067. }
  4068. #u34307_div {
  4069. border-width:0px;
  4070. position:absolute;
  4071. left:0px;
  4072. top:0px;
  4073. width:59px;
  4074. height:40px;
  4075. background:inherit;
  4076. background-color:rgba(255, 255, 255, 0);
  4077. border:none;
  4078. border-top:0px;
  4079. border-right:0px;
  4080. border-bottom:0px;
  4081. border-radius:0px;
  4082. border-top-left-radius:0px;
  4083. border-bottom-left-radius:0px;
  4084. -moz-box-shadow:none;
  4085. -webkit-box-shadow:none;
  4086. box-shadow:none;
  4087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4088. font-weight:400;
  4089. font-style:normal;
  4090. font-size:12px;
  4091. }
  4092. #u34307 {
  4093. border-width:0px;
  4094. position:absolute;
  4095. left:1360px;
  4096. top:465px;
  4097. width:59px;
  4098. height:40px;
  4099. display:flex;
  4100. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4101. font-weight:400;
  4102. font-style:normal;
  4103. font-size:12px;
  4104. }
  4105. #u34307 .text {
  4106. position:absolute;
  4107. align-self:center;
  4108. padding:5px 10px 5px 0px;
  4109. box-sizing:border-box;
  4110. width:100%;
  4111. }
  4112. #u34307_text {
  4113. border-width:0px;
  4114. white-space:nowrap;
  4115. text-transform:none;
  4116. }
  4117. #u34308_img {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:11px;
  4123. height:11px;
  4124. }
  4125. #u34308 {
  4126. border-width:0px;
  4127. position:absolute;
  4128. left:1415px;
  4129. top:480px;
  4130. width:11px;
  4131. height:11px;
  4132. display:flex;
  4133. }
  4134. #u34308 .text {
  4135. position:absolute;
  4136. align-self:center;
  4137. padding:2px 2px 2px 2px;
  4138. box-sizing:border-box;
  4139. width:100%;
  4140. }
  4141. #u34308_text {
  4142. border-width:0px;
  4143. word-wrap:break-word;
  4144. text-transform:none;
  4145. visibility:hidden;
  4146. }
  4147. #u34309_img {
  4148. border-width:0px;
  4149. position:absolute;
  4150. left:0px;
  4151. top:0px;
  4152. width:11px;
  4153. height:11px;
  4154. }
  4155. #u34309 {
  4156. border-width:0px;
  4157. position:absolute;
  4158. left:1414px;
  4159. top:204px;
  4160. width:11px;
  4161. height:11px;
  4162. display:flex;
  4163. }
  4164. #u34309 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 2px 2px 2px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u34309_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. visibility:hidden;
  4176. }
  4177. #u34310 {
  4178. border-width:0px;
  4179. position:absolute;
  4180. left:0px;
  4181. top:0px;
  4182. width:0px;
  4183. height:0px;
  4184. }
  4185. #u34311 {
  4186. border-width:0px;
  4187. position:absolute;
  4188. left:0px;
  4189. top:0px;
  4190. width:0px;
  4191. height:0px;
  4192. }
  4193. #u34312_div {
  4194. border-width:0px;
  4195. position:absolute;
  4196. left:0px;
  4197. top:0px;
  4198. width:74px;
  4199. height:26px;
  4200. background:inherit;
  4201. background-color:rgba(255, 255, 255, 0);
  4202. border:none;
  4203. border-top:0px;
  4204. border-right:0px;
  4205. border-bottom:0px;
  4206. border-radius:0px;
  4207. border-top-left-radius:0px;
  4208. border-bottom-left-radius:0px;
  4209. -moz-box-shadow:none;
  4210. -webkit-box-shadow:none;
  4211. box-shadow:none;
  4212. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4213. font-weight:400;
  4214. font-style:normal;
  4215. font-size:11px;
  4216. color:#198CFB;
  4217. }
  4218. #u34312 {
  4219. border-width:0px;
  4220. position:absolute;
  4221. left:1353px;
  4222. top:1095px;
  4223. width:74px;
  4224. height:26px;
  4225. display:flex;
  4226. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4227. font-weight:400;
  4228. font-style:normal;
  4229. font-size:11px;
  4230. color:#198CFB;
  4231. }
  4232. #u34312 .text {
  4233. position:absolute;
  4234. align-self:center;
  4235. padding:5px 0px 5px 0px;
  4236. box-sizing:border-box;
  4237. width:100%;
  4238. }
  4239. #u34312_text {
  4240. border-width:0px;
  4241. word-wrap:break-word;
  4242. text-transform:none;
  4243. }
  4244. #u34313_img {
  4245. border-width:0px;
  4246. position:absolute;
  4247. left:0px;
  4248. top:0px;
  4249. width:255px;
  4250. height:2px;
  4251. }
  4252. #u34313 {
  4253. border-width:0px;
  4254. position:absolute;
  4255. left:1356px;
  4256. top:1073px;
  4257. width:254px;
  4258. height:1px;
  4259. display:flex;
  4260. }
  4261. #u34313 .text {
  4262. position:absolute;
  4263. align-self:center;
  4264. padding:2px 2px 2px 2px;
  4265. box-sizing:border-box;
  4266. width:100%;
  4267. }
  4268. #u34313_text {
  4269. border-width:0px;
  4270. word-wrap:break-word;
  4271. text-transform:none;
  4272. visibility:hidden;
  4273. }
  4274. #u34314_div {
  4275. border-width:0px;
  4276. position:absolute;
  4277. left:0px;
  4278. top:0px;
  4279. width:74px;
  4280. height:30px;
  4281. background:inherit;
  4282. background-color:rgba(255, 255, 255, 1);
  4283. border:none;
  4284. border-top:0px;
  4285. border-right:0px;
  4286. border-bottom:0px;
  4287. border-radius:0px;
  4288. border-top-left-radius:0px;
  4289. border-bottom-left-radius:0px;
  4290. -moz-box-shadow:none;
  4291. -webkit-box-shadow:none;
  4292. box-shadow:none;
  4293. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4294. font-weight:400;
  4295. font-style:normal;
  4296. font-size:14px;
  4297. text-align:center;
  4298. }
  4299. #u34314 {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:1445px;
  4303. top:1059px;
  4304. width:74px;
  4305. height:30px;
  4306. display:flex;
  4307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4308. font-weight:400;
  4309. font-style:normal;
  4310. font-size:14px;
  4311. text-align:center;
  4312. }
  4313. #u34314 .text {
  4314. position:absolute;
  4315. align-self:center;
  4316. padding:5px 0px 5px 0px;
  4317. box-sizing:border-box;
  4318. width:100%;
  4319. }
  4320. #u34314_text {
  4321. border-width:0px;
  4322. word-wrap:break-word;
  4323. text-transform:none;
  4324. }
  4325. #u34315 label {
  4326. left:0px;
  4327. width:100%;
  4328. }
  4329. #u34315_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:3px;
  4334. width:12px;
  4335. height:12px;
  4336. }
  4337. #u34315 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:1360px;
  4341. top:1008px;
  4342. width:141px;
  4343. height:18px;
  4344. display:flex;
  4345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. }
  4349. #u34315 .text {
  4350. position:absolute;
  4351. align-self:center;
  4352. padding:0px 2px 0px 2px;
  4353. box-sizing:border-box;
  4354. }
  4355. #u34315_img.selected {
  4356. }
  4357. #u34315.selected {
  4358. }
  4359. #u34315_img.disabled {
  4360. }
  4361. #u34315.disabled {
  4362. }
  4363. #u34315_img.selectedDisabled {
  4364. }
  4365. #u34315.selectedDisabled {
  4366. }
  4367. #u34315_text {
  4368. border-width:0px;
  4369. position:absolute;
  4370. left:14px;
  4371. top:0px;
  4372. width:125px;
  4373. word-wrap:break-word;
  4374. text-transform:none;
  4375. }
  4376. #u34315_input {
  4377. border-width:0px;
  4378. position:absolute;
  4379. left:0px;
  4380. top:0px;
  4381. width:0px;
  4382. height:0px;
  4383. opacity:0;
  4384. }
  4385. #u34316_div {
  4386. border-width:0px;
  4387. position:absolute;
  4388. left:0px;
  4389. top:0px;
  4390. width:140px;
  4391. height:39px;
  4392. background:inherit;
  4393. background-color:rgba(255, 255, 255, 1);
  4394. box-sizing:border-box;
  4395. border-width:3px;
  4396. border-style:solid;
  4397. border-color:rgba(25, 140, 251, 1);
  4398. border-left:0px;
  4399. border-top:0px;
  4400. border-right:0px;
  4401. border-radius:0px;
  4402. border-bottom-right-radius:0px;
  4403. border-bottom-left-radius:0px;
  4404. -moz-box-shadow:none;
  4405. -webkit-box-shadow:none;
  4406. box-shadow:none;
  4407. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4408. font-weight:400;
  4409. font-style:normal;
  4410. font-size:14px;
  4411. color:#1890FF;
  4412. text-align:center;
  4413. line-height:30px;
  4414. }
  4415. #u34316 {
  4416. border-width:0px;
  4417. position:absolute;
  4418. left:1340px;
  4419. top:111px;
  4420. width:140px;
  4421. height:39px;
  4422. display:flex;
  4423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4424. font-weight:400;
  4425. font-style:normal;
  4426. font-size:14px;
  4427. color:#1890FF;
  4428. text-align:center;
  4429. line-height:30px;
  4430. }
  4431. #u34316 .text {
  4432. position:absolute;
  4433. align-self:center;
  4434. padding:5px 10px 5px 10px;
  4435. box-sizing:border-box;
  4436. width:100%;
  4437. }
  4438. #u34316_text {
  4439. border-width:0px;
  4440. word-wrap:break-word;
  4441. text-transform:none;
  4442. }
  4443. #u34317_div {
  4444. border-width:0px;
  4445. position:absolute;
  4446. left:0px;
  4447. top:0px;
  4448. width:140px;
  4449. height:39px;
  4450. background:inherit;
  4451. background-color:rgba(255, 255, 255, 1);
  4452. border:none;
  4453. border-left:0px;
  4454. border-top:0px;
  4455. border-right:0px;
  4456. border-radius:0px;
  4457. border-bottom-right-radius:0px;
  4458. border-bottom-left-radius:0px;
  4459. -moz-box-shadow:none;
  4460. -webkit-box-shadow:none;
  4461. box-shadow:none;
  4462. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4463. font-weight:400;
  4464. font-style:normal;
  4465. font-size:14px;
  4466. text-align:center;
  4467. line-height:30px;
  4468. }
  4469. #u34317 {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:1479px;
  4473. top:111px;
  4474. width:140px;
  4475. height:39px;
  4476. display:flex;
  4477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4478. font-weight:400;
  4479. font-style:normal;
  4480. font-size:14px;
  4481. text-align:center;
  4482. line-height:30px;
  4483. }
  4484. #u34317 .text {
  4485. position:absolute;
  4486. align-self:center;
  4487. padding:5px 10px 5px 10px;
  4488. box-sizing:border-box;
  4489. width:100%;
  4490. }
  4491. #u34317_text {
  4492. border-width:0px;
  4493. word-wrap:break-word;
  4494. text-transform:none;
  4495. }
  4496. #u34318 label {
  4497. left:0px;
  4498. width:100%;
  4499. }
  4500. #u34318_img {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:4px;
  4505. width:12px;
  4506. height:12px;
  4507. }
  4508. #u34318 {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:1360px;
  4512. top:760px;
  4513. width:118px;
  4514. height:20px;
  4515. display:flex;
  4516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4517. font-weight:400;
  4518. font-style:normal;
  4519. font-size:14px;
  4520. }
  4521. #u34318 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:0px 2px 0px 2px;
  4525. box-sizing:border-box;
  4526. }
  4527. #u34318_img.selected {
  4528. }
  4529. #u34318.selected {
  4530. }
  4531. #u34318_img.disabled {
  4532. }
  4533. #u34318.disabled {
  4534. }
  4535. #u34318_img.selectedDisabled {
  4536. }
  4537. #u34318.selectedDisabled {
  4538. }
  4539. #u34318_text {
  4540. border-width:0px;
  4541. position:absolute;
  4542. left:14px;
  4543. top:0px;
  4544. width:102px;
  4545. word-wrap:break-word;
  4546. text-transform:none;
  4547. }
  4548. #u34318_input {
  4549. border-width:0px;
  4550. position:absolute;
  4551. left:0px;
  4552. top:0px;
  4553. width:0px;
  4554. height:0px;
  4555. opacity:0;
  4556. }
  4557. #u34319 label {
  4558. left:0px;
  4559. width:100%;
  4560. }
  4561. #u34319_img {
  4562. border-width:0px;
  4563. position:absolute;
  4564. left:0px;
  4565. top:4px;
  4566. width:12px;
  4567. height:12px;
  4568. }
  4569. #u34319 {
  4570. border-width:0px;
  4571. position:absolute;
  4572. left:1360px;
  4573. top:730px;
  4574. width:118px;
  4575. height:20px;
  4576. display:flex;
  4577. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4578. font-weight:400;
  4579. font-style:normal;
  4580. font-size:14px;
  4581. }
  4582. #u34319 .text {
  4583. position:absolute;
  4584. align-self:center;
  4585. padding:0px 2px 0px 2px;
  4586. box-sizing:border-box;
  4587. }
  4588. #u34319_img.selected {
  4589. }
  4590. #u34319.selected {
  4591. }
  4592. #u34319_img.disabled {
  4593. }
  4594. #u34319.disabled {
  4595. }
  4596. #u34319_img.selectedDisabled {
  4597. }
  4598. #u34319.selectedDisabled {
  4599. }
  4600. #u34319_text {
  4601. border-width:0px;
  4602. position:absolute;
  4603. left:14px;
  4604. top:0px;
  4605. width:102px;
  4606. word-wrap:break-word;
  4607. text-transform:none;
  4608. }
  4609. #u34319_input {
  4610. border-width:0px;
  4611. position:absolute;
  4612. left:0px;
  4613. top:0px;
  4614. width:0px;
  4615. height:0px;
  4616. opacity:0;
  4617. }
  4618. #u34320 label {
  4619. left:0px;
  4620. width:100%;
  4621. }
  4622. #u34320_img {
  4623. border-width:0px;
  4624. position:absolute;
  4625. left:0px;
  4626. top:4px;
  4627. width:12px;
  4628. height:12px;
  4629. }
  4630. #u34320 {
  4631. border-width:0px;
  4632. position:absolute;
  4633. left:1360px;
  4634. top:790px;
  4635. width:118px;
  4636. height:20px;
  4637. display:flex;
  4638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4639. font-weight:400;
  4640. font-style:normal;
  4641. font-size:14px;
  4642. }
  4643. #u34320 .text {
  4644. position:absolute;
  4645. align-self:center;
  4646. padding:0px 2px 0px 2px;
  4647. box-sizing:border-box;
  4648. }
  4649. #u34320_img.selected {
  4650. }
  4651. #u34320.selected {
  4652. }
  4653. #u34320_img.disabled {
  4654. }
  4655. #u34320.disabled {
  4656. }
  4657. #u34320_img.selectedDisabled {
  4658. }
  4659. #u34320.selectedDisabled {
  4660. }
  4661. #u34320_text {
  4662. border-width:0px;
  4663. position:absolute;
  4664. left:14px;
  4665. top:0px;
  4666. width:102px;
  4667. word-wrap:break-word;
  4668. text-transform:none;
  4669. }
  4670. #u34320_input {
  4671. border-width:0px;
  4672. position:absolute;
  4673. left:0px;
  4674. top:0px;
  4675. width:0px;
  4676. height:0px;
  4677. opacity:0;
  4678. }
  4679. #u34321 label {
  4680. left:0px;
  4681. width:100%;
  4682. }
  4683. #u34321_img {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:4px;
  4688. width:12px;
  4689. height:12px;
  4690. }
  4691. #u34321 {
  4692. border-width:0px;
  4693. position:absolute;
  4694. left:1360px;
  4695. top:820px;
  4696. width:118px;
  4697. height:20px;
  4698. display:flex;
  4699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4700. font-weight:400;
  4701. font-style:normal;
  4702. font-size:14px;
  4703. }
  4704. #u34321 .text {
  4705. position:absolute;
  4706. align-self:center;
  4707. padding:0px 2px 0px 2px;
  4708. box-sizing:border-box;
  4709. }
  4710. #u34321_img.selected {
  4711. }
  4712. #u34321.selected {
  4713. }
  4714. #u34321_img.disabled {
  4715. }
  4716. #u34321.disabled {
  4717. }
  4718. #u34321_img.selectedDisabled {
  4719. }
  4720. #u34321.selectedDisabled {
  4721. }
  4722. #u34321_text {
  4723. border-width:0px;
  4724. position:absolute;
  4725. left:14px;
  4726. top:0px;
  4727. width:102px;
  4728. word-wrap:break-word;
  4729. text-transform:none;
  4730. }
  4731. #u34321_input {
  4732. border-width:0px;
  4733. position:absolute;
  4734. left:0px;
  4735. top:0px;
  4736. width:0px;
  4737. height:0px;
  4738. opacity:0;
  4739. }
  4740. #u34322 label {
  4741. left:0px;
  4742. width:100%;
  4743. }
  4744. #u34322_img {
  4745. border-width:0px;
  4746. position:absolute;
  4747. left:0px;
  4748. top:3px;
  4749. width:12px;
  4750. height:12px;
  4751. }
  4752. #u34322 {
  4753. border-width:0px;
  4754. position:absolute;
  4755. left:1376px;
  4756. top:980px;
  4757. width:100px;
  4758. height:18px;
  4759. display:flex;
  4760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. }
  4764. #u34322 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:0px 2px 0px 2px;
  4768. box-sizing:border-box;
  4769. }
  4770. #u34322_img.selected {
  4771. }
  4772. #u34322.selected {
  4773. }
  4774. #u34322_img.disabled {
  4775. }
  4776. #u34322.disabled {
  4777. }
  4778. #u34322_img.selectedDisabled {
  4779. }
  4780. #u34322.selectedDisabled {
  4781. }
  4782. #u34322_text {
  4783. border-width:0px;
  4784. position:absolute;
  4785. left:14px;
  4786. top:0px;
  4787. width:84px;
  4788. word-wrap:break-word;
  4789. text-transform:none;
  4790. }
  4791. #u34322_input {
  4792. border-width:0px;
  4793. position:absolute;
  4794. left:0px;
  4795. top:0px;
  4796. width:0px;
  4797. height:0px;
  4798. opacity:0;
  4799. }
  4800. #u34323 label {
  4801. left:0px;
  4802. width:100%;
  4803. }
  4804. #u34323_img {
  4805. border-width:0px;
  4806. position:absolute;
  4807. left:0px;
  4808. top:3px;
  4809. width:12px;
  4810. height:12px;
  4811. }
  4812. #u34323 {
  4813. border-width:0px;
  4814. position:absolute;
  4815. left:1476px;
  4816. top:980px;
  4817. width:100px;
  4818. height:18px;
  4819. display:flex;
  4820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4821. font-weight:400;
  4822. font-style:normal;
  4823. }
  4824. #u34323 .text {
  4825. position:absolute;
  4826. align-self:center;
  4827. padding:0px 2px 0px 2px;
  4828. box-sizing:border-box;
  4829. }
  4830. #u34323_img.selected {
  4831. }
  4832. #u34323.selected {
  4833. }
  4834. #u34323_img.disabled {
  4835. }
  4836. #u34323.disabled {
  4837. }
  4838. #u34323_img.selectedDisabled {
  4839. }
  4840. #u34323.selectedDisabled {
  4841. }
  4842. #u34323_text {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:14px;
  4846. top:0px;
  4847. width:84px;
  4848. word-wrap:break-word;
  4849. text-transform:none;
  4850. }
  4851. #u34323_input {
  4852. border-width:0px;
  4853. position:absolute;
  4854. left:0px;
  4855. top:0px;
  4856. width:0px;
  4857. height:0px;
  4858. opacity:0;
  4859. }
  4860. #u34324 {
  4861. border-width:0px;
  4862. position:absolute;
  4863. left:0px;
  4864. top:0px;
  4865. width:0px;
  4866. height:0px;
  4867. }
  4868. #u34325 {
  4869. border-width:0px;
  4870. position:absolute;
  4871. left:0px;
  4872. top:0px;
  4873. width:0px;
  4874. height:0px;
  4875. }
  4876. #u34326_div {
  4877. border-width:0px;
  4878. position:absolute;
  4879. left:0px;
  4880. top:0px;
  4881. width:100px;
  4882. height:30px;
  4883. background:inherit;
  4884. background-color:rgba(255, 255, 255, 1);
  4885. box-sizing:border-box;
  4886. border-width:1px;
  4887. border-style:solid;
  4888. border-color:rgba(201, 201, 201, 1);
  4889. border-radius:4px;
  4890. -moz-box-shadow:none;
  4891. -webkit-box-shadow:none;
  4892. box-shadow:none;
  4893. font-family:'Helvetica', sans-serif;
  4894. font-weight:400;
  4895. font-style:normal;
  4896. font-size:10px;
  4897. color:#CCCCCC;
  4898. text-align:right;
  4899. }
  4900. #u34326 {
  4901. border-width:0px;
  4902. position:absolute;
  4903. left:1374px;
  4904. top:878px;
  4905. width:100px;
  4906. height:30px;
  4907. display:flex;
  4908. font-family:'Helvetica', sans-serif;
  4909. font-weight:400;
  4910. font-style:normal;
  4911. font-size:10px;
  4912. color:#CCCCCC;
  4913. text-align:right;
  4914. }
  4915. #u34326 .text {
  4916. position:absolute;
  4917. align-self:center;
  4918. padding:2px 8px 2px 8px;
  4919. box-sizing:border-box;
  4920. width:100%;
  4921. }
  4922. #u34326_text {
  4923. border-width:0px;
  4924. word-wrap:break-word;
  4925. text-transform:none;
  4926. visibility:hidden;
  4927. }
  4928. #u34327_input {
  4929. position:absolute;
  4930. left:0px;
  4931. top:0px;
  4932. width:88px;
  4933. height:26px;
  4934. padding:2px 2px 2px 2px;
  4935. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4936. font-weight:400;
  4937. font-style:normal;
  4938. font-size:14px;
  4939. letter-spacing:normal;
  4940. color:#000000;
  4941. vertical-align:none;
  4942. text-align:left;
  4943. text-transform:none;
  4944. background-color:transparent;
  4945. border-color:transparent;
  4946. }
  4947. #u34327_input.disabled {
  4948. position:absolute;
  4949. left:0px;
  4950. top:0px;
  4951. width:88px;
  4952. height:26px;
  4953. padding:2px 2px 2px 2px;
  4954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4955. font-weight:400;
  4956. font-style:normal;
  4957. font-size:14px;
  4958. letter-spacing:normal;
  4959. color:#000000;
  4960. vertical-align:none;
  4961. text-align:left;
  4962. text-transform:none;
  4963. background-color:transparent;
  4964. border-color:transparent;
  4965. }
  4966. #u34327_div {
  4967. border-width:0px;
  4968. position:absolute;
  4969. left:0px;
  4970. top:0px;
  4971. width:88px;
  4972. height:26px;
  4973. background:inherit;
  4974. background-color:rgba(255, 255, 255, 1);
  4975. border:none;
  4976. border-radius:0px;
  4977. -moz-box-shadow:none;
  4978. -webkit-box-shadow:none;
  4979. box-shadow:none;
  4980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4981. font-weight:400;
  4982. font-style:normal;
  4983. font-size:14px;
  4984. }
  4985. #u34327 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:1377px;
  4989. top:879px;
  4990. width:88px;
  4991. height:26px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:14px;
  4997. }
  4998. #u34327 .text {
  4999. position:absolute;
  5000. align-self:center;
  5001. padding:2px 2px 2px 2px;
  5002. box-sizing:border-box;
  5003. width:100%;
  5004. }
  5005. #u34327_div.disabled {
  5006. border-width:0px;
  5007. position:absolute;
  5008. left:0px;
  5009. top:0px;
  5010. width:88px;
  5011. height:26px;
  5012. background:inherit;
  5013. background-color:rgba(240, 240, 240, 1);
  5014. border:none;
  5015. border-radius:0px;
  5016. -moz-box-shadow:none;
  5017. -webkit-box-shadow:none;
  5018. box-shadow:none;
  5019. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5020. font-weight:400;
  5021. font-style:normal;
  5022. font-size:14px;
  5023. }
  5024. #u34327.disabled {
  5025. }
  5026. #u34328 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:0px;
  5030. top:0px;
  5031. width:0px;
  5032. height:0px;
  5033. }
  5034. #u34329_div {
  5035. border-width:0px;
  5036. position:absolute;
  5037. left:0px;
  5038. top:0px;
  5039. width:100px;
  5040. height:30px;
  5041. background:inherit;
  5042. background-color:rgba(255, 255, 255, 1);
  5043. box-sizing:border-box;
  5044. border-width:1px;
  5045. border-style:solid;
  5046. border-color:rgba(201, 201, 201, 1);
  5047. border-radius:4px;
  5048. -moz-box-shadow:none;
  5049. -webkit-box-shadow:none;
  5050. box-shadow:none;
  5051. font-family:'Helvetica', sans-serif;
  5052. font-weight:400;
  5053. font-style:normal;
  5054. font-size:10px;
  5055. color:#CCCCCC;
  5056. text-align:right;
  5057. }
  5058. #u34329 {
  5059. border-width:0px;
  5060. position:absolute;
  5061. left:1493px;
  5062. top:878px;
  5063. width:100px;
  5064. height:30px;
  5065. display:flex;
  5066. font-family:'Helvetica', sans-serif;
  5067. font-weight:400;
  5068. font-style:normal;
  5069. font-size:10px;
  5070. color:#CCCCCC;
  5071. text-align:right;
  5072. }
  5073. #u34329 .text {
  5074. position:absolute;
  5075. align-self:center;
  5076. padding:2px 8px 2px 8px;
  5077. box-sizing:border-box;
  5078. width:100%;
  5079. }
  5080. #u34329_text {
  5081. border-width:0px;
  5082. word-wrap:break-word;
  5083. text-transform:none;
  5084. visibility:hidden;
  5085. }
  5086. #u34330_input {
  5087. position:absolute;
  5088. left:0px;
  5089. top:0px;
  5090. width:88px;
  5091. height:26px;
  5092. padding:2px 2px 2px 2px;
  5093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5094. font-weight:400;
  5095. font-style:normal;
  5096. font-size:14px;
  5097. letter-spacing:normal;
  5098. color:#000000;
  5099. vertical-align:none;
  5100. text-align:left;
  5101. text-transform:none;
  5102. background-color:transparent;
  5103. border-color:transparent;
  5104. }
  5105. #u34330_input.disabled {
  5106. position:absolute;
  5107. left:0px;
  5108. top:0px;
  5109. width:88px;
  5110. height:26px;
  5111. padding:2px 2px 2px 2px;
  5112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5113. font-weight:400;
  5114. font-style:normal;
  5115. font-size:14px;
  5116. letter-spacing:normal;
  5117. color:#000000;
  5118. vertical-align:none;
  5119. text-align:left;
  5120. text-transform:none;
  5121. background-color:transparent;
  5122. border-color:transparent;
  5123. }
  5124. #u34330_div {
  5125. border-width:0px;
  5126. position:absolute;
  5127. left:0px;
  5128. top:0px;
  5129. width:88px;
  5130. height:26px;
  5131. background:inherit;
  5132. background-color:rgba(255, 255, 255, 1);
  5133. border:none;
  5134. border-radius:0px;
  5135. -moz-box-shadow:none;
  5136. -webkit-box-shadow:none;
  5137. box-shadow:none;
  5138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5139. font-weight:400;
  5140. font-style:normal;
  5141. font-size:14px;
  5142. }
  5143. #u34330 {
  5144. border-width:0px;
  5145. position:absolute;
  5146. left:1496px;
  5147. top:879px;
  5148. width:88px;
  5149. height:26px;
  5150. display:flex;
  5151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5152. font-weight:400;
  5153. font-style:normal;
  5154. font-size:14px;
  5155. }
  5156. #u34330 .text {
  5157. position:absolute;
  5158. align-self:center;
  5159. padding:2px 2px 2px 2px;
  5160. box-sizing:border-box;
  5161. width:100%;
  5162. }
  5163. #u34330_div.disabled {
  5164. border-width:0px;
  5165. position:absolute;
  5166. left:0px;
  5167. top:0px;
  5168. width:88px;
  5169. height:26px;
  5170. background:inherit;
  5171. background-color:rgba(240, 240, 240, 1);
  5172. border:none;
  5173. border-radius:0px;
  5174. -moz-box-shadow:none;
  5175. -webkit-box-shadow:none;
  5176. box-shadow:none;
  5177. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5178. font-weight:400;
  5179. font-style:normal;
  5180. font-size:14px;
  5181. }
  5182. #u34330.disabled {
  5183. }
  5184. #u34331_div {
  5185. border-width:0px;
  5186. position:absolute;
  5187. left:0px;
  5188. top:0px;
  5189. width:23px;
  5190. height:27px;
  5191. background:inherit;
  5192. background-color:rgba(255, 255, 255, 0);
  5193. border:none;
  5194. border-top:0px;
  5195. border-right:0px;
  5196. border-bottom:0px;
  5197. border-radius:0px;
  5198. border-top-left-radius:0px;
  5199. border-bottom-left-radius:0px;
  5200. -moz-box-shadow:none;
  5201. -webkit-box-shadow:none;
  5202. box-shadow:none;
  5203. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5204. font-weight:400;
  5205. font-style:normal;
  5206. font-size:12px;
  5207. }
  5208. #u34331 {
  5209. border-width:0px;
  5210. position:absolute;
  5211. left:1474px;
  5212. top:880px;
  5213. width:23px;
  5214. height:27px;
  5215. display:flex;
  5216. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5217. font-weight:400;
  5218. font-style:normal;
  5219. font-size:12px;
  5220. }
  5221. #u34331 .text {
  5222. position:absolute;
  5223. align-self:center;
  5224. padding:5px 10px 5px 0px;
  5225. box-sizing:border-box;
  5226. width:100%;
  5227. }
  5228. #u34331_text {
  5229. border-width:0px;
  5230. white-space:nowrap;
  5231. text-transform:none;
  5232. }
  5233. #u34332 {
  5234. border-width:0px;
  5235. position:absolute;
  5236. left:0px;
  5237. top:0px;
  5238. width:0px;
  5239. height:0px;
  5240. }
  5241. #u34333_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:236px;
  5247. height:30px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 1);
  5250. box-sizing:border-box;
  5251. border-width:1px;
  5252. border-style:solid;
  5253. border-color:rgba(215, 215, 215, 1);
  5254. border-radius:4px;
  5255. -moz-box-shadow:none;
  5256. -webkit-box-shadow:none;
  5257. box-shadow:none;
  5258. font-size:11px;
  5259. }
  5260. #u34333 {
  5261. border-width:0px;
  5262. position:absolute;
  5263. left:1360px;
  5264. top:505px;
  5265. width:236px;
  5266. height:30px;
  5267. display:flex;
  5268. font-size:11px;
  5269. }
  5270. #u34333 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u34333_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u34334_input {
  5284. position:absolute;
  5285. left:0px;
  5286. top:0px;
  5287. width:224px;
  5288. height:23px;
  5289. padding:2px 2px 2px 2px;
  5290. font-family:'ArialMT', 'Arial', sans-serif;
  5291. font-weight:400;
  5292. font-style:normal;
  5293. font-size:12px;
  5294. letter-spacing:normal;
  5295. color:#AAAAAA;
  5296. vertical-align:none;
  5297. text-align:left;
  5298. text-transform:none;
  5299. background-color:transparent;
  5300. border-color:transparent;
  5301. }
  5302. #u34334_input.disabled {
  5303. position:absolute;
  5304. left:0px;
  5305. top:0px;
  5306. width:224px;
  5307. height:23px;
  5308. padding:2px 2px 2px 2px;
  5309. font-family:'ArialMT', 'Arial', sans-serif;
  5310. font-weight:400;
  5311. font-style:normal;
  5312. font-size:12px;
  5313. letter-spacing:normal;
  5314. color:#AAAAAA;
  5315. vertical-align:none;
  5316. text-align:left;
  5317. text-transform:none;
  5318. background-color:transparent;
  5319. border-color:transparent;
  5320. }
  5321. #u34334_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:224px;
  5327. height:23px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 1);
  5330. border:none;
  5331. border-radius:0px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-size:12px;
  5336. color:#AAAAAA;
  5337. }
  5338. #u34334 {
  5339. border-width:0px;
  5340. position:absolute;
  5341. left:1366px;
  5342. top:507px;
  5343. width:224px;
  5344. height:23px;
  5345. display:flex;
  5346. font-size:12px;
  5347. color:#AAAAAA;
  5348. }
  5349. #u34334 .text {
  5350. position:absolute;
  5351. align-self:flex-start;
  5352. padding:2px 2px 2px 2px;
  5353. box-sizing:border-box;
  5354. width:100%;
  5355. }
  5356. #u34334_div.disabled {
  5357. border-width:0px;
  5358. position:absolute;
  5359. left:0px;
  5360. top:0px;
  5361. width:224px;
  5362. height:23px;
  5363. background:inherit;
  5364. background-color:rgba(240, 240, 240, 1);
  5365. border:none;
  5366. border-radius:0px;
  5367. -moz-box-shadow:none;
  5368. -webkit-box-shadow:none;
  5369. box-shadow:none;
  5370. font-size:12px;
  5371. color:#AAAAAA;
  5372. }
  5373. #u34334.disabled {
  5374. }
  5375. .u34334_input_option {
  5376. font-size:12px;
  5377. }
  5378. #u34335 {
  5379. border-width:0px;
  5380. position:absolute;
  5381. left:0px;
  5382. top:0px;
  5383. width:0px;
  5384. height:0px;
  5385. }
  5386. #u34336_div {
  5387. border-width:0px;
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:236px;
  5392. height:30px;
  5393. background:inherit;
  5394. background-color:rgba(255, 255, 255, 1);
  5395. box-sizing:border-box;
  5396. border-width:1px;
  5397. border-style:solid;
  5398. border-color:rgba(201, 201, 201, 1);
  5399. border-radius:4px;
  5400. -moz-box-shadow:none;
  5401. -webkit-box-shadow:none;
  5402. box-shadow:none;
  5403. font-family:'Helvetica', sans-serif;
  5404. font-weight:400;
  5405. font-style:normal;
  5406. font-size:12px;
  5407. color:#AAAAAA;
  5408. text-align:right;
  5409. }
  5410. #u34336 {
  5411. border-width:0px;
  5412. position:absolute;
  5413. left:1360px;
  5414. top:540px;
  5415. width:236px;
  5416. height:30px;
  5417. display:flex;
  5418. font-family:'Helvetica', sans-serif;
  5419. font-weight:400;
  5420. font-style:normal;
  5421. font-size:12px;
  5422. color:#AAAAAA;
  5423. text-align:right;
  5424. }
  5425. #u34336 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 8px 2px 8px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u34336_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u34337_input {
  5439. position:absolute;
  5440. left:0px;
  5441. top:0px;
  5442. width:207px;
  5443. height:28px;
  5444. padding:2px 2px 2px 2px;
  5445. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5446. font-weight:400;
  5447. font-style:normal;
  5448. font-size:12px;
  5449. letter-spacing:normal;
  5450. color:#AAAAAA;
  5451. vertical-align:none;
  5452. text-align:left;
  5453. text-transform:none;
  5454. background-color:transparent;
  5455. border-color:transparent;
  5456. }
  5457. #u34337_input.disabled {
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:207px;
  5462. height:28px;
  5463. padding:2px 2px 2px 2px;
  5464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5465. font-weight:400;
  5466. font-style:normal;
  5467. font-size:12px;
  5468. letter-spacing:normal;
  5469. color:#AAAAAA;
  5470. vertical-align:none;
  5471. text-align:left;
  5472. text-transform:none;
  5473. background-color:transparent;
  5474. border-color:transparent;
  5475. }
  5476. #u34337_div {
  5477. border-width:0px;
  5478. position:absolute;
  5479. left:0px;
  5480. top:0px;
  5481. width:207px;
  5482. height:28px;
  5483. background:inherit;
  5484. background-color:rgba(255, 255, 255, 1);
  5485. border:none;
  5486. border-radius:0px;
  5487. -moz-box-shadow:none;
  5488. -webkit-box-shadow:none;
  5489. box-shadow:none;
  5490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5491. font-weight:400;
  5492. font-style:normal;
  5493. font-size:12px;
  5494. color:#AAAAAA;
  5495. }
  5496. #u34337 {
  5497. border-width:0px;
  5498. position:absolute;
  5499. left:1366px;
  5500. top:541px;
  5501. width:207px;
  5502. height:28px;
  5503. display:flex;
  5504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5505. font-weight:400;
  5506. font-style:normal;
  5507. font-size:12px;
  5508. color:#AAAAAA;
  5509. }
  5510. #u34337 .text {
  5511. position:absolute;
  5512. align-self:center;
  5513. padding:2px 2px 2px 2px;
  5514. box-sizing:border-box;
  5515. width:100%;
  5516. }
  5517. #u34337_div.disabled {
  5518. border-width:0px;
  5519. position:absolute;
  5520. left:0px;
  5521. top:0px;
  5522. width:207px;
  5523. height:28px;
  5524. background:inherit;
  5525. background-color:rgba(240, 240, 240, 1);
  5526. border:none;
  5527. border-radius:0px;
  5528. -moz-box-shadow:none;
  5529. -webkit-box-shadow:none;
  5530. box-shadow:none;
  5531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5532. font-weight:400;
  5533. font-style:normal;
  5534. font-size:12px;
  5535. color:#AAAAAA;
  5536. }
  5537. #u34337.disabled {
  5538. }