styles.css 111 KB

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