styles.css 116 KB

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