styles.css 197 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494949594969497949894999500950195029503950495059506950795089509951095119512951395149515951695179518951995209521952295239524952595269527952895299530953195329533953495359536953795389539954095419542954395449545954695479548954995509551955295539554955595569557955895599560956195629563956495659566956795689569957095719572957395749575957695779578957995809581958295839584958595869587958895899590959195929593959495959596959795989599960096019602960396049605960696079608960996109611961296139614961596169617961896199620962196229623962496259626962796289629963096319632963396349635963696379638963996409641964296439644964596469647964896499650965196529653965496559656965796589659966096619662966396649665966696679668966996709671967296739674967596769677967896799680968196829683968496859686968796889689969096919692969396949695969696979698969997009701970297039704970597069707970897099710971197129713971497159716971797189719972097219722972397249725972697279728972997309731973297339734973597369737973897399740974197429743974497459746974797489749975097519752975397549755975697579758975997609761976297639764976597669767976897699770977197729773977497759776977797789779978097819782978397849785978697879788978997909791979297939794979597969797979897999800980198029803980498059806980798089809981098119812981398149815981698179818981998209821982298239824982598269827982898299830983198329833983498359836983798389839984098419842984398449845984698479848984998509851985298539854985598569857985898599860986198629863986498659866986798689869987098719872987398749875987698779878987998809881988298839884988598869887988898899890989198929893989498959896989798989899990099019902990399049905990699079908990999109911991299139914991599169917991899199920992199229923992499259926992799289929993099319932993399349935993699379938993999409941994299439944994599469947994899499950995199529953995499559956995799589959996099619962996399649965996699679968996999709971997299739974997599769977997899799980998199829983998499859986998799889989999099919992999399949995999699979998999910000100011000210003100041000510006100071000810009100101001110012100131001410015100161001710018100191002010021100221002310024100251002610027100281002910030100311003210033100341003510036100371003810039100401004110042100431004410045100461004710048100491005010051100521005310054100551005610057100581005910060100611006210063100641006510066100671006810069100701007110072100731007410075100761007710078100791008010081100821008310084100851008610087100881008910090100911009210093100941009510096100971009810099101001010110102101031010410105101061010710108101091011010111101121011310114101151011610117101181011910120101211012210123101241012510126101271012810129101301013110132101331013410135101361013710138101391014010141101421014310144101451014610147101481014910150101511015210153101541015510156101571015810159101601016110162101631016410165101661016710168101691017010171101721017310174101751017610177101781017910180101811018210183101841018510186101871018810189101901019110192101931019410195101961019710198101991020010201102021020310204102051020610207102081020910210102111021210213102141021510216102171021810219102201022110222102231022410225102261022710228102291023010231102321023310234102351023610237102381023910240102411024210243102441024510246102471024810249102501025110252102531025410255102561025710258102591026010261102621026310264102651026610267102681026910270102711027210273102741027510276102771027810279102801028110282102831028410285102861028710288102891029010291102921029310294102951029610297102981029910300103011030210303103041030510306103071030810309103101031110312103131031410315103161031710318103191032010321103221032310324103251032610327103281032910330103311033210333103341033510336103371033810339103401034110342103431034410345103461034710348103491035010351103521035310354103551035610357103581035910360103611036210363103641036510366103671036810369103701037110372103731037410375103761037710378103791038010381103821038310384103851038610387103881038910390103911039210393103941039510396103971039810399104001040110402104031040410405104061040710408104091041010411104121041310414104151041610417104181041910420104211042210423104241042510426104271042810429104301043110432104331043410435104361043710438104391044010441104421044310444104451044610447104481044910450104511045210453104541045510456104571045810459104601046110462104631046410465104661046710468104691047010471104721047310474104751047610477104781047910480104811048210483104841048510486104871048810489104901049110492104931049410495104961049710498104991050010501105021050310504105051050610507105081050910510105111051210513105141051510516105171051810519105201052110522105231052410525105261052710528105291053010531105321053310534105351053610537105381053910540105411054210543105441054510546105471054810549105501055110552105531055410555105561055710558105591056010561105621056310564105651056610567105681056910570105711057210573105741057510576105771057810579105801058110582105831058410585105861058710588105891059010591105921059310594105951059610597105981059910600106011060210603106041060510606106071060810609106101061110612106131061410615106161061710618106191062010621106221062310624106251062610627106281062910630106311063210633106341063510636106371063810639106401064110642106431064410645106461064710648106491065010651106521065310654106551065610657106581065910660106611066210663106641066510666106671066810669106701067110672106731067410675106761067710678106791068010681106821068310684106851068610687106881068910690106911069210693106941069510696106971069810699107001070110702107031070410705107061070710708107091071010711107121071310714107151071610717107181071910720107211072210723107241072510726107271072810729107301073110732107331073410735107361073710738107391074010741107421074310744107451074610747107481074910750107511075210753107541075510756107571075810759107601076110762107631076410765107661076710768107691077010771107721077310774107751077610777107781077910780107811078210783107841078510786107871078810789107901079110792107931079410795
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3469px;
  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. #u71809_div {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1480px;
  25. height:1200px;
  26. background:inherit;
  27. background-color:rgba(242, 242, 242, 1);
  28. border:none;
  29. border-radius:0px;
  30. -moz-box-shadow:none;
  31. -webkit-box-shadow:none;
  32. box-shadow:none;
  33. }
  34. #u71809 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u71809 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u71809_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u71810_div {
  57. border-width:0px;
  58. position:absolute;
  59. left:0px;
  60. top:0px;
  61. width:129px;
  62. height:22px;
  63. background:inherit;
  64. background-color:rgba(255, 255, 255, 0);
  65. border:none;
  66. border-radius:0px;
  67. -moz-box-shadow:none;
  68. -webkit-box-shadow:none;
  69. box-shadow:none;
  70. font-size:16px;
  71. color:#FFFFFF;
  72. }
  73. #u71810 {
  74. border-width:0px;
  75. position:absolute;
  76. left:49px;
  77. top:14px;
  78. width:129px;
  79. height:22px;
  80. display:flex;
  81. font-size:16px;
  82. color:#FFFFFF;
  83. }
  84. #u71810 .text {
  85. position:absolute;
  86. align-self:flex-start;
  87. padding:0px 0px 0px 0px;
  88. box-sizing:border-box;
  89. width:100%;
  90. }
  91. #u71810_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u71811_div {
  97. border-width:0px;
  98. position:absolute;
  99. left:0px;
  100. top:0px;
  101. width:1600px;
  102. height:50px;
  103. background:inherit;
  104. background-color:rgba(30, 42, 68, 1);
  105. border:none;
  106. border-radius:0px;
  107. -moz-box-shadow:none;
  108. -webkit-box-shadow:none;
  109. box-shadow:none;
  110. color:#AFB3B6;
  111. }
  112. #u71811 {
  113. border-width:0px;
  114. position:absolute;
  115. left:0px;
  116. top:0px;
  117. width:1600px;
  118. height:50px;
  119. display:flex;
  120. color:#AFB3B6;
  121. }
  122. #u71811 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u71811_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u71812 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u71813_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u71813 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u71813 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u71813_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u71814_div {
  173. border-width:0px;
  174. position:absolute;
  175. left:0px;
  176. top:0px;
  177. width:161px;
  178. height:22px;
  179. background:inherit;
  180. background-color:rgba(255, 255, 255, 0);
  181. border:none;
  182. border-radius:0px;
  183. -moz-box-shadow:none;
  184. -webkit-box-shadow:none;
  185. box-shadow:none;
  186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  187. font-weight:400;
  188. font-style:normal;
  189. font-size:16px;
  190. color:#FFFFFF;
  191. }
  192. #u71814 {
  193. border-width:0px;
  194. position:absolute;
  195. left:62px;
  196. top:14px;
  197. width:161px;
  198. height:22px;
  199. display:flex;
  200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  201. font-weight:400;
  202. font-style:normal;
  203. font-size:16px;
  204. color:#FFFFFF;
  205. }
  206. #u71814 .text {
  207. position:absolute;
  208. align-self:flex-start;
  209. padding:0px 0px 0px 0px;
  210. box-sizing:border-box;
  211. width:100%;
  212. }
  213. #u71814_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u71815_div {
  219. border-width:0px;
  220. position:absolute;
  221. left:0px;
  222. top:0px;
  223. width:120px;
  224. height:1200px;
  225. background:inherit;
  226. background-color:rgba(30, 42, 68, 1);
  227. border:none;
  228. border-radius:0px;
  229. -moz-box-shadow:none;
  230. -webkit-box-shadow:none;
  231. box-shadow:none;
  232. color:#AFB3B6;
  233. }
  234. #u71815 {
  235. border-width:0px;
  236. position:absolute;
  237. left:0px;
  238. top:47px;
  239. width:120px;
  240. height:1200px;
  241. display:flex;
  242. color:#AFB3B6;
  243. }
  244. #u71815 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u71815_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u71816 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u71817_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u71817_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u71817_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u71817 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u71817 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u71817_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u71817.disabled {
  356. }
  357. .u71817_input_option {
  358. font-size:14px;
  359. }
  360. #u71818_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u71818 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u71818 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u71818_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u71819_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u71819 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u71819 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u71819_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u71820_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u71820 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u71820 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u71820_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u71821 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u71822_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u71822 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u71822 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u71822_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u71823_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u71823 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u71823 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u71823_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u71824 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u71825_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u71825 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u71825 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u71825_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u71826_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u71826 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u71826 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u71826_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u71827 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u71828_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u71828 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u71828 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u71828_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u71829_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u71829 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u71829 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u71829_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u71830 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u71831_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u71831 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u71831 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u71831_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u71832_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u71832 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u71832 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u71832_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u71833 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u71834_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u71834 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u71834 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u71834_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u71835_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u71835 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u71835 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u71835_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u71836 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u71837_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u71837 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u71837 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u71837_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u71838_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u71838 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u71838 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u71838_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u71839 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u71840_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u71840 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u71840 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u71840_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u71841_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u71841 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u71841 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u71841_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u71842 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u71843_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u71843 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u71843 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u71843_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u71844_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u71844 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u71844 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u71844_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u71845 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u71846_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u71846 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u71846 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u71846_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u71847_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u71847 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u71847 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u71847_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u71848 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u71849_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u71849 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u71849 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u71849_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u71850_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u71850 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u71850 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u71850_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u71851_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u71851 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u71851 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u71851_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u71852_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u71852 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u71852 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u71852_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u71853_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u71853 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u71853 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u71853_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u71854_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u71854 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u71854 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u71854_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u71855 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u71856_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u71856 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u71856 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u71856_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u71857_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u71857 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u71857 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u71857_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u71858 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u71859_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u71859 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u71859 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u71859_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u71860_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u71860 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u71860 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u71860_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u71861_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:1191px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1650. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1651. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  1652. }
  1653. #u71861 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:1191px;
  1660. display:flex;
  1661. }
  1662. #u71861 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u71861_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u71862_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:300px;
  1681. height:1106px;
  1682. background:inherit;
  1683. background-color:rgba(240, 242, 245, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. }
  1690. #u71862 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:51px;
  1695. width:300px;
  1696. height:1106px;
  1697. display:flex;
  1698. }
  1699. #u71862 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u71862_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u71863_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:73px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(255, 255, 255, 0);
  1721. border:none;
  1722. border-left:0px;
  1723. border-top:0px;
  1724. border-right:0px;
  1725. border-radius:0px;
  1726. border-bottom-right-radius:0px;
  1727. border-bottom-left-radius:0px;
  1728. -moz-box-shadow:none;
  1729. -webkit-box-shadow:none;
  1730. box-shadow:none;
  1731. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1732. font-weight:500;
  1733. font-style:normal;
  1734. font-size:18px;
  1735. line-height:40px;
  1736. }
  1737. #u71863 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:354px;
  1741. top:65px;
  1742. width:73px;
  1743. height:50px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1746. font-weight:500;
  1747. font-style:normal;
  1748. font-size:18px;
  1749. line-height:40px;
  1750. }
  1751. #u71863 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:5px 0px 5px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u71863_text {
  1759. border-width:0px;
  1760. white-space:nowrap;
  1761. text-transform:none;
  1762. }
  1763. #u71864 {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:0px;
  1769. height:0px;
  1770. }
  1771. #u71865_div {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:0px;
  1775. top:0px;
  1776. width:260px;
  1777. height:40px;
  1778. background:inherit;
  1779. background-color:rgba(255, 255, 255, 1);
  1780. box-sizing:border-box;
  1781. border-width:1px;
  1782. border-style:solid;
  1783. border-color:rgba(242, 242, 242, 1);
  1784. border-radius:4px;
  1785. -moz-box-shadow:none;
  1786. -webkit-box-shadow:none;
  1787. box-shadow:none;
  1788. font-family:'Microsoft YaHei', sans-serif;
  1789. font-weight:400;
  1790. font-style:normal;
  1791. font-size:14px;
  1792. color:#CCCCCC;
  1793. text-align:left;
  1794. }
  1795. #u71865 {
  1796. border-width:0px;
  1797. position:absolute;
  1798. left:350px;
  1799. top:128px;
  1800. width:260px;
  1801. height:40px;
  1802. display:flex;
  1803. font-family:'Microsoft YaHei', sans-serif;
  1804. font-weight:400;
  1805. font-style:normal;
  1806. font-size:14px;
  1807. color:#CCCCCC;
  1808. text-align:left;
  1809. }
  1810. #u71865 .text {
  1811. position:absolute;
  1812. align-self:center;
  1813. padding:2px 8px 2px 8px;
  1814. box-sizing:border-box;
  1815. width:100%;
  1816. }
  1817. #u71865_text {
  1818. border-width:0px;
  1819. word-wrap:break-word;
  1820. text-transform:none;
  1821. visibility:hidden;
  1822. }
  1823. #u71866_input {
  1824. position:absolute;
  1825. left:0px;
  1826. top:0px;
  1827. width:217px;
  1828. height:33px;
  1829. padding:2px 2px 2px 2px;
  1830. font-family:'Microsoft YaHei', sans-serif;
  1831. font-weight:400;
  1832. font-style:normal;
  1833. font-size:14px;
  1834. letter-spacing:normal;
  1835. color:#000000;
  1836. vertical-align:none;
  1837. text-align:left;
  1838. text-transform:none;
  1839. background-color:transparent;
  1840. border-color:transparent;
  1841. }
  1842. #u71866_input.disabled {
  1843. position:absolute;
  1844. left:0px;
  1845. top:0px;
  1846. width:217px;
  1847. height:33px;
  1848. padding:2px 2px 2px 2px;
  1849. font-family:'Microsoft YaHei', sans-serif;
  1850. font-weight:400;
  1851. font-style:normal;
  1852. font-size:14px;
  1853. letter-spacing:normal;
  1854. color:#000000;
  1855. vertical-align:none;
  1856. text-align:left;
  1857. text-transform:none;
  1858. background-color:transparent;
  1859. border-color:transparent;
  1860. }
  1861. #u71866_div {
  1862. border-width:0px;
  1863. position:absolute;
  1864. left:0px;
  1865. top:0px;
  1866. width:217px;
  1867. height:33px;
  1868. background:inherit;
  1869. background-color:rgba(255, 255, 255, 1);
  1870. border:none;
  1871. border-radius:0px;
  1872. -moz-box-shadow:none;
  1873. -webkit-box-shadow:none;
  1874. box-shadow:none;
  1875. font-family:'Microsoft YaHei', sans-serif;
  1876. font-weight:400;
  1877. font-style:normal;
  1878. font-size:14px;
  1879. }
  1880. #u71866 {
  1881. border-width:0px;
  1882. position:absolute;
  1883. left:358px;
  1884. top:129px;
  1885. width:217px;
  1886. height:33px;
  1887. display:flex;
  1888. font-family:'Microsoft YaHei', sans-serif;
  1889. font-weight:400;
  1890. font-style:normal;
  1891. font-size:14px;
  1892. }
  1893. #u71866 .text {
  1894. position:absolute;
  1895. align-self:center;
  1896. padding:2px 2px 2px 2px;
  1897. box-sizing:border-box;
  1898. width:100%;
  1899. }
  1900. #u71866_div.disabled {
  1901. border-width:0px;
  1902. position:absolute;
  1903. left:0px;
  1904. top:0px;
  1905. width:217px;
  1906. height:33px;
  1907. background:inherit;
  1908. background-color:rgba(240, 240, 240, 1);
  1909. border:none;
  1910. border-radius:0px;
  1911. -moz-box-shadow:none;
  1912. -webkit-box-shadow:none;
  1913. box-shadow:none;
  1914. font-family:'Microsoft YaHei', sans-serif;
  1915. font-weight:400;
  1916. font-style:normal;
  1917. font-size:14px;
  1918. }
  1919. #u71866.disabled {
  1920. }
  1921. #u71867_img {
  1922. border-width:0px;
  1923. position:absolute;
  1924. left:0px;
  1925. top:0px;
  1926. width:14px;
  1927. height:14px;
  1928. }
  1929. #u71867 {
  1930. border-width:0px;
  1931. position:absolute;
  1932. left:582px;
  1933. top:140px;
  1934. width:14px;
  1935. height:14px;
  1936. display:flex;
  1937. }
  1938. #u71867 .text {
  1939. position:absolute;
  1940. align-self:center;
  1941. padding:2px 2px 2px 2px;
  1942. box-sizing:border-box;
  1943. width:100%;
  1944. }
  1945. #u71867_text {
  1946. border-width:0px;
  1947. word-wrap:break-word;
  1948. text-transform:none;
  1949. visibility:hidden;
  1950. }
  1951. #u71868 {
  1952. border-width:0px;
  1953. position:absolute;
  1954. left:0px;
  1955. top:0px;
  1956. width:0px;
  1957. height:0px;
  1958. }
  1959. #u71869_div {
  1960. border-width:0px;
  1961. position:absolute;
  1962. left:0px;
  1963. top:0px;
  1964. width:260px;
  1965. height:60px;
  1966. background:inherit;
  1967. background-color:rgba(0, 153, 255, 0.0980392156862745);
  1968. border:none;
  1969. border-radius:4px;
  1970. -moz-box-shadow:none;
  1971. -webkit-box-shadow:none;
  1972. box-shadow:none;
  1973. font-family:'Microsoft YaHei', sans-serif;
  1974. font-weight:400;
  1975. font-style:normal;
  1976. font-size:14px;
  1977. color:#CCCCCC;
  1978. text-align:left;
  1979. }
  1980. #u71869 {
  1981. border-width:0px;
  1982. position:absolute;
  1983. left:350px;
  1984. top:178px;
  1985. width:260px;
  1986. height:60px;
  1987. display:flex;
  1988. font-family:'Microsoft YaHei', sans-serif;
  1989. font-weight:400;
  1990. font-style:normal;
  1991. font-size:14px;
  1992. color:#CCCCCC;
  1993. text-align:left;
  1994. }
  1995. #u71869 .text {
  1996. position:absolute;
  1997. align-self:center;
  1998. padding:2px 8px 2px 8px;
  1999. box-sizing:border-box;
  2000. width:100%;
  2001. }
  2002. #u71869_text {
  2003. border-width:0px;
  2004. word-wrap:break-word;
  2005. text-transform:none;
  2006. visibility:hidden;
  2007. }
  2008. #u71870_div {
  2009. border-width:0px;
  2010. position:absolute;
  2011. left:0px;
  2012. top:0px;
  2013. width:19px;
  2014. height:18px;
  2015. background:inherit;
  2016. background-color:rgba(51, 51, 51, 1);
  2017. border:none;
  2018. border-radius:8px;
  2019. -moz-box-shadow:none;
  2020. -webkit-box-shadow:none;
  2021. box-shadow:none;
  2022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2023. font-weight:400;
  2024. font-style:normal;
  2025. font-size:10px;
  2026. color:#FFFFFF;
  2027. }
  2028. #u71870 {
  2029. border-width:0px;
  2030. position:absolute;
  2031. left:365px;
  2032. top:200px;
  2033. width:19px;
  2034. height:18px;
  2035. display:flex;
  2036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2037. font-weight:400;
  2038. font-style:normal;
  2039. font-size:10px;
  2040. color:#FFFFFF;
  2041. }
  2042. #u71870 .text {
  2043. position:absolute;
  2044. align-self:center;
  2045. padding:0px 0px 0px 0px;
  2046. box-sizing:border-box;
  2047. width:100%;
  2048. }
  2049. #u71870_text {
  2050. border-width:0px;
  2051. word-wrap:break-word;
  2052. text-transform:none;
  2053. }
  2054. #u71871_div {
  2055. border-width:0px;
  2056. position:absolute;
  2057. left:0px;
  2058. top:0px;
  2059. width:155px;
  2060. height:20px;
  2061. background:inherit;
  2062. background-color:rgba(51, 51, 51, 0);
  2063. border:none;
  2064. border-radius:4px;
  2065. -moz-box-shadow:none;
  2066. -webkit-box-shadow:none;
  2067. box-shadow:none;
  2068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2069. font-weight:400;
  2070. font-style:normal;
  2071. font-size:14px;
  2072. text-align:left;
  2073. }
  2074. #u71871 {
  2075. border-width:0px;
  2076. position:absolute;
  2077. left:391px;
  2078. top:201px;
  2079. width:155px;
  2080. height:20px;
  2081. display:flex;
  2082. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2083. font-weight:400;
  2084. font-style:normal;
  2085. font-size:14px;
  2086. text-align:left;
  2087. }
  2088. #u71871 .text {
  2089. position:absolute;
  2090. align-self:center;
  2091. padding:0px 0px 0px 0px;
  2092. box-sizing:border-box;
  2093. width:100%;
  2094. }
  2095. #u71871_text {
  2096. border-width:0px;
  2097. white-space:nowrap;
  2098. text-transform:none;
  2099. }
  2100. #u71872 {
  2101. border-width:0px;
  2102. position:absolute;
  2103. left:0px;
  2104. top:0px;
  2105. width:0px;
  2106. height:0px;
  2107. }
  2108. #u71873_div {
  2109. border-width:0px;
  2110. position:absolute;
  2111. left:0px;
  2112. top:0px;
  2113. width:260px;
  2114. height:60px;
  2115. background:inherit;
  2116. background-color:rgba(242, 242, 242, 0);
  2117. border:none;
  2118. border-radius:4px;
  2119. -moz-box-shadow:none;
  2120. -webkit-box-shadow:none;
  2121. box-shadow:none;
  2122. font-family:'Microsoft YaHei', sans-serif;
  2123. font-weight:400;
  2124. font-style:normal;
  2125. font-size:14px;
  2126. color:#CCCCCC;
  2127. text-align:left;
  2128. }
  2129. #u71873 {
  2130. border-width:0px;
  2131. position:absolute;
  2132. left:350px;
  2133. top:238px;
  2134. width:260px;
  2135. height:60px;
  2136. display:flex;
  2137. font-family:'Microsoft YaHei', sans-serif;
  2138. font-weight:400;
  2139. font-style:normal;
  2140. font-size:14px;
  2141. color:#CCCCCC;
  2142. text-align:left;
  2143. }
  2144. #u71873 .text {
  2145. position:absolute;
  2146. align-self:center;
  2147. padding:2px 8px 2px 8px;
  2148. box-sizing:border-box;
  2149. width:100%;
  2150. }
  2151. #u71873_text {
  2152. border-width:0px;
  2153. word-wrap:break-word;
  2154. text-transform:none;
  2155. visibility:hidden;
  2156. }
  2157. #u71874_div {
  2158. border-width:0px;
  2159. position:absolute;
  2160. left:0px;
  2161. top:0px;
  2162. width:19px;
  2163. height:18px;
  2164. background:inherit;
  2165. background-color:rgba(51, 51, 51, 0);
  2166. box-sizing:border-box;
  2167. border-width:1px;
  2168. border-style:solid;
  2169. border-color:rgba(51, 51, 51, 1);
  2170. border-radius:8px;
  2171. -moz-box-shadow:none;
  2172. -webkit-box-shadow:none;
  2173. box-shadow:none;
  2174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2175. font-weight:400;
  2176. font-style:normal;
  2177. font-size:10px;
  2178. }
  2179. #u71874 {
  2180. border-width:0px;
  2181. position:absolute;
  2182. left:390px;
  2183. top:260px;
  2184. width:19px;
  2185. height:18px;
  2186. display:flex;
  2187. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2188. font-weight:400;
  2189. font-style:normal;
  2190. font-size:10px;
  2191. }
  2192. #u71874 .text {
  2193. position:absolute;
  2194. align-self:center;
  2195. padding:0px 0px 0px 0px;
  2196. box-sizing:border-box;
  2197. width:100%;
  2198. }
  2199. #u71874_text {
  2200. border-width:0px;
  2201. word-wrap:break-word;
  2202. text-transform:none;
  2203. }
  2204. #u71875_div {
  2205. border-width:0px;
  2206. position:absolute;
  2207. left:0px;
  2208. top:0px;
  2209. width:161px;
  2210. height:20px;
  2211. background:inherit;
  2212. background-color:rgba(51, 51, 51, 0);
  2213. border:none;
  2214. border-radius:4px;
  2215. -moz-box-shadow:none;
  2216. -webkit-box-shadow:none;
  2217. box-shadow:none;
  2218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2219. font-weight:400;
  2220. font-style:normal;
  2221. font-size:14px;
  2222. text-align:left;
  2223. }
  2224. #u71875 {
  2225. border-width:0px;
  2226. position:absolute;
  2227. left:415px;
  2228. top:261px;
  2229. width:161px;
  2230. height:20px;
  2231. display:flex;
  2232. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2233. font-weight:400;
  2234. font-style:normal;
  2235. font-size:14px;
  2236. text-align:left;
  2237. }
  2238. #u71875 .text {
  2239. position:absolute;
  2240. align-self:center;
  2241. padding:0px 0px 0px 0px;
  2242. box-sizing:border-box;
  2243. width:100%;
  2244. }
  2245. #u71875_text {
  2246. border-width:0px;
  2247. white-space:nowrap;
  2248. text-transform:none;
  2249. }
  2250. #u71876 {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:0px;
  2254. top:0px;
  2255. width:0px;
  2256. height:0px;
  2257. }
  2258. #u71877_div {
  2259. border-width:0px;
  2260. position:absolute;
  2261. left:0px;
  2262. top:0px;
  2263. width:260px;
  2264. height:60px;
  2265. background:inherit;
  2266. background-color:rgba(0, 153, 255, 0);
  2267. border:none;
  2268. border-radius:4px;
  2269. -moz-box-shadow:none;
  2270. -webkit-box-shadow:none;
  2271. box-shadow:none;
  2272. font-family:'Microsoft YaHei', sans-serif;
  2273. font-weight:400;
  2274. font-style:normal;
  2275. font-size:14px;
  2276. color:#CCCCCC;
  2277. text-align:left;
  2278. }
  2279. #u71877 {
  2280. border-width:0px;
  2281. position:absolute;
  2282. left:350px;
  2283. top:298px;
  2284. width:260px;
  2285. height:60px;
  2286. display:flex;
  2287. font-family:'Microsoft YaHei', sans-serif;
  2288. font-weight:400;
  2289. font-style:normal;
  2290. font-size:14px;
  2291. color:#CCCCCC;
  2292. text-align:left;
  2293. }
  2294. #u71877 .text {
  2295. position:absolute;
  2296. align-self:center;
  2297. padding:2px 8px 2px 8px;
  2298. box-sizing:border-box;
  2299. width:100%;
  2300. }
  2301. #u71877_text {
  2302. border-width:0px;
  2303. word-wrap:break-word;
  2304. text-transform:none;
  2305. visibility:hidden;
  2306. }
  2307. #u71878_div {
  2308. border-width:0px;
  2309. position:absolute;
  2310. left:0px;
  2311. top:0px;
  2312. width:19px;
  2313. height:18px;
  2314. background:inherit;
  2315. background-color:rgba(51, 51, 51, 1);
  2316. border:none;
  2317. border-radius:8px;
  2318. -moz-box-shadow:none;
  2319. -webkit-box-shadow:none;
  2320. box-shadow:none;
  2321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2322. font-weight:400;
  2323. font-style:normal;
  2324. font-size:10px;
  2325. color:#FFFFFF;
  2326. }
  2327. #u71878 {
  2328. border-width:0px;
  2329. position:absolute;
  2330. left:365px;
  2331. top:320px;
  2332. width:19px;
  2333. height:18px;
  2334. display:flex;
  2335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2336. font-weight:400;
  2337. font-style:normal;
  2338. font-size:10px;
  2339. color:#FFFFFF;
  2340. }
  2341. #u71878 .text {
  2342. position:absolute;
  2343. align-self:center;
  2344. padding:0px 0px 0px 0px;
  2345. box-sizing:border-box;
  2346. width:100%;
  2347. }
  2348. #u71878_text {
  2349. border-width:0px;
  2350. word-wrap:break-word;
  2351. text-transform:none;
  2352. }
  2353. #u71879_div {
  2354. border-width:0px;
  2355. position:absolute;
  2356. left:0px;
  2357. top:0px;
  2358. width:180px;
  2359. height:20px;
  2360. background:inherit;
  2361. background-color:rgba(51, 51, 51, 0);
  2362. border:none;
  2363. border-radius:4px;
  2364. -moz-box-shadow:none;
  2365. -webkit-box-shadow:none;
  2366. box-shadow:none;
  2367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2368. font-weight:400;
  2369. font-style:normal;
  2370. font-size:14px;
  2371. text-align:left;
  2372. }
  2373. #u71879 {
  2374. border-width:0px;
  2375. position:absolute;
  2376. left:390px;
  2377. top:320px;
  2378. width:180px;
  2379. height:20px;
  2380. display:flex;
  2381. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2382. font-weight:400;
  2383. font-style:normal;
  2384. font-size:14px;
  2385. text-align:left;
  2386. }
  2387. #u71879 .text {
  2388. position:absolute;
  2389. align-self:center;
  2390. padding:0px 0px 0px 0px;
  2391. box-sizing:border-box;
  2392. width:100%;
  2393. }
  2394. #u71879_text {
  2395. border-width:0px;
  2396. word-wrap:break-word;
  2397. text-transform:none;
  2398. }
  2399. #u71880 {
  2400. border-width:0px;
  2401. position:absolute;
  2402. left:0px;
  2403. top:0px;
  2404. width:0px;
  2405. height:0px;
  2406. }
  2407. #u71881_div {
  2408. border-width:0px;
  2409. position:absolute;
  2410. left:0px;
  2411. top:0px;
  2412. width:199px;
  2413. height:40px;
  2414. background:inherit;
  2415. background-color:rgba(255, 255, 255, 0);
  2416. border:none;
  2417. border-radius:0px;
  2418. -moz-box-shadow:none;
  2419. -webkit-box-shadow:none;
  2420. box-shadow:none;
  2421. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2422. font-weight:500;
  2423. font-style:normal;
  2424. font-size:18px;
  2425. line-height:40px;
  2426. }
  2427. #u71881 {
  2428. border-width:0px;
  2429. position:absolute;
  2430. left:696px;
  2431. top:73px;
  2432. width:199px;
  2433. height:40px;
  2434. display:flex;
  2435. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2436. font-weight:500;
  2437. font-style:normal;
  2438. font-size:18px;
  2439. line-height:40px;
  2440. }
  2441. #u71881 .text {
  2442. position:absolute;
  2443. align-self:flex-start;
  2444. padding:0px 0px 0px 0px;
  2445. box-sizing:border-box;
  2446. width:100%;
  2447. }
  2448. #u71881_text {
  2449. border-width:0px;
  2450. white-space:nowrap;
  2451. text-transform:none;
  2452. }
  2453. #u71882_img {
  2454. border-width:0px;
  2455. position:absolute;
  2456. left:0px;
  2457. top:0px;
  2458. width:30px;
  2459. height:30px;
  2460. }
  2461. #u71882 {
  2462. border-width:0px;
  2463. position:absolute;
  2464. left:656px;
  2465. top:78px;
  2466. width:30px;
  2467. height:30px;
  2468. display:flex;
  2469. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2470. font-weight:400;
  2471. font-style:normal;
  2472. font-size:10px;
  2473. color:#FFFFFF;
  2474. }
  2475. #u71882 .text {
  2476. position:absolute;
  2477. align-self:center;
  2478. padding:2px 2px 2px 2px;
  2479. box-sizing:border-box;
  2480. width:100%;
  2481. }
  2482. #u71882_text {
  2483. border-width:0px;
  2484. word-wrap:break-word;
  2485. text-transform:none;
  2486. }
  2487. #u71883_div {
  2488. border-width:0px;
  2489. position:absolute;
  2490. left:0px;
  2491. top:0px;
  2492. width:73px;
  2493. height:40px;
  2494. background:inherit;
  2495. background-color:rgba(255, 255, 255, 0);
  2496. border:none;
  2497. border-radius:0px;
  2498. -moz-box-shadow:none;
  2499. -webkit-box-shadow:none;
  2500. box-shadow:none;
  2501. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2502. font-weight:500;
  2503. font-style:normal;
  2504. font-size:18px;
  2505. line-height:40px;
  2506. }
  2507. #u71883 {
  2508. border-width:0px;
  2509. position:absolute;
  2510. left:656px;
  2511. top:133px;
  2512. width:73px;
  2513. height:40px;
  2514. display:flex;
  2515. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2516. font-weight:500;
  2517. font-style:normal;
  2518. font-size:18px;
  2519. line-height:40px;
  2520. }
  2521. #u71883 .text {
  2522. position:absolute;
  2523. align-self:flex-start;
  2524. padding:0px 0px 0px 0px;
  2525. box-sizing:border-box;
  2526. width:100%;
  2527. }
  2528. #u71883_text {
  2529. border-width:0px;
  2530. white-space:nowrap;
  2531. text-transform:none;
  2532. }
  2533. #u71884_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:100px;
  2539. height:30px;
  2540. background:inherit;
  2541. background-color:rgba(24, 144, 255, 1);
  2542. border:none;
  2543. border-radius:4px;
  2544. -moz-box-shadow:none;
  2545. -webkit-box-shadow:none;
  2546. box-shadow:none;
  2547. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2548. font-weight:400;
  2549. font-style:normal;
  2550. font-size:14px;
  2551. color:#FFFFFF;
  2552. }
  2553. #u71884 {
  2554. border-width:0px;
  2555. position:absolute;
  2556. left:656px;
  2557. top:183px;
  2558. width:100px;
  2559. height:30px;
  2560. display:flex;
  2561. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2562. font-weight:400;
  2563. font-style:normal;
  2564. font-size:14px;
  2565. color:#FFFFFF;
  2566. }
  2567. #u71884 .text {
  2568. position:absolute;
  2569. align-self:center;
  2570. padding:2px 2px 2px 2px;
  2571. box-sizing:border-box;
  2572. width:100%;
  2573. }
  2574. #u71884_text {
  2575. border-width:0px;
  2576. word-wrap:break-word;
  2577. text-transform:none;
  2578. }
  2579. #u71885_div {
  2580. border-width:0px;
  2581. position:absolute;
  2582. left:0px;
  2583. top:0px;
  2584. width:73px;
  2585. height:40px;
  2586. background:inherit;
  2587. background-color:rgba(255, 255, 255, 0);
  2588. border:none;
  2589. border-radius:0px;
  2590. -moz-box-shadow:none;
  2591. -webkit-box-shadow:none;
  2592. box-shadow:none;
  2593. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2594. font-weight:500;
  2595. font-style:normal;
  2596. font-size:18px;
  2597. line-height:40px;
  2598. }
  2599. #u71885 {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:759px;
  2603. top:133px;
  2604. width:73px;
  2605. height:40px;
  2606. display:flex;
  2607. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2608. font-weight:500;
  2609. font-style:normal;
  2610. font-size:18px;
  2611. line-height:40px;
  2612. }
  2613. #u71885 .text {
  2614. position:absolute;
  2615. align-self:flex-start;
  2616. padding:0px 0px 0px 0px;
  2617. box-sizing:border-box;
  2618. width:100%;
  2619. }
  2620. #u71885_text {
  2621. border-width:0px;
  2622. white-space:nowrap;
  2623. text-transform:none;
  2624. }
  2625. #u71886_div {
  2626. border-width:0px;
  2627. position:absolute;
  2628. left:0px;
  2629. top:0px;
  2630. width:73px;
  2631. height:40px;
  2632. background:inherit;
  2633. background-color:rgba(255, 255, 255, 0);
  2634. border:none;
  2635. border-radius:0px;
  2636. -moz-box-shadow:none;
  2637. -webkit-box-shadow:none;
  2638. box-shadow:none;
  2639. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2640. font-weight:500;
  2641. font-style:normal;
  2642. font-size:18px;
  2643. color:#1890FF;
  2644. line-height:40px;
  2645. }
  2646. #u71886 {
  2647. border-width:0px;
  2648. position:absolute;
  2649. left:862px;
  2650. top:133px;
  2651. width:73px;
  2652. height:40px;
  2653. display:flex;
  2654. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2655. font-weight:500;
  2656. font-style:normal;
  2657. font-size:18px;
  2658. color:#1890FF;
  2659. line-height:40px;
  2660. }
  2661. #u71886 .text {
  2662. position:absolute;
  2663. align-self:flex-start;
  2664. padding:0px 0px 0px 0px;
  2665. box-sizing:border-box;
  2666. width:100%;
  2667. }
  2668. #u71886_text {
  2669. border-width:0px;
  2670. white-space:nowrap;
  2671. text-transform:none;
  2672. }
  2673. #u71887 {
  2674. border-width:0px;
  2675. position:absolute;
  2676. left:0px;
  2677. top:0px;
  2678. width:0px;
  2679. height:0px;
  2680. }
  2681. #u71888 {
  2682. border-width:0px;
  2683. position:absolute;
  2684. left:656px;
  2685. top:223px;
  2686. width:914px;
  2687. height:114px;
  2688. }
  2689. #u71889_img {
  2690. border-width:0px;
  2691. position:absolute;
  2692. left:0px;
  2693. top:0px;
  2694. width:166px;
  2695. height:38px;
  2696. }
  2697. #u71889 {
  2698. border-width:0px;
  2699. position:absolute;
  2700. left:0px;
  2701. top:0px;
  2702. width:166px;
  2703. height:38px;
  2704. display:flex;
  2705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2706. font-weight:400;
  2707. font-style:normal;
  2708. font-size:12px;
  2709. color:#FFFFFF;
  2710. text-align:left;
  2711. }
  2712. #u71889 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 2px 2px 10px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u71889_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. }
  2724. #u71890_img {
  2725. border-width:0px;
  2726. position:absolute;
  2727. left:0px;
  2728. top:0px;
  2729. width:100px;
  2730. height:38px;
  2731. }
  2732. #u71890 {
  2733. border-width:0px;
  2734. position:absolute;
  2735. left:166px;
  2736. top:0px;
  2737. width:100px;
  2738. height:38px;
  2739. display:flex;
  2740. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2741. font-weight:400;
  2742. font-style:normal;
  2743. font-size:12px;
  2744. color:#FFFFFF;
  2745. text-align:left;
  2746. }
  2747. #u71890 .text {
  2748. position:absolute;
  2749. align-self:center;
  2750. padding:2px 2px 2px 10px;
  2751. box-sizing:border-box;
  2752. width:100%;
  2753. }
  2754. #u71890_text {
  2755. border-width:0px;
  2756. word-wrap:break-word;
  2757. text-transform:none;
  2758. }
  2759. #u71891_img {
  2760. border-width:0px;
  2761. position:absolute;
  2762. left:0px;
  2763. top:0px;
  2764. width:97px;
  2765. height:38px;
  2766. }
  2767. #u71891 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:266px;
  2771. top:0px;
  2772. width:97px;
  2773. height:38px;
  2774. display:flex;
  2775. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2776. font-weight:400;
  2777. font-style:normal;
  2778. font-size:12px;
  2779. color:#FFFFFF;
  2780. text-align:left;
  2781. }
  2782. #u71891 .text {
  2783. position:absolute;
  2784. align-self:center;
  2785. padding:2px 2px 2px 10px;
  2786. box-sizing:border-box;
  2787. width:100%;
  2788. }
  2789. #u71891_text {
  2790. border-width:0px;
  2791. word-wrap:break-word;
  2792. text-transform:none;
  2793. }
  2794. #u71892_img {
  2795. border-width:0px;
  2796. position:absolute;
  2797. left:0px;
  2798. top:0px;
  2799. width:83px;
  2800. height:38px;
  2801. }
  2802. #u71892 {
  2803. border-width:0px;
  2804. position:absolute;
  2805. left:363px;
  2806. top:0px;
  2807. width:83px;
  2808. height:38px;
  2809. display:flex;
  2810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2811. font-weight:400;
  2812. font-style:normal;
  2813. font-size:12px;
  2814. color:#FFFFFF;
  2815. text-align:left;
  2816. }
  2817. #u71892 .text {
  2818. position:absolute;
  2819. align-self:center;
  2820. padding:2px 2px 2px 10px;
  2821. box-sizing:border-box;
  2822. width:100%;
  2823. }
  2824. #u71892_text {
  2825. border-width:0px;
  2826. word-wrap:break-word;
  2827. text-transform:none;
  2828. }
  2829. #u71893_img {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:0px;
  2833. top:0px;
  2834. width:97px;
  2835. height:38px;
  2836. }
  2837. #u71893 {
  2838. border-width:0px;
  2839. position:absolute;
  2840. left:446px;
  2841. top:0px;
  2842. width:97px;
  2843. height:38px;
  2844. display:flex;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. color:#FFFFFF;
  2850. text-align:left;
  2851. }
  2852. #u71893 .text {
  2853. position:absolute;
  2854. align-self:center;
  2855. padding:2px 2px 2px 10px;
  2856. box-sizing:border-box;
  2857. width:100%;
  2858. }
  2859. #u71893_text {
  2860. border-width:0px;
  2861. word-wrap:break-word;
  2862. text-transform:none;
  2863. }
  2864. #u71894_img {
  2865. border-width:0px;
  2866. position:absolute;
  2867. left:0px;
  2868. top:0px;
  2869. width:97px;
  2870. height:38px;
  2871. }
  2872. #u71894 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:543px;
  2876. top:0px;
  2877. width:97px;
  2878. height:38px;
  2879. display:flex;
  2880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2881. font-weight:400;
  2882. font-style:normal;
  2883. font-size:12px;
  2884. color:#FFFFFF;
  2885. text-align:left;
  2886. }
  2887. #u71894 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 10px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u71894_text {
  2895. border-width:0px;
  2896. word-wrap:break-word;
  2897. text-transform:none;
  2898. }
  2899. #u71895_img {
  2900. border-width:0px;
  2901. position:absolute;
  2902. left:0px;
  2903. top:0px;
  2904. width:83px;
  2905. height:38px;
  2906. }
  2907. #u71895 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:640px;
  2911. top:0px;
  2912. width:83px;
  2913. height:38px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:12px;
  2919. color:#FFFFFF;
  2920. text-align:left;
  2921. }
  2922. #u71895 .text {
  2923. position:absolute;
  2924. align-self:center;
  2925. padding:2px 2px 2px 10px;
  2926. box-sizing:border-box;
  2927. width:100%;
  2928. }
  2929. #u71895_text {
  2930. border-width:0px;
  2931. word-wrap:break-word;
  2932. text-transform:none;
  2933. }
  2934. #u71896_img {
  2935. border-width:0px;
  2936. position:absolute;
  2937. left:0px;
  2938. top:0px;
  2939. width:108px;
  2940. height:38px;
  2941. }
  2942. #u71896 {
  2943. border-width:0px;
  2944. position:absolute;
  2945. left:723px;
  2946. top:0px;
  2947. width:108px;
  2948. height:38px;
  2949. display:flex;
  2950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2951. font-weight:400;
  2952. font-style:normal;
  2953. font-size:12px;
  2954. color:#FFFFFF;
  2955. text-align:left;
  2956. }
  2957. #u71896 .text {
  2958. position:absolute;
  2959. align-self:center;
  2960. padding:2px 2px 2px 10px;
  2961. box-sizing:border-box;
  2962. width:100%;
  2963. }
  2964. #u71896_text {
  2965. border-width:0px;
  2966. word-wrap:break-word;
  2967. text-transform:none;
  2968. }
  2969. #u71897_img {
  2970. border-width:0px;
  2971. position:absolute;
  2972. left:0px;
  2973. top:0px;
  2974. width:83px;
  2975. height:38px;
  2976. }
  2977. #u71897 {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:831px;
  2981. top:0px;
  2982. width:83px;
  2983. height:38px;
  2984. display:flex;
  2985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2986. font-weight:400;
  2987. font-style:normal;
  2988. font-size:12px;
  2989. color:#FFFFFF;
  2990. text-align:left;
  2991. }
  2992. #u71897 .text {
  2993. position:absolute;
  2994. align-self:center;
  2995. padding:2px 2px 2px 10px;
  2996. box-sizing:border-box;
  2997. width:100%;
  2998. }
  2999. #u71897_text {
  3000. border-width:0px;
  3001. word-wrap:break-word;
  3002. text-transform:none;
  3003. }
  3004. #u71898_img {
  3005. border-width:0px;
  3006. position:absolute;
  3007. left:0px;
  3008. top:0px;
  3009. width:166px;
  3010. height:38px;
  3011. }
  3012. #u71898 {
  3013. border-width:0px;
  3014. position:absolute;
  3015. left:0px;
  3016. top:38px;
  3017. width:166px;
  3018. height:38px;
  3019. display:flex;
  3020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3021. font-weight:400;
  3022. font-style:normal;
  3023. font-size:12px;
  3024. text-align:left;
  3025. }
  3026. #u71898 .text {
  3027. position:absolute;
  3028. align-self:center;
  3029. padding:2px 2px 2px 10px;
  3030. box-sizing:border-box;
  3031. width:100%;
  3032. }
  3033. #u71898_text {
  3034. border-width:0px;
  3035. word-wrap:break-word;
  3036. text-transform:none;
  3037. }
  3038. #u71899_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:100px;
  3044. height:38px;
  3045. }
  3046. #u71899 {
  3047. border-width:0px;
  3048. position:absolute;
  3049. left:166px;
  3050. top:38px;
  3051. width:100px;
  3052. height:38px;
  3053. display:flex;
  3054. font-size:12px;
  3055. text-align:left;
  3056. }
  3057. #u71899 .text {
  3058. position:absolute;
  3059. align-self:center;
  3060. padding:2px 2px 2px 10px;
  3061. box-sizing:border-box;
  3062. width:100%;
  3063. }
  3064. #u71899_text {
  3065. border-width:0px;
  3066. word-wrap:break-word;
  3067. text-transform:none;
  3068. visibility:hidden;
  3069. }
  3070. #u71900_img {
  3071. border-width:0px;
  3072. position:absolute;
  3073. left:0px;
  3074. top:0px;
  3075. width:97px;
  3076. height:38px;
  3077. }
  3078. #u71900 {
  3079. border-width:0px;
  3080. position:absolute;
  3081. left:266px;
  3082. top:38px;
  3083. width:97px;
  3084. height:38px;
  3085. display:flex;
  3086. font-size:12px;
  3087. text-align:left;
  3088. }
  3089. #u71900 .text {
  3090. position:absolute;
  3091. align-self:center;
  3092. padding:2px 2px 2px 10px;
  3093. box-sizing:border-box;
  3094. width:100%;
  3095. }
  3096. #u71900_text {
  3097. border-width:0px;
  3098. word-wrap:break-word;
  3099. text-transform:none;
  3100. visibility:hidden;
  3101. }
  3102. #u71901_img {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:83px;
  3108. height:38px;
  3109. }
  3110. #u71901 {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:363px;
  3114. top:38px;
  3115. width:83px;
  3116. height:38px;
  3117. display:flex;
  3118. font-size:12px;
  3119. text-align:left;
  3120. }
  3121. #u71901 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 10px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u71901_text {
  3129. border-width:0px;
  3130. word-wrap:break-word;
  3131. text-transform:none;
  3132. visibility:hidden;
  3133. }
  3134. #u71902_img {
  3135. border-width:0px;
  3136. position:absolute;
  3137. left:0px;
  3138. top:0px;
  3139. width:97px;
  3140. height:38px;
  3141. }
  3142. #u71902 {
  3143. border-width:0px;
  3144. position:absolute;
  3145. left:446px;
  3146. top:38px;
  3147. width:97px;
  3148. height:38px;
  3149. display:flex;
  3150. font-size:12px;
  3151. text-align:left;
  3152. }
  3153. #u71902 .text {
  3154. position:absolute;
  3155. align-self:center;
  3156. padding:2px 2px 2px 10px;
  3157. box-sizing:border-box;
  3158. width:100%;
  3159. }
  3160. #u71902_text {
  3161. border-width:0px;
  3162. word-wrap:break-word;
  3163. text-transform:none;
  3164. visibility:hidden;
  3165. }
  3166. #u71903_img {
  3167. border-width:0px;
  3168. position:absolute;
  3169. left:0px;
  3170. top:0px;
  3171. width:97px;
  3172. height:38px;
  3173. }
  3174. #u71903 {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:543px;
  3178. top:38px;
  3179. width:97px;
  3180. height:38px;
  3181. display:flex;
  3182. font-size:12px;
  3183. text-align:left;
  3184. }
  3185. #u71903 .text {
  3186. position:absolute;
  3187. align-self:center;
  3188. padding:2px 2px 2px 10px;
  3189. box-sizing:border-box;
  3190. width:100%;
  3191. }
  3192. #u71903_text {
  3193. border-width:0px;
  3194. word-wrap:break-word;
  3195. text-transform:none;
  3196. visibility:hidden;
  3197. }
  3198. #u71904_img {
  3199. border-width:0px;
  3200. position:absolute;
  3201. left:0px;
  3202. top:0px;
  3203. width:83px;
  3204. height:38px;
  3205. }
  3206. #u71904 {
  3207. border-width:0px;
  3208. position:absolute;
  3209. left:640px;
  3210. top:38px;
  3211. width:83px;
  3212. height:38px;
  3213. display:flex;
  3214. font-size:12px;
  3215. text-align:left;
  3216. }
  3217. #u71904 .text {
  3218. position:absolute;
  3219. align-self:center;
  3220. padding:2px 2px 2px 10px;
  3221. box-sizing:border-box;
  3222. width:100%;
  3223. }
  3224. #u71904_text {
  3225. border-width:0px;
  3226. word-wrap:break-word;
  3227. text-transform:none;
  3228. visibility:hidden;
  3229. }
  3230. #u71905_img {
  3231. border-width:0px;
  3232. position:absolute;
  3233. left:0px;
  3234. top:0px;
  3235. width:108px;
  3236. height:38px;
  3237. }
  3238. #u71905 {
  3239. border-width:0px;
  3240. position:absolute;
  3241. left:723px;
  3242. top:38px;
  3243. width:108px;
  3244. height:38px;
  3245. display:flex;
  3246. font-size:12px;
  3247. text-align:left;
  3248. }
  3249. #u71905 .text {
  3250. position:absolute;
  3251. align-self:center;
  3252. padding:2px 2px 2px 10px;
  3253. box-sizing:border-box;
  3254. width:100%;
  3255. }
  3256. #u71905_text {
  3257. border-width:0px;
  3258. word-wrap:break-word;
  3259. text-transform:none;
  3260. visibility:hidden;
  3261. }
  3262. #u71906_img {
  3263. border-width:0px;
  3264. position:absolute;
  3265. left:0px;
  3266. top:0px;
  3267. width:83px;
  3268. height:38px;
  3269. }
  3270. #u71906 {
  3271. border-width:0px;
  3272. position:absolute;
  3273. left:831px;
  3274. top:38px;
  3275. width:83px;
  3276. height:38px;
  3277. display:flex;
  3278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3279. font-weight:400;
  3280. font-style:normal;
  3281. font-size:12px;
  3282. text-align:left;
  3283. }
  3284. #u71906 .text {
  3285. position:absolute;
  3286. align-self:center;
  3287. padding:2px 2px 2px 10px;
  3288. box-sizing:border-box;
  3289. width:100%;
  3290. }
  3291. #u71906_text {
  3292. border-width:0px;
  3293. word-wrap:break-word;
  3294. text-transform:none;
  3295. }
  3296. #u71907_img {
  3297. border-width:0px;
  3298. position:absolute;
  3299. left:0px;
  3300. top:0px;
  3301. width:166px;
  3302. height:38px;
  3303. }
  3304. #u71907 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:76px;
  3309. width:166px;
  3310. height:38px;
  3311. display:flex;
  3312. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3313. font-weight:400;
  3314. font-style:normal;
  3315. font-size:12px;
  3316. text-align:left;
  3317. }
  3318. #u71907 .text {
  3319. position:absolute;
  3320. align-self:center;
  3321. padding:2px 2px 2px 10px;
  3322. box-sizing:border-box;
  3323. width:100%;
  3324. }
  3325. #u71907_text {
  3326. border-width:0px;
  3327. word-wrap:break-word;
  3328. text-transform:none;
  3329. }
  3330. #u71908_img {
  3331. border-width:0px;
  3332. position:absolute;
  3333. left:0px;
  3334. top:0px;
  3335. width:100px;
  3336. height:38px;
  3337. }
  3338. #u71908 {
  3339. border-width:0px;
  3340. position:absolute;
  3341. left:166px;
  3342. top:76px;
  3343. width:100px;
  3344. height:38px;
  3345. display:flex;
  3346. font-size:12px;
  3347. text-align:left;
  3348. }
  3349. #u71908 .text {
  3350. position:absolute;
  3351. align-self:center;
  3352. padding:2px 2px 2px 10px;
  3353. box-sizing:border-box;
  3354. width:100%;
  3355. }
  3356. #u71908_text {
  3357. border-width:0px;
  3358. word-wrap:break-word;
  3359. text-transform:none;
  3360. visibility:hidden;
  3361. }
  3362. #u71909_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:97px;
  3368. height:38px;
  3369. }
  3370. #u71909 {
  3371. border-width:0px;
  3372. position:absolute;
  3373. left:266px;
  3374. top:76px;
  3375. width:97px;
  3376. height:38px;
  3377. display:flex;
  3378. font-size:12px;
  3379. text-align:left;
  3380. }
  3381. #u71909 .text {
  3382. position:absolute;
  3383. align-self:center;
  3384. padding:2px 2px 2px 10px;
  3385. box-sizing:border-box;
  3386. width:100%;
  3387. }
  3388. #u71909_text {
  3389. border-width:0px;
  3390. word-wrap:break-word;
  3391. text-transform:none;
  3392. visibility:hidden;
  3393. }
  3394. #u71910_img {
  3395. border-width:0px;
  3396. position:absolute;
  3397. left:0px;
  3398. top:0px;
  3399. width:83px;
  3400. height:38px;
  3401. }
  3402. #u71910 {
  3403. border-width:0px;
  3404. position:absolute;
  3405. left:363px;
  3406. top:76px;
  3407. width:83px;
  3408. height:38px;
  3409. display:flex;
  3410. font-size:12px;
  3411. text-align:left;
  3412. }
  3413. #u71910 .text {
  3414. position:absolute;
  3415. align-self:center;
  3416. padding:2px 2px 2px 10px;
  3417. box-sizing:border-box;
  3418. width:100%;
  3419. }
  3420. #u71910_text {
  3421. border-width:0px;
  3422. word-wrap:break-word;
  3423. text-transform:none;
  3424. visibility:hidden;
  3425. }
  3426. #u71911_img {
  3427. border-width:0px;
  3428. position:absolute;
  3429. left:0px;
  3430. top:0px;
  3431. width:97px;
  3432. height:38px;
  3433. }
  3434. #u71911 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:446px;
  3438. top:76px;
  3439. width:97px;
  3440. height:38px;
  3441. display:flex;
  3442. font-size:12px;
  3443. text-align:left;
  3444. }
  3445. #u71911 .text {
  3446. position:absolute;
  3447. align-self:center;
  3448. padding:2px 2px 2px 10px;
  3449. box-sizing:border-box;
  3450. width:100%;
  3451. }
  3452. #u71911_text {
  3453. border-width:0px;
  3454. word-wrap:break-word;
  3455. text-transform:none;
  3456. visibility:hidden;
  3457. }
  3458. #u71912_img {
  3459. border-width:0px;
  3460. position:absolute;
  3461. left:0px;
  3462. top:0px;
  3463. width:97px;
  3464. height:38px;
  3465. }
  3466. #u71912 {
  3467. border-width:0px;
  3468. position:absolute;
  3469. left:543px;
  3470. top:76px;
  3471. width:97px;
  3472. height:38px;
  3473. display:flex;
  3474. font-size:12px;
  3475. text-align:left;
  3476. }
  3477. #u71912 .text {
  3478. position:absolute;
  3479. align-self:center;
  3480. padding:2px 2px 2px 10px;
  3481. box-sizing:border-box;
  3482. width:100%;
  3483. }
  3484. #u71912_text {
  3485. border-width:0px;
  3486. word-wrap:break-word;
  3487. text-transform:none;
  3488. visibility:hidden;
  3489. }
  3490. #u71913_img {
  3491. border-width:0px;
  3492. position:absolute;
  3493. left:0px;
  3494. top:0px;
  3495. width:83px;
  3496. height:38px;
  3497. }
  3498. #u71913 {
  3499. border-width:0px;
  3500. position:absolute;
  3501. left:640px;
  3502. top:76px;
  3503. width:83px;
  3504. height:38px;
  3505. display:flex;
  3506. font-size:12px;
  3507. text-align:left;
  3508. }
  3509. #u71913 .text {
  3510. position:absolute;
  3511. align-self:center;
  3512. padding:2px 2px 2px 10px;
  3513. box-sizing:border-box;
  3514. width:100%;
  3515. }
  3516. #u71913_text {
  3517. border-width:0px;
  3518. word-wrap:break-word;
  3519. text-transform:none;
  3520. visibility:hidden;
  3521. }
  3522. #u71914_img {
  3523. border-width:0px;
  3524. position:absolute;
  3525. left:0px;
  3526. top:0px;
  3527. width:108px;
  3528. height:38px;
  3529. }
  3530. #u71914 {
  3531. border-width:0px;
  3532. position:absolute;
  3533. left:723px;
  3534. top:76px;
  3535. width:108px;
  3536. height:38px;
  3537. display:flex;
  3538. font-size:12px;
  3539. text-align:left;
  3540. }
  3541. #u71914 .text {
  3542. position:absolute;
  3543. align-self:center;
  3544. padding:2px 2px 2px 10px;
  3545. box-sizing:border-box;
  3546. width:100%;
  3547. }
  3548. #u71914_text {
  3549. border-width:0px;
  3550. word-wrap:break-word;
  3551. text-transform:none;
  3552. visibility:hidden;
  3553. }
  3554. #u71915_img {
  3555. border-width:0px;
  3556. position:absolute;
  3557. left:0px;
  3558. top:0px;
  3559. width:83px;
  3560. height:38px;
  3561. }
  3562. #u71915 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:831px;
  3566. top:76px;
  3567. width:83px;
  3568. height:38px;
  3569. display:flex;
  3570. font-size:12px;
  3571. text-align:left;
  3572. }
  3573. #u71915 .text {
  3574. position:absolute;
  3575. align-self:center;
  3576. padding:2px 2px 2px 10px;
  3577. box-sizing:border-box;
  3578. width:100%;
  3579. }
  3580. #u71915_text {
  3581. border-width:0px;
  3582. word-wrap:break-word;
  3583. text-transform:none;
  3584. visibility:hidden;
  3585. }
  3586. #u71916_img {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:0px;
  3590. top:0px;
  3591. width:11px;
  3592. height:11px;
  3593. }
  3594. #u71916 {
  3595. border-width:0px;
  3596. position:absolute;
  3597. left:985px;
  3598. top:237px;
  3599. width:11px;
  3600. height:11px;
  3601. display:flex;
  3602. }
  3603. #u71916 .text {
  3604. position:absolute;
  3605. align-self:center;
  3606. padding:2px 2px 2px 2px;
  3607. box-sizing:border-box;
  3608. width:100%;
  3609. }
  3610. #u71916_text {
  3611. border-width:0px;
  3612. word-wrap:break-word;
  3613. text-transform:none;
  3614. visibility:hidden;
  3615. }
  3616. #u71917 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:0px;
  3620. top:0px;
  3621. width:0px;
  3622. height:0px;
  3623. }
  3624. #u71918_div {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:0px;
  3628. top:0px;
  3629. width:900px;
  3630. height:1200px;
  3631. background:inherit;
  3632. background-color:rgba(255, 255, 255, 1);
  3633. box-sizing:border-box;
  3634. border-width:1px;
  3635. border-style:solid;
  3636. border-color:rgba(215, 215, 215, 1);
  3637. border-radius:0px;
  3638. -moz-box-shadow:none;
  3639. -webkit-box-shadow:none;
  3640. box-shadow:none;
  3641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3642. font-weight:400;
  3643. font-style:normal;
  3644. font-size:14px;
  3645. color:#AAAAAA;
  3646. text-align:center;
  3647. line-height:30px;
  3648. }
  3649. #u71918 {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:1629px;
  3653. top:50px;
  3654. width:900px;
  3655. height:1200px;
  3656. display:flex;
  3657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3658. font-weight:400;
  3659. font-style:normal;
  3660. font-size:14px;
  3661. color:#AAAAAA;
  3662. text-align:center;
  3663. line-height:30px;
  3664. }
  3665. #u71918 .text {
  3666. position:absolute;
  3667. align-self:center;
  3668. padding:5px 10px 5px 10px;
  3669. box-sizing:border-box;
  3670. width:100%;
  3671. }
  3672. #u71918_text {
  3673. border-width:0px;
  3674. word-wrap:break-word;
  3675. text-transform:none;
  3676. visibility:hidden;
  3677. }
  3678. #u71919_div {
  3679. border-width:0px;
  3680. position:absolute;
  3681. left:0px;
  3682. top:0px;
  3683. width:119px;
  3684. height:35px;
  3685. background:inherit;
  3686. background-color:rgba(255, 255, 255, 0);
  3687. border:none;
  3688. border-top:0px;
  3689. border-right:0px;
  3690. border-bottom:0px;
  3691. border-radius:0px;
  3692. border-top-left-radius:0px;
  3693. border-bottom-left-radius:0px;
  3694. -moz-box-shadow:none;
  3695. -webkit-box-shadow:none;
  3696. box-shadow:none;
  3697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3698. font-weight:500;
  3699. font-style:normal;
  3700. font-size:18px;
  3701. }
  3702. #u71919 {
  3703. border-width:0px;
  3704. position:absolute;
  3705. left:1650px;
  3706. top:71px;
  3707. width:119px;
  3708. height:35px;
  3709. display:flex;
  3710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3711. font-weight:500;
  3712. font-style:normal;
  3713. font-size:18px;
  3714. }
  3715. #u71919 .text {
  3716. position:absolute;
  3717. align-self:center;
  3718. padding:5px 10px 5px 0px;
  3719. box-sizing:border-box;
  3720. width:100%;
  3721. }
  3722. #u71919_text {
  3723. border-width:0px;
  3724. white-space:nowrap;
  3725. text-transform:none;
  3726. }
  3727. #u71920 {
  3728. border-width:0px;
  3729. position:absolute;
  3730. left:0px;
  3731. top:0px;
  3732. width:0px;
  3733. height:0px;
  3734. }
  3735. #u71921_div {
  3736. border-width:0px;
  3737. position:absolute;
  3738. left:0px;
  3739. top:0px;
  3740. width:40px;
  3741. height:40px;
  3742. background:inherit;
  3743. background-color:rgba(255, 255, 255, 0);
  3744. border:none;
  3745. border-top:0px;
  3746. border-right:0px;
  3747. border-bottom:0px;
  3748. border-radius:0px;
  3749. border-top-left-radius:0px;
  3750. border-bottom-left-radius:0px;
  3751. -moz-box-shadow:none;
  3752. -webkit-box-shadow:none;
  3753. box-shadow:none;
  3754. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3755. font-weight:500;
  3756. font-style:normal;
  3757. font-size:18px;
  3758. text-align:center;
  3759. }
  3760. #u71921 {
  3761. border-width:0px;
  3762. position:absolute;
  3763. left:2489px;
  3764. top:50px;
  3765. width:40px;
  3766. height:40px;
  3767. display:flex;
  3768. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3769. font-weight:500;
  3770. font-style:normal;
  3771. font-size:18px;
  3772. text-align:center;
  3773. }
  3774. #u71921 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:5px 10px 5px 0px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u71921_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. }
  3786. #u71922_img {
  3787. border-width:0px;
  3788. position:absolute;
  3789. left:0px;
  3790. top:0px;
  3791. width:13px;
  3792. height:13px;
  3793. }
  3794. #u71922 {
  3795. border-width:0px;
  3796. position:absolute;
  3797. left:2477px;
  3798. top:66px;
  3799. width:13px;
  3800. height:13px;
  3801. display:flex;
  3802. }
  3803. #u71922 .text {
  3804. position:absolute;
  3805. align-self:center;
  3806. padding:2px 2px 2px 2px;
  3807. box-sizing:border-box;
  3808. width:100%;
  3809. }
  3810. #u71922_text {
  3811. border-width:0px;
  3812. word-wrap:break-word;
  3813. text-transform:none;
  3814. visibility:hidden;
  3815. }
  3816. #u71923_div {
  3817. border-width:0px;
  3818. position:absolute;
  3819. left:0px;
  3820. top:0px;
  3821. width:81px;
  3822. height:30px;
  3823. background:inherit;
  3824. background-color:rgba(242, 242, 242, 0);
  3825. border:none;
  3826. border-top:0px;
  3827. border-right:0px;
  3828. border-bottom:0px;
  3829. border-radius:0px;
  3830. border-top-left-radius:0px;
  3831. border-bottom-left-radius:0px;
  3832. -moz-box-shadow:none;
  3833. -webkit-box-shadow:none;
  3834. box-shadow:none;
  3835. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:14px;
  3839. }
  3840. #u71923 {
  3841. border-width:0px;
  3842. position:absolute;
  3843. left:1716px;
  3844. top:308px;
  3845. width:81px;
  3846. height:30px;
  3847. display:flex;
  3848. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. font-size:14px;
  3852. }
  3853. #u71923 .text {
  3854. position:absolute;
  3855. align-self:center;
  3856. padding:5px 10px 5px 0px;
  3857. box-sizing:border-box;
  3858. width:100%;
  3859. }
  3860. #u71923_text {
  3861. border-width:0px;
  3862. white-space:nowrap;
  3863. text-transform:none;
  3864. }
  3865. #u71924 {
  3866. border-width:0px;
  3867. position:absolute;
  3868. left:0px;
  3869. top:0px;
  3870. width:0px;
  3871. height:0px;
  3872. }
  3873. #u71925_div {
  3874. border-width:0px;
  3875. position:absolute;
  3876. left:0px;
  3877. top:0px;
  3878. width:340px;
  3879. height:40px;
  3880. background:inherit;
  3881. background-color:rgba(242, 242, 242, 1);
  3882. box-sizing:border-box;
  3883. border-width:1px;
  3884. border-style:solid;
  3885. border-color:rgba(201, 201, 201, 1);
  3886. border-radius:4px;
  3887. -moz-box-shadow:none;
  3888. -webkit-box-shadow:none;
  3889. box-shadow:none;
  3890. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3891. font-weight:400;
  3892. font-style:normal;
  3893. font-size:14px;
  3894. text-align:right;
  3895. }
  3896. #u71925 {
  3897. border-width:0px;
  3898. position:absolute;
  3899. left:1716px;
  3900. top:338px;
  3901. width:340px;
  3902. height:40px;
  3903. display:flex;
  3904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3905. font-weight:400;
  3906. font-style:normal;
  3907. font-size:14px;
  3908. text-align:right;
  3909. }
  3910. #u71925 .text {
  3911. position:absolute;
  3912. align-self:center;
  3913. padding:2px 8px 2px 8px;
  3914. box-sizing:border-box;
  3915. width:100%;
  3916. }
  3917. #u71925_text {
  3918. border-width:0px;
  3919. word-wrap:break-word;
  3920. text-transform:none;
  3921. visibility:hidden;
  3922. }
  3923. #u71926_input {
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:263px;
  3928. height:38px;
  3929. padding:2px 2px 2px 2px;
  3930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:14px;
  3934. letter-spacing:normal;
  3935. color:#000000;
  3936. vertical-align:none;
  3937. text-align:left;
  3938. text-transform:none;
  3939. background-color:transparent;
  3940. border-color:transparent;
  3941. }
  3942. #u71926_input.disabled {
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:263px;
  3947. height:38px;
  3948. padding:2px 2px 2px 2px;
  3949. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:14px;
  3953. letter-spacing:normal;
  3954. color:#000000;
  3955. vertical-align:none;
  3956. text-align:left;
  3957. text-transform:none;
  3958. background-color:transparent;
  3959. border-color:transparent;
  3960. }
  3961. #u71926_div {
  3962. border-width:0px;
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:263px;
  3967. height:38px;
  3968. background:inherit;
  3969. background-color:rgba(242, 242, 242, 1);
  3970. border:none;
  3971. border-radius:0px;
  3972. -moz-box-shadow:none;
  3973. -webkit-box-shadow:none;
  3974. box-shadow:none;
  3975. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3976. font-weight:400;
  3977. font-style:normal;
  3978. font-size:14px;
  3979. }
  3980. #u71926 {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:1724px;
  3984. top:339px;
  3985. width:263px;
  3986. height:38px;
  3987. display:flex;
  3988. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3989. font-weight:400;
  3990. font-style:normal;
  3991. font-size:14px;
  3992. }
  3993. #u71926 .text {
  3994. position:absolute;
  3995. align-self:center;
  3996. padding:2px 2px 2px 2px;
  3997. box-sizing:border-box;
  3998. width:100%;
  3999. }
  4000. #u71926_div.disabled {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:263px;
  4006. height:38px;
  4007. background:inherit;
  4008. background-color:rgba(240, 240, 240, 1);
  4009. border:none;
  4010. border-radius:0px;
  4011. -moz-box-shadow:none;
  4012. -webkit-box-shadow:none;
  4013. box-shadow:none;
  4014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4015. font-weight:400;
  4016. font-style:normal;
  4017. font-size:14px;
  4018. }
  4019. #u71926.disabled {
  4020. }
  4021. #u71927 {
  4022. border-width:0px;
  4023. position:absolute;
  4024. left:0px;
  4025. top:0px;
  4026. width:0px;
  4027. height:0px;
  4028. }
  4029. #u71928_div {
  4030. border-width:0px;
  4031. position:absolute;
  4032. left:0px;
  4033. top:0px;
  4034. width:900px;
  4035. height:60px;
  4036. background:inherit;
  4037. background-color:rgba(255, 255, 255, 1);
  4038. box-sizing:border-box;
  4039. border-width:1px;
  4040. border-style:solid;
  4041. border-color:rgba(215, 215, 215, 1);
  4042. border-radius:0px;
  4043. -moz-box-shadow:none;
  4044. -webkit-box-shadow:none;
  4045. box-shadow:none;
  4046. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4047. font-weight:400;
  4048. font-style:normal;
  4049. font-size:14px;
  4050. color:#AAAAAA;
  4051. text-align:center;
  4052. line-height:30px;
  4053. }
  4054. #u71928 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:1629px;
  4058. top:1190px;
  4059. width:900px;
  4060. height:60px;
  4061. display:flex;
  4062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4063. font-weight:400;
  4064. font-style:normal;
  4065. font-size:14px;
  4066. color:#AAAAAA;
  4067. text-align:center;
  4068. line-height:30px;
  4069. }
  4070. #u71928 .text {
  4071. position:absolute;
  4072. align-self:center;
  4073. padding:5px 10px 5px 10px;
  4074. box-sizing:border-box;
  4075. width:100%;
  4076. }
  4077. #u71928_text {
  4078. border-width:0px;
  4079. word-wrap:break-word;
  4080. text-transform:none;
  4081. visibility:hidden;
  4082. }
  4083. #u71929_div {
  4084. border-width:0px;
  4085. position:absolute;
  4086. left:0px;
  4087. top:0px;
  4088. width:80px;
  4089. height:30px;
  4090. background:inherit;
  4091. background-color:rgba(24, 144, 255, 1);
  4092. border:none;
  4093. border-radius:4px;
  4094. -moz-box-shadow:none;
  4095. -webkit-box-shadow:none;
  4096. box-shadow:none;
  4097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4098. font-weight:400;
  4099. font-style:normal;
  4100. font-size:14px;
  4101. color:#FFFFFF;
  4102. }
  4103. #u71929 {
  4104. border-width:0px;
  4105. position:absolute;
  4106. left:2404px;
  4107. top:1205px;
  4108. width:80px;
  4109. height:30px;
  4110. display:flex;
  4111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4112. font-weight:400;
  4113. font-style:normal;
  4114. font-size:14px;
  4115. color:#FFFFFF;
  4116. }
  4117. #u71929 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:2px 2px 2px 2px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u71929_text {
  4125. border-width:0px;
  4126. word-wrap:break-word;
  4127. text-transform:none;
  4128. }
  4129. #u71930_div {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:80px;
  4135. height:30px;
  4136. background:inherit;
  4137. background-color:rgba(255, 255, 255, 1);
  4138. box-sizing:border-box;
  4139. border-width:1px;
  4140. border-style:solid;
  4141. border-color:rgba(170, 170, 170, 1);
  4142. border-radius:4px;
  4143. -moz-box-shadow:none;
  4144. -webkit-box-shadow:none;
  4145. box-shadow:none;
  4146. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4147. font-weight:400;
  4148. font-style:normal;
  4149. font-size:14px;
  4150. }
  4151. #u71930 {
  4152. border-width:0px;
  4153. position:absolute;
  4154. left:2304px;
  4155. top:1205px;
  4156. width:80px;
  4157. height:30px;
  4158. display:flex;
  4159. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4160. font-weight:400;
  4161. font-style:normal;
  4162. font-size:14px;
  4163. }
  4164. #u71930 .text {
  4165. position:absolute;
  4166. align-self:center;
  4167. padding:2px 2px 2px 2px;
  4168. box-sizing:border-box;
  4169. width:100%;
  4170. }
  4171. #u71930_text {
  4172. border-width:0px;
  4173. word-wrap:break-word;
  4174. text-transform:none;
  4175. }
  4176. #u71931_div {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:0px;
  4180. top:0px;
  4181. width:81px;
  4182. height:30px;
  4183. background:inherit;
  4184. background-color:rgba(242, 242, 242, 0);
  4185. border:none;
  4186. border-top:0px;
  4187. border-right:0px;
  4188. border-bottom:0px;
  4189. border-radius:0px;
  4190. border-top-left-radius:0px;
  4191. border-bottom-left-radius:0px;
  4192. -moz-box-shadow:none;
  4193. -webkit-box-shadow:none;
  4194. box-shadow:none;
  4195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4196. font-weight:400;
  4197. font-style:normal;
  4198. font-size:14px;
  4199. }
  4200. #u71931 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:1716px;
  4204. top:228px;
  4205. width:81px;
  4206. height:30px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:14px;
  4212. }
  4213. #u71931 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:5px 10px 5px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u71931_text {
  4221. border-width:0px;
  4222. white-space:nowrap;
  4223. text-transform:none;
  4224. }
  4225. #u71932 {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:0px;
  4231. height:0px;
  4232. }
  4233. #u71933_div {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:0px;
  4237. top:0px;
  4238. width:340px;
  4239. height:40px;
  4240. background:inherit;
  4241. background-color:rgba(242, 242, 242, 1);
  4242. box-sizing:border-box;
  4243. border-width:1px;
  4244. border-style:solid;
  4245. border-color:rgba(201, 201, 201, 1);
  4246. border-radius:4px;
  4247. -moz-box-shadow:none;
  4248. -webkit-box-shadow:none;
  4249. box-shadow:none;
  4250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4251. font-weight:400;
  4252. font-style:normal;
  4253. font-size:14px;
  4254. text-align:right;
  4255. }
  4256. #u71933 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:1716px;
  4260. top:258px;
  4261. width:340px;
  4262. height:40px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:14px;
  4268. text-align:right;
  4269. }
  4270. #u71933 .text {
  4271. position:absolute;
  4272. align-self:center;
  4273. padding:2px 8px 2px 8px;
  4274. box-sizing:border-box;
  4275. width:100%;
  4276. }
  4277. #u71933_text {
  4278. border-width:0px;
  4279. word-wrap:break-word;
  4280. text-transform:none;
  4281. visibility:hidden;
  4282. }
  4283. #u71934_input {
  4284. position:absolute;
  4285. left:0px;
  4286. top:0px;
  4287. width:263px;
  4288. height:38px;
  4289. padding:2px 2px 2px 2px;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. letter-spacing:normal;
  4295. color:#000000;
  4296. vertical-align:none;
  4297. text-align:left;
  4298. text-transform:none;
  4299. background-color:transparent;
  4300. border-color:transparent;
  4301. }
  4302. #u71934_input.disabled {
  4303. position:absolute;
  4304. left:0px;
  4305. top:0px;
  4306. width:263px;
  4307. height:38px;
  4308. padding:2px 2px 2px 2px;
  4309. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4310. font-weight:400;
  4311. font-style:normal;
  4312. font-size:14px;
  4313. letter-spacing:normal;
  4314. color:#000000;
  4315. vertical-align:none;
  4316. text-align:left;
  4317. text-transform:none;
  4318. background-color:transparent;
  4319. border-color:transparent;
  4320. }
  4321. #u71934_div {
  4322. border-width:0px;
  4323. position:absolute;
  4324. left:0px;
  4325. top:0px;
  4326. width:263px;
  4327. height:38px;
  4328. background:inherit;
  4329. background-color:rgba(242, 242, 242, 1);
  4330. border:none;
  4331. border-radius:0px;
  4332. -moz-box-shadow:none;
  4333. -webkit-box-shadow:none;
  4334. box-shadow:none;
  4335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4336. font-weight:400;
  4337. font-style:normal;
  4338. font-size:14px;
  4339. }
  4340. #u71934 {
  4341. border-width:0px;
  4342. position:absolute;
  4343. left:1724px;
  4344. top:259px;
  4345. width:263px;
  4346. height:38px;
  4347. display:flex;
  4348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4349. font-weight:400;
  4350. font-style:normal;
  4351. font-size:14px;
  4352. }
  4353. #u71934 .text {
  4354. position:absolute;
  4355. align-self:center;
  4356. padding:2px 2px 2px 2px;
  4357. box-sizing:border-box;
  4358. width:100%;
  4359. }
  4360. #u71934_div.disabled {
  4361. border-width:0px;
  4362. position:absolute;
  4363. left:0px;
  4364. top:0px;
  4365. width:263px;
  4366. height:38px;
  4367. background:inherit;
  4368. background-color:rgba(240, 240, 240, 1);
  4369. border:none;
  4370. border-radius:0px;
  4371. -moz-box-shadow:none;
  4372. -webkit-box-shadow:none;
  4373. box-shadow:none;
  4374. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4375. font-weight:400;
  4376. font-style:normal;
  4377. font-size:14px;
  4378. }
  4379. #u71934.disabled {
  4380. }
  4381. #u71935 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:0px;
  4387. height:0px;
  4388. }
  4389. #u71936_img {
  4390. border-width:0px;
  4391. position:absolute;
  4392. left:0px;
  4393. top:0px;
  4394. width:40px;
  4395. height:40px;
  4396. }
  4397. #u71936 {
  4398. border-width:0px;
  4399. position:absolute;
  4400. left:1710px;
  4401. top:149px;
  4402. width:40px;
  4403. height:40px;
  4404. display:flex;
  4405. font-size:18px;
  4406. }
  4407. #u71936 .text {
  4408. position:absolute;
  4409. align-self:center;
  4410. padding:2px 2px 2px 2px;
  4411. box-sizing:border-box;
  4412. width:100%;
  4413. }
  4414. #u71936_text {
  4415. border-width:0px;
  4416. word-wrap:break-word;
  4417. text-transform:none;
  4418. }
  4419. #u71937_div {
  4420. border-width:0px;
  4421. position:absolute;
  4422. left:0px;
  4423. top:0px;
  4424. width:83px;
  4425. height:35px;
  4426. background:inherit;
  4427. background-color:rgba(255, 255, 255, 0);
  4428. border:none;
  4429. border-top:0px;
  4430. border-right:0px;
  4431. border-bottom:0px;
  4432. border-radius:0px;
  4433. border-top-left-radius:0px;
  4434. border-bottom-left-radius:0px;
  4435. -moz-box-shadow:none;
  4436. -webkit-box-shadow:none;
  4437. box-shadow:none;
  4438. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4439. font-weight:500;
  4440. font-style:normal;
  4441. font-size:18px;
  4442. color:#1890FF;
  4443. }
  4444. #u71937 {
  4445. border-width:0px;
  4446. position:absolute;
  4447. left:1760px;
  4448. top:151px;
  4449. width:83px;
  4450. height:35px;
  4451. display:flex;
  4452. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4453. font-weight:500;
  4454. font-style:normal;
  4455. font-size:18px;
  4456. color:#1890FF;
  4457. }
  4458. #u71937 .text {
  4459. position:absolute;
  4460. align-self:center;
  4461. padding:5px 10px 5px 0px;
  4462. box-sizing:border-box;
  4463. width:100%;
  4464. }
  4465. #u71937_text {
  4466. border-width:0px;
  4467. white-space:nowrap;
  4468. text-transform:none;
  4469. }
  4470. #u71938_img {
  4471. border-width:0px;
  4472. position:absolute;
  4473. left:0px;
  4474. top:0px;
  4475. width:185px;
  4476. height:2px;
  4477. }
  4478. #u71938 {
  4479. border-width:0px;
  4480. position:absolute;
  4481. left:1839px;
  4482. top:168px;
  4483. width:184px;
  4484. height:1px;
  4485. display:flex;
  4486. }
  4487. #u71938 .text {
  4488. position:absolute;
  4489. align-self:center;
  4490. padding:2px 2px 2px 2px;
  4491. box-sizing:border-box;
  4492. width:100%;
  4493. }
  4494. #u71938_text {
  4495. border-width:0px;
  4496. word-wrap:break-word;
  4497. text-transform:none;
  4498. visibility:hidden;
  4499. }
  4500. #u71939 {
  4501. border-width:0px;
  4502. position:absolute;
  4503. left:0px;
  4504. top:0px;
  4505. width:0px;
  4506. height:0px;
  4507. }
  4508. #u71940_img {
  4509. border-width:0px;
  4510. position:absolute;
  4511. left:0px;
  4512. top:0px;
  4513. width:40px;
  4514. height:40px;
  4515. }
  4516. #u71940 {
  4517. border-width:0px;
  4518. position:absolute;
  4519. left:2031px;
  4520. top:151px;
  4521. width:40px;
  4522. height:40px;
  4523. display:flex;
  4524. font-size:18px;
  4525. }
  4526. #u71940 .text {
  4527. position:absolute;
  4528. align-self:center;
  4529. padding:2px 2px 2px 2px;
  4530. box-sizing:border-box;
  4531. width:100%;
  4532. }
  4533. #u71940_text {
  4534. border-width:0px;
  4535. word-wrap:break-word;
  4536. text-transform:none;
  4537. }
  4538. #u71941_div {
  4539. border-width:0px;
  4540. position:absolute;
  4541. left:0px;
  4542. top:0px;
  4543. width:101px;
  4544. height:35px;
  4545. background:inherit;
  4546. background-color:rgba(255, 255, 255, 0);
  4547. border:none;
  4548. border-top:0px;
  4549. border-right:0px;
  4550. border-bottom:0px;
  4551. border-radius:0px;
  4552. border-top-left-radius:0px;
  4553. border-bottom-left-radius:0px;
  4554. -moz-box-shadow:none;
  4555. -webkit-box-shadow:none;
  4556. box-shadow:none;
  4557. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4558. font-weight:500;
  4559. font-style:normal;
  4560. font-size:18px;
  4561. }
  4562. #u71941 {
  4563. border-width:0px;
  4564. position:absolute;
  4565. left:2081px;
  4566. top:153px;
  4567. width:101px;
  4568. height:35px;
  4569. display:flex;
  4570. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4571. font-weight:500;
  4572. font-style:normal;
  4573. font-size:18px;
  4574. }
  4575. #u71941 .text {
  4576. position:absolute;
  4577. align-self:center;
  4578. padding:5px 10px 5px 0px;
  4579. box-sizing:border-box;
  4580. width:100%;
  4581. }
  4582. #u71941_text {
  4583. border-width:0px;
  4584. white-space:nowrap;
  4585. text-transform:none;
  4586. }
  4587. #u71942_div {
  4588. border-width:0px;
  4589. position:absolute;
  4590. left:0px;
  4591. top:0px;
  4592. width:116px;
  4593. height:30px;
  4594. background:inherit;
  4595. background-color:rgba(242, 242, 242, 0);
  4596. border:none;
  4597. border-top:0px;
  4598. border-right:0px;
  4599. border-bottom:0px;
  4600. border-radius:0px;
  4601. border-top-left-radius:0px;
  4602. border-bottom-left-radius:0px;
  4603. -moz-box-shadow:none;
  4604. -webkit-box-shadow:none;
  4605. box-shadow:none;
  4606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4607. font-weight:400;
  4608. font-style:normal;
  4609. font-size:14px;
  4610. }
  4611. #u71942 {
  4612. border-width:0px;
  4613. position:absolute;
  4614. left:1716px;
  4615. top:468px;
  4616. width:116px;
  4617. height:30px;
  4618. display:flex;
  4619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4620. font-weight:400;
  4621. font-style:normal;
  4622. font-size:14px;
  4623. }
  4624. #u71942 .text {
  4625. position:absolute;
  4626. align-self:center;
  4627. padding:5px 10px 5px 0px;
  4628. box-sizing:border-box;
  4629. width:100%;
  4630. }
  4631. #u71942_text {
  4632. border-width:0px;
  4633. white-space:nowrap;
  4634. text-transform:none;
  4635. }
  4636. #u71943 {
  4637. border-width:0px;
  4638. position:absolute;
  4639. left:0px;
  4640. top:0px;
  4641. width:0px;
  4642. height:0px;
  4643. }
  4644. #u71944_div {
  4645. border-width:0px;
  4646. position:absolute;
  4647. left:0px;
  4648. top:0px;
  4649. width:340px;
  4650. height:40px;
  4651. background:inherit;
  4652. background-color:rgba(255, 255, 255, 1);
  4653. box-sizing:border-box;
  4654. border-width:1px;
  4655. border-style:solid;
  4656. border-color:rgba(201, 201, 201, 1);
  4657. border-radius:4px;
  4658. -moz-box-shadow:none;
  4659. -webkit-box-shadow:none;
  4660. box-shadow:none;
  4661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4662. font-weight:400;
  4663. font-style:normal;
  4664. font-size:14px;
  4665. text-align:right;
  4666. }
  4667. #u71944 {
  4668. border-width:0px;
  4669. position:absolute;
  4670. left:1716px;
  4671. top:498px;
  4672. width:340px;
  4673. height:40px;
  4674. display:flex;
  4675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4676. font-weight:400;
  4677. font-style:normal;
  4678. font-size:14px;
  4679. text-align:right;
  4680. }
  4681. #u71944 .text {
  4682. position:absolute;
  4683. align-self:center;
  4684. padding:2px 8px 2px 8px;
  4685. box-sizing:border-box;
  4686. width:100%;
  4687. }
  4688. #u71944_text {
  4689. border-width:0px;
  4690. word-wrap:break-word;
  4691. text-transform:none;
  4692. visibility:hidden;
  4693. }
  4694. #u71945_input {
  4695. position:absolute;
  4696. left:0px;
  4697. top:0px;
  4698. width:263px;
  4699. height:38px;
  4700. padding:2px 2px 2px 2px;
  4701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4702. font-weight:400;
  4703. font-style:normal;
  4704. font-size:14px;
  4705. letter-spacing:normal;
  4706. color:#000000;
  4707. vertical-align:none;
  4708. text-align:left;
  4709. text-transform:none;
  4710. background-color:transparent;
  4711. border-color:transparent;
  4712. }
  4713. #u71945_input.disabled {
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:263px;
  4718. height:38px;
  4719. padding:2px 2px 2px 2px;
  4720. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4721. font-weight:400;
  4722. font-style:normal;
  4723. font-size:14px;
  4724. letter-spacing:normal;
  4725. color:#000000;
  4726. vertical-align:none;
  4727. text-align:left;
  4728. text-transform:none;
  4729. background-color:transparent;
  4730. border-color:transparent;
  4731. }
  4732. #u71945_div {
  4733. border-width:0px;
  4734. position:absolute;
  4735. left:0px;
  4736. top:0px;
  4737. width:263px;
  4738. height:38px;
  4739. background:inherit;
  4740. background-color:rgba(255, 255, 255, 1);
  4741. border:none;
  4742. border-radius:0px;
  4743. -moz-box-shadow:none;
  4744. -webkit-box-shadow:none;
  4745. box-shadow:none;
  4746. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4747. font-weight:400;
  4748. font-style:normal;
  4749. font-size:14px;
  4750. }
  4751. #u71945 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:1724px;
  4755. top:499px;
  4756. width:263px;
  4757. height:38px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. }
  4764. #u71945 .text {
  4765. position:absolute;
  4766. align-self:center;
  4767. padding:2px 2px 2px 2px;
  4768. box-sizing:border-box;
  4769. width:100%;
  4770. }
  4771. #u71945_div.disabled {
  4772. border-width:0px;
  4773. position:absolute;
  4774. left:0px;
  4775. top:0px;
  4776. width:263px;
  4777. height:38px;
  4778. background:inherit;
  4779. background-color:rgba(240, 240, 240, 1);
  4780. border:none;
  4781. border-radius:0px;
  4782. -moz-box-shadow:none;
  4783. -webkit-box-shadow:none;
  4784. box-shadow:none;
  4785. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4786. font-weight:400;
  4787. font-style:normal;
  4788. font-size:14px;
  4789. }
  4790. #u71945.disabled {
  4791. }
  4792. #u71946_div {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:0px;
  4796. top:0px;
  4797. width:116px;
  4798. height:30px;
  4799. background:inherit;
  4800. background-color:rgba(242, 242, 242, 0);
  4801. border:none;
  4802. border-top:0px;
  4803. border-right:0px;
  4804. border-bottom:0px;
  4805. border-radius:0px;
  4806. border-top-left-radius:0px;
  4807. border-bottom-left-radius:0px;
  4808. -moz-box-shadow:none;
  4809. -webkit-box-shadow:none;
  4810. box-shadow:none;
  4811. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4812. font-weight:400;
  4813. font-style:normal;
  4814. font-size:14px;
  4815. }
  4816. #u71946 {
  4817. border-width:0px;
  4818. position:absolute;
  4819. left:1716px;
  4820. top:388px;
  4821. width:116px;
  4822. height:30px;
  4823. display:flex;
  4824. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4825. font-weight:400;
  4826. font-style:normal;
  4827. font-size:14px;
  4828. }
  4829. #u71946 .text {
  4830. position:absolute;
  4831. align-self:center;
  4832. padding:5px 10px 5px 0px;
  4833. box-sizing:border-box;
  4834. width:100%;
  4835. }
  4836. #u71946_text {
  4837. border-width:0px;
  4838. white-space:nowrap;
  4839. text-transform:none;
  4840. }
  4841. #u71947 {
  4842. border-width:0px;
  4843. position:absolute;
  4844. left:0px;
  4845. top:0px;
  4846. width:0px;
  4847. height:0px;
  4848. }
  4849. #u71948_div {
  4850. border-width:0px;
  4851. position:absolute;
  4852. left:0px;
  4853. top:0px;
  4854. width:340px;
  4855. height:40px;
  4856. background:inherit;
  4857. background-color:rgba(255, 255, 255, 1);
  4858. box-sizing:border-box;
  4859. border-width:1px;
  4860. border-style:solid;
  4861. border-color:rgba(201, 201, 201, 1);
  4862. border-radius:4px;
  4863. -moz-box-shadow:none;
  4864. -webkit-box-shadow:none;
  4865. box-shadow:none;
  4866. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4867. font-weight:400;
  4868. font-style:normal;
  4869. font-size:14px;
  4870. text-align:right;
  4871. }
  4872. #u71948 {
  4873. border-width:0px;
  4874. position:absolute;
  4875. left:1716px;
  4876. top:418px;
  4877. width:340px;
  4878. height:40px;
  4879. display:flex;
  4880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4881. font-weight:400;
  4882. font-style:normal;
  4883. font-size:14px;
  4884. text-align:right;
  4885. }
  4886. #u71948 .text {
  4887. position:absolute;
  4888. align-self:center;
  4889. padding:2px 8px 2px 8px;
  4890. box-sizing:border-box;
  4891. width:100%;
  4892. }
  4893. #u71948_text {
  4894. border-width:0px;
  4895. word-wrap:break-word;
  4896. text-transform:none;
  4897. visibility:hidden;
  4898. }
  4899. #u71949_input {
  4900. position:absolute;
  4901. left:0px;
  4902. top:0px;
  4903. width:263px;
  4904. height:38px;
  4905. padding:2px 2px 2px 2px;
  4906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4907. font-weight:400;
  4908. font-style:normal;
  4909. font-size:14px;
  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. }
  4918. #u71949_input.disabled {
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:263px;
  4923. height:38px;
  4924. padding:2px 2px 2px 2px;
  4925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4926. font-weight:400;
  4927. font-style:normal;
  4928. font-size:14px;
  4929. letter-spacing:normal;
  4930. color:#000000;
  4931. vertical-align:none;
  4932. text-align:left;
  4933. text-transform:none;
  4934. background-color:transparent;
  4935. border-color:transparent;
  4936. }
  4937. #u71949_div {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:0px;
  4941. top:0px;
  4942. width:263px;
  4943. height:38px;
  4944. background:inherit;
  4945. background-color:rgba(255, 255, 255, 1);
  4946. border:none;
  4947. border-radius:0px;
  4948. -moz-box-shadow:none;
  4949. -webkit-box-shadow:none;
  4950. box-shadow:none;
  4951. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4952. font-weight:400;
  4953. font-style:normal;
  4954. font-size:14px;
  4955. }
  4956. #u71949 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:1724px;
  4960. top:419px;
  4961. width:263px;
  4962. height:38px;
  4963. display:flex;
  4964. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:14px;
  4968. }
  4969. #u71949 .text {
  4970. position:absolute;
  4971. align-self:center;
  4972. padding:2px 2px 2px 2px;
  4973. box-sizing:border-box;
  4974. width:100%;
  4975. }
  4976. #u71949_div.disabled {
  4977. border-width:0px;
  4978. position:absolute;
  4979. left:0px;
  4980. top:0px;
  4981. width:263px;
  4982. height:38px;
  4983. background:inherit;
  4984. background-color:rgba(240, 240, 240, 1);
  4985. border:none;
  4986. border-radius:0px;
  4987. -moz-box-shadow:none;
  4988. -webkit-box-shadow:none;
  4989. box-shadow:none;
  4990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4991. font-weight:400;
  4992. font-style:normal;
  4993. font-size:14px;
  4994. }
  4995. #u71949.disabled {
  4996. }
  4997. #u71950_div {
  4998. border-width:0px;
  4999. position:absolute;
  5000. left:0px;
  5001. top:0px;
  5002. width:90px;
  5003. height:30px;
  5004. background:inherit;
  5005. background-color:rgba(242, 242, 242, 0);
  5006. border:none;
  5007. border-top:0px;
  5008. border-right:0px;
  5009. border-bottom:0px;
  5010. border-radius:0px;
  5011. border-top-left-radius:0px;
  5012. border-bottom-left-radius:0px;
  5013. -moz-box-shadow:none;
  5014. -webkit-box-shadow:none;
  5015. box-shadow:none;
  5016. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5017. font-weight:400;
  5018. font-style:normal;
  5019. font-size:14px;
  5020. }
  5021. #u71950 {
  5022. border-width:0px;
  5023. position:absolute;
  5024. left:1716px;
  5025. top:548px;
  5026. width:90px;
  5027. height:30px;
  5028. display:flex;
  5029. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5030. font-weight:400;
  5031. font-style:normal;
  5032. font-size:14px;
  5033. }
  5034. #u71950 .text {
  5035. position:absolute;
  5036. align-self:center;
  5037. padding:5px 10px 5px 0px;
  5038. box-sizing:border-box;
  5039. width:100%;
  5040. }
  5041. #u71950_text {
  5042. border-width:0px;
  5043. word-wrap:break-word;
  5044. text-transform:none;
  5045. }
  5046. #u71951 {
  5047. border-width:0px;
  5048. position:absolute;
  5049. left:0px;
  5050. top:0px;
  5051. width:0px;
  5052. height:0px;
  5053. }
  5054. #u71952_div {
  5055. border-width:0px;
  5056. position:absolute;
  5057. left:0px;
  5058. top:0px;
  5059. width:340px;
  5060. height:40px;
  5061. background:inherit;
  5062. background-color:rgba(255, 255, 255, 1);
  5063. box-sizing:border-box;
  5064. border-width:1px;
  5065. border-style:solid;
  5066. border-color:rgba(201, 201, 201, 1);
  5067. border-radius:4px;
  5068. -moz-box-shadow:none;
  5069. -webkit-box-shadow:none;
  5070. box-shadow:none;
  5071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5072. font-weight:400;
  5073. font-style:normal;
  5074. font-size:14px;
  5075. text-align:right;
  5076. }
  5077. #u71952 {
  5078. border-width:0px;
  5079. position:absolute;
  5080. left:1716px;
  5081. top:578px;
  5082. width:340px;
  5083. height:40px;
  5084. display:flex;
  5085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5086. font-weight:400;
  5087. font-style:normal;
  5088. font-size:14px;
  5089. text-align:right;
  5090. }
  5091. #u71952 .text {
  5092. position:absolute;
  5093. align-self:center;
  5094. padding:2px 8px 2px 8px;
  5095. box-sizing:border-box;
  5096. width:100%;
  5097. }
  5098. #u71952_text {
  5099. border-width:0px;
  5100. word-wrap:break-word;
  5101. text-transform:none;
  5102. visibility:hidden;
  5103. }
  5104. #u71953_input {
  5105. position:absolute;
  5106. left:0px;
  5107. top:0px;
  5108. width:263px;
  5109. height:38px;
  5110. padding:2px 2px 2px 2px;
  5111. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5112. font-weight:400;
  5113. font-style:normal;
  5114. font-size:14px;
  5115. letter-spacing:normal;
  5116. color:#000000;
  5117. vertical-align:none;
  5118. text-align:left;
  5119. text-transform:none;
  5120. background-color:transparent;
  5121. border-color:transparent;
  5122. }
  5123. #u71953_input.disabled {
  5124. position:absolute;
  5125. left:0px;
  5126. top:0px;
  5127. width:263px;
  5128. height:38px;
  5129. padding:2px 2px 2px 2px;
  5130. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5131. font-weight:400;
  5132. font-style:normal;
  5133. font-size:14px;
  5134. letter-spacing:normal;
  5135. color:#000000;
  5136. vertical-align:none;
  5137. text-align:left;
  5138. text-transform:none;
  5139. background-color:transparent;
  5140. border-color:transparent;
  5141. }
  5142. #u71953_div {
  5143. border-width:0px;
  5144. position:absolute;
  5145. left:0px;
  5146. top:0px;
  5147. width:263px;
  5148. height:38px;
  5149. background:inherit;
  5150. background-color:rgba(255, 255, 255, 1);
  5151. border:none;
  5152. border-radius:0px;
  5153. -moz-box-shadow:none;
  5154. -webkit-box-shadow:none;
  5155. box-shadow:none;
  5156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5157. font-weight:400;
  5158. font-style:normal;
  5159. font-size:14px;
  5160. }
  5161. #u71953 {
  5162. border-width:0px;
  5163. position:absolute;
  5164. left:1724px;
  5165. top:579px;
  5166. width:263px;
  5167. height:38px;
  5168. display:flex;
  5169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5170. font-weight:400;
  5171. font-style:normal;
  5172. font-size:14px;
  5173. }
  5174. #u71953 .text {
  5175. position:absolute;
  5176. align-self:center;
  5177. padding:2px 2px 2px 2px;
  5178. box-sizing:border-box;
  5179. width:100%;
  5180. }
  5181. #u71953_div.disabled {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:263px;
  5187. height:38px;
  5188. background:inherit;
  5189. background-color:rgba(240, 240, 240, 1);
  5190. border:none;
  5191. border-radius:0px;
  5192. -moz-box-shadow:none;
  5193. -webkit-box-shadow:none;
  5194. box-shadow:none;
  5195. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5196. font-weight:400;
  5197. font-style:normal;
  5198. font-size:14px;
  5199. }
  5200. #u71953.disabled {
  5201. }
  5202. #u71954_div {
  5203. border-width:0px;
  5204. position:absolute;
  5205. left:0px;
  5206. top:0px;
  5207. width:109px;
  5208. height:30px;
  5209. background:inherit;
  5210. background-color:rgba(242, 242, 242, 0);
  5211. border:none;
  5212. border-top:0px;
  5213. border-right:0px;
  5214. border-bottom:0px;
  5215. border-radius:0px;
  5216. border-top-left-radius:0px;
  5217. border-bottom-left-radius:0px;
  5218. -moz-box-shadow:none;
  5219. -webkit-box-shadow:none;
  5220. box-shadow:none;
  5221. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5222. font-weight:400;
  5223. font-style:normal;
  5224. font-size:14px;
  5225. text-align:right;
  5226. }
  5227. #u71954 {
  5228. border-width:0px;
  5229. position:absolute;
  5230. left:1716px;
  5231. top:628px;
  5232. width:109px;
  5233. height:30px;
  5234. display:flex;
  5235. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5236. font-weight:400;
  5237. font-style:normal;
  5238. font-size:14px;
  5239. text-align:right;
  5240. }
  5241. #u71954 .text {
  5242. position:absolute;
  5243. align-self:center;
  5244. padding:5px 10px 5px 0px;
  5245. box-sizing:border-box;
  5246. width:100%;
  5247. }
  5248. #u71954_text {
  5249. border-width:0px;
  5250. white-space:nowrap;
  5251. text-transform:none;
  5252. }
  5253. #u71955_img {
  5254. border-width:0px;
  5255. position:absolute;
  5256. left:0px;
  5257. top:0px;
  5258. width:50px;
  5259. height:31px;
  5260. }
  5261. #u71955 {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:1716px;
  5265. top:668px;
  5266. width:50px;
  5267. height:31px;
  5268. display:flex;
  5269. }
  5270. #u71955 .text {
  5271. position:absolute;
  5272. align-self:center;
  5273. padding:2px 2px 2px 2px;
  5274. box-sizing:border-box;
  5275. width:100%;
  5276. }
  5277. #u71955_text {
  5278. border-width:0px;
  5279. word-wrap:break-word;
  5280. text-transform:none;
  5281. visibility:hidden;
  5282. }
  5283. #u71956_img {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:0px;
  5287. top:0px;
  5288. width:20px;
  5289. height:20px;
  5290. }
  5291. #u71956 {
  5292. border-width:0px;
  5293. position:absolute;
  5294. left:1792px;
  5295. top:553px;
  5296. width:20px;
  5297. height:20px;
  5298. display:flex;
  5299. }
  5300. #u71956 .text {
  5301. position:absolute;
  5302. align-self:center;
  5303. padding:2px 2px 2px 2px;
  5304. box-sizing:border-box;
  5305. width:100%;
  5306. }
  5307. #u71956_text {
  5308. border-width:0px;
  5309. word-wrap:break-word;
  5310. text-transform:none;
  5311. visibility:hidden;
  5312. }
  5313. #u71957 {
  5314. border-width:0px;
  5315. position:absolute;
  5316. left:0px;
  5317. top:0px;
  5318. width:0px;
  5319. height:0px;
  5320. }
  5321. #u71958_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:900px;
  5327. height:1200px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 1);
  5330. box-sizing:border-box;
  5331. border-width:1px;
  5332. border-style:solid;
  5333. border-color:rgba(215, 215, 215, 1);
  5334. border-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. color:#AAAAAA;
  5343. text-align:center;
  5344. line-height:30px;
  5345. }
  5346. #u71958 {
  5347. border-width:0px;
  5348. position:absolute;
  5349. left:2569px;
  5350. top:50px;
  5351. width:900px;
  5352. height:1200px;
  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:#AAAAAA;
  5359. text-align:center;
  5360. line-height:30px;
  5361. }
  5362. #u71958 .text {
  5363. position:absolute;
  5364. align-self:center;
  5365. padding:5px 10px 5px 10px;
  5366. box-sizing:border-box;
  5367. width:100%;
  5368. }
  5369. #u71958_text {
  5370. border-width:0px;
  5371. word-wrap:break-word;
  5372. text-transform:none;
  5373. visibility:hidden;
  5374. }
  5375. #u71959_div {
  5376. border-width:0px;
  5377. position:absolute;
  5378. left:0px;
  5379. top:0px;
  5380. width:119px;
  5381. height:35px;
  5382. background:inherit;
  5383. background-color:rgba(255, 255, 255, 0);
  5384. border:none;
  5385. border-top:0px;
  5386. border-right:0px;
  5387. border-bottom:0px;
  5388. border-radius:0px;
  5389. border-top-left-radius:0px;
  5390. border-bottom-left-radius:0px;
  5391. -moz-box-shadow:none;
  5392. -webkit-box-shadow:none;
  5393. box-shadow:none;
  5394. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5395. font-weight:500;
  5396. font-style:normal;
  5397. font-size:18px;
  5398. }
  5399. #u71959 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:2590px;
  5403. top:71px;
  5404. width:119px;
  5405. height:35px;
  5406. display:flex;
  5407. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5408. font-weight:500;
  5409. font-style:normal;
  5410. font-size:18px;
  5411. }
  5412. #u71959 .text {
  5413. position:absolute;
  5414. align-self:center;
  5415. padding:5px 10px 5px 0px;
  5416. box-sizing:border-box;
  5417. width:100%;
  5418. }
  5419. #u71959_text {
  5420. border-width:0px;
  5421. white-space:nowrap;
  5422. text-transform:none;
  5423. }
  5424. #u71960 {
  5425. border-width:0px;
  5426. position:absolute;
  5427. left:0px;
  5428. top:0px;
  5429. width:0px;
  5430. height:0px;
  5431. }
  5432. #u71961_div {
  5433. border-width:0px;
  5434. position:absolute;
  5435. left:0px;
  5436. top:0px;
  5437. width:40px;
  5438. height:40px;
  5439. background:inherit;
  5440. background-color:rgba(255, 255, 255, 0);
  5441. border:none;
  5442. border-top:0px;
  5443. border-right:0px;
  5444. border-bottom:0px;
  5445. border-radius:0px;
  5446. border-top-left-radius:0px;
  5447. border-bottom-left-radius:0px;
  5448. -moz-box-shadow:none;
  5449. -webkit-box-shadow:none;
  5450. box-shadow:none;
  5451. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5452. font-weight:500;
  5453. font-style:normal;
  5454. font-size:18px;
  5455. text-align:center;
  5456. }
  5457. #u71961 {
  5458. border-width:0px;
  5459. position:absolute;
  5460. left:3429px;
  5461. top:50px;
  5462. width:40px;
  5463. height:40px;
  5464. display:flex;
  5465. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5466. font-weight:500;
  5467. font-style:normal;
  5468. font-size:18px;
  5469. text-align:center;
  5470. }
  5471. #u71961 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:5px 10px 5px 0px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u71961_text {
  5479. border-width:0px;
  5480. word-wrap:break-word;
  5481. text-transform:none;
  5482. }
  5483. #u71962_img {
  5484. border-width:0px;
  5485. position:absolute;
  5486. left:0px;
  5487. top:0px;
  5488. width:13px;
  5489. height:13px;
  5490. }
  5491. #u71962 {
  5492. border-width:0px;
  5493. position:absolute;
  5494. left:3417px;
  5495. top:66px;
  5496. width:13px;
  5497. height:13px;
  5498. display:flex;
  5499. }
  5500. #u71962 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u71962_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u71963 {
  5514. border-width:0px;
  5515. position:absolute;
  5516. left:0px;
  5517. top:0px;
  5518. width:0px;
  5519. height:0px;
  5520. }
  5521. #u71964_div {
  5522. border-width:0px;
  5523. position:absolute;
  5524. left:0px;
  5525. top:0px;
  5526. width:900px;
  5527. height:60px;
  5528. background:inherit;
  5529. background-color:rgba(255, 255, 255, 1);
  5530. box-sizing:border-box;
  5531. border-width:1px;
  5532. border-style:solid;
  5533. border-color:rgba(215, 215, 215, 1);
  5534. border-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5539. font-weight:400;
  5540. font-style:normal;
  5541. font-size:14px;
  5542. color:#AAAAAA;
  5543. text-align:center;
  5544. line-height:30px;
  5545. }
  5546. #u71964 {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:2569px;
  5550. top:1190px;
  5551. width:900px;
  5552. height:60px;
  5553. display:flex;
  5554. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5555. font-weight:400;
  5556. font-style:normal;
  5557. font-size:14px;
  5558. color:#AAAAAA;
  5559. text-align:center;
  5560. line-height:30px;
  5561. }
  5562. #u71964 .text {
  5563. position:absolute;
  5564. align-self:center;
  5565. padding:5px 10px 5px 10px;
  5566. box-sizing:border-box;
  5567. width:100%;
  5568. }
  5569. #u71964_text {
  5570. border-width:0px;
  5571. word-wrap:break-word;
  5572. text-transform:none;
  5573. visibility:hidden;
  5574. }
  5575. #u71965_div {
  5576. border-width:0px;
  5577. position:absolute;
  5578. left:0px;
  5579. top:0px;
  5580. width:80px;
  5581. height:30px;
  5582. background:inherit;
  5583. background-color:rgba(24, 144, 255, 1);
  5584. border:none;
  5585. border-radius:4px;
  5586. -moz-box-shadow:none;
  5587. -webkit-box-shadow:none;
  5588. box-shadow:none;
  5589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5590. font-weight:400;
  5591. font-style:normal;
  5592. font-size:14px;
  5593. color:#FFFFFF;
  5594. }
  5595. #u71965 {
  5596. border-width:0px;
  5597. position:absolute;
  5598. left:3344px;
  5599. top:1205px;
  5600. width:80px;
  5601. height:30px;
  5602. display:flex;
  5603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5604. font-weight:400;
  5605. font-style:normal;
  5606. font-size:14px;
  5607. color:#FFFFFF;
  5608. }
  5609. #u71965 .text {
  5610. position:absolute;
  5611. align-self:center;
  5612. padding:2px 2px 2px 2px;
  5613. box-sizing:border-box;
  5614. width:100%;
  5615. }
  5616. #u71965_text {
  5617. border-width:0px;
  5618. word-wrap:break-word;
  5619. text-transform:none;
  5620. }
  5621. #u71966_div {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:0px;
  5625. top:0px;
  5626. width:80px;
  5627. height:30px;
  5628. background:inherit;
  5629. background-color:rgba(255, 255, 255, 1);
  5630. box-sizing:border-box;
  5631. border-width:1px;
  5632. border-style:solid;
  5633. border-color:rgba(170, 170, 170, 1);
  5634. border-radius:4px;
  5635. -moz-box-shadow:none;
  5636. -webkit-box-shadow:none;
  5637. box-shadow:none;
  5638. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5639. font-weight:400;
  5640. font-style:normal;
  5641. font-size:14px;
  5642. }
  5643. #u71966 {
  5644. border-width:0px;
  5645. position:absolute;
  5646. left:3244px;
  5647. top:1205px;
  5648. width:80px;
  5649. height:30px;
  5650. display:flex;
  5651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5652. font-weight:400;
  5653. font-style:normal;
  5654. font-size:14px;
  5655. }
  5656. #u71966 .text {
  5657. position:absolute;
  5658. align-self:center;
  5659. padding:2px 2px 2px 2px;
  5660. box-sizing:border-box;
  5661. width:100%;
  5662. }
  5663. #u71966_text {
  5664. border-width:0px;
  5665. word-wrap:break-word;
  5666. text-transform:none;
  5667. }
  5668. #u71967_div {
  5669. border-width:0px;
  5670. position:absolute;
  5671. left:0px;
  5672. top:0px;
  5673. width:139px;
  5674. height:30px;
  5675. background:inherit;
  5676. background-color:rgba(242, 242, 242, 0);
  5677. border:none;
  5678. border-top:0px;
  5679. border-right:0px;
  5680. border-bottom:0px;
  5681. border-radius:0px;
  5682. border-top-left-radius:0px;
  5683. border-bottom-left-radius:0px;
  5684. -moz-box-shadow:none;
  5685. -webkit-box-shadow:none;
  5686. box-shadow:none;
  5687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:14px;
  5691. text-align:right;
  5692. }
  5693. #u71967 {
  5694. border-width:0px;
  5695. position:absolute;
  5696. left:2643px;
  5697. top:228px;
  5698. width:139px;
  5699. height:30px;
  5700. display:flex;
  5701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5702. font-weight:400;
  5703. font-style:normal;
  5704. font-size:14px;
  5705. text-align:right;
  5706. }
  5707. #u71967 .text {
  5708. position:absolute;
  5709. align-self:center;
  5710. padding:5px 10px 5px 0px;
  5711. box-sizing:border-box;
  5712. width:100%;
  5713. }
  5714. #u71967_text {
  5715. border-width:0px;
  5716. white-space:nowrap;
  5717. text-transform:none;
  5718. }
  5719. #u71968 {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:0px;
  5725. height:0px;
  5726. }
  5727. #u71969_div {
  5728. border-width:0px;
  5729. position:absolute;
  5730. left:0px;
  5731. top:0px;
  5732. width:472px;
  5733. height:40px;
  5734. background:inherit;
  5735. background-color:rgba(255, 255, 255, 1);
  5736. box-sizing:border-box;
  5737. border-width:1px;
  5738. border-style:solid;
  5739. border-color:rgba(201, 201, 201, 1);
  5740. border-radius:4px;
  5741. -moz-box-shadow:none;
  5742. -webkit-box-shadow:none;
  5743. box-shadow:none;
  5744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5745. font-weight:400;
  5746. font-style:normal;
  5747. font-size:14px;
  5748. text-align:right;
  5749. }
  5750. #u71969 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:2650px;
  5754. top:258px;
  5755. width:472px;
  5756. height:40px;
  5757. display:flex;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:14px;
  5762. text-align:right;
  5763. }
  5764. #u71969 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 8px 2px 8px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u71969_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u71970_input {
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:365px;
  5782. height:38px;
  5783. padding:2px 2px 2px 2px;
  5784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5785. font-weight:400;
  5786. font-style:normal;
  5787. font-size:14px;
  5788. letter-spacing:normal;
  5789. color:#000000;
  5790. vertical-align:none;
  5791. text-align:left;
  5792. text-transform:none;
  5793. background-color:transparent;
  5794. border-color:transparent;
  5795. }
  5796. #u71970_input.disabled {
  5797. position:absolute;
  5798. left:0px;
  5799. top:0px;
  5800. width:365px;
  5801. height:38px;
  5802. padding:2px 2px 2px 2px;
  5803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5804. font-weight:400;
  5805. font-style:normal;
  5806. font-size:14px;
  5807. letter-spacing:normal;
  5808. color:#000000;
  5809. vertical-align:none;
  5810. text-align:left;
  5811. text-transform:none;
  5812. background-color:transparent;
  5813. border-color:transparent;
  5814. }
  5815. #u71970_div {
  5816. border-width:0px;
  5817. position:absolute;
  5818. left:0px;
  5819. top:0px;
  5820. width:365px;
  5821. height:38px;
  5822. background:inherit;
  5823. background-color:rgba(255, 255, 255, 1);
  5824. border:none;
  5825. border-radius:0px;
  5826. -moz-box-shadow:none;
  5827. -webkit-box-shadow:none;
  5828. box-shadow:none;
  5829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:14px;
  5833. }
  5834. #u71970 {
  5835. border-width:0px;
  5836. position:absolute;
  5837. left:2661px;
  5838. top:259px;
  5839. width:365px;
  5840. height:38px;
  5841. display:flex;
  5842. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5843. font-weight:400;
  5844. font-style:normal;
  5845. font-size:14px;
  5846. }
  5847. #u71970 .text {
  5848. position:absolute;
  5849. align-self:center;
  5850. padding:2px 2px 2px 2px;
  5851. box-sizing:border-box;
  5852. width:100%;
  5853. }
  5854. #u71970_div.disabled {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:0px;
  5858. top:0px;
  5859. width:365px;
  5860. height:38px;
  5861. background:inherit;
  5862. background-color:rgba(240, 240, 240, 1);
  5863. border:none;
  5864. border-radius:0px;
  5865. -moz-box-shadow:none;
  5866. -webkit-box-shadow:none;
  5867. box-shadow:none;
  5868. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5869. font-weight:400;
  5870. font-style:normal;
  5871. font-size:14px;
  5872. }
  5873. #u71970.disabled {
  5874. }
  5875. #u71971 {
  5876. border-width:0px;
  5877. position:absolute;
  5878. left:0px;
  5879. top:0px;
  5880. width:0px;
  5881. height:0px;
  5882. }
  5883. #u71972_img {
  5884. border-width:0px;
  5885. position:absolute;
  5886. left:0px;
  5887. top:0px;
  5888. width:40px;
  5889. height:40px;
  5890. }
  5891. #u71972 {
  5892. border-width:0px;
  5893. position:absolute;
  5894. left:2650px;
  5895. top:149px;
  5896. width:40px;
  5897. height:40px;
  5898. display:flex;
  5899. font-size:18px;
  5900. }
  5901. #u71972 .text {
  5902. position:absolute;
  5903. align-self:center;
  5904. padding:2px 2px 2px 2px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u71972_text {
  5909. border-width:0px;
  5910. word-wrap:break-word;
  5911. text-transform:none;
  5912. }
  5913. #u71973_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:83px;
  5919. height:35px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. border:none;
  5923. border-top:0px;
  5924. border-right:0px;
  5925. border-bottom:0px;
  5926. border-radius:0px;
  5927. border-top-left-radius:0px;
  5928. border-bottom-left-radius:0px;
  5929. -moz-box-shadow:none;
  5930. -webkit-box-shadow:none;
  5931. box-shadow:none;
  5932. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5933. font-weight:500;
  5934. font-style:normal;
  5935. font-size:18px;
  5936. }
  5937. #u71973 {
  5938. border-width:0px;
  5939. position:absolute;
  5940. left:2700px;
  5941. top:151px;
  5942. width:83px;
  5943. height:35px;
  5944. display:flex;
  5945. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5946. font-weight:500;
  5947. font-style:normal;
  5948. font-size:18px;
  5949. }
  5950. #u71973 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:5px 10px 5px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u71973_text {
  5958. border-width:0px;
  5959. white-space:nowrap;
  5960. text-transform:none;
  5961. }
  5962. #u71974_img {
  5963. border-width:0px;
  5964. position:absolute;
  5965. left:0px;
  5966. top:0px;
  5967. width:185px;
  5968. height:2px;
  5969. }
  5970. #u71974 {
  5971. border-width:0px;
  5972. position:absolute;
  5973. left:2779px;
  5974. top:168px;
  5975. width:184px;
  5976. height:1px;
  5977. display:flex;
  5978. }
  5979. #u71974 .text {
  5980. position:absolute;
  5981. align-self:center;
  5982. padding:2px 2px 2px 2px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u71974_text {
  5987. border-width:0px;
  5988. word-wrap:break-word;
  5989. text-transform:none;
  5990. visibility:hidden;
  5991. }
  5992. #u71975 {
  5993. border-width:0px;
  5994. position:absolute;
  5995. left:0px;
  5996. top:0px;
  5997. width:0px;
  5998. height:0px;
  5999. }
  6000. #u71976_img {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:0px;
  6004. top:0px;
  6005. width:40px;
  6006. height:40px;
  6007. }
  6008. #u71976 {
  6009. border-width:0px;
  6010. position:absolute;
  6011. left:2971px;
  6012. top:151px;
  6013. width:40px;
  6014. height:40px;
  6015. display:flex;
  6016. font-size:18px;
  6017. }
  6018. #u71976 .text {
  6019. position:absolute;
  6020. align-self:center;
  6021. padding:2px 2px 2px 2px;
  6022. box-sizing:border-box;
  6023. width:100%;
  6024. }
  6025. #u71976_text {
  6026. border-width:0px;
  6027. word-wrap:break-word;
  6028. text-transform:none;
  6029. }
  6030. #u71977_div {
  6031. border-width:0px;
  6032. position:absolute;
  6033. left:0px;
  6034. top:0px;
  6035. width:101px;
  6036. height:35px;
  6037. background:inherit;
  6038. background-color:rgba(255, 255, 255, 0);
  6039. border:none;
  6040. border-top:0px;
  6041. border-right:0px;
  6042. border-bottom:0px;
  6043. border-radius:0px;
  6044. border-top-left-radius:0px;
  6045. border-bottom-left-radius:0px;
  6046. -moz-box-shadow:none;
  6047. -webkit-box-shadow:none;
  6048. box-shadow:none;
  6049. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6050. font-weight:500;
  6051. font-style:normal;
  6052. font-size:18px;
  6053. color:#1890FF;
  6054. }
  6055. #u71977 {
  6056. border-width:0px;
  6057. position:absolute;
  6058. left:3021px;
  6059. top:153px;
  6060. width:101px;
  6061. height:35px;
  6062. display:flex;
  6063. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6064. font-weight:500;
  6065. font-style:normal;
  6066. font-size:18px;
  6067. color:#1890FF;
  6068. }
  6069. #u71977 .text {
  6070. position:absolute;
  6071. align-self:center;
  6072. padding:5px 10px 5px 0px;
  6073. box-sizing:border-box;
  6074. width:100%;
  6075. }
  6076. #u71977_text {
  6077. border-width:0px;
  6078. white-space:nowrap;
  6079. text-transform:none;
  6080. }
  6081. #u71978_img {
  6082. border-width:0px;
  6083. position:absolute;
  6084. left:0px;
  6085. top:0px;
  6086. width:20px;
  6087. height:20px;
  6088. }
  6089. #u71978 {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:2771px;
  6093. top:231px;
  6094. width:20px;
  6095. height:20px;
  6096. display:flex;
  6097. }
  6098. #u71978 .text {
  6099. position:absolute;
  6100. align-self:center;
  6101. padding:2px 2px 2px 2px;
  6102. box-sizing:border-box;
  6103. width:100%;
  6104. }
  6105. #u71978_text {
  6106. border-width:0px;
  6107. word-wrap:break-word;
  6108. text-transform:none;
  6109. visibility:hidden;
  6110. }
  6111. #u71979 label {
  6112. left:0px;
  6113. width:100%;
  6114. }
  6115. #u71979_img {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:0px;
  6119. top:4px;
  6120. width:12px;
  6121. height:12px;
  6122. }
  6123. #u71979 {
  6124. border-width:0px;
  6125. position:absolute;
  6126. left:2650px;
  6127. top:329px;
  6128. width:341px;
  6129. height:20px;
  6130. display:flex;
  6131. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6132. font-weight:400;
  6133. font-style:normal;
  6134. font-size:14px;
  6135. }
  6136. #u71979 .text {
  6137. position:absolute;
  6138. align-self:center;
  6139. padding:0px 2px 0px 2px;
  6140. box-sizing:border-box;
  6141. }
  6142. #u71979_img.selected {
  6143. }
  6144. #u71979.selected {
  6145. }
  6146. #u71979_img.disabled {
  6147. }
  6148. #u71979.disabled {
  6149. }
  6150. #u71979_img.selectedDisabled {
  6151. }
  6152. #u71979.selectedDisabled {
  6153. }
  6154. #u71979_text {
  6155. border-width:0px;
  6156. position:absolute;
  6157. left:14px;
  6158. top:0px;
  6159. width:325px;
  6160. word-wrap:break-word;
  6161. text-transform:none;
  6162. }
  6163. #u71979_input {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:0px;
  6167. top:0px;
  6168. width:0px;
  6169. height:0px;
  6170. opacity:0;
  6171. }
  6172. #u71980 {
  6173. border-width:0px;
  6174. position:absolute;
  6175. left:0px;
  6176. top:0px;
  6177. width:0px;
  6178. height:0px;
  6179. }
  6180. #u71981_div {
  6181. border-width:0px;
  6182. position:absolute;
  6183. left:0px;
  6184. top:0px;
  6185. width:472px;
  6186. height:40px;
  6187. background:inherit;
  6188. background-color:rgba(242, 242, 242, 1);
  6189. box-sizing:border-box;
  6190. border-width:1px;
  6191. border-style:solid;
  6192. border-color:rgba(201, 201, 201, 1);
  6193. border-radius:4px;
  6194. -moz-box-shadow:none;
  6195. -webkit-box-shadow:none;
  6196. box-shadow:none;
  6197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6198. font-weight:400;
  6199. font-style:normal;
  6200. font-size:14px;
  6201. text-align:right;
  6202. }
  6203. #u71981 {
  6204. border-width:0px;
  6205. position:absolute;
  6206. left:2650px;
  6207. top:358px;
  6208. width:472px;
  6209. height:40px;
  6210. display:flex;
  6211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6212. font-weight:400;
  6213. font-style:normal;
  6214. font-size:14px;
  6215. text-align:right;
  6216. }
  6217. #u71981 .text {
  6218. position:absolute;
  6219. align-self:center;
  6220. padding:2px 8px 2px 8px;
  6221. box-sizing:border-box;
  6222. width:100%;
  6223. }
  6224. #u71981_text {
  6225. border-width:0px;
  6226. word-wrap:break-word;
  6227. text-transform:none;
  6228. visibility:hidden;
  6229. }
  6230. #u71982_input {
  6231. position:absolute;
  6232. left:0px;
  6233. top:0px;
  6234. width:440px;
  6235. height:31px;
  6236. padding:2px 2px 2px 2px;
  6237. font-family:'ArialMT', 'Arial', sans-serif;
  6238. font-weight:400;
  6239. font-style:normal;
  6240. font-size:13px;
  6241. letter-spacing:normal;
  6242. color:#000000;
  6243. vertical-align:none;
  6244. text-align:left;
  6245. text-transform:none;
  6246. background-color:transparent;
  6247. border-color:transparent;
  6248. }
  6249. #u71982_input.disabled {
  6250. position:absolute;
  6251. left:0px;
  6252. top:0px;
  6253. width:440px;
  6254. height:31px;
  6255. padding:2px 2px 2px 2px;
  6256. font-family:'ArialMT', 'Arial', sans-serif;
  6257. font-weight:400;
  6258. font-style:normal;
  6259. font-size:13px;
  6260. letter-spacing:normal;
  6261. color:#000000;
  6262. vertical-align:none;
  6263. text-align:left;
  6264. text-transform:none;
  6265. background-color:transparent;
  6266. border-color:transparent;
  6267. }
  6268. #u71982_div {
  6269. border-width:0px;
  6270. position:absolute;
  6271. left:0px;
  6272. top:0px;
  6273. width:440px;
  6274. height:31px;
  6275. background:inherit;
  6276. background-color:rgba(242, 242, 242, 1);
  6277. border:none;
  6278. border-radius:0px;
  6279. -moz-box-shadow:none;
  6280. -webkit-box-shadow:none;
  6281. box-shadow:none;
  6282. }
  6283. #u71982 {
  6284. border-width:0px;
  6285. position:absolute;
  6286. left:2663px;
  6287. top:363px;
  6288. width:440px;
  6289. height:31px;
  6290. display:flex;
  6291. }
  6292. #u71982 .text {
  6293. position:absolute;
  6294. align-self:flex-start;
  6295. padding:2px 2px 2px 2px;
  6296. box-sizing:border-box;
  6297. width:100%;
  6298. }
  6299. #u71982_div.disabled {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:0px;
  6303. top:0px;
  6304. width:440px;
  6305. height:31px;
  6306. background:inherit;
  6307. background-color:rgba(240, 240, 240, 1);
  6308. border:none;
  6309. border-radius:0px;
  6310. -moz-box-shadow:none;
  6311. -webkit-box-shadow:none;
  6312. box-shadow:none;
  6313. }
  6314. #u71982.disabled {
  6315. }
  6316. .u71982_input_option {
  6317. }
  6318. #u71983_div {
  6319. border-width:0px;
  6320. position:absolute;
  6321. left:0px;
  6322. top:0px;
  6323. width:109px;
  6324. height:30px;
  6325. background:inherit;
  6326. background-color:rgba(242, 242, 242, 0);
  6327. border:none;
  6328. border-top:0px;
  6329. border-right:0px;
  6330. border-bottom:0px;
  6331. border-radius:0px;
  6332. border-top-left-radius:0px;
  6333. border-bottom-left-radius:0px;
  6334. -moz-box-shadow:none;
  6335. -webkit-box-shadow:none;
  6336. box-shadow:none;
  6337. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6338. font-weight:400;
  6339. font-style:normal;
  6340. font-size:14px;
  6341. text-align:right;
  6342. }
  6343. #u71983 {
  6344. border-width:0px;
  6345. position:absolute;
  6346. left:2650px;
  6347. top:962px;
  6348. width:109px;
  6349. height:30px;
  6350. display:flex;
  6351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6352. font-weight:400;
  6353. font-style:normal;
  6354. font-size:14px;
  6355. text-align:right;
  6356. }
  6357. #u71983 .text {
  6358. position:absolute;
  6359. align-self:center;
  6360. padding:5px 10px 5px 0px;
  6361. box-sizing:border-box;
  6362. width:100%;
  6363. }
  6364. #u71983_text {
  6365. border-width:0px;
  6366. white-space:nowrap;
  6367. text-transform:none;
  6368. }
  6369. #u71984_div {
  6370. border-width:0px;
  6371. position:absolute;
  6372. left:0px;
  6373. top:0px;
  6374. width:67px;
  6375. height:30px;
  6376. background:inherit;
  6377. background-color:rgba(242, 242, 242, 0);
  6378. border:none;
  6379. border-top:0px;
  6380. border-right:0px;
  6381. border-bottom:0px;
  6382. border-radius:0px;
  6383. border-top-left-radius:0px;
  6384. border-bottom-left-radius:0px;
  6385. -moz-box-shadow:none;
  6386. -webkit-box-shadow:none;
  6387. box-shadow:none;
  6388. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6389. font-weight:400;
  6390. font-style:normal;
  6391. font-size:14px;
  6392. }
  6393. #u71984 {
  6394. border-width:0px;
  6395. position:absolute;
  6396. left:2650px;
  6397. top:1047px;
  6398. width:67px;
  6399. height:30px;
  6400. display:flex;
  6401. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6402. font-weight:400;
  6403. font-style:normal;
  6404. font-size:14px;
  6405. }
  6406. #u71984 .text {
  6407. position:absolute;
  6408. align-self:center;
  6409. padding:5px 10px 5px 0px;
  6410. box-sizing:border-box;
  6411. width:100%;
  6412. }
  6413. #u71984_text {
  6414. border-width:0px;
  6415. white-space:nowrap;
  6416. text-transform:none;
  6417. }
  6418. #u71985 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:0px;
  6424. height:0px;
  6425. }
  6426. #u71986_div {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:472px;
  6432. height:80px;
  6433. background:inherit;
  6434. background-color:rgba(255, 255, 255, 1);
  6435. box-sizing:border-box;
  6436. border-width:1px;
  6437. border-style:solid;
  6438. border-color:rgba(201, 201, 201, 1);
  6439. border-radius:4px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:14px;
  6447. text-align:right;
  6448. }
  6449. #u71986 {
  6450. border-width:0px;
  6451. position:absolute;
  6452. left:2650px;
  6453. top:1077px;
  6454. width:472px;
  6455. height:80px;
  6456. display:flex;
  6457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6458. font-weight:400;
  6459. font-style:normal;
  6460. font-size:14px;
  6461. text-align:right;
  6462. }
  6463. #u71986 .text {
  6464. position:absolute;
  6465. align-self:center;
  6466. padding:2px 8px 2px 8px;
  6467. box-sizing:border-box;
  6468. width:100%;
  6469. }
  6470. #u71986_text {
  6471. border-width:0px;
  6472. word-wrap:break-word;
  6473. text-transform:none;
  6474. visibility:hidden;
  6475. }
  6476. #u71987_input {
  6477. position:absolute;
  6478. left:0px;
  6479. top:0px;
  6480. width:365px;
  6481. height:38px;
  6482. padding:2px 2px 2px 2px;
  6483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6484. font-weight:400;
  6485. font-style:normal;
  6486. font-size:14px;
  6487. letter-spacing:normal;
  6488. color:#000000;
  6489. vertical-align:none;
  6490. text-align:left;
  6491. text-transform:none;
  6492. background-color:transparent;
  6493. border-color:transparent;
  6494. }
  6495. #u71987_input.disabled {
  6496. position:absolute;
  6497. left:0px;
  6498. top:0px;
  6499. width:365px;
  6500. height:38px;
  6501. padding:2px 2px 2px 2px;
  6502. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6503. font-weight:400;
  6504. font-style:normal;
  6505. font-size:14px;
  6506. letter-spacing:normal;
  6507. color:#000000;
  6508. vertical-align:none;
  6509. text-align:left;
  6510. text-transform:none;
  6511. background-color:transparent;
  6512. border-color:transparent;
  6513. }
  6514. #u71987_div {
  6515. border-width:0px;
  6516. position:absolute;
  6517. left:0px;
  6518. top:0px;
  6519. width:365px;
  6520. height:38px;
  6521. background:inherit;
  6522. background-color:rgba(255, 255, 255, 1);
  6523. border:none;
  6524. border-radius:0px;
  6525. -moz-box-shadow:none;
  6526. -webkit-box-shadow:none;
  6527. box-shadow:none;
  6528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6529. font-weight:400;
  6530. font-style:normal;
  6531. font-size:14px;
  6532. }
  6533. #u71987 {
  6534. border-width:0px;
  6535. position:absolute;
  6536. left:2661px;
  6537. top:1078px;
  6538. width:365px;
  6539. height:38px;
  6540. display:flex;
  6541. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6542. font-weight:400;
  6543. font-style:normal;
  6544. font-size:14px;
  6545. }
  6546. #u71987 .text {
  6547. position:absolute;
  6548. align-self:center;
  6549. padding:2px 2px 2px 2px;
  6550. box-sizing:border-box;
  6551. width:100%;
  6552. }
  6553. #u71987_div.disabled {
  6554. border-width:0px;
  6555. position:absolute;
  6556. left:0px;
  6557. top:0px;
  6558. width:365px;
  6559. height:38px;
  6560. background:inherit;
  6561. background-color:rgba(240, 240, 240, 1);
  6562. border:none;
  6563. border-radius:0px;
  6564. -moz-box-shadow:none;
  6565. -webkit-box-shadow:none;
  6566. box-shadow:none;
  6567. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6568. font-weight:400;
  6569. font-style:normal;
  6570. font-size:14px;
  6571. }
  6572. #u71987.disabled {
  6573. }
  6574. #u71988_div {
  6575. border-width:0px;
  6576. position:absolute;
  6577. left:0px;
  6578. top:0px;
  6579. width:80px;
  6580. height:30px;
  6581. background:inherit;
  6582. background-color:rgba(24, 144, 255, 1);
  6583. border:none;
  6584. border-radius:4px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. color:#FFFFFF;
  6593. }
  6594. #u71988 {
  6595. border-width:0px;
  6596. position:absolute;
  6597. left:2650px;
  6598. top:997px;
  6599. width:80px;
  6600. height:30px;
  6601. display:flex;
  6602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6603. font-weight:400;
  6604. font-style:normal;
  6605. font-size:14px;
  6606. color:#FFFFFF;
  6607. }
  6608. #u71988 .text {
  6609. position:absolute;
  6610. align-self:center;
  6611. padding:2px 2px 2px 2px;
  6612. box-sizing:border-box;
  6613. width:100%;
  6614. }
  6615. #u71988_text {
  6616. border-width:0px;
  6617. word-wrap:break-word;
  6618. text-transform:none;
  6619. }
  6620. #u71989 {
  6621. border-width:0px;
  6622. position:absolute;
  6623. left:0px;
  6624. top:0px;
  6625. width:0px;
  6626. height:0px;
  6627. }
  6628. #u71990_div {
  6629. border-width:0px;
  6630. position:absolute;
  6631. left:0px;
  6632. top:0px;
  6633. width:405px;
  6634. height:40px;
  6635. background:inherit;
  6636. background-color:rgba(255, 255, 255, 1);
  6637. box-sizing:border-box;
  6638. border-width:1px;
  6639. border-style:solid;
  6640. border-color:rgba(201, 201, 201, 1);
  6641. border-radius:4px;
  6642. -moz-box-shadow:none;
  6643. -webkit-box-shadow:none;
  6644. box-shadow:none;
  6645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6646. font-weight:400;
  6647. font-style:normal;
  6648. font-size:14px;
  6649. color:#7F7F7F;
  6650. text-align:right;
  6651. }
  6652. #u71990 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:2717px;
  6656. top:453px;
  6657. width:405px;
  6658. height:40px;
  6659. display:flex;
  6660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6661. font-weight:400;
  6662. font-style:normal;
  6663. font-size:14px;
  6664. color:#7F7F7F;
  6665. text-align:right;
  6666. }
  6667. #u71990 .text {
  6668. position:absolute;
  6669. align-self:center;
  6670. padding:2px 8px 2px 8px;
  6671. box-sizing:border-box;
  6672. width:100%;
  6673. }
  6674. #u71990_text {
  6675. border-width:0px;
  6676. word-wrap:break-word;
  6677. text-transform:none;
  6678. }
  6679. #u71991_input {
  6680. position:absolute;
  6681. left:0px;
  6682. top:0px;
  6683. width:356px;
  6684. height:38px;
  6685. padding:2px 2px 2px 2px;
  6686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6687. font-weight:400;
  6688. font-style:normal;
  6689. font-size:14px;
  6690. letter-spacing:normal;
  6691. color:#000000;
  6692. vertical-align:none;
  6693. text-align:left;
  6694. text-transform:none;
  6695. background-color:transparent;
  6696. border-color:transparent;
  6697. }
  6698. #u71991_input.disabled {
  6699. position:absolute;
  6700. left:0px;
  6701. top:0px;
  6702. width:356px;
  6703. height:38px;
  6704. padding:2px 2px 2px 2px;
  6705. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6706. font-weight:400;
  6707. font-style:normal;
  6708. font-size:14px;
  6709. letter-spacing:normal;
  6710. color:#000000;
  6711. vertical-align:none;
  6712. text-align:left;
  6713. text-transform:none;
  6714. background-color:transparent;
  6715. border-color:transparent;
  6716. }
  6717. #u71991_div {
  6718. border-width:0px;
  6719. position:absolute;
  6720. left:0px;
  6721. top:0px;
  6722. width:356px;
  6723. height:38px;
  6724. background:inherit;
  6725. background-color:rgba(255, 255, 255, 1);
  6726. border:none;
  6727. border-radius:0px;
  6728. -moz-box-shadow:none;
  6729. -webkit-box-shadow:none;
  6730. box-shadow:none;
  6731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6732. font-weight:400;
  6733. font-style:normal;
  6734. font-size:14px;
  6735. }
  6736. #u71991 {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:2727px;
  6740. top:454px;
  6741. width:356px;
  6742. height:38px;
  6743. display:flex;
  6744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6745. font-weight:400;
  6746. font-style:normal;
  6747. font-size:14px;
  6748. }
  6749. #u71991 .text {
  6750. position:absolute;
  6751. align-self:center;
  6752. padding:2px 2px 2px 2px;
  6753. box-sizing:border-box;
  6754. width:100%;
  6755. }
  6756. #u71991_div.disabled {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:356px;
  6762. height:38px;
  6763. background:inherit;
  6764. background-color:rgba(240, 240, 240, 1);
  6765. border:none;
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:14px;
  6774. }
  6775. #u71991.disabled {
  6776. }
  6777. #u71992_div {
  6778. border-width:0px;
  6779. position:absolute;
  6780. left:0px;
  6781. top:0px;
  6782. width:389px;
  6783. height:30px;
  6784. background:inherit;
  6785. background-color:rgba(242, 242, 242, 0);
  6786. border:none;
  6787. border-top:0px;
  6788. border-right:0px;
  6789. border-bottom:0px;
  6790. border-radius:0px;
  6791. border-top-left-radius:0px;
  6792. border-bottom-left-radius:0px;
  6793. -moz-box-shadow:none;
  6794. -webkit-box-shadow:none;
  6795. box-shadow:none;
  6796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6797. font-weight:400;
  6798. font-style:normal;
  6799. font-size:14px;
  6800. }
  6801. #u71992 {
  6802. border-width:0px;
  6803. position:absolute;
  6804. left:2650px;
  6805. top:418px;
  6806. width:389px;
  6807. height:30px;
  6808. display:flex;
  6809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6810. font-weight:400;
  6811. font-style:normal;
  6812. font-size:14px;
  6813. }
  6814. #u71992 .text {
  6815. position:absolute;
  6816. align-self:center;
  6817. padding:5px 10px 5px 0px;
  6818. box-sizing:border-box;
  6819. width:100%;
  6820. }
  6821. #u71992_text {
  6822. border-width:0px;
  6823. white-space:nowrap;
  6824. text-transform:none;
  6825. }
  6826. #u71993_img {
  6827. border-width:0px;
  6828. position:absolute;
  6829. left:0px;
  6830. top:0px;
  6831. width:50px;
  6832. height:31px;
  6833. }
  6834. #u71993 {
  6835. border-width:0px;
  6836. position:absolute;
  6837. left:2650px;
  6838. top:457px;
  6839. width:50px;
  6840. height:31px;
  6841. display:flex;
  6842. }
  6843. #u71993 .text {
  6844. position:absolute;
  6845. align-self:center;
  6846. padding:2px 2px 2px 2px;
  6847. box-sizing:border-box;
  6848. width:100%;
  6849. }
  6850. #u71993_text {
  6851. border-width:0px;
  6852. word-wrap:break-word;
  6853. text-transform:none;
  6854. visibility:hidden;
  6855. }
  6856. #u71994_div {
  6857. border-width:0px;
  6858. position:absolute;
  6859. left:0px;
  6860. top:0px;
  6861. width:347px;
  6862. height:30px;
  6863. background:inherit;
  6864. background-color:rgba(242, 242, 242, 0);
  6865. border:none;
  6866. border-top:0px;
  6867. border-right:0px;
  6868. border-bottom:0px;
  6869. border-radius:0px;
  6870. border-top-left-radius:0px;
  6871. border-bottom-left-radius:0px;
  6872. -moz-box-shadow:none;
  6873. -webkit-box-shadow:none;
  6874. box-shadow:none;
  6875. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6876. font-weight:400;
  6877. font-style:normal;
  6878. font-size:14px;
  6879. }
  6880. #u71994 {
  6881. border-width:0px;
  6882. position:absolute;
  6883. left:2650px;
  6884. top:513px;
  6885. width:347px;
  6886. height:30px;
  6887. display:flex;
  6888. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6889. font-weight:400;
  6890. font-style:normal;
  6891. font-size:14px;
  6892. }
  6893. #u71994 .text {
  6894. position:absolute;
  6895. align-self:center;
  6896. padding:5px 10px 5px 0px;
  6897. box-sizing:border-box;
  6898. width:100%;
  6899. }
  6900. #u71994_text {
  6901. border-width:0px;
  6902. white-space:nowrap;
  6903. text-transform:none;
  6904. }
  6905. #u71995 {
  6906. border-width:0px;
  6907. position:absolute;
  6908. left:0px;
  6909. top:0px;
  6910. width:0px;
  6911. height:0px;
  6912. }
  6913. #u71996_div {
  6914. border-width:0px;
  6915. position:absolute;
  6916. left:0px;
  6917. top:0px;
  6918. width:472px;
  6919. height:40px;
  6920. background:inherit;
  6921. background-color:rgba(255, 255, 255, 1);
  6922. box-sizing:border-box;
  6923. border-width:1px;
  6924. border-style:solid;
  6925. border-color:rgba(201, 201, 201, 1);
  6926. border-radius:4px;
  6927. -moz-box-shadow:none;
  6928. -webkit-box-shadow:none;
  6929. box-shadow:none;
  6930. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6931. font-weight:400;
  6932. font-style:normal;
  6933. font-size:14px;
  6934. text-align:right;
  6935. }
  6936. #u71996 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:2650px;
  6940. top:543px;
  6941. width:472px;
  6942. height:40px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. text-align:right;
  6949. }
  6950. #u71996 .text {
  6951. position:absolute;
  6952. align-self:center;
  6953. padding:2px 8px 2px 8px;
  6954. box-sizing:border-box;
  6955. width:100%;
  6956. }
  6957. #u71996_text {
  6958. border-width:0px;
  6959. word-wrap:break-word;
  6960. text-transform:none;
  6961. visibility:hidden;
  6962. }
  6963. #u71997_input {
  6964. position:absolute;
  6965. left:0px;
  6966. top:0px;
  6967. width:440px;
  6968. height:31px;
  6969. padding:2px 2px 2px 2px;
  6970. font-family:'ArialMT', 'Arial', sans-serif;
  6971. font-weight:400;
  6972. font-style:normal;
  6973. font-size:13px;
  6974. letter-spacing:normal;
  6975. color:#000000;
  6976. vertical-align:none;
  6977. text-align:left;
  6978. text-transform:none;
  6979. background-color:transparent;
  6980. border-color:transparent;
  6981. }
  6982. #u71997_input.disabled {
  6983. position:absolute;
  6984. left:0px;
  6985. top:0px;
  6986. width:440px;
  6987. height:31px;
  6988. padding:2px 2px 2px 2px;
  6989. font-family:'ArialMT', 'Arial', sans-serif;
  6990. font-weight:400;
  6991. font-style:normal;
  6992. font-size:13px;
  6993. letter-spacing:normal;
  6994. color:#000000;
  6995. vertical-align:none;
  6996. text-align:left;
  6997. text-transform:none;
  6998. background-color:transparent;
  6999. border-color:transparent;
  7000. }
  7001. #u71997_div {
  7002. border-width:0px;
  7003. position:absolute;
  7004. left:0px;
  7005. top:0px;
  7006. width:440px;
  7007. height:31px;
  7008. background:inherit;
  7009. background-color:rgba(255, 255, 255, 1);
  7010. border:none;
  7011. border-radius:0px;
  7012. -moz-box-shadow:none;
  7013. -webkit-box-shadow:none;
  7014. box-shadow:none;
  7015. }
  7016. #u71997 {
  7017. border-width:0px;
  7018. position:absolute;
  7019. left:2663px;
  7020. top:548px;
  7021. width:440px;
  7022. height:31px;
  7023. display:flex;
  7024. }
  7025. #u71997 .text {
  7026. position:absolute;
  7027. align-self:flex-start;
  7028. padding:2px 2px 2px 2px;
  7029. box-sizing:border-box;
  7030. width:100%;
  7031. }
  7032. #u71997_div.disabled {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:440px;
  7038. height:31px;
  7039. background:inherit;
  7040. background-color:rgba(240, 240, 240, 1);
  7041. border:none;
  7042. border-radius:0px;
  7043. -moz-box-shadow:none;
  7044. -webkit-box-shadow:none;
  7045. box-shadow:none;
  7046. }
  7047. #u71997.disabled {
  7048. }
  7049. .u71997_input_option {
  7050. }
  7051. #u71998_div {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:424px;
  7057. height:30px;
  7058. background:inherit;
  7059. background-color:rgba(242, 242, 242, 0);
  7060. border:none;
  7061. border-top:0px;
  7062. border-right:0px;
  7063. border-bottom:0px;
  7064. border-radius:0px;
  7065. border-top-left-radius:0px;
  7066. border-bottom-left-radius:0px;
  7067. -moz-box-shadow:none;
  7068. -webkit-box-shadow:none;
  7069. box-shadow:none;
  7070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7071. font-weight:400;
  7072. font-style:normal;
  7073. font-size:14px;
  7074. }
  7075. #u71998 {
  7076. border-width:0px;
  7077. position:absolute;
  7078. left:2650px;
  7079. top:603px;
  7080. width:424px;
  7081. height:30px;
  7082. display:flex;
  7083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7084. font-weight:400;
  7085. font-style:normal;
  7086. font-size:14px;
  7087. }
  7088. #u71998 .text {
  7089. position:absolute;
  7090. align-self:center;
  7091. padding:5px 10px 5px 0px;
  7092. box-sizing:border-box;
  7093. width:100%;
  7094. }
  7095. #u71998_text {
  7096. border-width:0px;
  7097. white-space:nowrap;
  7098. text-transform:none;
  7099. }
  7100. #u71999 {
  7101. border-width:0px;
  7102. position:absolute;
  7103. left:0px;
  7104. top:0px;
  7105. width:0px;
  7106. height:0px;
  7107. }
  7108. #u72000_div {
  7109. border-width:0px;
  7110. position:absolute;
  7111. left:0px;
  7112. top:0px;
  7113. width:405px;
  7114. height:40px;
  7115. background:inherit;
  7116. background-color:rgba(255, 255, 255, 1);
  7117. box-sizing:border-box;
  7118. border-width:1px;
  7119. border-style:solid;
  7120. border-color:rgba(201, 201, 201, 1);
  7121. border-radius:4px;
  7122. -moz-box-shadow:none;
  7123. -webkit-box-shadow:none;
  7124. box-shadow:none;
  7125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7126. font-weight:400;
  7127. font-style:normal;
  7128. font-size:14px;
  7129. color:#7F7F7F;
  7130. text-align:right;
  7131. }
  7132. #u72000 {
  7133. border-width:0px;
  7134. position:absolute;
  7135. left:2717px;
  7136. top:638px;
  7137. width:405px;
  7138. height:40px;
  7139. display:flex;
  7140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7141. font-weight:400;
  7142. font-style:normal;
  7143. font-size:14px;
  7144. color:#7F7F7F;
  7145. text-align:right;
  7146. }
  7147. #u72000 .text {
  7148. position:absolute;
  7149. align-self:center;
  7150. padding:2px 8px 2px 8px;
  7151. box-sizing:border-box;
  7152. width:100%;
  7153. }
  7154. #u72000_text {
  7155. border-width:0px;
  7156. word-wrap:break-word;
  7157. text-transform:none;
  7158. }
  7159. #u72001_input {
  7160. position:absolute;
  7161. left:0px;
  7162. top:0px;
  7163. width:356px;
  7164. height:38px;
  7165. padding:2px 2px 2px 2px;
  7166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7167. font-weight:400;
  7168. font-style:normal;
  7169. font-size:14px;
  7170. letter-spacing:normal;
  7171. color:#000000;
  7172. vertical-align:none;
  7173. text-align:left;
  7174. text-transform:none;
  7175. background-color:transparent;
  7176. border-color:transparent;
  7177. }
  7178. #u72001_input.disabled {
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:356px;
  7183. height:38px;
  7184. padding:2px 2px 2px 2px;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:14px;
  7189. letter-spacing:normal;
  7190. color:#000000;
  7191. vertical-align:none;
  7192. text-align:left;
  7193. text-transform:none;
  7194. background-color:transparent;
  7195. border-color:transparent;
  7196. }
  7197. #u72001_div {
  7198. border-width:0px;
  7199. position:absolute;
  7200. left:0px;
  7201. top:0px;
  7202. width:356px;
  7203. height:38px;
  7204. background:inherit;
  7205. background-color:rgba(255, 255, 255, 1);
  7206. border:none;
  7207. border-radius:0px;
  7208. -moz-box-shadow:none;
  7209. -webkit-box-shadow:none;
  7210. box-shadow:none;
  7211. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7212. font-weight:400;
  7213. font-style:normal;
  7214. font-size:14px;
  7215. }
  7216. #u72001 {
  7217. border-width:0px;
  7218. position:absolute;
  7219. left:2727px;
  7220. top:639px;
  7221. width:356px;
  7222. height:38px;
  7223. display:flex;
  7224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7225. font-weight:400;
  7226. font-style:normal;
  7227. font-size:14px;
  7228. }
  7229. #u72001 .text {
  7230. position:absolute;
  7231. align-self:center;
  7232. padding:2px 2px 2px 2px;
  7233. box-sizing:border-box;
  7234. width:100%;
  7235. }
  7236. #u72001_div.disabled {
  7237. border-width:0px;
  7238. position:absolute;
  7239. left:0px;
  7240. top:0px;
  7241. width:356px;
  7242. height:38px;
  7243. background:inherit;
  7244. background-color:rgba(240, 240, 240, 1);
  7245. border:none;
  7246. border-radius:0px;
  7247. -moz-box-shadow:none;
  7248. -webkit-box-shadow:none;
  7249. box-shadow:none;
  7250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7251. font-weight:400;
  7252. font-style:normal;
  7253. font-size:14px;
  7254. }
  7255. #u72001.disabled {
  7256. }
  7257. #u72002_div {
  7258. border-width:0px;
  7259. position:absolute;
  7260. left:0px;
  7261. top:0px;
  7262. width:472px;
  7263. height:216px;
  7264. background:inherit;
  7265. background-color:rgba(242, 242, 242, 0.498039215686275);
  7266. border:none;
  7267. border-radius:0px;
  7268. -moz-box-shadow:none;
  7269. -webkit-box-shadow:none;
  7270. box-shadow:none;
  7271. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7272. font-weight:400;
  7273. font-style:normal;
  7274. font-size:14px;
  7275. color:#AAAAAA;
  7276. text-align:center;
  7277. line-height:30px;
  7278. }
  7279. #u72002 {
  7280. border-width:0px;
  7281. position:absolute;
  7282. left:2650px;
  7283. top:733px;
  7284. width:472px;
  7285. height:216px;
  7286. display:flex;
  7287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7288. font-weight:400;
  7289. font-style:normal;
  7290. font-size:14px;
  7291. color:#AAAAAA;
  7292. text-align:center;
  7293. line-height:30px;
  7294. }
  7295. #u72002 .text {
  7296. position:absolute;
  7297. align-self:center;
  7298. padding:5px 10px 5px 10px;
  7299. box-sizing:border-box;
  7300. width:100%;
  7301. }
  7302. #u72002_text {
  7303. border-width:0px;
  7304. word-wrap:break-word;
  7305. text-transform:none;
  7306. visibility:hidden;
  7307. }
  7308. #u72003_div {
  7309. border-width:0px;
  7310. position:absolute;
  7311. left:0px;
  7312. top:0px;
  7313. width:95px;
  7314. height:30px;
  7315. background:inherit;
  7316. background-color:rgba(242, 242, 242, 0);
  7317. border:none;
  7318. border-top:0px;
  7319. border-right:0px;
  7320. border-bottom:0px;
  7321. border-radius:0px;
  7322. border-top-left-radius:0px;
  7323. border-bottom-left-radius:0px;
  7324. -moz-box-shadow:none;
  7325. -webkit-box-shadow:none;
  7326. box-shadow:none;
  7327. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7328. font-weight:500;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. }
  7332. #u72003 {
  7333. border-width:0px;
  7334. position:absolute;
  7335. left:2650px;
  7336. top:698px;
  7337. width:95px;
  7338. height:30px;
  7339. display:flex;
  7340. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7341. font-weight:500;
  7342. font-style:normal;
  7343. font-size:14px;
  7344. }
  7345. #u72003 .text {
  7346. position:absolute;
  7347. align-self:center;
  7348. padding:5px 10px 5px 0px;
  7349. box-sizing:border-box;
  7350. width:100%;
  7351. }
  7352. #u72003_text {
  7353. border-width:0px;
  7354. white-space:nowrap;
  7355. text-transform:none;
  7356. }
  7357. #u72004_img {
  7358. border-width:0px;
  7359. position:absolute;
  7360. left:0px;
  7361. top:0px;
  7362. width:50px;
  7363. height:31px;
  7364. }
  7365. #u72004 {
  7366. border-width:0px;
  7367. position:absolute;
  7368. left:2748px;
  7369. top:754px;
  7370. width:50px;
  7371. height:31px;
  7372. display:flex;
  7373. }
  7374. #u72004 .text {
  7375. position:absolute;
  7376. align-self:center;
  7377. padding:2px 2px 2px 2px;
  7378. box-sizing:border-box;
  7379. width:100%;
  7380. }
  7381. #u72004_text {
  7382. border-width:0px;
  7383. word-wrap:break-word;
  7384. text-transform:none;
  7385. visibility:hidden;
  7386. }
  7387. #u72005_div {
  7388. border-width:0px;
  7389. position:absolute;
  7390. left:0px;
  7391. top:0px;
  7392. width:67px;
  7393. height:30px;
  7394. background:inherit;
  7395. background-color:rgba(242, 242, 242, 0);
  7396. border:none;
  7397. border-top:0px;
  7398. border-right:0px;
  7399. border-bottom:0px;
  7400. border-radius:0px;
  7401. border-top-left-radius:0px;
  7402. border-bottom-left-radius:0px;
  7403. -moz-box-shadow:none;
  7404. -webkit-box-shadow:none;
  7405. box-shadow:none;
  7406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7407. font-weight:400;
  7408. font-style:normal;
  7409. font-size:14px;
  7410. }
  7411. #u72005 {
  7412. border-width:0px;
  7413. position:absolute;
  7414. left:2808px;
  7415. top:755px;
  7416. width:67px;
  7417. height:30px;
  7418. display:flex;
  7419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7420. font-weight:400;
  7421. font-style:normal;
  7422. font-size:14px;
  7423. }
  7424. #u72005 .text {
  7425. position:absolute;
  7426. align-self:center;
  7427. padding:5px 10px 5px 0px;
  7428. box-sizing:border-box;
  7429. width:100%;
  7430. }
  7431. #u72005_text {
  7432. border-width:0px;
  7433. white-space:nowrap;
  7434. text-transform:none;
  7435. }
  7436. #u72006_div {
  7437. border-width:0px;
  7438. position:absolute;
  7439. left:0px;
  7440. top:0px;
  7441. width:81px;
  7442. height:30px;
  7443. background:inherit;
  7444. background-color:rgba(242, 242, 242, 0);
  7445. border:none;
  7446. border-top:0px;
  7447. border-right:0px;
  7448. border-bottom:0px;
  7449. border-radius:0px;
  7450. border-top-left-radius:0px;
  7451. border-bottom-left-radius:0px;
  7452. -moz-box-shadow:none;
  7453. -webkit-box-shadow:none;
  7454. box-shadow:none;
  7455. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7456. font-weight:500;
  7457. font-style:normal;
  7458. font-size:14px;
  7459. }
  7460. #u72006 {
  7461. border-width:0px;
  7462. position:absolute;
  7463. left:2675px;
  7464. top:755px;
  7465. width:81px;
  7466. height:30px;
  7467. display:flex;
  7468. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7469. font-weight:500;
  7470. font-style:normal;
  7471. font-size:14px;
  7472. }
  7473. #u72006 .text {
  7474. position:absolute;
  7475. align-self:center;
  7476. padding:5px 10px 5px 0px;
  7477. box-sizing:border-box;
  7478. width:100%;
  7479. }
  7480. #u72006_text {
  7481. border-width:0px;
  7482. white-space:nowrap;
  7483. text-transform:none;
  7484. }
  7485. #u72007_div {
  7486. border-width:0px;
  7487. position:absolute;
  7488. left:0px;
  7489. top:0px;
  7490. width:75px;
  7491. height:30px;
  7492. background:inherit;
  7493. background-color:rgba(242, 242, 242, 0);
  7494. border:none;
  7495. border-top:0px;
  7496. border-right:0px;
  7497. border-bottom:0px;
  7498. border-radius:0px;
  7499. border-top-left-radius:0px;
  7500. border-bottom-left-radius:0px;
  7501. -moz-box-shadow:none;
  7502. -webkit-box-shadow:none;
  7503. box-shadow:none;
  7504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7505. font-weight:400;
  7506. font-style:normal;
  7507. font-size:14px;
  7508. color:#1890FF;
  7509. }
  7510. #u72007 {
  7511. border-width:0px;
  7512. position:absolute;
  7513. left:2675px;
  7514. top:796px;
  7515. width:75px;
  7516. height:30px;
  7517. display:flex;
  7518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7519. font-weight:400;
  7520. font-style:normal;
  7521. font-size:14px;
  7522. color:#1890FF;
  7523. }
  7524. #u72007 .text {
  7525. position:absolute;
  7526. align-self:center;
  7527. padding:5px 10px 5px 0px;
  7528. box-sizing:border-box;
  7529. width:100%;
  7530. }
  7531. #u72007_text {
  7532. border-width:0px;
  7533. white-space:nowrap;
  7534. text-transform:none;
  7535. }
  7536. #u72008 {
  7537. border-width:0px;
  7538. position:absolute;
  7539. left:0px;
  7540. top:0px;
  7541. width:0px;
  7542. height:0px;
  7543. }
  7544. #u72009 {
  7545. border-width:0px;
  7546. position:absolute;
  7547. left:0px;
  7548. top:0px;
  7549. width:0px;
  7550. height:0px;
  7551. }
  7552. #u72010 {
  7553. border-width:0px;
  7554. position:absolute;
  7555. left:0px;
  7556. top:0px;
  7557. width:0px;
  7558. height:0px;
  7559. }
  7560. #u72011_div {
  7561. border-width:0px;
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:180px;
  7566. height:40px;
  7567. background:inherit;
  7568. background-color:rgba(242, 242, 242, 0);
  7569. box-sizing:border-box;
  7570. border-width:1px;
  7571. border-style:solid;
  7572. border-color:rgba(170, 170, 170, 1);
  7573. border-radius:4px;
  7574. -moz-box-shadow:none;
  7575. -webkit-box-shadow:none;
  7576. box-shadow:none;
  7577. font-size:12px;
  7578. }
  7579. #u72011 {
  7580. border-width:0px;
  7581. position:absolute;
  7582. left:2675px;
  7583. top:833px;
  7584. width:180px;
  7585. height:40px;
  7586. display:flex;
  7587. font-size:12px;
  7588. }
  7589. #u72011 .text {
  7590. position:absolute;
  7591. align-self:center;
  7592. padding:2px 2px 2px 2px;
  7593. box-sizing:border-box;
  7594. width:100%;
  7595. }
  7596. #u72011_text {
  7597. border-width:0px;
  7598. word-wrap:break-word;
  7599. text-transform:none;
  7600. visibility:hidden;
  7601. }
  7602. #u72012_input {
  7603. position:absolute;
  7604. left:0px;
  7605. top:0px;
  7606. width:170px;
  7607. height:31px;
  7608. padding:2px 2px 2px 2px;
  7609. font-family:'ArialMT', 'Arial', sans-serif;
  7610. font-weight:400;
  7611. font-style:normal;
  7612. font-size:12px;
  7613. letter-spacing:normal;
  7614. color:#333333;
  7615. vertical-align:none;
  7616. text-align:left;
  7617. text-transform:none;
  7618. background-color:transparent;
  7619. border-color:transparent;
  7620. }
  7621. #u72012_input.disabled {
  7622. position:absolute;
  7623. left:0px;
  7624. top:0px;
  7625. width:170px;
  7626. height:31px;
  7627. padding:2px 2px 2px 2px;
  7628. font-family:'ArialMT', 'Arial', sans-serif;
  7629. font-weight:400;
  7630. font-style:normal;
  7631. font-size:12px;
  7632. letter-spacing:normal;
  7633. color:#333333;
  7634. vertical-align:none;
  7635. text-align:left;
  7636. text-transform:none;
  7637. background-color:transparent;
  7638. border-color:transparent;
  7639. }
  7640. #u72012_div {
  7641. border-width:0px;
  7642. position:absolute;
  7643. left:0px;
  7644. top:0px;
  7645. width:170px;
  7646. height:31px;
  7647. background:inherit;
  7648. background-color:rgba(255, 255, 255, 0);
  7649. border:none;
  7650. border-radius:0px;
  7651. -moz-box-shadow:none;
  7652. -webkit-box-shadow:none;
  7653. box-shadow:none;
  7654. font-size:12px;
  7655. color:#333333;
  7656. }
  7657. #u72012 {
  7658. border-width:0px;
  7659. position:absolute;
  7660. left:2681px;
  7661. top:837px;
  7662. width:170px;
  7663. height:31px;
  7664. display:flex;
  7665. font-size:12px;
  7666. color:#333333;
  7667. }
  7668. #u72012 .text {
  7669. position:absolute;
  7670. align-self:flex-start;
  7671. padding:2px 2px 2px 2px;
  7672. box-sizing:border-box;
  7673. width:100%;
  7674. }
  7675. #u72012_div.disabled {
  7676. border-width:0px;
  7677. position:absolute;
  7678. left:0px;
  7679. top:0px;
  7680. width:170px;
  7681. height:31px;
  7682. background:inherit;
  7683. background-color:rgba(240, 240, 240, 1);
  7684. border:none;
  7685. border-radius:0px;
  7686. -moz-box-shadow:none;
  7687. -webkit-box-shadow:none;
  7688. box-shadow:none;
  7689. font-size:12px;
  7690. color:#333333;
  7691. }
  7692. #u72012.disabled {
  7693. }
  7694. .u72012_input_option {
  7695. font-size:12px;
  7696. }
  7697. #u72013 {
  7698. border-width:0px;
  7699. position:absolute;
  7700. left:0px;
  7701. top:0px;
  7702. width:0px;
  7703. height:0px;
  7704. }
  7705. #u72014_div {
  7706. border-width:0px;
  7707. position:absolute;
  7708. left:0px;
  7709. top:0px;
  7710. width:180px;
  7711. height:40px;
  7712. background:inherit;
  7713. background-color:rgba(242, 242, 242, 0);
  7714. box-sizing:border-box;
  7715. border-width:1px;
  7716. border-style:solid;
  7717. border-color:rgba(170, 170, 170, 1);
  7718. border-radius:4px;
  7719. -moz-box-shadow:none;
  7720. -webkit-box-shadow:none;
  7721. box-shadow:none;
  7722. font-size:12px;
  7723. }
  7724. #u72014 {
  7725. border-width:0px;
  7726. position:absolute;
  7727. left:2870px;
  7728. top:833px;
  7729. width:180px;
  7730. height:40px;
  7731. display:flex;
  7732. font-size:12px;
  7733. }
  7734. #u72014 .text {
  7735. position:absolute;
  7736. align-self:center;
  7737. padding:2px 2px 2px 2px;
  7738. box-sizing:border-box;
  7739. width:100%;
  7740. }
  7741. #u72014_text {
  7742. border-width:0px;
  7743. word-wrap:break-word;
  7744. text-transform:none;
  7745. visibility:hidden;
  7746. }
  7747. #u72015_input {
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:170px;
  7752. height:31px;
  7753. padding:2px 2px 2px 2px;
  7754. font-family:'ArialMT', 'Arial', sans-serif;
  7755. font-weight:400;
  7756. font-style:normal;
  7757. font-size:12px;
  7758. letter-spacing:normal;
  7759. color:#333333;
  7760. vertical-align:none;
  7761. text-align:left;
  7762. text-transform:none;
  7763. background-color:transparent;
  7764. border-color:transparent;
  7765. }
  7766. #u72015_input.disabled {
  7767. position:absolute;
  7768. left:0px;
  7769. top:0px;
  7770. width:170px;
  7771. height:31px;
  7772. padding:2px 2px 2px 2px;
  7773. font-family:'ArialMT', 'Arial', sans-serif;
  7774. font-weight:400;
  7775. font-style:normal;
  7776. font-size:12px;
  7777. letter-spacing:normal;
  7778. color:#333333;
  7779. vertical-align:none;
  7780. text-align:left;
  7781. text-transform:none;
  7782. background-color:transparent;
  7783. border-color:transparent;
  7784. }
  7785. #u72015_div {
  7786. border-width:0px;
  7787. position:absolute;
  7788. left:0px;
  7789. top:0px;
  7790. width:170px;
  7791. height:31px;
  7792. background:inherit;
  7793. background-color:rgba(255, 255, 255, 0);
  7794. border:none;
  7795. border-radius:0px;
  7796. -moz-box-shadow:none;
  7797. -webkit-box-shadow:none;
  7798. box-shadow:none;
  7799. font-size:12px;
  7800. color:#333333;
  7801. }
  7802. #u72015 {
  7803. border-width:0px;
  7804. position:absolute;
  7805. left:2876px;
  7806. top:837px;
  7807. width:170px;
  7808. height:31px;
  7809. display:flex;
  7810. font-size:12px;
  7811. color:#333333;
  7812. }
  7813. #u72015 .text {
  7814. position:absolute;
  7815. align-self:flex-start;
  7816. padding:2px 2px 2px 2px;
  7817. box-sizing:border-box;
  7818. width:100%;
  7819. }
  7820. #u72015_div.disabled {
  7821. border-width:0px;
  7822. position:absolute;
  7823. left:0px;
  7824. top:0px;
  7825. width:170px;
  7826. height:31px;
  7827. background:inherit;
  7828. background-color:rgba(240, 240, 240, 1);
  7829. border:none;
  7830. border-radius:0px;
  7831. -moz-box-shadow:none;
  7832. -webkit-box-shadow:none;
  7833. box-shadow:none;
  7834. font-size:12px;
  7835. color:#333333;
  7836. }
  7837. #u72015.disabled {
  7838. }
  7839. .u72015_input_option {
  7840. font-size:12px;
  7841. }
  7842. #u72016_div {
  7843. border-width:0px;
  7844. position:absolute;
  7845. left:0px;
  7846. top:0px;
  7847. width:19px;
  7848. height:30px;
  7849. background:inherit;
  7850. background-color:rgba(255, 255, 255, 0);
  7851. border:none;
  7852. border-top:0px;
  7853. border-right:0px;
  7854. border-bottom:0px;
  7855. border-radius:0px;
  7856. border-top-left-radius:0px;
  7857. border-bottom-left-radius:0px;
  7858. -moz-box-shadow:none;
  7859. -webkit-box-shadow:none;
  7860. box-shadow:none;
  7861. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7862. font-weight:400;
  7863. font-style:normal;
  7864. font-size:14px;
  7865. }
  7866. #u72016 {
  7867. border-width:0px;
  7868. position:absolute;
  7869. left:2855px;
  7870. top:838px;
  7871. width:19px;
  7872. height:30px;
  7873. display:flex;
  7874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7875. font-weight:400;
  7876. font-style:normal;
  7877. font-size:14px;
  7878. }
  7879. #u72016 .text {
  7880. position:absolute;
  7881. align-self:center;
  7882. padding:5px 10px 5px 0px;
  7883. box-sizing:border-box;
  7884. width:100%;
  7885. }
  7886. #u72016_text {
  7887. border-width:0px;
  7888. white-space:nowrap;
  7889. text-transform:none;
  7890. }
  7891. #u72017_div {
  7892. border-width:0px;
  7893. position:absolute;
  7894. left:0px;
  7895. top:0px;
  7896. width:39px;
  7897. height:30px;
  7898. background:inherit;
  7899. background-color:rgba(242, 242, 242, 0);
  7900. border:none;
  7901. border-top:0px;
  7902. border-right:0px;
  7903. border-bottom:0px;
  7904. border-radius:0px;
  7905. border-top-left-radius:0px;
  7906. border-bottom-left-radius:0px;
  7907. -moz-box-shadow:none;
  7908. -webkit-box-shadow:none;
  7909. box-shadow:none;
  7910. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7911. font-weight:400;
  7912. font-style:normal;
  7913. font-size:14px;
  7914. color:#1890FF;
  7915. }
  7916. #u72017 {
  7917. border-width:0px;
  7918. position:absolute;
  7919. left:3056px;
  7920. top:838px;
  7921. width:39px;
  7922. height:30px;
  7923. display:flex;
  7924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7925. font-weight:400;
  7926. font-style:normal;
  7927. font-size:14px;
  7928. color:#1890FF;
  7929. }
  7930. #u72017 .text {
  7931. position:absolute;
  7932. align-self:center;
  7933. padding:5px 10px 5px 0px;
  7934. box-sizing:border-box;
  7935. width:100%;
  7936. }
  7937. #u72017_text {
  7938. border-width:0px;
  7939. white-space:nowrap;
  7940. text-transform:none;
  7941. }
  7942. #u72018 label {
  7943. left:0px;
  7944. width:100%;
  7945. }
  7946. #u72018_img {
  7947. border-width:0px;
  7948. position:absolute;
  7949. left:0px;
  7950. top:4px;
  7951. width:12px;
  7952. height:12px;
  7953. }
  7954. #u72018 {
  7955. border-width:0px;
  7956. position:absolute;
  7957. left:2953px;
  7958. top:806px;
  7959. width:100px;
  7960. height:20px;
  7961. display:flex;
  7962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7963. font-weight:400;
  7964. font-style:normal;
  7965. font-size:14px;
  7966. }
  7967. #u72018 .text {
  7968. position:absolute;
  7969. align-self:center;
  7970. padding:0px 2px 0px 2px;
  7971. box-sizing:border-box;
  7972. }
  7973. #u72018_img.selected {
  7974. }
  7975. #u72018.selected {
  7976. }
  7977. #u72018_img.disabled {
  7978. }
  7979. #u72018.disabled {
  7980. }
  7981. #u72018_img.selectedDisabled {
  7982. }
  7983. #u72018.selectedDisabled {
  7984. }
  7985. #u72018_text {
  7986. border-width:0px;
  7987. position:absolute;
  7988. left:14px;
  7989. top:0px;
  7990. width:84px;
  7991. word-wrap:break-word;
  7992. text-transform:none;
  7993. }
  7994. #u72018_input {
  7995. border-width:0px;
  7996. position:absolute;
  7997. left:0px;
  7998. top:0px;
  7999. width:0px;
  8000. height:0px;
  8001. opacity:0;
  8002. }
  8003. #u72019_img {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:0px;
  8007. top:0px;
  8008. width:11px;
  8009. height:11px;
  8010. }
  8011. #u72019 {
  8012. border-width:0px;
  8013. position:absolute;
  8014. left:3060px;
  8015. top:811px;
  8016. width:11px;
  8017. height:11px;
  8018. display:flex;
  8019. color:#FFFFFF;
  8020. }
  8021. #u72019 .text {
  8022. position:absolute;
  8023. align-self:center;
  8024. padding:2px 2px 2px 2px;
  8025. box-sizing:border-box;
  8026. width:100%;
  8027. }
  8028. #u72019_text {
  8029. border-width:0px;
  8030. word-wrap:break-word;
  8031. text-transform:none;
  8032. visibility:hidden;
  8033. }
  8034. #u72020 {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:0px;
  8038. top:0px;
  8039. width:0px;
  8040. height:0px;
  8041. }
  8042. #u72021 {
  8043. border-width:0px;
  8044. position:absolute;
  8045. left:0px;
  8046. top:0px;
  8047. width:0px;
  8048. height:0px;
  8049. }
  8050. #u72022 {
  8051. border-width:0px;
  8052. position:absolute;
  8053. left:0px;
  8054. top:0px;
  8055. width:0px;
  8056. height:0px;
  8057. }
  8058. #u72023_div {
  8059. border-width:0px;
  8060. position:absolute;
  8061. left:0px;
  8062. top:0px;
  8063. width:180px;
  8064. height:40px;
  8065. background:inherit;
  8066. background-color:rgba(242, 242, 242, 0);
  8067. box-sizing:border-box;
  8068. border-width:1px;
  8069. border-style:solid;
  8070. border-color:rgba(170, 170, 170, 1);
  8071. border-radius:4px;
  8072. -moz-box-shadow:none;
  8073. -webkit-box-shadow:none;
  8074. box-shadow:none;
  8075. font-size:12px;
  8076. }
  8077. #u72023 {
  8078. border-width:0px;
  8079. position:absolute;
  8080. left:2675px;
  8081. top:883px;
  8082. width:180px;
  8083. height:40px;
  8084. display:flex;
  8085. font-size:12px;
  8086. }
  8087. #u72023 .text {
  8088. position:absolute;
  8089. align-self:center;
  8090. padding:2px 2px 2px 2px;
  8091. box-sizing:border-box;
  8092. width:100%;
  8093. }
  8094. #u72023_text {
  8095. border-width:0px;
  8096. word-wrap:break-word;
  8097. text-transform:none;
  8098. visibility:hidden;
  8099. }
  8100. #u72024_input {
  8101. position:absolute;
  8102. left:0px;
  8103. top:0px;
  8104. width:170px;
  8105. height:31px;
  8106. padding:2px 2px 2px 2px;
  8107. font-family:'ArialMT', 'Arial', sans-serif;
  8108. font-weight:400;
  8109. font-style:normal;
  8110. font-size:12px;
  8111. letter-spacing:normal;
  8112. color:#333333;
  8113. vertical-align:none;
  8114. text-align:left;
  8115. text-transform:none;
  8116. background-color:transparent;
  8117. border-color:transparent;
  8118. }
  8119. #u72024_input.disabled {
  8120. position:absolute;
  8121. left:0px;
  8122. top:0px;
  8123. width:170px;
  8124. height:31px;
  8125. padding:2px 2px 2px 2px;
  8126. font-family:'ArialMT', 'Arial', sans-serif;
  8127. font-weight:400;
  8128. font-style:normal;
  8129. font-size:12px;
  8130. letter-spacing:normal;
  8131. color:#333333;
  8132. vertical-align:none;
  8133. text-align:left;
  8134. text-transform:none;
  8135. background-color:transparent;
  8136. border-color:transparent;
  8137. }
  8138. #u72024_div {
  8139. border-width:0px;
  8140. position:absolute;
  8141. left:0px;
  8142. top:0px;
  8143. width:170px;
  8144. height:31px;
  8145. background:inherit;
  8146. background-color:rgba(255, 255, 255, 0);
  8147. border:none;
  8148. border-radius:0px;
  8149. -moz-box-shadow:none;
  8150. -webkit-box-shadow:none;
  8151. box-shadow:none;
  8152. font-size:12px;
  8153. color:#333333;
  8154. }
  8155. #u72024 {
  8156. border-width:0px;
  8157. position:absolute;
  8158. left:2681px;
  8159. top:887px;
  8160. width:170px;
  8161. height:31px;
  8162. display:flex;
  8163. font-size:12px;
  8164. color:#333333;
  8165. }
  8166. #u72024 .text {
  8167. position:absolute;
  8168. align-self:flex-start;
  8169. padding:2px 2px 2px 2px;
  8170. box-sizing:border-box;
  8171. width:100%;
  8172. }
  8173. #u72024_div.disabled {
  8174. border-width:0px;
  8175. position:absolute;
  8176. left:0px;
  8177. top:0px;
  8178. width:170px;
  8179. height:31px;
  8180. background:inherit;
  8181. background-color:rgba(240, 240, 240, 1);
  8182. border:none;
  8183. border-radius:0px;
  8184. -moz-box-shadow:none;
  8185. -webkit-box-shadow:none;
  8186. box-shadow:none;
  8187. font-size:12px;
  8188. color:#333333;
  8189. }
  8190. #u72024.disabled {
  8191. }
  8192. .u72024_input_option {
  8193. font-size:12px;
  8194. }
  8195. #u72025 {
  8196. border-width:0px;
  8197. position:absolute;
  8198. left:0px;
  8199. top:0px;
  8200. width:0px;
  8201. height:0px;
  8202. }
  8203. #u72026_div {
  8204. border-width:0px;
  8205. position:absolute;
  8206. left:0px;
  8207. top:0px;
  8208. width:180px;
  8209. height:40px;
  8210. background:inherit;
  8211. background-color:rgba(242, 242, 242, 0);
  8212. box-sizing:border-box;
  8213. border-width:1px;
  8214. border-style:solid;
  8215. border-color:rgba(170, 170, 170, 1);
  8216. border-radius:4px;
  8217. -moz-box-shadow:none;
  8218. -webkit-box-shadow:none;
  8219. box-shadow:none;
  8220. font-size:12px;
  8221. }
  8222. #u72026 {
  8223. border-width:0px;
  8224. position:absolute;
  8225. left:2870px;
  8226. top:883px;
  8227. width:180px;
  8228. height:40px;
  8229. display:flex;
  8230. font-size:12px;
  8231. }
  8232. #u72026 .text {
  8233. position:absolute;
  8234. align-self:center;
  8235. padding:2px 2px 2px 2px;
  8236. box-sizing:border-box;
  8237. width:100%;
  8238. }
  8239. #u72026_text {
  8240. border-width:0px;
  8241. word-wrap:break-word;
  8242. text-transform:none;
  8243. visibility:hidden;
  8244. }
  8245. #u72027_input {
  8246. position:absolute;
  8247. left:0px;
  8248. top:0px;
  8249. width:170px;
  8250. height:31px;
  8251. padding:2px 2px 2px 2px;
  8252. font-family:'ArialMT', 'Arial', sans-serif;
  8253. font-weight:400;
  8254. font-style:normal;
  8255. font-size:12px;
  8256. letter-spacing:normal;
  8257. color:#333333;
  8258. vertical-align:none;
  8259. text-align:left;
  8260. text-transform:none;
  8261. background-color:transparent;
  8262. border-color:transparent;
  8263. }
  8264. #u72027_input.disabled {
  8265. position:absolute;
  8266. left:0px;
  8267. top:0px;
  8268. width:170px;
  8269. height:31px;
  8270. padding:2px 2px 2px 2px;
  8271. font-family:'ArialMT', 'Arial', sans-serif;
  8272. font-weight:400;
  8273. font-style:normal;
  8274. font-size:12px;
  8275. letter-spacing:normal;
  8276. color:#333333;
  8277. vertical-align:none;
  8278. text-align:left;
  8279. text-transform:none;
  8280. background-color:transparent;
  8281. border-color:transparent;
  8282. }
  8283. #u72027_div {
  8284. border-width:0px;
  8285. position:absolute;
  8286. left:0px;
  8287. top:0px;
  8288. width:170px;
  8289. height:31px;
  8290. background:inherit;
  8291. background-color:rgba(255, 255, 255, 0);
  8292. border:none;
  8293. border-radius:0px;
  8294. -moz-box-shadow:none;
  8295. -webkit-box-shadow:none;
  8296. box-shadow:none;
  8297. font-size:12px;
  8298. color:#333333;
  8299. }
  8300. #u72027 {
  8301. border-width:0px;
  8302. position:absolute;
  8303. left:2876px;
  8304. top:887px;
  8305. width:170px;
  8306. height:31px;
  8307. display:flex;
  8308. font-size:12px;
  8309. color:#333333;
  8310. }
  8311. #u72027 .text {
  8312. position:absolute;
  8313. align-self:flex-start;
  8314. padding:2px 2px 2px 2px;
  8315. box-sizing:border-box;
  8316. width:100%;
  8317. }
  8318. #u72027_div.disabled {
  8319. border-width:0px;
  8320. position:absolute;
  8321. left:0px;
  8322. top:0px;
  8323. width:170px;
  8324. height:31px;
  8325. background:inherit;
  8326. background-color:rgba(240, 240, 240, 1);
  8327. border:none;
  8328. border-radius:0px;
  8329. -moz-box-shadow:none;
  8330. -webkit-box-shadow:none;
  8331. box-shadow:none;
  8332. font-size:12px;
  8333. color:#333333;
  8334. }
  8335. #u72027.disabled {
  8336. }
  8337. .u72027_input_option {
  8338. font-size:12px;
  8339. }
  8340. #u72028_div {
  8341. border-width:0px;
  8342. position:absolute;
  8343. left:0px;
  8344. top:0px;
  8345. width:19px;
  8346. height:30px;
  8347. background:inherit;
  8348. background-color:rgba(255, 255, 255, 0);
  8349. border:none;
  8350. border-top:0px;
  8351. border-right:0px;
  8352. border-bottom:0px;
  8353. border-radius:0px;
  8354. border-top-left-radius:0px;
  8355. border-bottom-left-radius:0px;
  8356. -moz-box-shadow:none;
  8357. -webkit-box-shadow:none;
  8358. box-shadow:none;
  8359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8360. font-weight:400;
  8361. font-style:normal;
  8362. font-size:14px;
  8363. }
  8364. #u72028 {
  8365. border-width:0px;
  8366. position:absolute;
  8367. left:2855px;
  8368. top:888px;
  8369. width:19px;
  8370. height:30px;
  8371. display:flex;
  8372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8373. font-weight:400;
  8374. font-style:normal;
  8375. font-size:14px;
  8376. }
  8377. #u72028 .text {
  8378. position:absolute;
  8379. align-self:center;
  8380. padding:5px 10px 5px 0px;
  8381. box-sizing:border-box;
  8382. width:100%;
  8383. }
  8384. #u72028_text {
  8385. border-width:0px;
  8386. white-space:nowrap;
  8387. text-transform:none;
  8388. }
  8389. #u72029_div {
  8390. border-width:0px;
  8391. position:absolute;
  8392. left:0px;
  8393. top:0px;
  8394. width:39px;
  8395. height:30px;
  8396. background:inherit;
  8397. background-color:rgba(242, 242, 242, 0);
  8398. border:none;
  8399. border-top:0px;
  8400. border-right:0px;
  8401. border-bottom:0px;
  8402. border-radius:0px;
  8403. border-top-left-radius:0px;
  8404. border-bottom-left-radius:0px;
  8405. -moz-box-shadow:none;
  8406. -webkit-box-shadow:none;
  8407. box-shadow:none;
  8408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8409. font-weight:400;
  8410. font-style:normal;
  8411. font-size:14px;
  8412. color:#1890FF;
  8413. }
  8414. #u72029 {
  8415. border-width:0px;
  8416. position:absolute;
  8417. left:3056px;
  8418. top:888px;
  8419. width:39px;
  8420. height:30px;
  8421. display:flex;
  8422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8423. font-weight:400;
  8424. font-style:normal;
  8425. font-size:14px;
  8426. color:#1890FF;
  8427. }
  8428. #u72029 .text {
  8429. position:absolute;
  8430. align-self:center;
  8431. padding:5px 10px 5px 0px;
  8432. box-sizing:border-box;
  8433. width:100%;
  8434. }
  8435. #u72029_text {
  8436. border-width:0px;
  8437. white-space:nowrap;
  8438. text-transform:none;
  8439. }
  8440. #u72030_img {
  8441. border-width:0px;
  8442. position:absolute;
  8443. left:0px;
  8444. top:0px;
  8445. width:50px;
  8446. height:31px;
  8447. }
  8448. #u72030 {
  8449. border-width:0px;
  8450. position:absolute;
  8451. left:2650px;
  8452. top:643px;
  8453. width:50px;
  8454. height:31px;
  8455. display:flex;
  8456. }
  8457. #u72030 .text {
  8458. position:absolute;
  8459. align-self:center;
  8460. padding:2px 2px 2px 2px;
  8461. box-sizing:border-box;
  8462. width:100%;
  8463. }
  8464. #u72030_text {
  8465. border-width:0px;
  8466. word-wrap:break-word;
  8467. text-transform:none;
  8468. visibility:hidden;
  8469. }
  8470. #u72032 {
  8471. border-width:0px;
  8472. position:absolute;
  8473. left:0px;
  8474. top:0px;
  8475. width:0px;
  8476. height:0px;
  8477. }
  8478. #u72033_img {
  8479. border-width:0px;
  8480. position:absolute;
  8481. left:0px;
  8482. top:0px;
  8483. width:200px;
  8484. height:1191px;
  8485. }
  8486. #u72033 {
  8487. border-width:0px;
  8488. position:absolute;
  8489. left:120px;
  8490. top:50px;
  8491. width:200px;
  8492. height:1191px;
  8493. display:flex;
  8494. }
  8495. #u72033 .text {
  8496. position:absolute;
  8497. align-self:center;
  8498. padding:2px 2px 2px 2px;
  8499. box-sizing:border-box;
  8500. width:100%;
  8501. }
  8502. #u72033_text {
  8503. border-width:0px;
  8504. word-wrap:break-word;
  8505. text-transform:none;
  8506. visibility:hidden;
  8507. }
  8508. #u72034_div {
  8509. border-width:0px;
  8510. position:absolute;
  8511. left:0px;
  8512. top:0px;
  8513. width:200px;
  8514. height:60px;
  8515. background:inherit;
  8516. background-color:rgba(224, 231, 247, 1);
  8517. border:none;
  8518. border-radius:0px;
  8519. -moz-box-shadow:none;
  8520. -webkit-box-shadow:none;
  8521. box-shadow:none;
  8522. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8523. font-weight:500;
  8524. font-style:normal;
  8525. font-size:18px;
  8526. }
  8527. #u72034 {
  8528. border-width:0px;
  8529. position:absolute;
  8530. left:120px;
  8531. top:50px;
  8532. width:200px;
  8533. height:60px;
  8534. display:flex;
  8535. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8536. font-weight:500;
  8537. font-style:normal;
  8538. font-size:18px;
  8539. }
  8540. #u72034 .text {
  8541. position:absolute;
  8542. align-self:center;
  8543. padding:0px 0px 0px 20px;
  8544. box-sizing:border-box;
  8545. width:100%;
  8546. }
  8547. #u72034_text {
  8548. border-width:0px;
  8549. word-wrap:break-word;
  8550. text-transform:none;
  8551. }
  8552. #u72035 {
  8553. border-width:0px;
  8554. position:absolute;
  8555. left:120px;
  8556. top:130px;
  8557. width:200px;
  8558. height:1078px;
  8559. }
  8560. #u72035_state0 {
  8561. border-width:0px;
  8562. position:absolute;
  8563. left:0px;
  8564. top:0px;
  8565. width:200px;
  8566. height:1078px;
  8567. overflow:auto;
  8568. -webkit-overflow-scrolling:touch;
  8569. -ms-overflow-x:hidden;
  8570. overflow-x:hidden;
  8571. background-image:none;
  8572. border:none;
  8573. border-radius:0px;
  8574. -moz-box-shadow:none;
  8575. -webkit-box-shadow:none;
  8576. box-shadow:none;
  8577. }
  8578. #u72035_state0_content {
  8579. border-width:0px;
  8580. position:absolute;
  8581. left:0px;
  8582. top:0px;
  8583. width:1px;
  8584. height:1px;
  8585. }
  8586. #u72036_div {
  8587. border-width:0px;
  8588. position:absolute;
  8589. left:0px;
  8590. top:0px;
  8591. width:97px;
  8592. height:22px;
  8593. background:inherit;
  8594. background-color:rgba(255, 255, 255, 0);
  8595. border:none;
  8596. border-radius:0px;
  8597. -moz-box-shadow:none;
  8598. -webkit-box-shadow:none;
  8599. box-shadow:none;
  8600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8601. font-weight:400;
  8602. font-style:normal;
  8603. font-size:16px;
  8604. }
  8605. #u72036 {
  8606. border-width:0px;
  8607. position:absolute;
  8608. left:30px;
  8609. top:0px;
  8610. width:97px;
  8611. height:22px;
  8612. display:flex;
  8613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8614. font-weight:400;
  8615. font-style:normal;
  8616. font-size:16px;
  8617. }
  8618. #u72036 .text {
  8619. position:absolute;
  8620. align-self:flex-start;
  8621. padding:0px 0px 0px 0px;
  8622. box-sizing:border-box;
  8623. width:100%;
  8624. }
  8625. #u72036_text {
  8626. border-width:0px;
  8627. word-wrap:break-word;
  8628. text-transform:none;
  8629. }
  8630. #u72037_div {
  8631. border-width:0px;
  8632. position:absolute;
  8633. left:0px;
  8634. top:0px;
  8635. width:65px;
  8636. height:22px;
  8637. background:inherit;
  8638. background-color:rgba(255, 255, 255, 0);
  8639. border:none;
  8640. border-radius:0px;
  8641. -moz-box-shadow:none;
  8642. -webkit-box-shadow:none;
  8643. box-shadow:none;
  8644. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8645. font-weight:400;
  8646. font-style:normal;
  8647. font-size:16px;
  8648. }
  8649. #u72037 {
  8650. border-width:0px;
  8651. position:absolute;
  8652. left:30px;
  8653. top:42px;
  8654. width:65px;
  8655. height:22px;
  8656. display:flex;
  8657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8658. font-weight:400;
  8659. font-style:normal;
  8660. font-size:16px;
  8661. }
  8662. #u72037 .text {
  8663. position:absolute;
  8664. align-self:flex-start;
  8665. padding:0px 0px 0px 0px;
  8666. box-sizing:border-box;
  8667. width:100%;
  8668. }
  8669. #u72037_text {
  8670. border-width:0px;
  8671. white-space:nowrap;
  8672. text-transform:none;
  8673. }
  8674. #u72038_div {
  8675. border-width:0px;
  8676. position:absolute;
  8677. left:0px;
  8678. top:0px;
  8679. width:49px;
  8680. height:22px;
  8681. background:inherit;
  8682. background-color:rgba(255, 255, 255, 0);
  8683. border:none;
  8684. border-radius:0px;
  8685. -moz-box-shadow:none;
  8686. -webkit-box-shadow:none;
  8687. box-shadow:none;
  8688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8689. font-weight:400;
  8690. font-style:normal;
  8691. font-size:16px;
  8692. }
  8693. #u72038 {
  8694. border-width:0px;
  8695. position:absolute;
  8696. left:30px;
  8697. top:145px;
  8698. width:49px;
  8699. height:22px;
  8700. display:flex;
  8701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8702. font-weight:400;
  8703. font-style:normal;
  8704. font-size:16px;
  8705. }
  8706. #u72038 .text {
  8707. position:absolute;
  8708. align-self:flex-start;
  8709. padding:0px 0px 0px 0px;
  8710. box-sizing:border-box;
  8711. width:100%;
  8712. }
  8713. #u72038_text {
  8714. border-width:0px;
  8715. white-space:nowrap;
  8716. text-transform:none;
  8717. }
  8718. #u72039_div {
  8719. border-width:0px;
  8720. position:absolute;
  8721. left:0px;
  8722. top:0px;
  8723. width:97px;
  8724. height:22px;
  8725. background:inherit;
  8726. background-color:rgba(255, 255, 255, 0);
  8727. border:none;
  8728. border-radius:0px;
  8729. -moz-box-shadow:none;
  8730. -webkit-box-shadow:none;
  8731. box-shadow:none;
  8732. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8733. font-weight:400;
  8734. font-style:normal;
  8735. font-size:16px;
  8736. }
  8737. #u72039 {
  8738. border-width:0px;
  8739. position:absolute;
  8740. left:30px;
  8741. top:187px;
  8742. width:97px;
  8743. height:22px;
  8744. display:flex;
  8745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8746. font-weight:400;
  8747. font-style:normal;
  8748. font-size:16px;
  8749. }
  8750. #u72039 .text {
  8751. position:absolute;
  8752. align-self:flex-start;
  8753. padding:0px 0px 0px 0px;
  8754. box-sizing:border-box;
  8755. width:100%;
  8756. }
  8757. #u72039_text {
  8758. border-width:0px;
  8759. word-wrap:break-word;
  8760. text-transform:none;
  8761. }
  8762. #u72040_img {
  8763. border-width:0px;
  8764. position:absolute;
  8765. left:0px;
  8766. top:0px;
  8767. width:201px;
  8768. height:2px;
  8769. }
  8770. #u72040 {
  8771. border-width:0px;
  8772. position:absolute;
  8773. left:0px;
  8774. top:84px;
  8775. width:200px;
  8776. height:1px;
  8777. display:flex;
  8778. }
  8779. #u72040 .text {
  8780. position:absolute;
  8781. align-self:center;
  8782. padding:2px 2px 2px 2px;
  8783. box-sizing:border-box;
  8784. width:100%;
  8785. }
  8786. #u72040_text {
  8787. border-width:0px;
  8788. word-wrap:break-word;
  8789. text-transform:none;
  8790. visibility:hidden;
  8791. }
  8792. #u72041_div {
  8793. border-width:0px;
  8794. position:absolute;
  8795. left:0px;
  8796. top:0px;
  8797. width:49px;
  8798. height:17px;
  8799. background:inherit;
  8800. background-color:rgba(255, 255, 255, 0);
  8801. border:none;
  8802. border-radius:0px;
  8803. -moz-box-shadow:none;
  8804. -webkit-box-shadow:none;
  8805. box-shadow:none;
  8806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8807. font-weight:400;
  8808. font-style:normal;
  8809. font-size:12px;
  8810. color:#AAAAAA;
  8811. }
  8812. #u72041 {
  8813. border-width:0px;
  8814. position:absolute;
  8815. left:30px;
  8816. top:105px;
  8817. width:49px;
  8818. height:17px;
  8819. display:flex;
  8820. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8821. font-weight:400;
  8822. font-style:normal;
  8823. font-size:12px;
  8824. color:#AAAAAA;
  8825. }
  8826. #u72041 .text {
  8827. position:absolute;
  8828. align-self:flex-start;
  8829. padding:0px 0px 0px 0px;
  8830. box-sizing:border-box;
  8831. width:100%;
  8832. }
  8833. #u72041_text {
  8834. border-width:0px;
  8835. white-space:nowrap;
  8836. text-transform:none;
  8837. }
  8838. #u72042_div {
  8839. border-width:0px;
  8840. position:absolute;
  8841. left:0px;
  8842. top:0px;
  8843. width:97px;
  8844. height:22px;
  8845. background:inherit;
  8846. background-color:rgba(255, 255, 255, 0);
  8847. border:none;
  8848. border-radius:0px;
  8849. -moz-box-shadow:none;
  8850. -webkit-box-shadow:none;
  8851. box-shadow:none;
  8852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8853. font-weight:400;
  8854. font-style:normal;
  8855. font-size:16px;
  8856. }
  8857. #u72042 {
  8858. border-width:0px;
  8859. position:absolute;
  8860. left:30px;
  8861. top:229px;
  8862. width:97px;
  8863. height:22px;
  8864. display:flex;
  8865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8866. font-weight:400;
  8867. font-style:normal;
  8868. font-size:16px;
  8869. }
  8870. #u72042 .text {
  8871. position:absolute;
  8872. align-self:flex-start;
  8873. padding:0px 0px 0px 0px;
  8874. box-sizing:border-box;
  8875. width:100%;
  8876. }
  8877. #u72042_text {
  8878. border-width:0px;
  8879. word-wrap:break-word;
  8880. text-transform:none;
  8881. }
  8882. #u72043_div {
  8883. border-width:0px;
  8884. position:absolute;
  8885. left:0px;
  8886. top:0px;
  8887. width:65px;
  8888. height:22px;
  8889. background:inherit;
  8890. background-color:rgba(255, 255, 255, 0);
  8891. border:none;
  8892. border-radius:0px;
  8893. -moz-box-shadow:none;
  8894. -webkit-box-shadow:none;
  8895. box-shadow:none;
  8896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8897. font-weight:400;
  8898. font-style:normal;
  8899. font-size:16px;
  8900. }
  8901. #u72043 {
  8902. border-width:0px;
  8903. position:absolute;
  8904. left:30px;
  8905. top:271px;
  8906. width:65px;
  8907. height:22px;
  8908. display:flex;
  8909. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8910. font-weight:400;
  8911. font-style:normal;
  8912. font-size:16px;
  8913. }
  8914. #u72043 .text {
  8915. position:absolute;
  8916. align-self:flex-start;
  8917. padding:0px 0px 0px 0px;
  8918. box-sizing:border-box;
  8919. width:100%;
  8920. }
  8921. #u72043_text {
  8922. border-width:0px;
  8923. white-space:nowrap;
  8924. text-transform:none;
  8925. }
  8926. #u72044_img {
  8927. border-width:0px;
  8928. position:absolute;
  8929. left:0px;
  8930. top:0px;
  8931. width:201px;
  8932. height:2px;
  8933. }
  8934. #u72044 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:0px;
  8938. top:313px;
  8939. width:200px;
  8940. height:1px;
  8941. display:flex;
  8942. }
  8943. #u72044 .text {
  8944. position:absolute;
  8945. align-self:center;
  8946. padding:2px 2px 2px 2px;
  8947. box-sizing:border-box;
  8948. width:100%;
  8949. }
  8950. #u72044_text {
  8951. border-width:0px;
  8952. word-wrap:break-word;
  8953. text-transform:none;
  8954. visibility:hidden;
  8955. }
  8956. #u72045_div {
  8957. border-width:0px;
  8958. position:absolute;
  8959. left:0px;
  8960. top:0px;
  8961. width:65px;
  8962. height:22px;
  8963. background:inherit;
  8964. background-color:rgba(255, 255, 255, 0);
  8965. border:none;
  8966. border-radius:0px;
  8967. -moz-box-shadow:none;
  8968. -webkit-box-shadow:none;
  8969. box-shadow:none;
  8970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8971. font-weight:400;
  8972. font-style:normal;
  8973. font-size:16px;
  8974. }
  8975. #u72045 {
  8976. border-width:0px;
  8977. position:absolute;
  8978. left:30px;
  8979. top:370px;
  8980. width:65px;
  8981. height:22px;
  8982. display:flex;
  8983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8984. font-weight:400;
  8985. font-style:normal;
  8986. font-size:16px;
  8987. }
  8988. #u72045 .text {
  8989. position:absolute;
  8990. align-self:flex-start;
  8991. padding:0px 0px 0px 0px;
  8992. box-sizing:border-box;
  8993. width:100%;
  8994. }
  8995. #u72045_text {
  8996. border-width:0px;
  8997. white-space:nowrap;
  8998. text-transform:none;
  8999. }
  9000. #u72046_div {
  9001. border-width:0px;
  9002. position:absolute;
  9003. left:0px;
  9004. top:0px;
  9005. width:49px;
  9006. height:17px;
  9007. background:inherit;
  9008. background-color:rgba(255, 255, 255, 0);
  9009. border:none;
  9010. border-radius:0px;
  9011. -moz-box-shadow:none;
  9012. -webkit-box-shadow:none;
  9013. box-shadow:none;
  9014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9015. font-weight:400;
  9016. font-style:normal;
  9017. font-size:12px;
  9018. color:#AAAAAA;
  9019. }
  9020. #u72046 {
  9021. border-width:0px;
  9022. position:absolute;
  9023. left:30px;
  9024. top:334px;
  9025. width:49px;
  9026. height:17px;
  9027. display:flex;
  9028. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9029. font-weight:400;
  9030. font-style:normal;
  9031. font-size:12px;
  9032. color:#AAAAAA;
  9033. }
  9034. #u72046 .text {
  9035. position:absolute;
  9036. align-self:flex-start;
  9037. padding:0px 0px 0px 0px;
  9038. box-sizing:border-box;
  9039. width:100%;
  9040. }
  9041. #u72046_text {
  9042. border-width:0px;
  9043. white-space:nowrap;
  9044. text-transform:none;
  9045. }
  9046. #u72047_div {
  9047. border-width:0px;
  9048. position:absolute;
  9049. left:0px;
  9050. top:0px;
  9051. width:65px;
  9052. height:22px;
  9053. background:inherit;
  9054. background-color:rgba(255, 255, 255, 0);
  9055. border:none;
  9056. border-radius:0px;
  9057. -moz-box-shadow:none;
  9058. -webkit-box-shadow:none;
  9059. box-shadow:none;
  9060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9061. font-weight:400;
  9062. font-style:normal;
  9063. font-size:16px;
  9064. }
  9065. #u72047 {
  9066. border-width:0px;
  9067. position:absolute;
  9068. left:30px;
  9069. top:412px;
  9070. width:65px;
  9071. height:22px;
  9072. display:flex;
  9073. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9074. font-weight:400;
  9075. font-style:normal;
  9076. font-size:16px;
  9077. }
  9078. #u72047 .text {
  9079. position:absolute;
  9080. align-self:flex-start;
  9081. padding:0px 0px 0px 0px;
  9082. box-sizing:border-box;
  9083. width:100%;
  9084. }
  9085. #u72047_text {
  9086. border-width:0px;
  9087. white-space:nowrap;
  9088. text-transform:none;
  9089. }
  9090. #u72048_div {
  9091. border-width:0px;
  9092. position:absolute;
  9093. left:0px;
  9094. top:0px;
  9095. width:65px;
  9096. height:22px;
  9097. background:inherit;
  9098. background-color:rgba(255, 255, 255, 0);
  9099. border:none;
  9100. border-radius:0px;
  9101. -moz-box-shadow:none;
  9102. -webkit-box-shadow:none;
  9103. box-shadow:none;
  9104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9105. font-weight:400;
  9106. font-style:normal;
  9107. font-size:16px;
  9108. }
  9109. #u72048 {
  9110. border-width:0px;
  9111. position:absolute;
  9112. left:30px;
  9113. top:454px;
  9114. width:65px;
  9115. height:22px;
  9116. display:flex;
  9117. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9118. font-weight:400;
  9119. font-style:normal;
  9120. font-size:16px;
  9121. }
  9122. #u72048 .text {
  9123. position:absolute;
  9124. align-self:flex-start;
  9125. padding:0px 0px 0px 0px;
  9126. box-sizing:border-box;
  9127. width:100%;
  9128. }
  9129. #u72048_text {
  9130. border-width:0px;
  9131. white-space:nowrap;
  9132. text-transform:none;
  9133. }
  9134. #u72049_div {
  9135. border-width:0px;
  9136. position:absolute;
  9137. left:0px;
  9138. top:0px;
  9139. width:65px;
  9140. height:22px;
  9141. background:inherit;
  9142. background-color:rgba(255, 255, 255, 0);
  9143. border:none;
  9144. border-radius:0px;
  9145. -moz-box-shadow:none;
  9146. -webkit-box-shadow:none;
  9147. box-shadow:none;
  9148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9149. font-weight:400;
  9150. font-style:normal;
  9151. font-size:16px;
  9152. }
  9153. #u72049 {
  9154. border-width:0px;
  9155. position:absolute;
  9156. left:30px;
  9157. top:496px;
  9158. width:65px;
  9159. height:22px;
  9160. display:flex;
  9161. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9162. font-weight:400;
  9163. font-style:normal;
  9164. font-size:16px;
  9165. }
  9166. #u72049 .text {
  9167. position:absolute;
  9168. align-self:flex-start;
  9169. padding:0px 0px 0px 0px;
  9170. box-sizing:border-box;
  9171. width:100%;
  9172. }
  9173. #u72049_text {
  9174. border-width:0px;
  9175. white-space:nowrap;
  9176. text-transform:none;
  9177. }
  9178. #u72050_div {
  9179. border-width:0px;
  9180. position:absolute;
  9181. left:0px;
  9182. top:0px;
  9183. width:65px;
  9184. height:22px;
  9185. background:inherit;
  9186. background-color:rgba(255, 255, 255, 0);
  9187. border:none;
  9188. border-radius:0px;
  9189. -moz-box-shadow:none;
  9190. -webkit-box-shadow:none;
  9191. box-shadow:none;
  9192. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9193. font-weight:400;
  9194. font-style:normal;
  9195. font-size:16px;
  9196. }
  9197. #u72050 {
  9198. border-width:0px;
  9199. position:absolute;
  9200. left:30px;
  9201. top:538px;
  9202. width:65px;
  9203. height:22px;
  9204. display:flex;
  9205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9206. font-weight:400;
  9207. font-style:normal;
  9208. font-size:16px;
  9209. }
  9210. #u72050 .text {
  9211. position:absolute;
  9212. align-self:flex-start;
  9213. padding:0px 0px 0px 0px;
  9214. box-sizing:border-box;
  9215. width:100%;
  9216. }
  9217. #u72050_text {
  9218. border-width:0px;
  9219. white-space:nowrap;
  9220. text-transform:none;
  9221. }
  9222. #u72051_div {
  9223. border-width:0px;
  9224. position:absolute;
  9225. left:0px;
  9226. top:0px;
  9227. width:65px;
  9228. height:22px;
  9229. background:inherit;
  9230. background-color:rgba(255, 255, 255, 0);
  9231. border:none;
  9232. border-radius:0px;
  9233. -moz-box-shadow:none;
  9234. -webkit-box-shadow:none;
  9235. box-shadow:none;
  9236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9237. font-weight:400;
  9238. font-style:normal;
  9239. font-size:16px;
  9240. }
  9241. #u72051 {
  9242. border-width:0px;
  9243. position:absolute;
  9244. left:30px;
  9245. top:580px;
  9246. width:65px;
  9247. height:22px;
  9248. display:flex;
  9249. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9250. font-weight:400;
  9251. font-style:normal;
  9252. font-size:16px;
  9253. }
  9254. #u72051 .text {
  9255. position:absolute;
  9256. align-self:flex-start;
  9257. padding:0px 0px 0px 0px;
  9258. box-sizing:border-box;
  9259. width:100%;
  9260. }
  9261. #u72051_text {
  9262. border-width:0px;
  9263. white-space:nowrap;
  9264. text-transform:none;
  9265. }
  9266. #u72052_img {
  9267. border-width:0px;
  9268. position:absolute;
  9269. left:0px;
  9270. top:0px;
  9271. width:201px;
  9272. height:2px;
  9273. }
  9274. #u72052 {
  9275. border-width:0px;
  9276. position:absolute;
  9277. left:0px;
  9278. top:1289px;
  9279. width:200px;
  9280. height:1px;
  9281. display:flex;
  9282. }
  9283. #u72052 .text {
  9284. position:absolute;
  9285. align-self:center;
  9286. padding:2px 2px 2px 2px;
  9287. box-sizing:border-box;
  9288. width:100%;
  9289. }
  9290. #u72052_text {
  9291. border-width:0px;
  9292. word-wrap:break-word;
  9293. text-transform:none;
  9294. visibility:hidden;
  9295. }
  9296. #u72053_div {
  9297. border-width:0px;
  9298. position:absolute;
  9299. left:0px;
  9300. top:0px;
  9301. width:65px;
  9302. height:22px;
  9303. background:inherit;
  9304. background-color:rgba(255, 255, 255, 0);
  9305. border:none;
  9306. border-radius:0px;
  9307. -moz-box-shadow:none;
  9308. -webkit-box-shadow:none;
  9309. box-shadow:none;
  9310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9311. font-weight:400;
  9312. font-style:normal;
  9313. font-size:16px;
  9314. }
  9315. #u72053 {
  9316. border-width:0px;
  9317. position:absolute;
  9318. left:30px;
  9319. top:1346px;
  9320. width:65px;
  9321. height:22px;
  9322. display:flex;
  9323. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9324. font-weight:400;
  9325. font-style:normal;
  9326. font-size:16px;
  9327. }
  9328. #u72053 .text {
  9329. position:absolute;
  9330. align-self:flex-start;
  9331. padding:0px 0px 0px 0px;
  9332. box-sizing:border-box;
  9333. width:100%;
  9334. }
  9335. #u72053_text {
  9336. border-width:0px;
  9337. white-space:nowrap;
  9338. text-transform:none;
  9339. }
  9340. #u72054_div {
  9341. border-width:0px;
  9342. position:absolute;
  9343. left:0px;
  9344. top:0px;
  9345. width:49px;
  9346. height:17px;
  9347. background:inherit;
  9348. background-color:rgba(255, 255, 255, 0);
  9349. border:none;
  9350. border-radius:0px;
  9351. -moz-box-shadow:none;
  9352. -webkit-box-shadow:none;
  9353. box-shadow:none;
  9354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9355. font-weight:400;
  9356. font-style:normal;
  9357. font-size:12px;
  9358. color:#AAAAAA;
  9359. }
  9360. #u72054 {
  9361. border-width:0px;
  9362. position:absolute;
  9363. left:30px;
  9364. top:1310px;
  9365. width:49px;
  9366. height:17px;
  9367. display:flex;
  9368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9369. font-weight:400;
  9370. font-style:normal;
  9371. font-size:12px;
  9372. color:#AAAAAA;
  9373. }
  9374. #u72054 .text {
  9375. position:absolute;
  9376. align-self:flex-start;
  9377. padding:0px 0px 0px 0px;
  9378. box-sizing:border-box;
  9379. width:100%;
  9380. }
  9381. #u72054_text {
  9382. border-width:0px;
  9383. white-space:nowrap;
  9384. text-transform:none;
  9385. }
  9386. #u72055_div {
  9387. border-width:0px;
  9388. position:absolute;
  9389. left:0px;
  9390. top:0px;
  9391. width:65px;
  9392. height:22px;
  9393. background:inherit;
  9394. background-color:rgba(255, 255, 255, 0);
  9395. border:none;
  9396. border-radius:0px;
  9397. -moz-box-shadow:none;
  9398. -webkit-box-shadow:none;
  9399. box-shadow:none;
  9400. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9401. font-weight:400;
  9402. font-style:normal;
  9403. font-size:16px;
  9404. }
  9405. #u72055 {
  9406. border-width:0px;
  9407. position:absolute;
  9408. left:30px;
  9409. top:1388px;
  9410. width:65px;
  9411. height:22px;
  9412. display:flex;
  9413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9414. font-weight:400;
  9415. font-style:normal;
  9416. font-size:16px;
  9417. }
  9418. #u72055 .text {
  9419. position:absolute;
  9420. align-self:flex-start;
  9421. padding:0px 0px 0px 0px;
  9422. box-sizing:border-box;
  9423. width:100%;
  9424. }
  9425. #u72055_text {
  9426. border-width:0px;
  9427. white-space:nowrap;
  9428. text-transform:none;
  9429. }
  9430. #u72056_div {
  9431. border-width:0px;
  9432. position:absolute;
  9433. left:0px;
  9434. top:0px;
  9435. width:65px;
  9436. height:22px;
  9437. background:inherit;
  9438. background-color:rgba(255, 255, 255, 0);
  9439. border:none;
  9440. border-radius:0px;
  9441. -moz-box-shadow:none;
  9442. -webkit-box-shadow:none;
  9443. box-shadow:none;
  9444. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9445. font-weight:400;
  9446. font-style:normal;
  9447. font-size:16px;
  9448. }
  9449. #u72056 {
  9450. border-width:0px;
  9451. position:absolute;
  9452. left:30px;
  9453. top:1472px;
  9454. width:65px;
  9455. height:22px;
  9456. display:flex;
  9457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9458. font-weight:400;
  9459. font-style:normal;
  9460. font-size:16px;
  9461. }
  9462. #u72056 .text {
  9463. position:absolute;
  9464. align-self:flex-start;
  9465. padding:0px 0px 0px 0px;
  9466. box-sizing:border-box;
  9467. width:100%;
  9468. }
  9469. #u72056_text {
  9470. border-width:0px;
  9471. white-space:nowrap;
  9472. text-transform:none;
  9473. }
  9474. #u72057_img {
  9475. border-width:0px;
  9476. position:absolute;
  9477. left:0px;
  9478. top:0px;
  9479. width:201px;
  9480. height:2px;
  9481. }
  9482. #u72057 {
  9483. border-width:0px;
  9484. position:absolute;
  9485. left:0px;
  9486. top:1514px;
  9487. width:200px;
  9488. height:1px;
  9489. display:flex;
  9490. }
  9491. #u72057 .text {
  9492. position:absolute;
  9493. align-self:center;
  9494. padding:2px 2px 2px 2px;
  9495. box-sizing:border-box;
  9496. width:100%;
  9497. }
  9498. #u72057_text {
  9499. border-width:0px;
  9500. word-wrap:break-word;
  9501. text-transform:none;
  9502. visibility:hidden;
  9503. }
  9504. #u72058_div {
  9505. border-width:0px;
  9506. position:absolute;
  9507. left:0px;
  9508. top:0px;
  9509. width:49px;
  9510. height:22px;
  9511. background:inherit;
  9512. background-color:rgba(255, 255, 255, 0);
  9513. border:none;
  9514. border-radius:0px;
  9515. -moz-box-shadow:none;
  9516. -webkit-box-shadow:none;
  9517. box-shadow:none;
  9518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9519. font-weight:400;
  9520. font-style:normal;
  9521. font-size:16px;
  9522. }
  9523. #u72058 {
  9524. border-width:0px;
  9525. position:absolute;
  9526. left:30px;
  9527. top:1571px;
  9528. width:49px;
  9529. height:22px;
  9530. display:flex;
  9531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9532. font-weight:400;
  9533. font-style:normal;
  9534. font-size:16px;
  9535. }
  9536. #u72058 .text {
  9537. position:absolute;
  9538. align-self:flex-start;
  9539. padding:0px 0px 0px 0px;
  9540. box-sizing:border-box;
  9541. width:100%;
  9542. }
  9543. #u72058_text {
  9544. border-width:0px;
  9545. white-space:nowrap;
  9546. text-transform:none;
  9547. }
  9548. #u72059_div {
  9549. border-width:0px;
  9550. position:absolute;
  9551. left:0px;
  9552. top:0px;
  9553. width:49px;
  9554. height:17px;
  9555. background:inherit;
  9556. background-color:rgba(255, 255, 255, 0);
  9557. border:none;
  9558. border-radius:0px;
  9559. -moz-box-shadow:none;
  9560. -webkit-box-shadow:none;
  9561. box-shadow:none;
  9562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9563. font-weight:400;
  9564. font-style:normal;
  9565. font-size:12px;
  9566. color:#AAAAAA;
  9567. }
  9568. #u72059 {
  9569. border-width:0px;
  9570. position:absolute;
  9571. left:30px;
  9572. top:1535px;
  9573. width:49px;
  9574. height:17px;
  9575. display:flex;
  9576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9577. font-weight:400;
  9578. font-style:normal;
  9579. font-size:12px;
  9580. color:#AAAAAA;
  9581. }
  9582. #u72059 .text {
  9583. position:absolute;
  9584. align-self:flex-start;
  9585. padding:0px 0px 0px 0px;
  9586. box-sizing:border-box;
  9587. width:100%;
  9588. }
  9589. #u72059_text {
  9590. border-width:0px;
  9591. white-space:nowrap;
  9592. text-transform:none;
  9593. }
  9594. #u72060_div {
  9595. border-width:0px;
  9596. position:absolute;
  9597. left:0px;
  9598. top:0px;
  9599. width:49px;
  9600. height:22px;
  9601. background:inherit;
  9602. background-color:rgba(255, 255, 255, 0);
  9603. border:none;
  9604. border-radius:0px;
  9605. -moz-box-shadow:none;
  9606. -webkit-box-shadow:none;
  9607. box-shadow:none;
  9608. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9609. font-weight:400;
  9610. font-style:normal;
  9611. font-size:16px;
  9612. }
  9613. #u72060 {
  9614. border-width:0px;
  9615. position:absolute;
  9616. left:30px;
  9617. top:1613px;
  9618. width:49px;
  9619. height:22px;
  9620. display:flex;
  9621. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9622. font-weight:400;
  9623. font-style:normal;
  9624. font-size:16px;
  9625. }
  9626. #u72060 .text {
  9627. position:absolute;
  9628. align-self:flex-start;
  9629. padding:0px 0px 0px 0px;
  9630. box-sizing:border-box;
  9631. width:100%;
  9632. }
  9633. #u72060_text {
  9634. border-width:0px;
  9635. white-space:nowrap;
  9636. text-transform:none;
  9637. }
  9638. #u72061_div {
  9639. border-width:0px;
  9640. position:absolute;
  9641. left:0px;
  9642. top:0px;
  9643. width:65px;
  9644. height:22px;
  9645. background:inherit;
  9646. background-color:rgba(255, 255, 255, 0);
  9647. border:none;
  9648. border-radius:0px;
  9649. -moz-box-shadow:none;
  9650. -webkit-box-shadow:none;
  9651. box-shadow:none;
  9652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9653. font-weight:400;
  9654. font-style:normal;
  9655. font-size:16px;
  9656. }
  9657. #u72061 {
  9658. border-width:0px;
  9659. position:absolute;
  9660. left:30px;
  9661. top:1655px;
  9662. width:65px;
  9663. height:22px;
  9664. display:flex;
  9665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9666. font-weight:400;
  9667. font-style:normal;
  9668. font-size:16px;
  9669. }
  9670. #u72061 .text {
  9671. position:absolute;
  9672. align-self:flex-start;
  9673. padding:0px 0px 0px 0px;
  9674. box-sizing:border-box;
  9675. width:100%;
  9676. }
  9677. #u72061_text {
  9678. border-width:0px;
  9679. white-space:nowrap;
  9680. text-transform:none;
  9681. }
  9682. #u72062_img {
  9683. border-width:0px;
  9684. position:absolute;
  9685. left:0px;
  9686. top:0px;
  9687. width:201px;
  9688. height:2px;
  9689. }
  9690. #u72062 {
  9691. border-width:0px;
  9692. position:absolute;
  9693. left:0px;
  9694. top:1697px;
  9695. width:200px;
  9696. height:1px;
  9697. display:flex;
  9698. }
  9699. #u72062 .text {
  9700. position:absolute;
  9701. align-self:center;
  9702. padding:2px 2px 2px 2px;
  9703. box-sizing:border-box;
  9704. width:100%;
  9705. }
  9706. #u72062_text {
  9707. border-width:0px;
  9708. word-wrap:break-word;
  9709. text-transform:none;
  9710. visibility:hidden;
  9711. }
  9712. #u72063_div {
  9713. border-width:0px;
  9714. position:absolute;
  9715. left:0px;
  9716. top:0px;
  9717. width:81px;
  9718. height:22px;
  9719. background:inherit;
  9720. background-color:rgba(255, 255, 255, 0);
  9721. border:none;
  9722. border-radius:0px;
  9723. -moz-box-shadow:none;
  9724. -webkit-box-shadow:none;
  9725. box-shadow:none;
  9726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9727. font-weight:400;
  9728. font-style:normal;
  9729. font-size:16px;
  9730. }
  9731. #u72063 {
  9732. border-width:0px;
  9733. position:absolute;
  9734. left:30px;
  9735. top:1754px;
  9736. width:81px;
  9737. height:22px;
  9738. display:flex;
  9739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9740. font-weight:400;
  9741. font-style:normal;
  9742. font-size:16px;
  9743. }
  9744. #u72063 .text {
  9745. position:absolute;
  9746. align-self:flex-start;
  9747. padding:0px 0px 0px 0px;
  9748. box-sizing:border-box;
  9749. width:100%;
  9750. }
  9751. #u72063_text {
  9752. border-width:0px;
  9753. white-space:nowrap;
  9754. text-transform:none;
  9755. }
  9756. #u72064_div {
  9757. border-width:0px;
  9758. position:absolute;
  9759. left:0px;
  9760. top:0px;
  9761. width:49px;
  9762. height:17px;
  9763. background:inherit;
  9764. background-color:rgba(255, 255, 255, 0);
  9765. border:none;
  9766. border-radius:0px;
  9767. -moz-box-shadow:none;
  9768. -webkit-box-shadow:none;
  9769. box-shadow:none;
  9770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9771. font-weight:400;
  9772. font-style:normal;
  9773. font-size:12px;
  9774. color:#AAAAAA;
  9775. }
  9776. #u72064 {
  9777. border-width:0px;
  9778. position:absolute;
  9779. left:30px;
  9780. top:1718px;
  9781. width:49px;
  9782. height:17px;
  9783. display:flex;
  9784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9785. font-weight:400;
  9786. font-style:normal;
  9787. font-size:12px;
  9788. color:#AAAAAA;
  9789. }
  9790. #u72064 .text {
  9791. position:absolute;
  9792. align-self:flex-start;
  9793. padding:0px 0px 0px 0px;
  9794. box-sizing:border-box;
  9795. width:100%;
  9796. }
  9797. #u72064_text {
  9798. border-width:0px;
  9799. white-space:nowrap;
  9800. text-transform:none;
  9801. }
  9802. #u72065_div {
  9803. border-width:0px;
  9804. position:absolute;
  9805. left:0px;
  9806. top:0px;
  9807. width:81px;
  9808. height:22px;
  9809. background:inherit;
  9810. background-color:rgba(255, 255, 255, 0);
  9811. border:none;
  9812. border-radius:0px;
  9813. -moz-box-shadow:none;
  9814. -webkit-box-shadow:none;
  9815. box-shadow:none;
  9816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9817. font-weight:400;
  9818. font-style:normal;
  9819. font-size:16px;
  9820. }
  9821. #u72065 {
  9822. border-width:0px;
  9823. position:absolute;
  9824. left:30px;
  9825. top:1796px;
  9826. width:81px;
  9827. height:22px;
  9828. display:flex;
  9829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9830. font-weight:400;
  9831. font-style:normal;
  9832. font-size:16px;
  9833. }
  9834. #u72065 .text {
  9835. position:absolute;
  9836. align-self:flex-start;
  9837. padding:0px 0px 0px 0px;
  9838. box-sizing:border-box;
  9839. width:100%;
  9840. }
  9841. #u72065_text {
  9842. border-width:0px;
  9843. white-space:nowrap;
  9844. text-transform:none;
  9845. }
  9846. #u72066_div {
  9847. border-width:0px;
  9848. position:absolute;
  9849. left:0px;
  9850. top:0px;
  9851. width:81px;
  9852. height:22px;
  9853. background:inherit;
  9854. background-color:rgba(255, 255, 255, 0);
  9855. border:none;
  9856. border-radius:0px;
  9857. -moz-box-shadow:none;
  9858. -webkit-box-shadow:none;
  9859. box-shadow:none;
  9860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9861. font-weight:400;
  9862. font-style:normal;
  9863. font-size:16px;
  9864. }
  9865. #u72066 {
  9866. border-width:0px;
  9867. position:absolute;
  9868. left:30px;
  9869. top:1838px;
  9870. width:81px;
  9871. height:22px;
  9872. display:flex;
  9873. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9874. font-weight:400;
  9875. font-style:normal;
  9876. font-size:16px;
  9877. }
  9878. #u72066 .text {
  9879. position:absolute;
  9880. align-self:flex-start;
  9881. padding:0px 0px 0px 0px;
  9882. box-sizing:border-box;
  9883. width:100%;
  9884. }
  9885. #u72066_text {
  9886. border-width:0px;
  9887. white-space:nowrap;
  9888. text-transform:none;
  9889. }
  9890. #u72067_div {
  9891. border-width:0px;
  9892. position:absolute;
  9893. left:0px;
  9894. top:0px;
  9895. width:65px;
  9896. height:22px;
  9897. background:inherit;
  9898. background-color:rgba(255, 255, 255, 0);
  9899. border:none;
  9900. border-radius:0px;
  9901. -moz-box-shadow:none;
  9902. -webkit-box-shadow:none;
  9903. box-shadow:none;
  9904. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9905. font-weight:400;
  9906. font-style:normal;
  9907. font-size:16px;
  9908. }
  9909. #u72067 {
  9910. border-width:0px;
  9911. position:absolute;
  9912. left:30px;
  9913. top:1430px;
  9914. width:65px;
  9915. height:22px;
  9916. display:flex;
  9917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9918. font-weight:400;
  9919. font-style:normal;
  9920. font-size:16px;
  9921. }
  9922. #u72067 .text {
  9923. position:absolute;
  9924. align-self:flex-start;
  9925. padding:0px 0px 0px 0px;
  9926. box-sizing:border-box;
  9927. width:100%;
  9928. }
  9929. #u72067_text {
  9930. border-width:0px;
  9931. white-space:nowrap;
  9932. text-transform:none;
  9933. }
  9934. #u72068_img {
  9935. border-width:0px;
  9936. position:absolute;
  9937. left:0px;
  9938. top:0px;
  9939. width:201px;
  9940. height:2px;
  9941. }
  9942. #u72068 {
  9943. border-width:0px;
  9944. position:absolute;
  9945. left:0px;
  9946. top:669px;
  9947. width:200px;
  9948. height:1px;
  9949. display:flex;
  9950. }
  9951. #u72068 .text {
  9952. position:absolute;
  9953. align-self:center;
  9954. padding:2px 2px 2px 2px;
  9955. box-sizing:border-box;
  9956. width:100%;
  9957. }
  9958. #u72068_text {
  9959. border-width:0px;
  9960. word-wrap:break-word;
  9961. text-transform:none;
  9962. visibility:hidden;
  9963. }
  9964. #u72069_div {
  9965. border-width:0px;
  9966. position:absolute;
  9967. left:0px;
  9968. top:0px;
  9969. width:65px;
  9970. height:22px;
  9971. background:inherit;
  9972. background-color:rgba(255, 255, 255, 0);
  9973. border:none;
  9974. border-radius:0px;
  9975. -moz-box-shadow:none;
  9976. -webkit-box-shadow:none;
  9977. box-shadow:none;
  9978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9979. font-weight:400;
  9980. font-style:normal;
  9981. font-size:16px;
  9982. }
  9983. #u72069 {
  9984. border-width:0px;
  9985. position:absolute;
  9986. left:30px;
  9987. top:726px;
  9988. width:65px;
  9989. height:22px;
  9990. display:flex;
  9991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9992. font-weight:400;
  9993. font-style:normal;
  9994. font-size:16px;
  9995. }
  9996. #u72069 .text {
  9997. position:absolute;
  9998. align-self:flex-start;
  9999. padding:0px 0px 0px 0px;
  10000. box-sizing:border-box;
  10001. width:100%;
  10002. }
  10003. #u72069_text {
  10004. border-width:0px;
  10005. white-space:nowrap;
  10006. text-transform:none;
  10007. }
  10008. #u72070_div {
  10009. border-width:0px;
  10010. position:absolute;
  10011. left:0px;
  10012. top:0px;
  10013. width:49px;
  10014. height:17px;
  10015. background:inherit;
  10016. background-color:rgba(255, 255, 255, 0);
  10017. border:none;
  10018. border-radius:0px;
  10019. -moz-box-shadow:none;
  10020. -webkit-box-shadow:none;
  10021. box-shadow:none;
  10022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10023. font-weight:400;
  10024. font-style:normal;
  10025. font-size:12px;
  10026. color:#AAAAAA;
  10027. }
  10028. #u72070 {
  10029. border-width:0px;
  10030. position:absolute;
  10031. left:30px;
  10032. top:690px;
  10033. width:49px;
  10034. height:17px;
  10035. display:flex;
  10036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10037. font-weight:400;
  10038. font-style:normal;
  10039. font-size:12px;
  10040. color:#AAAAAA;
  10041. }
  10042. #u72070 .text {
  10043. position:absolute;
  10044. align-self:flex-start;
  10045. padding:0px 0px 0px 0px;
  10046. box-sizing:border-box;
  10047. width:100%;
  10048. }
  10049. #u72070_text {
  10050. border-width:0px;
  10051. white-space:nowrap;
  10052. text-transform:none;
  10053. }
  10054. #u72071_div {
  10055. border-width:0px;
  10056. position:absolute;
  10057. left:0px;
  10058. top:0px;
  10059. width:65px;
  10060. height:22px;
  10061. background:inherit;
  10062. background-color:rgba(255, 255, 255, 0);
  10063. border:none;
  10064. border-radius:0px;
  10065. -moz-box-shadow:none;
  10066. -webkit-box-shadow:none;
  10067. box-shadow:none;
  10068. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10069. font-weight:400;
  10070. font-style:normal;
  10071. font-size:16px;
  10072. }
  10073. #u72071 {
  10074. border-width:0px;
  10075. position:absolute;
  10076. left:30px;
  10077. top:768px;
  10078. width:65px;
  10079. height:22px;
  10080. display:flex;
  10081. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10082. font-weight:400;
  10083. font-style:normal;
  10084. font-size:16px;
  10085. }
  10086. #u72071 .text {
  10087. position:absolute;
  10088. align-self:flex-start;
  10089. padding:0px 0px 0px 0px;
  10090. box-sizing:border-box;
  10091. width:100%;
  10092. }
  10093. #u72071_text {
  10094. border-width:0px;
  10095. white-space:nowrap;
  10096. text-transform:none;
  10097. }
  10098. #u72072_div {
  10099. border-width:0px;
  10100. position:absolute;
  10101. left:0px;
  10102. top:0px;
  10103. width:65px;
  10104. height:22px;
  10105. background:inherit;
  10106. background-color:rgba(255, 255, 255, 0);
  10107. border:none;
  10108. border-radius:0px;
  10109. -moz-box-shadow:none;
  10110. -webkit-box-shadow:none;
  10111. box-shadow:none;
  10112. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10113. font-weight:400;
  10114. font-style:normal;
  10115. font-size:16px;
  10116. }
  10117. #u72072 {
  10118. border-width:0px;
  10119. position:absolute;
  10120. left:30px;
  10121. top:852px;
  10122. width:65px;
  10123. height:22px;
  10124. display:flex;
  10125. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10126. font-weight:400;
  10127. font-style:normal;
  10128. font-size:16px;
  10129. }
  10130. #u72072 .text {
  10131. position:absolute;
  10132. align-self:flex-start;
  10133. padding:0px 0px 0px 0px;
  10134. box-sizing:border-box;
  10135. width:100%;
  10136. }
  10137. #u72072_text {
  10138. border-width:0px;
  10139. white-space:nowrap;
  10140. text-transform:none;
  10141. }
  10142. #u72073_div {
  10143. border-width:0px;
  10144. position:absolute;
  10145. left:0px;
  10146. top:0px;
  10147. width:65px;
  10148. height:22px;
  10149. background:inherit;
  10150. background-color:rgba(255, 255, 255, 0);
  10151. border:none;
  10152. border-radius:0px;
  10153. -moz-box-shadow:none;
  10154. -webkit-box-shadow:none;
  10155. box-shadow:none;
  10156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10157. font-weight:400;
  10158. font-style:normal;
  10159. font-size:16px;
  10160. }
  10161. #u72073 {
  10162. border-width:0px;
  10163. position:absolute;
  10164. left:30px;
  10165. top:810px;
  10166. width:65px;
  10167. height:22px;
  10168. display:flex;
  10169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10170. font-weight:400;
  10171. font-style:normal;
  10172. font-size:16px;
  10173. }
  10174. #u72073 .text {
  10175. position:absolute;
  10176. align-self:flex-start;
  10177. padding:0px 0px 0px 0px;
  10178. box-sizing:border-box;
  10179. width:100%;
  10180. }
  10181. #u72073_text {
  10182. border-width:0px;
  10183. white-space:nowrap;
  10184. text-transform:none;
  10185. }
  10186. #u72074_div {
  10187. border-width:0px;
  10188. position:absolute;
  10189. left:0px;
  10190. top:0px;
  10191. width:65px;
  10192. height:22px;
  10193. background:inherit;
  10194. background-color:rgba(255, 255, 255, 0);
  10195. border:none;
  10196. border-radius:0px;
  10197. -moz-box-shadow:none;
  10198. -webkit-box-shadow:none;
  10199. box-shadow:none;
  10200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10201. font-weight:400;
  10202. font-style:normal;
  10203. font-size:16px;
  10204. }
  10205. #u72074 {
  10206. border-width:0px;
  10207. position:absolute;
  10208. left:30px;
  10209. top:894px;
  10210. width:65px;
  10211. height:22px;
  10212. display:flex;
  10213. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10214. font-weight:400;
  10215. font-style:normal;
  10216. font-size:16px;
  10217. }
  10218. #u72074 .text {
  10219. position:absolute;
  10220. align-self:flex-start;
  10221. padding:0px 0px 0px 0px;
  10222. box-sizing:border-box;
  10223. width:100%;
  10224. }
  10225. #u72074_text {
  10226. border-width:0px;
  10227. white-space:nowrap;
  10228. text-transform:none;
  10229. }
  10230. #u72075_div {
  10231. border-width:0px;
  10232. position:absolute;
  10233. left:0px;
  10234. top:0px;
  10235. width:65px;
  10236. height:22px;
  10237. background:inherit;
  10238. background-color:rgba(255, 255, 255, 0);
  10239. border:none;
  10240. border-radius:0px;
  10241. -moz-box-shadow:none;
  10242. -webkit-box-shadow:none;
  10243. box-shadow:none;
  10244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10245. font-weight:400;
  10246. font-style:normal;
  10247. font-size:16px;
  10248. }
  10249. #u72075 {
  10250. border-width:0px;
  10251. position:absolute;
  10252. left:30px;
  10253. top:936px;
  10254. width:65px;
  10255. height:22px;
  10256. display:flex;
  10257. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10258. font-weight:400;
  10259. font-style:normal;
  10260. font-size:16px;
  10261. }
  10262. #u72075 .text {
  10263. position:absolute;
  10264. align-self:flex-start;
  10265. padding:0px 0px 0px 0px;
  10266. box-sizing:border-box;
  10267. width:100%;
  10268. }
  10269. #u72075_text {
  10270. border-width:0px;
  10271. white-space:nowrap;
  10272. text-transform:none;
  10273. }
  10274. #u72076_img {
  10275. border-width:0px;
  10276. position:absolute;
  10277. left:0px;
  10278. top:0px;
  10279. width:201px;
  10280. height:2px;
  10281. }
  10282. #u72076 {
  10283. border-width:0px;
  10284. position:absolute;
  10285. left:0px;
  10286. top:1018px;
  10287. width:200px;
  10288. height:1px;
  10289. display:flex;
  10290. }
  10291. #u72076 .text {
  10292. position:absolute;
  10293. align-self:center;
  10294. padding:2px 2px 2px 2px;
  10295. box-sizing:border-box;
  10296. width:100%;
  10297. }
  10298. #u72076_text {
  10299. border-width:0px;
  10300. word-wrap:break-word;
  10301. text-transform:none;
  10302. visibility:hidden;
  10303. }
  10304. #u72077_div {
  10305. border-width:0px;
  10306. position:absolute;
  10307. left:0px;
  10308. top:0px;
  10309. width:65px;
  10310. height:22px;
  10311. background:inherit;
  10312. background-color:rgba(255, 255, 255, 0);
  10313. border:none;
  10314. border-radius:0px;
  10315. -moz-box-shadow:none;
  10316. -webkit-box-shadow:none;
  10317. box-shadow:none;
  10318. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10319. font-weight:400;
  10320. font-style:normal;
  10321. font-size:16px;
  10322. }
  10323. #u72077 {
  10324. border-width:0px;
  10325. position:absolute;
  10326. left:30px;
  10327. top:1075px;
  10328. width:65px;
  10329. height:22px;
  10330. display:flex;
  10331. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10332. font-weight:400;
  10333. font-style:normal;
  10334. font-size:16px;
  10335. }
  10336. #u72077 .text {
  10337. position:absolute;
  10338. align-self:flex-start;
  10339. padding:0px 0px 0px 0px;
  10340. box-sizing:border-box;
  10341. width:100%;
  10342. }
  10343. #u72077_text {
  10344. border-width:0px;
  10345. white-space:nowrap;
  10346. text-transform:none;
  10347. }
  10348. #u72078_div {
  10349. border-width:0px;
  10350. position:absolute;
  10351. left:0px;
  10352. top:0px;
  10353. width:49px;
  10354. height:17px;
  10355. background:inherit;
  10356. background-color:rgba(255, 255, 255, 0);
  10357. border:none;
  10358. border-radius:0px;
  10359. -moz-box-shadow:none;
  10360. -webkit-box-shadow:none;
  10361. box-shadow:none;
  10362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10363. font-weight:400;
  10364. font-style:normal;
  10365. font-size:12px;
  10366. color:#AAAAAA;
  10367. }
  10368. #u72078 {
  10369. border-width:0px;
  10370. position:absolute;
  10371. left:30px;
  10372. top:1039px;
  10373. width:49px;
  10374. height:17px;
  10375. display:flex;
  10376. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10377. font-weight:400;
  10378. font-style:normal;
  10379. font-size:12px;
  10380. color:#AAAAAA;
  10381. }
  10382. #u72078 .text {
  10383. position:absolute;
  10384. align-self:flex-start;
  10385. padding:0px 0px 0px 0px;
  10386. box-sizing:border-box;
  10387. width:100%;
  10388. }
  10389. #u72078_text {
  10390. border-width:0px;
  10391. white-space:nowrap;
  10392. text-transform:none;
  10393. }
  10394. #u72079_div {
  10395. border-width:0px;
  10396. position:absolute;
  10397. left:0px;
  10398. top:0px;
  10399. width:65px;
  10400. height:22px;
  10401. background:inherit;
  10402. background-color:rgba(255, 255, 255, 0);
  10403. border:none;
  10404. border-radius:0px;
  10405. -moz-box-shadow:none;
  10406. -webkit-box-shadow:none;
  10407. box-shadow:none;
  10408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10409. font-weight:400;
  10410. font-style:normal;
  10411. font-size:16px;
  10412. }
  10413. #u72079 {
  10414. border-width:0px;
  10415. position:absolute;
  10416. left:30px;
  10417. top:1117px;
  10418. width:65px;
  10419. height:22px;
  10420. display:flex;
  10421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10422. font-weight:400;
  10423. font-style:normal;
  10424. font-size:16px;
  10425. }
  10426. #u72079 .text {
  10427. position:absolute;
  10428. align-self:flex-start;
  10429. padding:0px 0px 0px 0px;
  10430. box-sizing:border-box;
  10431. width:100%;
  10432. }
  10433. #u72079_text {
  10434. border-width:0px;
  10435. white-space:nowrap;
  10436. text-transform:none;
  10437. }
  10438. #u72080_div {
  10439. border-width:0px;
  10440. position:absolute;
  10441. left:0px;
  10442. top:0px;
  10443. width:65px;
  10444. height:22px;
  10445. background:inherit;
  10446. background-color:rgba(255, 255, 255, 0);
  10447. border:none;
  10448. border-radius:0px;
  10449. -moz-box-shadow:none;
  10450. -webkit-box-shadow:none;
  10451. box-shadow:none;
  10452. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10453. font-weight:400;
  10454. font-style:normal;
  10455. font-size:16px;
  10456. }
  10457. #u72080 {
  10458. border-width:0px;
  10459. position:absolute;
  10460. left:30px;
  10461. top:1201px;
  10462. width:65px;
  10463. height:22px;
  10464. display:flex;
  10465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10466. font-weight:400;
  10467. font-style:normal;
  10468. font-size:16px;
  10469. }
  10470. #u72080 .text {
  10471. position:absolute;
  10472. align-self:flex-start;
  10473. padding:0px 0px 0px 0px;
  10474. box-sizing:border-box;
  10475. width:100%;
  10476. }
  10477. #u72080_text {
  10478. border-width:0px;
  10479. white-space:nowrap;
  10480. text-transform:none;
  10481. }
  10482. #u72081_div {
  10483. border-width:0px;
  10484. position:absolute;
  10485. left:0px;
  10486. top:0px;
  10487. width:65px;
  10488. height:22px;
  10489. background:inherit;
  10490. background-color:rgba(255, 255, 255, 0);
  10491. border:none;
  10492. border-radius:0px;
  10493. -moz-box-shadow:none;
  10494. -webkit-box-shadow:none;
  10495. box-shadow:none;
  10496. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10497. font-weight:400;
  10498. font-style:normal;
  10499. font-size:16px;
  10500. }
  10501. #u72081 {
  10502. border-width:0px;
  10503. position:absolute;
  10504. left:30px;
  10505. top:1159px;
  10506. width:65px;
  10507. height:22px;
  10508. display:flex;
  10509. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10510. font-weight:400;
  10511. font-style:normal;
  10512. font-size:16px;
  10513. }
  10514. #u72081 .text {
  10515. position:absolute;
  10516. align-self:flex-start;
  10517. padding:0px 0px 0px 0px;
  10518. box-sizing:border-box;
  10519. width:100%;
  10520. }
  10521. #u72081_text {
  10522. border-width:0px;
  10523. white-space:nowrap;
  10524. text-transform:none;
  10525. }
  10526. #u72082_div {
  10527. border-width:0px;
  10528. position:absolute;
  10529. left:0px;
  10530. top:0px;
  10531. width:65px;
  10532. height:22px;
  10533. background:inherit;
  10534. background-color:rgba(255, 255, 255, 0);
  10535. border:none;
  10536. border-radius:0px;
  10537. -moz-box-shadow:none;
  10538. -webkit-box-shadow:none;
  10539. box-shadow:none;
  10540. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10541. font-weight:400;
  10542. font-style:normal;
  10543. font-size:16px;
  10544. }
  10545. #u72082 {
  10546. border-width:0px;
  10547. position:absolute;
  10548. left:30px;
  10549. top:1243px;
  10550. width:65px;
  10551. height:22px;
  10552. display:flex;
  10553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10554. font-weight:400;
  10555. font-style:normal;
  10556. font-size:16px;
  10557. }
  10558. #u72082 .text {
  10559. position:absolute;
  10560. align-self:flex-start;
  10561. padding:0px 0px 0px 0px;
  10562. box-sizing:border-box;
  10563. width:100%;
  10564. }
  10565. #u72082_text {
  10566. border-width:0px;
  10567. white-space:nowrap;
  10568. text-transform:none;
  10569. }
  10570. #u72083_div {
  10571. border-width:0px;
  10572. position:absolute;
  10573. left:0px;
  10574. top:0px;
  10575. width:65px;
  10576. height:22px;
  10577. background:inherit;
  10578. background-color:rgba(255, 255, 255, 0);
  10579. border:none;
  10580. border-radius:0px;
  10581. -moz-box-shadow:none;
  10582. -webkit-box-shadow:none;
  10583. box-shadow:none;
  10584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10585. font-weight:400;
  10586. font-style:normal;
  10587. font-size:16px;
  10588. }
  10589. #u72083 {
  10590. border-width:0px;
  10591. position:absolute;
  10592. left:30px;
  10593. top:978px;
  10594. width:65px;
  10595. height:22px;
  10596. display:flex;
  10597. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10598. font-weight:400;
  10599. font-style:normal;
  10600. font-size:16px;
  10601. }
  10602. #u72083 .text {
  10603. position:absolute;
  10604. align-self:flex-start;
  10605. padding:0px 0px 0px 0px;
  10606. box-sizing:border-box;
  10607. width:100%;
  10608. }
  10609. #u72083_text {
  10610. border-width:0px;
  10611. white-space:nowrap;
  10612. text-transform:none;
  10613. }
  10614. #u72084_div {
  10615. border-width:0px;
  10616. position:absolute;
  10617. left:0px;
  10618. top:0px;
  10619. width:65px;
  10620. height:22px;
  10621. background:inherit;
  10622. background-color:rgba(255, 255, 255, 0);
  10623. border:none;
  10624. border-radius:0px;
  10625. -moz-box-shadow:none;
  10626. -webkit-box-shadow:none;
  10627. box-shadow:none;
  10628. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10629. font-weight:400;
  10630. font-style:normal;
  10631. font-size:16px;
  10632. }
  10633. #u72084 {
  10634. border-width:0px;
  10635. position:absolute;
  10636. left:30px;
  10637. top:622px;
  10638. width:65px;
  10639. height:22px;
  10640. display:flex;
  10641. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  10642. font-weight:400;
  10643. font-style:normal;
  10644. font-size:16px;
  10645. }
  10646. #u72084 .text {
  10647. position:absolute;
  10648. align-self:flex-start;
  10649. padding:0px 0px 0px 0px;
  10650. box-sizing:border-box;
  10651. width:100%;
  10652. }
  10653. #u72084_text {
  10654. border-width:0px;
  10655. white-space:nowrap;
  10656. text-transform:none;
  10657. }
  10658. #u72085_div {
  10659. border-width:0px;
  10660. position:absolute;
  10661. left:0px;
  10662. top:0px;
  10663. width:73px;
  10664. height:40px;
  10665. background:inherit;
  10666. background-color:rgba(255, 255, 255, 0);
  10667. border:none;
  10668. border-radius:0px;
  10669. -moz-box-shadow:none;
  10670. -webkit-box-shadow:none;
  10671. box-shadow:none;
  10672. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10673. font-weight:500;
  10674. font-style:normal;
  10675. font-size:18px;
  10676. line-height:40px;
  10677. }
  10678. #u72085 {
  10679. border-width:0px;
  10680. position:absolute;
  10681. left:965px;
  10682. top:133px;
  10683. width:73px;
  10684. height:40px;
  10685. display:flex;
  10686. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10687. font-weight:500;
  10688. font-style:normal;
  10689. font-size:18px;
  10690. line-height:40px;
  10691. }
  10692. #u72085 .text {
  10693. position:absolute;
  10694. align-self:flex-start;
  10695. padding:0px 0px 0px 0px;
  10696. box-sizing:border-box;
  10697. width:100%;
  10698. }
  10699. #u72085_text {
  10700. border-width:0px;
  10701. white-space:nowrap;
  10702. text-transform:none;
  10703. }
  10704. #u72086_div {
  10705. border-width:0px;
  10706. position:absolute;
  10707. left:0px;
  10708. top:0px;
  10709. width:73px;
  10710. height:40px;
  10711. background:inherit;
  10712. background-color:rgba(255, 255, 255, 0);
  10713. border:none;
  10714. border-radius:0px;
  10715. -moz-box-shadow:none;
  10716. -webkit-box-shadow:none;
  10717. box-shadow:none;
  10718. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10719. font-weight:500;
  10720. font-style:normal;
  10721. font-size:18px;
  10722. line-height:40px;
  10723. }
  10724. #u72086 {
  10725. border-width:0px;
  10726. position:absolute;
  10727. left:1068px;
  10728. top:133px;
  10729. width:73px;
  10730. height:40px;
  10731. display:flex;
  10732. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10733. font-weight:500;
  10734. font-style:normal;
  10735. font-size:18px;
  10736. line-height:40px;
  10737. }
  10738. #u72086 .text {
  10739. position:absolute;
  10740. align-self:flex-start;
  10741. padding:0px 0px 0px 0px;
  10742. box-sizing:border-box;
  10743. width:100%;
  10744. }
  10745. #u72086_text {
  10746. border-width:0px;
  10747. white-space:nowrap;
  10748. text-transform:none;
  10749. }
  10750. #u72087_div {
  10751. border-width:0px;
  10752. position:absolute;
  10753. left:0px;
  10754. top:0px;
  10755. width:109px;
  10756. height:40px;
  10757. background:inherit;
  10758. background-color:rgba(255, 255, 255, 0);
  10759. border:none;
  10760. border-radius:0px;
  10761. -moz-box-shadow:none;
  10762. -webkit-box-shadow:none;
  10763. box-shadow:none;
  10764. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10765. font-weight:500;
  10766. font-style:normal;
  10767. font-size:18px;
  10768. line-height:40px;
  10769. }
  10770. #u72087 {
  10771. border-width:0px;
  10772. position:absolute;
  10773. left:1171px;
  10774. top:133px;
  10775. width:109px;
  10776. height:40px;
  10777. display:flex;
  10778. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  10779. font-weight:500;
  10780. font-style:normal;
  10781. font-size:18px;
  10782. line-height:40px;
  10783. }
  10784. #u72087 .text {
  10785. position:absolute;
  10786. align-self:flex-start;
  10787. padding:0px 0px 0px 0px;
  10788. box-sizing:border-box;
  10789. width:100%;
  10790. }
  10791. #u72087_text {
  10792. border-width:0px;
  10793. white-space:nowrap;
  10794. text-transform:none;
  10795. }