styles.css 127 KB

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