styles.css 182 KB

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