styles.css 183 KB

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