styles.css 200 KB

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