styles.css 124 KB

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