styles.css 125 KB

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