styles.css 108 KB

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