styles.css 104 KB

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