styles.css 112 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3627px;
  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. #u41624_img {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u41624 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:1600px;
  33. height:1250px;
  34. display:flex;
  35. }
  36. #u41624 .text {
  37. position:absolute;
  38. align-self:center;
  39. padding:2px 2px 2px 2px;
  40. box-sizing:border-box;
  41. width:100%;
  42. }
  43. #u41624_text {
  44. border-width:0px;
  45. word-wrap:break-word;
  46. text-transform:none;
  47. visibility:hidden;
  48. }
  49. #u41625 {
  50. border-width:0px;
  51. position:absolute;
  52. left:0px;
  53. top:0px;
  54. width:0px;
  55. height:0px;
  56. }
  57. #u41626_div {
  58. border-width:0px;
  59. position:absolute;
  60. left:0px;
  61. top:0px;
  62. width:1000px;
  63. height:1201px;
  64. background:inherit;
  65. background-color:rgba(242, 242, 242, 1);
  66. box-sizing:border-box;
  67. border-width:1px;
  68. border-style:solid;
  69. border-color:rgba(215, 215, 215, 1);
  70. border-radius:0px;
  71. -moz-box-shadow:none;
  72. -webkit-box-shadow:none;
  73. box-shadow:none;
  74. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  75. font-weight:400;
  76. font-style:normal;
  77. font-size:14px;
  78. color:#AAAAAA;
  79. text-align:center;
  80. line-height:30px;
  81. }
  82. #u41626 {
  83. border-width:0px;
  84. position:absolute;
  85. left:597px;
  86. top:49px;
  87. width:1000px;
  88. height:1201px;
  89. display:flex;
  90. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  91. font-weight:400;
  92. font-style:normal;
  93. font-size:14px;
  94. color:#AAAAAA;
  95. text-align:center;
  96. line-height:30px;
  97. }
  98. #u41626 .text {
  99. position:absolute;
  100. align-self:center;
  101. padding:5px 10px 5px 10px;
  102. box-sizing:border-box;
  103. width:100%;
  104. }
  105. #u41626_text {
  106. border-width:0px;
  107. word-wrap:break-word;
  108. text-transform:none;
  109. visibility:hidden;
  110. }
  111. #u41627_div {
  112. border-width:0px;
  113. position:absolute;
  114. left:0px;
  115. top:0px;
  116. width:1000px;
  117. height:200px;
  118. background:inherit;
  119. background-color:rgba(255, 255, 255, 1);
  120. box-sizing:border-box;
  121. border-width:1px;
  122. border-style:solid;
  123. border-color:rgba(215, 215, 215, 1);
  124. border-radius:0px;
  125. -moz-box-shadow:none;
  126. -webkit-box-shadow:none;
  127. box-shadow:none;
  128. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  129. font-weight:400;
  130. font-style:normal;
  131. font-size:14px;
  132. color:#AAAAAA;
  133. text-align:center;
  134. line-height:30px;
  135. }
  136. #u41627 {
  137. border-width:0px;
  138. position:absolute;
  139. left:597px;
  140. top:49px;
  141. width:1000px;
  142. height:200px;
  143. display:flex;
  144. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  145. font-weight:400;
  146. font-style:normal;
  147. font-size:14px;
  148. color:#AAAAAA;
  149. text-align:center;
  150. line-height:30px;
  151. }
  152. #u41627 .text {
  153. position:absolute;
  154. align-self:center;
  155. padding:5px 10px 5px 10px;
  156. box-sizing:border-box;
  157. width:100%;
  158. }
  159. #u41627_text {
  160. border-width:0px;
  161. word-wrap:break-word;
  162. text-transform:none;
  163. visibility:hidden;
  164. }
  165. #u41628_div {
  166. border-width:0px;
  167. position:absolute;
  168. left:0px;
  169. top:0px;
  170. width:83px;
  171. height:35px;
  172. background:inherit;
  173. background-color:rgba(255, 255, 255, 0);
  174. border:none;
  175. border-top:0px;
  176. border-right:0px;
  177. border-bottom:0px;
  178. border-radius:0px;
  179. border-top-left-radius:0px;
  180. border-bottom-left-radius:0px;
  181. -moz-box-shadow:none;
  182. -webkit-box-shadow:none;
  183. box-shadow:none;
  184. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  185. font-weight:500;
  186. font-style:normal;
  187. font-size:18px;
  188. }
  189. #u41628 {
  190. border-width:0px;
  191. position:absolute;
  192. left:617px;
  193. top:67px;
  194. width:83px;
  195. height:35px;
  196. display:flex;
  197. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  198. font-weight:500;
  199. font-style:normal;
  200. font-size:18px;
  201. }
  202. #u41628 .text {
  203. position:absolute;
  204. align-self:center;
  205. padding:5px 10px 5px 0px;
  206. box-sizing:border-box;
  207. width:100%;
  208. }
  209. #u41628_text {
  210. border-width:0px;
  211. white-space:nowrap;
  212. text-transform:none;
  213. }
  214. #u41629 {
  215. border-width:0px;
  216. position:absolute;
  217. left:0px;
  218. top:0px;
  219. width:0px;
  220. height:0px;
  221. }
  222. #u41630_div {
  223. border-width:0px;
  224. position:absolute;
  225. left:0px;
  226. top:0px;
  227. width:40px;
  228. height:40px;
  229. background:inherit;
  230. background-color:rgba(255, 255, 255, 0);
  231. border:none;
  232. border-top:0px;
  233. border-right:0px;
  234. border-bottom:0px;
  235. border-radius:0px;
  236. border-top-left-radius:0px;
  237. border-bottom-left-radius:0px;
  238. -moz-box-shadow:none;
  239. -webkit-box-shadow:none;
  240. box-shadow:none;
  241. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  242. font-weight:500;
  243. font-style:normal;
  244. font-size:14px;
  245. text-align:center;
  246. }
  247. #u41630 {
  248. border-width:0px;
  249. position:absolute;
  250. left:1557px;
  251. top:49px;
  252. width:40px;
  253. height:40px;
  254. display:flex;
  255. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  256. font-weight:500;
  257. font-style:normal;
  258. font-size:14px;
  259. text-align:center;
  260. }
  261. #u41630 .text {
  262. position:absolute;
  263. align-self:center;
  264. padding:5px 10px 5px 0px;
  265. box-sizing:border-box;
  266. width:100%;
  267. }
  268. #u41630_text {
  269. border-width:0px;
  270. word-wrap:break-word;
  271. text-transform:none;
  272. }
  273. #u41631_img {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:13px;
  279. height:13px;
  280. }
  281. #u41631 {
  282. border-width:0px;
  283. position:absolute;
  284. left:1545px;
  285. top:65px;
  286. width:13px;
  287. height:13px;
  288. display:flex;
  289. font-size:14px;
  290. }
  291. #u41631 .text {
  292. position:absolute;
  293. align-self:center;
  294. padding:2px 2px 2px 2px;
  295. box-sizing:border-box;
  296. width:100%;
  297. }
  298. #u41631_text {
  299. border-width:0px;
  300. word-wrap:break-word;
  301. text-transform:none;
  302. visibility:hidden;
  303. }
  304. #u41632_div {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:227px;
  310. height:43px;
  311. background:inherit;
  312. background-color:rgba(255, 255, 255, 0);
  313. border:none;
  314. border-top:0px;
  315. border-right:0px;
  316. border-bottom:0px;
  317. border-radius:0px;
  318. border-top-left-radius:0px;
  319. border-bottom-left-radius:0px;
  320. -moz-box-shadow:none;
  321. -webkit-box-shadow:none;
  322. box-shadow:none;
  323. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  324. font-weight:500;
  325. font-style:normal;
  326. font-size:24px;
  327. }
  328. #u41632 {
  329. border-width:0px;
  330. position:absolute;
  331. left:627px;
  332. top:118px;
  333. width:227px;
  334. height:43px;
  335. display:flex;
  336. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  337. font-weight:500;
  338. font-style:normal;
  339. font-size:24px;
  340. }
  341. #u41632 .text {
  342. position:absolute;
  343. align-self:center;
  344. padding:5px 10px 5px 0px;
  345. box-sizing:border-box;
  346. width:100%;
  347. }
  348. #u41632_text {
  349. border-width:0px;
  350. white-space:nowrap;
  351. text-transform:none;
  352. }
  353. #u41633_div {
  354. border-width:0px;
  355. position:absolute;
  356. left:0px;
  357. top:0px;
  358. width:325px;
  359. height:60px;
  360. background:inherit;
  361. background-color:rgba(255, 255, 255, 0);
  362. border:none;
  363. border-left:0px;
  364. border-top:0px;
  365. border-right:0px;
  366. border-radius:0px;
  367. border-bottom-right-radius:0px;
  368. border-bottom-left-radius:0px;
  369. -moz-box-shadow:none;
  370. -webkit-box-shadow:none;
  371. box-shadow:none;
  372. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  373. font-weight:400;
  374. font-style:normal;
  375. font-size:14px;
  376. line-height:30px;
  377. }
  378. #u41633 {
  379. border-width:0px;
  380. position:absolute;
  381. left:627px;
  382. top:171px;
  383. width:325px;
  384. height:60px;
  385. display:flex;
  386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  387. font-weight:400;
  388. font-style:normal;
  389. font-size:14px;
  390. line-height:30px;
  391. }
  392. #u41633 .text {
  393. position:absolute;
  394. align-self:flex-start;
  395. padding:0px 0px 0px 0px;
  396. box-sizing:border-box;
  397. width:100%;
  398. }
  399. #u41633_text {
  400. border-width:0px;
  401. word-wrap:break-word;
  402. text-transform:none;
  403. }
  404. #u41634_div {
  405. border-width:0px;
  406. position:absolute;
  407. left:0px;
  408. top:0px;
  409. width:1000px;
  410. height:336px;
  411. background:inherit;
  412. background-color:rgba(255, 255, 255, 1);
  413. box-sizing:border-box;
  414. border-width:1px;
  415. border-style:solid;
  416. border-color:rgba(215, 215, 215, 1);
  417. border-radius:0px;
  418. -moz-box-shadow:none;
  419. -webkit-box-shadow:none;
  420. box-shadow:none;
  421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  422. font-weight:400;
  423. font-style:normal;
  424. font-size:14px;
  425. color:#AAAAAA;
  426. text-align:center;
  427. line-height:30px;
  428. }
  429. #u41634 {
  430. border-width:0px;
  431. position:absolute;
  432. left:597px;
  433. top:259px;
  434. width:1000px;
  435. height:336px;
  436. display:flex;
  437. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  438. font-weight:400;
  439. font-style:normal;
  440. font-size:14px;
  441. color:#AAAAAA;
  442. text-align:center;
  443. line-height:30px;
  444. }
  445. #u41634 .text {
  446. position:absolute;
  447. align-self:center;
  448. padding:5px 10px 5px 10px;
  449. box-sizing:border-box;
  450. width:100%;
  451. }
  452. #u41634_text {
  453. border-width:0px;
  454. word-wrap:break-word;
  455. text-transform:none;
  456. visibility:hidden;
  457. }
  458. #u41635_div {
  459. border-width:0px;
  460. position:absolute;
  461. left:0px;
  462. top:0px;
  463. width:320px;
  464. height:90px;
  465. background:inherit;
  466. background-color:rgba(255, 255, 255, 0);
  467. border:none;
  468. border-left:0px;
  469. border-top:0px;
  470. border-right:0px;
  471. border-radius:0px;
  472. border-bottom-right-radius:0px;
  473. border-bottom-left-radius:0px;
  474. -moz-box-shadow:none;
  475. -webkit-box-shadow:none;
  476. box-shadow:none;
  477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  478. font-weight:400;
  479. font-style:normal;
  480. font-size:14px;
  481. line-height:30px;
  482. }
  483. #u41635 {
  484. border-width:0px;
  485. position:absolute;
  486. left:627px;
  487. top:292px;
  488. width:320px;
  489. height:90px;
  490. display:flex;
  491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  492. font-weight:400;
  493. font-style:normal;
  494. font-size:14px;
  495. line-height:30px;
  496. }
  497. #u41635 .text {
  498. position:absolute;
  499. align-self:flex-start;
  500. padding:0px 0px 0px 0px;
  501. box-sizing:border-box;
  502. width:100%;
  503. }
  504. #u41635_text {
  505. border-width:0px;
  506. word-wrap:break-word;
  507. text-transform:none;
  508. }
  509. #u41636 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u41637_div {
  518. border-width:0px;
  519. position:absolute;
  520. left:0px;
  521. top:0px;
  522. width:1000px;
  523. height:645px;
  524. background:inherit;
  525. background-color:rgba(255, 255, 255, 1);
  526. box-sizing:border-box;
  527. border-width:1px;
  528. border-style:solid;
  529. border-color:rgba(215, 215, 215, 1);
  530. border-radius:0px;
  531. -moz-box-shadow:none;
  532. -webkit-box-shadow:none;
  533. box-shadow:none;
  534. }
  535. #u41637 {
  536. border-width:0px;
  537. position:absolute;
  538. left:597px;
  539. top:605px;
  540. width:1000px;
  541. height:645px;
  542. display:flex;
  543. }
  544. #u41637 .text {
  545. position:absolute;
  546. align-self:center;
  547. padding:2px 2px 2px 2px;
  548. box-sizing:border-box;
  549. width:100%;
  550. }
  551. #u41637_text {
  552. border-width:0px;
  553. word-wrap:break-word;
  554. text-transform:none;
  555. visibility:hidden;
  556. }
  557. #u41638_div {
  558. border-width:0px;
  559. position:absolute;
  560. left:0px;
  561. top:0px;
  562. width:103px;
  563. height:24px;
  564. background:inherit;
  565. background-color:rgba(255, 255, 255, 0);
  566. border:none;
  567. border-top:0px;
  568. border-right:0px;
  569. border-bottom:0px;
  570. border-radius:0px;
  571. border-top-left-radius:0px;
  572. border-bottom-left-radius:0px;
  573. -moz-box-shadow:none;
  574. -webkit-box-shadow:none;
  575. box-shadow:none;
  576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  577. font-weight:400;
  578. font-style:normal;
  579. font-size:10px;
  580. color:#AAAAAA;
  581. }
  582. #u41638 {
  583. border-width:0px;
  584. position:absolute;
  585. left:852px;
  586. top:678px;
  587. width:103px;
  588. height:24px;
  589. display:flex;
  590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  591. font-weight:400;
  592. font-style:normal;
  593. font-size:10px;
  594. color:#AAAAAA;
  595. }
  596. #u41638 .text {
  597. position:absolute;
  598. align-self:flex-start;
  599. padding:5px 0px 5px 0px;
  600. box-sizing:border-box;
  601. width:100%;
  602. }
  603. #u41638_text {
  604. border-width:0px;
  605. white-space:nowrap;
  606. text-transform:none;
  607. }
  608. #u41639 {
  609. border-width:0px;
  610. position:absolute;
  611. left:0px;
  612. top:0px;
  613. width:0px;
  614. height:0px;
  615. }
  616. #u41640_div {
  617. border-width:0px;
  618. position:absolute;
  619. left:0px;
  620. top:0px;
  621. width:43px;
  622. height:30px;
  623. background:inherit;
  624. background-color:rgba(255, 255, 255, 0);
  625. border:none;
  626. border-top:0px;
  627. border-right:0px;
  628. border-bottom:0px;
  629. border-radius:0px;
  630. border-top-left-radius:0px;
  631. border-bottom-left-radius:0px;
  632. -moz-box-shadow:none;
  633. -webkit-box-shadow:none;
  634. box-shadow:none;
  635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  636. font-weight:400;
  637. font-style:normal;
  638. font-size:14px;
  639. }
  640. #u41640 {
  641. border-width:0px;
  642. position:absolute;
  643. left:685px;
  644. top:680px;
  645. width:43px;
  646. height:30px;
  647. display:flex;
  648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  649. font-weight:400;
  650. font-style:normal;
  651. font-size:14px;
  652. }
  653. #u41640 .text {
  654. position:absolute;
  655. align-self:flex-start;
  656. padding:0px 0px 0px 0px;
  657. box-sizing:border-box;
  658. width:100%;
  659. }
  660. #u41640_text {
  661. border-width:0px;
  662. white-space:nowrap;
  663. text-transform:none;
  664. }
  665. #u41641_div {
  666. border-width:0px;
  667. position:absolute;
  668. left:0px;
  669. top:0px;
  670. width:23px;
  671. height:16px;
  672. background:inherit;
  673. background-color:rgba(255, 255, 255, 0);
  674. border:none;
  675. border-top:0px;
  676. border-right:0px;
  677. border-bottom:0px;
  678. border-radius:0px;
  679. border-top-left-radius:0px;
  680. border-bottom-left-radius:0px;
  681. -moz-box-shadow:none;
  682. -webkit-box-shadow:none;
  683. box-shadow:none;
  684. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  685. font-weight:400;
  686. font-style:normal;
  687. font-size:11px;
  688. color:#AAAAAA;
  689. }
  690. #u41641 {
  691. border-width:0px;
  692. position:absolute;
  693. left:685px;
  694. top:708px;
  695. width:23px;
  696. height:16px;
  697. display:flex;
  698. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  699. font-weight:400;
  700. font-style:normal;
  701. font-size:11px;
  702. color:#AAAAAA;
  703. }
  704. #u41641 .text {
  705. position:absolute;
  706. align-self:flex-start;
  707. padding:0px 0px 0px 0px;
  708. box-sizing:border-box;
  709. width:100%;
  710. }
  711. #u41641_text {
  712. border-width:0px;
  713. white-space:nowrap;
  714. text-transform:none;
  715. }
  716. #u41642_div {
  717. border-width:0px;
  718. position:absolute;
  719. left:0px;
  720. top:0px;
  721. width:43px;
  722. height:20px;
  723. background:inherit;
  724. background-color:rgba(255, 255, 255, 0);
  725. border:none;
  726. border-top:0px;
  727. border-right:0px;
  728. border-bottom:0px;
  729. border-radius:0px;
  730. border-top-left-radius:0px;
  731. border-bottom-left-radius:0px;
  732. -moz-box-shadow:none;
  733. -webkit-box-shadow:none;
  734. box-shadow:none;
  735. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  736. font-weight:400;
  737. font-style:normal;
  738. font-size:14px;
  739. }
  740. #u41642 {
  741. border-width:0px;
  742. position:absolute;
  743. left:685px;
  744. top:750px;
  745. width:43px;
  746. height:20px;
  747. display:flex;
  748. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  749. font-weight:400;
  750. font-style:normal;
  751. font-size:14px;
  752. }
  753. #u41642 .text {
  754. position:absolute;
  755. align-self:flex-start;
  756. padding:0px 0px 0px 0px;
  757. box-sizing:border-box;
  758. width:100%;
  759. }
  760. #u41642_text {
  761. border-width:0px;
  762. white-space:nowrap;
  763. text-transform:none;
  764. }
  765. #u41643_div {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:63px;
  771. height:16px;
  772. background:inherit;
  773. background-color:rgba(255, 255, 255, 0);
  774. border:none;
  775. border-top:0px;
  776. border-right:0px;
  777. border-bottom:0px;
  778. border-radius:0px;
  779. border-top-left-radius:0px;
  780. border-bottom-left-radius:0px;
  781. -moz-box-shadow:none;
  782. -webkit-box-shadow:none;
  783. box-shadow:none;
  784. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  785. font-weight:400;
  786. font-style:normal;
  787. font-size:11px;
  788. color:#AAAAAA;
  789. }
  790. #u41643 {
  791. border-width:0px;
  792. position:absolute;
  793. left:685px;
  794. top:778px;
  795. width:63px;
  796. height:16px;
  797. display:flex;
  798. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  799. font-weight:400;
  800. font-style:normal;
  801. font-size:11px;
  802. color:#AAAAAA;
  803. }
  804. #u41643 .text {
  805. position:absolute;
  806. align-self:flex-start;
  807. padding:0px 0px 0px 0px;
  808. box-sizing:border-box;
  809. width:100%;
  810. }
  811. #u41643_text {
  812. border-width:0px;
  813. white-space:nowrap;
  814. text-transform:none;
  815. }
  816. #u41644_div {
  817. border-width:0px;
  818. position:absolute;
  819. left:0px;
  820. top:0px;
  821. width:37px;
  822. height:35px;
  823. background:inherit;
  824. background-color:rgba(255, 255, 255, 0);
  825. border:none;
  826. border-top:0px;
  827. border-right:0px;
  828. border-bottom:0px;
  829. border-radius:0px;
  830. border-top-left-radius:0px;
  831. border-bottom-left-radius:0px;
  832. -moz-box-shadow:none;
  833. -webkit-box-shadow:none;
  834. box-shadow:none;
  835. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  836. font-weight:500;
  837. font-style:normal;
  838. font-size:18px;
  839. }
  840. #u41644 {
  841. border-width:0px;
  842. position:absolute;
  843. left:623px;
  844. top:623px;
  845. width:37px;
  846. height:35px;
  847. display:flex;
  848. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  849. font-weight:500;
  850. font-style:normal;
  851. font-size:18px;
  852. }
  853. #u41644 .text {
  854. position:absolute;
  855. align-self:flex-start;
  856. padding:5px 0px 5px 0px;
  857. box-sizing:border-box;
  858. width:100%;
  859. }
  860. #u41644_text {
  861. border-width:0px;
  862. white-space:nowrap;
  863. text-transform:none;
  864. }
  865. #u41645 {
  866. border-width:0px;
  867. position:absolute;
  868. left:0px;
  869. top:0px;
  870. width:0px;
  871. height:0px;
  872. }
  873. #u41646_img {
  874. border-width:0px;
  875. position:absolute;
  876. left:0px;
  877. top:0px;
  878. width:2px;
  879. height:32px;
  880. }
  881. #u41646 {
  882. border-width:0px;
  883. position:absolute;
  884. left:662px;
  885. top:714px;
  886. width:1px;
  887. height:31px;
  888. display:flex;
  889. }
  890. #u41646 .text {
  891. position:absolute;
  892. align-self:center;
  893. padding:2px 2px 2px 2px;
  894. box-sizing:border-box;
  895. width:100%;
  896. }
  897. #u41646_text {
  898. border-width:0px;
  899. word-wrap:break-word;
  900. text-transform:none;
  901. visibility:hidden;
  902. }
  903. #u41647 {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:0px;
  909. height:0px;
  910. }
  911. #u41648_div {
  912. border-width:0px;
  913. position:absolute;
  914. left:0px;
  915. top:0px;
  916. width:30px;
  917. height:30px;
  918. background:inherit;
  919. background-color:rgba(24, 144, 255, 1);
  920. border:none;
  921. border-radius:4px;
  922. -moz-box-shadow:none;
  923. -webkit-box-shadow:none;
  924. box-shadow:none;
  925. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  926. font-weight:400;
  927. font-style:normal;
  928. font-size:10px;
  929. color:#FFFFFF;
  930. }
  931. #u41648 {
  932. border-width:0px;
  933. position:absolute;
  934. left:647px;
  935. top:750px;
  936. width:30px;
  937. height:30px;
  938. display:flex;
  939. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  940. font-weight:400;
  941. font-style:normal;
  942. font-size:10px;
  943. color:#FFFFFF;
  944. }
  945. #u41648 .text {
  946. position:absolute;
  947. align-self:center;
  948. padding:2px 2px 2px 2px;
  949. box-sizing:border-box;
  950. width:100%;
  951. }
  952. #u41648_text {
  953. border-width:0px;
  954. word-wrap:break-word;
  955. text-transform:none;
  956. }
  957. #u41649 {
  958. border-width:0px;
  959. position:absolute;
  960. left:0px;
  961. top:0px;
  962. width:0px;
  963. height:0px;
  964. }
  965. #u41650_img {
  966. border-width:0px;
  967. position:absolute;
  968. left:0px;
  969. top:0px;
  970. width:9px;
  971. height:9px;
  972. }
  973. #u41650 {
  974. border-width:0px;
  975. position:absolute;
  976. left:668px;
  977. top:772px;
  978. width:9px;
  979. height:9px;
  980. display:flex;
  981. }
  982. #u41650 .text {
  983. position:absolute;
  984. align-self:center;
  985. padding:2px 2px 2px 2px;
  986. box-sizing:border-box;
  987. width:100%;
  988. }
  989. #u41650_text {
  990. border-width:0px;
  991. word-wrap:break-word;
  992. text-transform:none;
  993. visibility:hidden;
  994. }
  995. #u41651_img {
  996. border-width:0px;
  997. position:absolute;
  998. left:0px;
  999. top:0px;
  1000. width:5px;
  1001. height:4px;
  1002. }
  1003. #u41651 {
  1004. border-width:0px;
  1005. position:absolute;
  1006. left:670px;
  1007. top:775px;
  1008. width:5px;
  1009. height:4px;
  1010. display:flex;
  1011. }
  1012. #u41651 .text {
  1013. position:absolute;
  1014. align-self:center;
  1015. padding:2px 2px 2px 2px;
  1016. box-sizing:border-box;
  1017. width:100%;
  1018. }
  1019. #u41651_text {
  1020. border-width:0px;
  1021. word-wrap:break-word;
  1022. text-transform:none;
  1023. visibility:hidden;
  1024. }
  1025. #u41652 {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:0px;
  1031. height:0px;
  1032. }
  1033. #u41653_div {
  1034. border-width:0px;
  1035. position:absolute;
  1036. left:0px;
  1037. top:0px;
  1038. width:30px;
  1039. height:30px;
  1040. background:inherit;
  1041. background-color:rgba(24, 144, 255, 1);
  1042. border:none;
  1043. border-radius:4px;
  1044. -moz-box-shadow:none;
  1045. -webkit-box-shadow:none;
  1046. box-shadow:none;
  1047. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1048. font-weight:400;
  1049. font-style:normal;
  1050. font-size:12px;
  1051. color:#FFFFFF;
  1052. }
  1053. #u41653 {
  1054. border-width:0px;
  1055. position:absolute;
  1056. left:647px;
  1057. top:680px;
  1058. width:30px;
  1059. height:30px;
  1060. display:flex;
  1061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1062. font-weight:400;
  1063. font-style:normal;
  1064. font-size:12px;
  1065. color:#FFFFFF;
  1066. }
  1067. #u41653 .text {
  1068. position:absolute;
  1069. align-self:center;
  1070. padding:2px 2px 2px 2px;
  1071. box-sizing:border-box;
  1072. width:100%;
  1073. }
  1074. #u41653_text {
  1075. border-width:0px;
  1076. word-wrap:break-word;
  1077. text-transform:none;
  1078. }
  1079. #u41654 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:0px;
  1083. top:0px;
  1084. width:0px;
  1085. height:0px;
  1086. }
  1087. #u41655_img {
  1088. border-width:0px;
  1089. position:absolute;
  1090. left:0px;
  1091. top:0px;
  1092. width:9px;
  1093. height:9px;
  1094. }
  1095. #u41655 {
  1096. border-width:0px;
  1097. position:absolute;
  1098. left:669px;
  1099. top:702px;
  1100. width:9px;
  1101. height:9px;
  1102. display:flex;
  1103. }
  1104. #u41655 .text {
  1105. position:absolute;
  1106. align-self:center;
  1107. padding:2px 2px 2px 2px;
  1108. box-sizing:border-box;
  1109. width:100%;
  1110. }
  1111. #u41655_text {
  1112. border-width:0px;
  1113. word-wrap:break-word;
  1114. text-transform:none;
  1115. visibility:hidden;
  1116. }
  1117. #u41656_img {
  1118. border-width:0px;
  1119. position:absolute;
  1120. left:0px;
  1121. top:0px;
  1122. width:5px;
  1123. height:4px;
  1124. }
  1125. #u41656 {
  1126. border-width:0px;
  1127. position:absolute;
  1128. left:671px;
  1129. top:705px;
  1130. width:5px;
  1131. height:4px;
  1132. display:flex;
  1133. }
  1134. #u41656 .text {
  1135. position:absolute;
  1136. align-self:center;
  1137. padding:2px 2px 2px 2px;
  1138. box-sizing:border-box;
  1139. width:100%;
  1140. }
  1141. #u41656_text {
  1142. border-width:0px;
  1143. word-wrap:break-word;
  1144. text-transform:none;
  1145. visibility:hidden;
  1146. }
  1147. #u41657_div {
  1148. border-width:0px;
  1149. position:absolute;
  1150. left:0px;
  1151. top:0px;
  1152. width:103px;
  1153. height:24px;
  1154. background:inherit;
  1155. background-color:rgba(255, 255, 255, 0);
  1156. border:none;
  1157. border-top:0px;
  1158. border-right:0px;
  1159. border-bottom:0px;
  1160. border-radius:0px;
  1161. border-top-left-radius:0px;
  1162. border-bottom-left-radius:0px;
  1163. -moz-box-shadow:none;
  1164. -webkit-box-shadow:none;
  1165. box-shadow:none;
  1166. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1167. font-weight:400;
  1168. font-style:normal;
  1169. font-size:10px;
  1170. color:#AAAAAA;
  1171. }
  1172. #u41657 {
  1173. border-width:0px;
  1174. position:absolute;
  1175. left:852px;
  1176. top:748px;
  1177. width:103px;
  1178. height:24px;
  1179. display:flex;
  1180. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1181. font-weight:400;
  1182. font-style:normal;
  1183. font-size:10px;
  1184. color:#AAAAAA;
  1185. }
  1186. #u41657 .text {
  1187. position:absolute;
  1188. align-self:flex-start;
  1189. padding:5px 0px 5px 0px;
  1190. box-sizing:border-box;
  1191. width:100%;
  1192. }
  1193. #u41657_text {
  1194. border-width:0px;
  1195. white-space:nowrap;
  1196. text-transform:none;
  1197. }
  1198. #u41658_div {
  1199. border-width:0px;
  1200. position:absolute;
  1201. left:0px;
  1202. top:0px;
  1203. width:320px;
  1204. height:90px;
  1205. background:inherit;
  1206. background-color:rgba(255, 255, 255, 0);
  1207. border:none;
  1208. border-left:0px;
  1209. border-top:0px;
  1210. border-right:0px;
  1211. border-radius:0px;
  1212. border-bottom-right-radius:0px;
  1213. border-bottom-left-radius:0px;
  1214. -moz-box-shadow:none;
  1215. -webkit-box-shadow:none;
  1216. box-shadow:none;
  1217. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1218. font-weight:400;
  1219. font-style:normal;
  1220. font-size:14px;
  1221. line-height:30px;
  1222. }
  1223. #u41658 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:947px;
  1227. top:292px;
  1228. width:320px;
  1229. height:90px;
  1230. display:flex;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. line-height:30px;
  1236. }
  1237. #u41658 .text {
  1238. position:absolute;
  1239. align-self:flex-start;
  1240. padding:0px 0px 0px 0px;
  1241. box-sizing:border-box;
  1242. width:100%;
  1243. }
  1244. #u41658_text {
  1245. border-width:0px;
  1246. word-wrap:break-word;
  1247. text-transform:none;
  1248. }
  1249. #u41659_div {
  1250. border-width:0px;
  1251. position:absolute;
  1252. left:0px;
  1253. top:0px;
  1254. width:320px;
  1255. height:60px;
  1256. background:inherit;
  1257. background-color:rgba(255, 255, 255, 0);
  1258. border:none;
  1259. border-left:0px;
  1260. border-top:0px;
  1261. border-right:0px;
  1262. border-radius:0px;
  1263. border-bottom-right-radius:0px;
  1264. border-bottom-left-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:14px;
  1272. line-height:30px;
  1273. }
  1274. #u41659 {
  1275. border-width:0px;
  1276. position:absolute;
  1277. left:1267px;
  1278. top:292px;
  1279. width:320px;
  1280. height:60px;
  1281. display:flex;
  1282. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1283. font-weight:400;
  1284. font-style:normal;
  1285. font-size:14px;
  1286. line-height:30px;
  1287. }
  1288. #u41659 .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. #u41659_text {
  1296. border-width:0px;
  1297. word-wrap:break-word;
  1298. text-transform:none;
  1299. }
  1300. #u41660_div {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:0px;
  1304. top:0px;
  1305. width:320px;
  1306. height:30px;
  1307. background:inherit;
  1308. background-color:rgba(255, 255, 255, 0);
  1309. border:none;
  1310. border-left:0px;
  1311. border-top:0px;
  1312. border-right:0px;
  1313. border-radius:0px;
  1314. border-bottom-right-radius:0px;
  1315. border-bottom-left-radius:0px;
  1316. -moz-box-shadow:none;
  1317. -webkit-box-shadow:none;
  1318. box-shadow:none;
  1319. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1320. font-weight:500;
  1321. font-style:normal;
  1322. font-size:18px;
  1323. line-height:30px;
  1324. }
  1325. #u41660 {
  1326. border-width:0px;
  1327. position:absolute;
  1328. left:627px;
  1329. top:402px;
  1330. width:320px;
  1331. height:30px;
  1332. display:flex;
  1333. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1334. font-weight:500;
  1335. font-style:normal;
  1336. font-size:18px;
  1337. line-height:30px;
  1338. }
  1339. #u41660 .text {
  1340. position:absolute;
  1341. align-self:flex-start;
  1342. padding:0px 0px 0px 0px;
  1343. box-sizing:border-box;
  1344. width:100%;
  1345. }
  1346. #u41660_text {
  1347. border-width:0px;
  1348. word-wrap:break-word;
  1349. text-transform:none;
  1350. }
  1351. #u41661_img {
  1352. border-width:0px;
  1353. position:absolute;
  1354. left:0px;
  1355. top:0px;
  1356. width:108px;
  1357. height:108px;
  1358. }
  1359. #u41661 {
  1360. border-width:0px;
  1361. position:absolute;
  1362. left:1441px;
  1363. top:119px;
  1364. width:108px;
  1365. height:108px;
  1366. display:flex;
  1367. -webkit-transform:rotate(315deg);
  1368. -moz-transform:rotate(315deg);
  1369. -ms-transform:rotate(315deg);
  1370. transform:rotate(315deg);
  1371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1372. font-weight:400;
  1373. font-style:normal;
  1374. font-size:28px;
  1375. color:#00BFBF;
  1376. }
  1377. #u41661 .text {
  1378. position:absolute;
  1379. align-self:center;
  1380. padding:2px 2px 2px 2px;
  1381. box-sizing:border-box;
  1382. width:100%;
  1383. }
  1384. #u41661_text {
  1385. border-width:0px;
  1386. word-wrap:break-word;
  1387. text-transform:none;
  1388. }
  1389. #u41662 {
  1390. border-width:0px;
  1391. position:absolute;
  1392. left:627px;
  1393. top:442px;
  1394. width:853px;
  1395. height:118px;
  1396. }
  1397. #u41663_img {
  1398. border-width:0px;
  1399. position:absolute;
  1400. left:0px;
  1401. top:0px;
  1402. width:171px;
  1403. height:38px;
  1404. }
  1405. #u41663 {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:171px;
  1411. height:38px;
  1412. display:flex;
  1413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1414. font-weight:400;
  1415. font-style:normal;
  1416. font-size:12px;
  1417. color:#FFFFFF;
  1418. }
  1419. #u41663 .text {
  1420. position:absolute;
  1421. align-self:center;
  1422. padding:2px 2px 2px 0px;
  1423. box-sizing:border-box;
  1424. width:100%;
  1425. }
  1426. #u41663_text {
  1427. border-width:0px;
  1428. word-wrap:break-word;
  1429. text-transform:none;
  1430. }
  1431. #u41664_img {
  1432. border-width:0px;
  1433. position:absolute;
  1434. left:0px;
  1435. top:0px;
  1436. width:171px;
  1437. height:38px;
  1438. }
  1439. #u41664 {
  1440. border-width:0px;
  1441. position:absolute;
  1442. left:171px;
  1443. top:0px;
  1444. width:171px;
  1445. height:38px;
  1446. display:flex;
  1447. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1448. font-weight:400;
  1449. font-style:normal;
  1450. font-size:12px;
  1451. color:#FFFFFF;
  1452. }
  1453. #u41664 .text {
  1454. position:absolute;
  1455. align-self:center;
  1456. padding:2px 2px 2px 0px;
  1457. box-sizing:border-box;
  1458. width:100%;
  1459. }
  1460. #u41664_text {
  1461. border-width:0px;
  1462. word-wrap:break-word;
  1463. text-transform:none;
  1464. }
  1465. #u41665_img {
  1466. border-width:0px;
  1467. position:absolute;
  1468. left:0px;
  1469. top:0px;
  1470. width:171px;
  1471. height:38px;
  1472. }
  1473. #u41665 {
  1474. border-width:0px;
  1475. position:absolute;
  1476. left:342px;
  1477. top:0px;
  1478. width:171px;
  1479. height:38px;
  1480. display:flex;
  1481. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1482. font-weight:400;
  1483. font-style:normal;
  1484. font-size:12px;
  1485. color:#FFFFFF;
  1486. }
  1487. #u41665 .text {
  1488. position:absolute;
  1489. align-self:center;
  1490. padding:2px 2px 2px 0px;
  1491. box-sizing:border-box;
  1492. width:100%;
  1493. }
  1494. #u41665_text {
  1495. border-width:0px;
  1496. word-wrap:break-word;
  1497. text-transform:none;
  1498. }
  1499. #u41666_img {
  1500. border-width:0px;
  1501. position:absolute;
  1502. left:0px;
  1503. top:0px;
  1504. width:171px;
  1505. height:38px;
  1506. }
  1507. #u41666 {
  1508. border-width:0px;
  1509. position:absolute;
  1510. left:513px;
  1511. top:0px;
  1512. width:171px;
  1513. height:38px;
  1514. display:flex;
  1515. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1516. font-weight:400;
  1517. font-style:normal;
  1518. font-size:12px;
  1519. color:#FFFFFF;
  1520. }
  1521. #u41666 .text {
  1522. position:absolute;
  1523. align-self:center;
  1524. padding:2px 2px 2px 0px;
  1525. box-sizing:border-box;
  1526. width:100%;
  1527. }
  1528. #u41666_text {
  1529. border-width:0px;
  1530. word-wrap:break-word;
  1531. text-transform:none;
  1532. }
  1533. #u41667_img {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:0px;
  1537. top:0px;
  1538. width:169px;
  1539. height:38px;
  1540. }
  1541. #u41667 {
  1542. border-width:0px;
  1543. position:absolute;
  1544. left:684px;
  1545. top:0px;
  1546. width:169px;
  1547. height:38px;
  1548. display:flex;
  1549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1550. font-weight:400;
  1551. font-style:normal;
  1552. font-size:12px;
  1553. color:#FFFFFF;
  1554. }
  1555. #u41667 .text {
  1556. position:absolute;
  1557. align-self:center;
  1558. padding:2px 2px 2px 0px;
  1559. box-sizing:border-box;
  1560. width:100%;
  1561. }
  1562. #u41667_text {
  1563. border-width:0px;
  1564. word-wrap:break-word;
  1565. text-transform:none;
  1566. }
  1567. #u41668_img {
  1568. border-width:0px;
  1569. position:absolute;
  1570. left:0px;
  1571. top:0px;
  1572. width:171px;
  1573. height:40px;
  1574. }
  1575. #u41668 {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:38px;
  1580. width:171px;
  1581. height:40px;
  1582. display:flex;
  1583. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1584. font-weight:400;
  1585. font-style:normal;
  1586. font-size:12px;
  1587. color:#333333;
  1588. }
  1589. #u41668 .text {
  1590. position:absolute;
  1591. align-self:center;
  1592. padding:2px 2px 2px 0px;
  1593. box-sizing:border-box;
  1594. width:100%;
  1595. }
  1596. #u41668_text {
  1597. border-width:0px;
  1598. word-wrap:break-word;
  1599. text-transform:none;
  1600. visibility:hidden;
  1601. }
  1602. #u41669_img {
  1603. border-width:0px;
  1604. position:absolute;
  1605. left:0px;
  1606. top:0px;
  1607. width:171px;
  1608. height:40px;
  1609. }
  1610. #u41669 {
  1611. border-width:0px;
  1612. position:absolute;
  1613. left:171px;
  1614. top:38px;
  1615. width:171px;
  1616. height:40px;
  1617. display:flex;
  1618. font-family:'ArialMT', 'Arial', sans-serif;
  1619. font-weight:400;
  1620. font-style:normal;
  1621. font-size:12px;
  1622. color:#AAAAAA;
  1623. text-align:left;
  1624. }
  1625. #u41669 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 0px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u41669_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u41670_img {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:171px;
  1644. height:40px;
  1645. }
  1646. #u41670 {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:342px;
  1650. top:38px;
  1651. width:171px;
  1652. height:40px;
  1653. display:flex;
  1654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1655. font-weight:400;
  1656. font-style:normal;
  1657. font-size:12px;
  1658. color:#333333;
  1659. }
  1660. #u41670 .text {
  1661. position:absolute;
  1662. align-self:center;
  1663. padding:2px 2px 2px 0px;
  1664. box-sizing:border-box;
  1665. width:100%;
  1666. }
  1667. #u41670_text {
  1668. border-width:0px;
  1669. word-wrap:break-word;
  1670. text-transform:none;
  1671. visibility:hidden;
  1672. }
  1673. #u41671_img {
  1674. border-width:0px;
  1675. position:absolute;
  1676. left:0px;
  1677. top:0px;
  1678. width:171px;
  1679. height:40px;
  1680. }
  1681. #u41671 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:513px;
  1685. top:38px;
  1686. width:171px;
  1687. height:40px;
  1688. display:flex;
  1689. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1690. font-weight:400;
  1691. font-style:normal;
  1692. font-size:12px;
  1693. color:#333333;
  1694. }
  1695. #u41671 .text {
  1696. position:absolute;
  1697. align-self:center;
  1698. padding:2px 2px 2px 0px;
  1699. box-sizing:border-box;
  1700. width:100%;
  1701. }
  1702. #u41671_text {
  1703. border-width:0px;
  1704. word-wrap:break-word;
  1705. text-transform:none;
  1706. visibility:hidden;
  1707. }
  1708. #u41672_img {
  1709. border-width:0px;
  1710. position:absolute;
  1711. left:0px;
  1712. top:0px;
  1713. width:169px;
  1714. height:40px;
  1715. }
  1716. #u41672 {
  1717. border-width:0px;
  1718. position:absolute;
  1719. left:684px;
  1720. top:38px;
  1721. width:169px;
  1722. height:40px;
  1723. display:flex;
  1724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1725. font-weight:400;
  1726. font-style:normal;
  1727. font-size:12px;
  1728. color:#333333;
  1729. }
  1730. #u41672 .text {
  1731. position:absolute;
  1732. align-self:center;
  1733. padding:2px 2px 2px 0px;
  1734. box-sizing:border-box;
  1735. width:100%;
  1736. }
  1737. #u41672_text {
  1738. border-width:0px;
  1739. word-wrap:break-word;
  1740. text-transform:none;
  1741. }
  1742. #u41673_img {
  1743. border-width:0px;
  1744. position:absolute;
  1745. left:0px;
  1746. top:0px;
  1747. width:171px;
  1748. height:40px;
  1749. }
  1750. #u41673 {
  1751. border-width:0px;
  1752. position:absolute;
  1753. left:0px;
  1754. top:78px;
  1755. width:171px;
  1756. height:40px;
  1757. display:flex;
  1758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1759. font-weight:400;
  1760. font-style:normal;
  1761. font-size:12px;
  1762. color:#333333;
  1763. }
  1764. #u41673 .text {
  1765. position:absolute;
  1766. align-self:center;
  1767. padding:2px 2px 2px 0px;
  1768. box-sizing:border-box;
  1769. width:100%;
  1770. }
  1771. #u41673_text {
  1772. border-width:0px;
  1773. word-wrap:break-word;
  1774. text-transform:none;
  1775. visibility:hidden;
  1776. }
  1777. #u41674_img {
  1778. border-width:0px;
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:171px;
  1783. height:40px;
  1784. }
  1785. #u41674 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:171px;
  1789. top:78px;
  1790. width:171px;
  1791. height:40px;
  1792. display:flex;
  1793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1794. font-weight:400;
  1795. font-style:normal;
  1796. font-size:12px;
  1797. color:#333333;
  1798. }
  1799. #u41674 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:2px 2px 2px 0px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u41674_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. visibility:hidden;
  1811. }
  1812. #u41675_img {
  1813. border-width:0px;
  1814. position:absolute;
  1815. left:0px;
  1816. top:0px;
  1817. width:171px;
  1818. height:40px;
  1819. }
  1820. #u41675 {
  1821. border-width:0px;
  1822. position:absolute;
  1823. left:342px;
  1824. top:78px;
  1825. width:171px;
  1826. height:40px;
  1827. display:flex;
  1828. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1829. font-weight:400;
  1830. font-style:normal;
  1831. font-size:12px;
  1832. color:#333333;
  1833. }
  1834. #u41675 .text {
  1835. position:absolute;
  1836. align-self:center;
  1837. padding:2px 2px 2px 0px;
  1838. box-sizing:border-box;
  1839. width:100%;
  1840. }
  1841. #u41675_text {
  1842. border-width:0px;
  1843. word-wrap:break-word;
  1844. text-transform:none;
  1845. visibility:hidden;
  1846. }
  1847. #u41676_img {
  1848. border-width:0px;
  1849. position:absolute;
  1850. left:0px;
  1851. top:0px;
  1852. width:171px;
  1853. height:40px;
  1854. }
  1855. #u41676 {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:513px;
  1859. top:78px;
  1860. width:171px;
  1861. height:40px;
  1862. display:flex;
  1863. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1864. font-weight:400;
  1865. font-style:normal;
  1866. font-size:12px;
  1867. color:#333333;
  1868. }
  1869. #u41676 .text {
  1870. position:absolute;
  1871. align-self:center;
  1872. padding:2px 2px 2px 0px;
  1873. box-sizing:border-box;
  1874. width:100%;
  1875. }
  1876. #u41676_text {
  1877. border-width:0px;
  1878. word-wrap:break-word;
  1879. text-transform:none;
  1880. visibility:hidden;
  1881. }
  1882. #u41677_img {
  1883. border-width:0px;
  1884. position:absolute;
  1885. left:0px;
  1886. top:0px;
  1887. width:169px;
  1888. height:40px;
  1889. }
  1890. #u41677 {
  1891. border-width:0px;
  1892. position:absolute;
  1893. left:684px;
  1894. top:78px;
  1895. width:169px;
  1896. height:40px;
  1897. display:flex;
  1898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1899. font-weight:400;
  1900. font-style:normal;
  1901. font-size:12px;
  1902. color:#333333;
  1903. }
  1904. #u41677 .text {
  1905. position:absolute;
  1906. align-self:center;
  1907. padding:2px 2px 2px 0px;
  1908. box-sizing:border-box;
  1909. width:100%;
  1910. }
  1911. #u41677_text {
  1912. border-width:0px;
  1913. word-wrap:break-word;
  1914. text-transform:none;
  1915. }
  1916. #u41678 {
  1917. border-width:0px;
  1918. position:absolute;
  1919. left:0px;
  1920. top:0px;
  1921. width:0px;
  1922. height:0px;
  1923. }
  1924. #u41679_div {
  1925. border-width:0px;
  1926. position:absolute;
  1927. left:0px;
  1928. top:0px;
  1929. width:1000px;
  1930. height:60px;
  1931. background:inherit;
  1932. background-color:rgba(255, 255, 255, 1);
  1933. box-sizing:border-box;
  1934. border-width:1px;
  1935. border-style:solid;
  1936. border-color:rgba(215, 215, 215, 1);
  1937. border-radius:0px;
  1938. -moz-box-shadow:none;
  1939. -webkit-box-shadow:none;
  1940. box-shadow:none;
  1941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1942. font-weight:400;
  1943. font-style:normal;
  1944. font-size:14px;
  1945. color:#AAAAAA;
  1946. text-align:center;
  1947. line-height:30px;
  1948. }
  1949. #u41679 {
  1950. border-width:0px;
  1951. position:absolute;
  1952. left:597px;
  1953. top:1190px;
  1954. width:1000px;
  1955. height:60px;
  1956. display:flex;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:14px;
  1961. color:#AAAAAA;
  1962. text-align:center;
  1963. line-height:30px;
  1964. }
  1965. #u41679 .text {
  1966. position:absolute;
  1967. align-self:center;
  1968. padding:5px 10px 5px 10px;
  1969. box-sizing:border-box;
  1970. width:100%;
  1971. }
  1972. #u41679_text {
  1973. border-width:0px;
  1974. word-wrap:break-word;
  1975. text-transform:none;
  1976. visibility:hidden;
  1977. }
  1978. #u41680_div {
  1979. border-width:0px;
  1980. position:absolute;
  1981. left:0px;
  1982. top:0px;
  1983. width:80px;
  1984. height:30px;
  1985. background:inherit;
  1986. background-color:rgba(255, 255, 255, 1);
  1987. box-sizing:border-box;
  1988. border-width:1px;
  1989. border-style:solid;
  1990. border-color:rgba(170, 170, 170, 1);
  1991. border-radius:4px;
  1992. -moz-box-shadow:none;
  1993. -webkit-box-shadow:none;
  1994. box-shadow:none;
  1995. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1996. font-weight:400;
  1997. font-style:normal;
  1998. font-size:14px;
  1999. }
  2000. #u41680 {
  2001. border-width:0px;
  2002. position:absolute;
  2003. left:1491px;
  2004. top:1205px;
  2005. width:80px;
  2006. height:30px;
  2007. display:flex;
  2008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2009. font-weight:400;
  2010. font-style:normal;
  2011. font-size:14px;
  2012. }
  2013. #u41680 .text {
  2014. position:absolute;
  2015. align-self:center;
  2016. padding:2px 2px 2px 2px;
  2017. box-sizing:border-box;
  2018. width:100%;
  2019. }
  2020. #u41680_text {
  2021. border-width:0px;
  2022. word-wrap:break-word;
  2023. text-transform:none;
  2024. }
  2025. #u41681 {
  2026. border-width:0px;
  2027. position:absolute;
  2028. left:0px;
  2029. top:0px;
  2030. width:0px;
  2031. height:0px;
  2032. }
  2033. #u41682_div {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:1000px;
  2039. height:1201px;
  2040. background:inherit;
  2041. background-color:rgba(242, 242, 242, 1);
  2042. box-sizing:border-box;
  2043. border-width:1px;
  2044. border-style:solid;
  2045. border-color:rgba(215, 215, 215, 1);
  2046. border-radius:0px;
  2047. -moz-box-shadow:none;
  2048. -webkit-box-shadow:none;
  2049. box-shadow:none;
  2050. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2051. font-weight:400;
  2052. font-style:normal;
  2053. font-size:14px;
  2054. color:#AAAAAA;
  2055. text-align:center;
  2056. line-height:30px;
  2057. }
  2058. #u41682 {
  2059. border-width:0px;
  2060. position:absolute;
  2061. left:1637px;
  2062. top:49px;
  2063. width:1000px;
  2064. height:1201px;
  2065. display:flex;
  2066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2067. font-weight:400;
  2068. font-style:normal;
  2069. font-size:14px;
  2070. color:#AAAAAA;
  2071. text-align:center;
  2072. line-height:30px;
  2073. }
  2074. #u41682 .text {
  2075. position:absolute;
  2076. align-self:center;
  2077. padding:5px 10px 5px 10px;
  2078. box-sizing:border-box;
  2079. width:100%;
  2080. }
  2081. #u41682_text {
  2082. border-width:0px;
  2083. word-wrap:break-word;
  2084. text-transform:none;
  2085. visibility:hidden;
  2086. }
  2087. #u41683_div {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:0px;
  2091. top:0px;
  2092. width:1000px;
  2093. height:200px;
  2094. background:inherit;
  2095. background-color:rgba(255, 255, 255, 1);
  2096. box-sizing:border-box;
  2097. border-width:1px;
  2098. border-style:solid;
  2099. border-color:rgba(215, 215, 215, 1);
  2100. border-radius:0px;
  2101. -moz-box-shadow:none;
  2102. -webkit-box-shadow:none;
  2103. box-shadow:none;
  2104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2105. font-weight:400;
  2106. font-style:normal;
  2107. font-size:14px;
  2108. color:#AAAAAA;
  2109. text-align:center;
  2110. line-height:30px;
  2111. }
  2112. #u41683 {
  2113. border-width:0px;
  2114. position:absolute;
  2115. left:1637px;
  2116. top:49px;
  2117. width:1000px;
  2118. height:200px;
  2119. display:flex;
  2120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2121. font-weight:400;
  2122. font-style:normal;
  2123. font-size:14px;
  2124. color:#AAAAAA;
  2125. text-align:center;
  2126. line-height:30px;
  2127. }
  2128. #u41683 .text {
  2129. position:absolute;
  2130. align-self:center;
  2131. padding:5px 10px 5px 10px;
  2132. box-sizing:border-box;
  2133. width:100%;
  2134. }
  2135. #u41683_text {
  2136. border-width:0px;
  2137. word-wrap:break-word;
  2138. text-transform:none;
  2139. visibility:hidden;
  2140. }
  2141. #u41684_div {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:83px;
  2147. height:35px;
  2148. background:inherit;
  2149. background-color:rgba(255, 255, 255, 0);
  2150. border:none;
  2151. border-top:0px;
  2152. border-right:0px;
  2153. border-bottom:0px;
  2154. border-radius:0px;
  2155. border-top-left-radius:0px;
  2156. border-bottom-left-radius:0px;
  2157. -moz-box-shadow:none;
  2158. -webkit-box-shadow:none;
  2159. box-shadow:none;
  2160. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2161. font-weight:500;
  2162. font-style:normal;
  2163. font-size:18px;
  2164. }
  2165. #u41684 {
  2166. border-width:0px;
  2167. position:absolute;
  2168. left:1657px;
  2169. top:67px;
  2170. width:83px;
  2171. height:35px;
  2172. display:flex;
  2173. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2174. font-weight:500;
  2175. font-style:normal;
  2176. font-size:18px;
  2177. }
  2178. #u41684 .text {
  2179. position:absolute;
  2180. align-self:center;
  2181. padding:5px 10px 5px 0px;
  2182. box-sizing:border-box;
  2183. width:100%;
  2184. }
  2185. #u41684_text {
  2186. border-width:0px;
  2187. white-space:nowrap;
  2188. text-transform:none;
  2189. }
  2190. #u41685 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:0px;
  2194. top:0px;
  2195. width:0px;
  2196. height:0px;
  2197. }
  2198. #u41686_div {
  2199. border-width:0px;
  2200. position:absolute;
  2201. left:0px;
  2202. top:0px;
  2203. width:40px;
  2204. height:40px;
  2205. background:inherit;
  2206. background-color:rgba(255, 255, 255, 0);
  2207. border:none;
  2208. border-top:0px;
  2209. border-right:0px;
  2210. border-bottom:0px;
  2211. border-radius:0px;
  2212. border-top-left-radius:0px;
  2213. border-bottom-left-radius:0px;
  2214. -moz-box-shadow:none;
  2215. -webkit-box-shadow:none;
  2216. box-shadow:none;
  2217. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2218. font-weight:500;
  2219. font-style:normal;
  2220. font-size:14px;
  2221. text-align:center;
  2222. }
  2223. #u41686 {
  2224. border-width:0px;
  2225. position:absolute;
  2226. left:2597px;
  2227. top:49px;
  2228. width:40px;
  2229. height:40px;
  2230. display:flex;
  2231. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2232. font-weight:500;
  2233. font-style:normal;
  2234. font-size:14px;
  2235. text-align:center;
  2236. }
  2237. #u41686 .text {
  2238. position:absolute;
  2239. align-self:center;
  2240. padding:5px 10px 5px 0px;
  2241. box-sizing:border-box;
  2242. width:100%;
  2243. }
  2244. #u41686_text {
  2245. border-width:0px;
  2246. word-wrap:break-word;
  2247. text-transform:none;
  2248. }
  2249. #u41687_img {
  2250. border-width:0px;
  2251. position:absolute;
  2252. left:0px;
  2253. top:0px;
  2254. width:13px;
  2255. height:13px;
  2256. }
  2257. #u41687 {
  2258. border-width:0px;
  2259. position:absolute;
  2260. left:2585px;
  2261. top:65px;
  2262. width:13px;
  2263. height:13px;
  2264. display:flex;
  2265. font-size:14px;
  2266. }
  2267. #u41687 .text {
  2268. position:absolute;
  2269. align-self:center;
  2270. padding:2px 2px 2px 2px;
  2271. box-sizing:border-box;
  2272. width:100%;
  2273. }
  2274. #u41687_text {
  2275. border-width:0px;
  2276. word-wrap:break-word;
  2277. text-transform:none;
  2278. visibility:hidden;
  2279. }
  2280. #u41688_div {
  2281. border-width:0px;
  2282. position:absolute;
  2283. left:0px;
  2284. top:0px;
  2285. width:227px;
  2286. height:43px;
  2287. background:inherit;
  2288. background-color:rgba(255, 255, 255, 0);
  2289. border:none;
  2290. border-top:0px;
  2291. border-right:0px;
  2292. border-bottom:0px;
  2293. border-radius:0px;
  2294. border-top-left-radius:0px;
  2295. border-bottom-left-radius:0px;
  2296. -moz-box-shadow:none;
  2297. -webkit-box-shadow:none;
  2298. box-shadow:none;
  2299. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2300. font-weight:500;
  2301. font-style:normal;
  2302. font-size:24px;
  2303. }
  2304. #u41688 {
  2305. border-width:0px;
  2306. position:absolute;
  2307. left:1667px;
  2308. top:118px;
  2309. width:227px;
  2310. height:43px;
  2311. display:flex;
  2312. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2313. font-weight:500;
  2314. font-style:normal;
  2315. font-size:24px;
  2316. }
  2317. #u41688 .text {
  2318. position:absolute;
  2319. align-self:center;
  2320. padding:5px 10px 5px 0px;
  2321. box-sizing:border-box;
  2322. width:100%;
  2323. }
  2324. #u41688_text {
  2325. border-width:0px;
  2326. white-space:nowrap;
  2327. text-transform:none;
  2328. }
  2329. #u41689_div {
  2330. border-width:0px;
  2331. position:absolute;
  2332. left:0px;
  2333. top:0px;
  2334. width:325px;
  2335. height:60px;
  2336. background:inherit;
  2337. background-color:rgba(255, 255, 255, 0);
  2338. border:none;
  2339. border-left:0px;
  2340. border-top:0px;
  2341. border-right:0px;
  2342. border-radius:0px;
  2343. border-bottom-right-radius:0px;
  2344. border-bottom-left-radius:0px;
  2345. -moz-box-shadow:none;
  2346. -webkit-box-shadow:none;
  2347. box-shadow:none;
  2348. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2349. font-weight:400;
  2350. font-style:normal;
  2351. font-size:14px;
  2352. line-height:30px;
  2353. }
  2354. #u41689 {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:1667px;
  2358. top:171px;
  2359. width:325px;
  2360. height:60px;
  2361. display:flex;
  2362. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2363. font-weight:400;
  2364. font-style:normal;
  2365. font-size:14px;
  2366. line-height:30px;
  2367. }
  2368. #u41689 .text {
  2369. position:absolute;
  2370. align-self:flex-start;
  2371. padding:0px 0px 0px 0px;
  2372. box-sizing:border-box;
  2373. width:100%;
  2374. }
  2375. #u41689_text {
  2376. border-width:0px;
  2377. word-wrap:break-word;
  2378. text-transform:none;
  2379. }
  2380. #u41690_div {
  2381. border-width:0px;
  2382. position:absolute;
  2383. left:0px;
  2384. top:0px;
  2385. width:1000px;
  2386. height:336px;
  2387. background:inherit;
  2388. background-color:rgba(255, 255, 255, 1);
  2389. box-sizing:border-box;
  2390. border-width:1px;
  2391. border-style:solid;
  2392. border-color:rgba(215, 215, 215, 1);
  2393. border-radius:0px;
  2394. -moz-box-shadow:none;
  2395. -webkit-box-shadow:none;
  2396. box-shadow:none;
  2397. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2398. font-weight:400;
  2399. font-style:normal;
  2400. font-size:14px;
  2401. color:#AAAAAA;
  2402. text-align:center;
  2403. line-height:30px;
  2404. }
  2405. #u41690 {
  2406. border-width:0px;
  2407. position:absolute;
  2408. left:1637px;
  2409. top:259px;
  2410. width:1000px;
  2411. height:336px;
  2412. display:flex;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:14px;
  2417. color:#AAAAAA;
  2418. text-align:center;
  2419. line-height:30px;
  2420. }
  2421. #u41690 .text {
  2422. position:absolute;
  2423. align-self:center;
  2424. padding:5px 10px 5px 10px;
  2425. box-sizing:border-box;
  2426. width:100%;
  2427. }
  2428. #u41690_text {
  2429. border-width:0px;
  2430. word-wrap:break-word;
  2431. text-transform:none;
  2432. visibility:hidden;
  2433. }
  2434. #u41691_div {
  2435. border-width:0px;
  2436. position:absolute;
  2437. left:0px;
  2438. top:0px;
  2439. width:320px;
  2440. height:90px;
  2441. background:inherit;
  2442. background-color:rgba(255, 255, 255, 0);
  2443. border:none;
  2444. border-left:0px;
  2445. border-top:0px;
  2446. border-right:0px;
  2447. border-radius:0px;
  2448. border-bottom-right-radius:0px;
  2449. border-bottom-left-radius:0px;
  2450. -moz-box-shadow:none;
  2451. -webkit-box-shadow:none;
  2452. box-shadow:none;
  2453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2454. font-weight:400;
  2455. font-style:normal;
  2456. font-size:14px;
  2457. line-height:30px;
  2458. }
  2459. #u41691 {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:1667px;
  2463. top:292px;
  2464. width:320px;
  2465. height:90px;
  2466. display:flex;
  2467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2468. font-weight:400;
  2469. font-style:normal;
  2470. font-size:14px;
  2471. line-height:30px;
  2472. }
  2473. #u41691 .text {
  2474. position:absolute;
  2475. align-self:flex-start;
  2476. padding:0px 0px 0px 0px;
  2477. box-sizing:border-box;
  2478. width:100%;
  2479. }
  2480. #u41691_text {
  2481. border-width:0px;
  2482. word-wrap:break-word;
  2483. text-transform:none;
  2484. }
  2485. #u41692 {
  2486. border-width:0px;
  2487. position:absolute;
  2488. left:0px;
  2489. top:0px;
  2490. width:0px;
  2491. height:0px;
  2492. }
  2493. #u41693_div {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:1000px;
  2499. height:645px;
  2500. background:inherit;
  2501. background-color:rgba(255, 255, 255, 1);
  2502. box-sizing:border-box;
  2503. border-width:1px;
  2504. border-style:solid;
  2505. border-color:rgba(215, 215, 215, 1);
  2506. border-radius:0px;
  2507. -moz-box-shadow:none;
  2508. -webkit-box-shadow:none;
  2509. box-shadow:none;
  2510. }
  2511. #u41693 {
  2512. border-width:0px;
  2513. position:absolute;
  2514. left:1637px;
  2515. top:605px;
  2516. width:1000px;
  2517. height:645px;
  2518. display:flex;
  2519. }
  2520. #u41693 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 2px 2px 2px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u41693_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u41694_div {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:103px;
  2539. height:24px;
  2540. background:inherit;
  2541. background-color:rgba(255, 255, 255, 0);
  2542. border:none;
  2543. border-top:0px;
  2544. border-right:0px;
  2545. border-bottom:0px;
  2546. border-radius:0px;
  2547. border-top-left-radius:0px;
  2548. border-bottom-left-radius:0px;
  2549. -moz-box-shadow:none;
  2550. -webkit-box-shadow:none;
  2551. box-shadow:none;
  2552. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2553. font-weight:400;
  2554. font-style:normal;
  2555. font-size:10px;
  2556. color:#AAAAAA;
  2557. }
  2558. #u41694 {
  2559. border-width:0px;
  2560. position:absolute;
  2561. left:1892px;
  2562. top:678px;
  2563. width:103px;
  2564. height:24px;
  2565. display:flex;
  2566. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2567. font-weight:400;
  2568. font-style:normal;
  2569. font-size:10px;
  2570. color:#AAAAAA;
  2571. }
  2572. #u41694 .text {
  2573. position:absolute;
  2574. align-self:flex-start;
  2575. padding:5px 0px 5px 0px;
  2576. box-sizing:border-box;
  2577. width:100%;
  2578. }
  2579. #u41694_text {
  2580. border-width:0px;
  2581. white-space:nowrap;
  2582. text-transform:none;
  2583. }
  2584. #u41695 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:0px;
  2589. width:0px;
  2590. height:0px;
  2591. }
  2592. #u41696_div {
  2593. border-width:0px;
  2594. position:absolute;
  2595. left:0px;
  2596. top:0px;
  2597. width:43px;
  2598. height:30px;
  2599. background:inherit;
  2600. background-color:rgba(255, 255, 255, 0);
  2601. border:none;
  2602. border-top:0px;
  2603. border-right:0px;
  2604. border-bottom:0px;
  2605. border-radius:0px;
  2606. border-top-left-radius:0px;
  2607. border-bottom-left-radius:0px;
  2608. -moz-box-shadow:none;
  2609. -webkit-box-shadow:none;
  2610. box-shadow:none;
  2611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2612. font-weight:400;
  2613. font-style:normal;
  2614. font-size:14px;
  2615. }
  2616. #u41696 {
  2617. border-width:0px;
  2618. position:absolute;
  2619. left:1725px;
  2620. top:680px;
  2621. width:43px;
  2622. height:30px;
  2623. display:flex;
  2624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2625. font-weight:400;
  2626. font-style:normal;
  2627. font-size:14px;
  2628. }
  2629. #u41696 .text {
  2630. position:absolute;
  2631. align-self:flex-start;
  2632. padding:0px 0px 0px 0px;
  2633. box-sizing:border-box;
  2634. width:100%;
  2635. }
  2636. #u41696_text {
  2637. border-width:0px;
  2638. white-space:nowrap;
  2639. text-transform:none;
  2640. }
  2641. #u41697_div {
  2642. border-width:0px;
  2643. position:absolute;
  2644. left:0px;
  2645. top:0px;
  2646. width:23px;
  2647. height:16px;
  2648. background:inherit;
  2649. background-color:rgba(255, 255, 255, 0);
  2650. border:none;
  2651. border-top:0px;
  2652. border-right:0px;
  2653. border-bottom:0px;
  2654. border-radius:0px;
  2655. border-top-left-radius:0px;
  2656. border-bottom-left-radius:0px;
  2657. -moz-box-shadow:none;
  2658. -webkit-box-shadow:none;
  2659. box-shadow:none;
  2660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2661. font-weight:400;
  2662. font-style:normal;
  2663. font-size:11px;
  2664. color:#AAAAAA;
  2665. }
  2666. #u41697 {
  2667. border-width:0px;
  2668. position:absolute;
  2669. left:1725px;
  2670. top:708px;
  2671. width:23px;
  2672. height:16px;
  2673. display:flex;
  2674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2675. font-weight:400;
  2676. font-style:normal;
  2677. font-size:11px;
  2678. color:#AAAAAA;
  2679. }
  2680. #u41697 .text {
  2681. position:absolute;
  2682. align-self:flex-start;
  2683. padding:0px 0px 0px 0px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u41697_text {
  2688. border-width:0px;
  2689. white-space:nowrap;
  2690. text-transform:none;
  2691. }
  2692. #u41698_div {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:43px;
  2698. height:20px;
  2699. background:inherit;
  2700. background-color:rgba(255, 255, 255, 0);
  2701. border:none;
  2702. border-top:0px;
  2703. border-right:0px;
  2704. border-bottom:0px;
  2705. border-radius:0px;
  2706. border-top-left-radius:0px;
  2707. border-bottom-left-radius:0px;
  2708. -moz-box-shadow:none;
  2709. -webkit-box-shadow:none;
  2710. box-shadow:none;
  2711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2712. font-weight:400;
  2713. font-style:normal;
  2714. font-size:14px;
  2715. }
  2716. #u41698 {
  2717. border-width:0px;
  2718. position:absolute;
  2719. left:1725px;
  2720. top:750px;
  2721. width:43px;
  2722. height:20px;
  2723. display:flex;
  2724. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2725. font-weight:400;
  2726. font-style:normal;
  2727. font-size:14px;
  2728. }
  2729. #u41698 .text {
  2730. position:absolute;
  2731. align-self:flex-start;
  2732. padding:0px 0px 0px 0px;
  2733. box-sizing:border-box;
  2734. width:100%;
  2735. }
  2736. #u41698_text {
  2737. border-width:0px;
  2738. white-space:nowrap;
  2739. text-transform:none;
  2740. }
  2741. #u41699_div {
  2742. border-width:0px;
  2743. position:absolute;
  2744. left:0px;
  2745. top:0px;
  2746. width:63px;
  2747. height:16px;
  2748. background:inherit;
  2749. background-color:rgba(255, 255, 255, 0);
  2750. border:none;
  2751. border-top:0px;
  2752. border-right:0px;
  2753. border-bottom:0px;
  2754. border-radius:0px;
  2755. border-top-left-radius:0px;
  2756. border-bottom-left-radius:0px;
  2757. -moz-box-shadow:none;
  2758. -webkit-box-shadow:none;
  2759. box-shadow:none;
  2760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2761. font-weight:400;
  2762. font-style:normal;
  2763. font-size:11px;
  2764. color:#AAAAAA;
  2765. }
  2766. #u41699 {
  2767. border-width:0px;
  2768. position:absolute;
  2769. left:1725px;
  2770. top:778px;
  2771. width:63px;
  2772. height:16px;
  2773. display:flex;
  2774. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2775. font-weight:400;
  2776. font-style:normal;
  2777. font-size:11px;
  2778. color:#AAAAAA;
  2779. }
  2780. #u41699 .text {
  2781. position:absolute;
  2782. align-self:flex-start;
  2783. padding:0px 0px 0px 0px;
  2784. box-sizing:border-box;
  2785. width:100%;
  2786. }
  2787. #u41699_text {
  2788. border-width:0px;
  2789. white-space:nowrap;
  2790. text-transform:none;
  2791. }
  2792. #u41700_div {
  2793. border-width:0px;
  2794. position:absolute;
  2795. left:0px;
  2796. top:0px;
  2797. width:37px;
  2798. height:35px;
  2799. background:inherit;
  2800. background-color:rgba(255, 255, 255, 0);
  2801. border:none;
  2802. border-top:0px;
  2803. border-right:0px;
  2804. border-bottom:0px;
  2805. border-radius:0px;
  2806. border-top-left-radius:0px;
  2807. border-bottom-left-radius:0px;
  2808. -moz-box-shadow:none;
  2809. -webkit-box-shadow:none;
  2810. box-shadow:none;
  2811. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2812. font-weight:500;
  2813. font-style:normal;
  2814. font-size:18px;
  2815. }
  2816. #u41700 {
  2817. border-width:0px;
  2818. position:absolute;
  2819. left:1663px;
  2820. top:623px;
  2821. width:37px;
  2822. height:35px;
  2823. display:flex;
  2824. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2825. font-weight:500;
  2826. font-style:normal;
  2827. font-size:18px;
  2828. }
  2829. #u41700 .text {
  2830. position:absolute;
  2831. align-self:flex-start;
  2832. padding:5px 0px 5px 0px;
  2833. box-sizing:border-box;
  2834. width:100%;
  2835. }
  2836. #u41700_text {
  2837. border-width:0px;
  2838. white-space:nowrap;
  2839. text-transform:none;
  2840. }
  2841. #u41701 {
  2842. border-width:0px;
  2843. position:absolute;
  2844. left:0px;
  2845. top:0px;
  2846. width:0px;
  2847. height:0px;
  2848. }
  2849. #u41702_img {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:2px;
  2855. height:32px;
  2856. }
  2857. #u41702 {
  2858. border-width:0px;
  2859. position:absolute;
  2860. left:1702px;
  2861. top:714px;
  2862. width:1px;
  2863. height:31px;
  2864. display:flex;
  2865. }
  2866. #u41702 .text {
  2867. position:absolute;
  2868. align-self:center;
  2869. padding:2px 2px 2px 2px;
  2870. box-sizing:border-box;
  2871. width:100%;
  2872. }
  2873. #u41702_text {
  2874. border-width:0px;
  2875. word-wrap:break-word;
  2876. text-transform:none;
  2877. visibility:hidden;
  2878. }
  2879. #u41703 {
  2880. border-width:0px;
  2881. position:absolute;
  2882. left:0px;
  2883. top:0px;
  2884. width:0px;
  2885. height:0px;
  2886. }
  2887. #u41704_div {
  2888. border-width:0px;
  2889. position:absolute;
  2890. left:0px;
  2891. top:0px;
  2892. width:30px;
  2893. height:30px;
  2894. background:inherit;
  2895. background-color:rgba(24, 144, 255, 1);
  2896. border:none;
  2897. border-radius:4px;
  2898. -moz-box-shadow:none;
  2899. -webkit-box-shadow:none;
  2900. box-shadow:none;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:10px;
  2905. color:#FFFFFF;
  2906. }
  2907. #u41704 {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:1687px;
  2911. top:750px;
  2912. width:30px;
  2913. height:30px;
  2914. display:flex;
  2915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2916. font-weight:400;
  2917. font-style:normal;
  2918. font-size:10px;
  2919. color:#FFFFFF;
  2920. }
  2921. #u41704 .text {
  2922. position:absolute;
  2923. align-self:center;
  2924. padding:2px 2px 2px 2px;
  2925. box-sizing:border-box;
  2926. width:100%;
  2927. }
  2928. #u41704_text {
  2929. border-width:0px;
  2930. word-wrap:break-word;
  2931. text-transform:none;
  2932. }
  2933. #u41705 {
  2934. border-width:0px;
  2935. position:absolute;
  2936. left:0px;
  2937. top:0px;
  2938. width:0px;
  2939. height:0px;
  2940. }
  2941. #u41706_img {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:9px;
  2947. height:9px;
  2948. }
  2949. #u41706 {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:1708px;
  2953. top:772px;
  2954. width:9px;
  2955. height:9px;
  2956. display:flex;
  2957. }
  2958. #u41706 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 2px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u41706_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u41707_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:3px;
  2977. height:3px;
  2978. }
  2979. #u41707 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1711px;
  2983. top:775px;
  2984. width:3px;
  2985. height:3px;
  2986. display:flex;
  2987. }
  2988. #u41707 .text {
  2989. position:absolute;
  2990. align-self:center;
  2991. padding:2px 2px 2px 2px;
  2992. box-sizing:border-box;
  2993. width:100%;
  2994. }
  2995. #u41707_text {
  2996. border-width:0px;
  2997. word-wrap:break-word;
  2998. text-transform:none;
  2999. visibility:hidden;
  3000. }
  3001. #u41708 {
  3002. border-width:0px;
  3003. position:absolute;
  3004. left:0px;
  3005. top:0px;
  3006. width:0px;
  3007. height:0px;
  3008. }
  3009. #u41709_div {
  3010. border-width:0px;
  3011. position:absolute;
  3012. left:0px;
  3013. top:0px;
  3014. width:30px;
  3015. height:30px;
  3016. background:inherit;
  3017. background-color:rgba(24, 144, 255, 1);
  3018. border:none;
  3019. border-radius:4px;
  3020. -moz-box-shadow:none;
  3021. -webkit-box-shadow:none;
  3022. box-shadow:none;
  3023. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3024. font-weight:400;
  3025. font-style:normal;
  3026. font-size:12px;
  3027. color:#FFFFFF;
  3028. }
  3029. #u41709 {
  3030. border-width:0px;
  3031. position:absolute;
  3032. left:1687px;
  3033. top:680px;
  3034. width:30px;
  3035. height:30px;
  3036. display:flex;
  3037. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3038. font-weight:400;
  3039. font-style:normal;
  3040. font-size:12px;
  3041. color:#FFFFFF;
  3042. }
  3043. #u41709 .text {
  3044. position:absolute;
  3045. align-self:center;
  3046. padding:2px 2px 2px 2px;
  3047. box-sizing:border-box;
  3048. width:100%;
  3049. }
  3050. #u41709_text {
  3051. border-width:0px;
  3052. word-wrap:break-word;
  3053. text-transform:none;
  3054. }
  3055. #u41710 {
  3056. border-width:0px;
  3057. position:absolute;
  3058. left:0px;
  3059. top:0px;
  3060. width:0px;
  3061. height:0px;
  3062. }
  3063. #u41711_img {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:0px;
  3067. top:0px;
  3068. width:9px;
  3069. height:9px;
  3070. }
  3071. #u41711 {
  3072. border-width:0px;
  3073. position:absolute;
  3074. left:1709px;
  3075. top:702px;
  3076. width:9px;
  3077. height:9px;
  3078. display:flex;
  3079. }
  3080. #u41711 .text {
  3081. position:absolute;
  3082. align-self:center;
  3083. padding:2px 2px 2px 2px;
  3084. box-sizing:border-box;
  3085. width:100%;
  3086. }
  3087. #u41711_text {
  3088. border-width:0px;
  3089. word-wrap:break-word;
  3090. text-transform:none;
  3091. visibility:hidden;
  3092. }
  3093. #u41712_img {
  3094. border-width:0px;
  3095. position:absolute;
  3096. left:0px;
  3097. top:0px;
  3098. width:5px;
  3099. height:4px;
  3100. }
  3101. #u41712 {
  3102. border-width:0px;
  3103. position:absolute;
  3104. left:1711px;
  3105. top:705px;
  3106. width:5px;
  3107. height:4px;
  3108. display:flex;
  3109. }
  3110. #u41712 .text {
  3111. position:absolute;
  3112. align-self:center;
  3113. padding:2px 2px 2px 2px;
  3114. box-sizing:border-box;
  3115. width:100%;
  3116. }
  3117. #u41712_text {
  3118. border-width:0px;
  3119. word-wrap:break-word;
  3120. text-transform:none;
  3121. visibility:hidden;
  3122. }
  3123. #u41713_div {
  3124. border-width:0px;
  3125. position:absolute;
  3126. left:0px;
  3127. top:0px;
  3128. width:103px;
  3129. height:24px;
  3130. background:inherit;
  3131. background-color:rgba(255, 255, 255, 0);
  3132. border:none;
  3133. border-top:0px;
  3134. border-right:0px;
  3135. border-bottom:0px;
  3136. border-radius:0px;
  3137. border-top-left-radius:0px;
  3138. border-bottom-left-radius:0px;
  3139. -moz-box-shadow:none;
  3140. -webkit-box-shadow:none;
  3141. box-shadow:none;
  3142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3143. font-weight:400;
  3144. font-style:normal;
  3145. font-size:10px;
  3146. color:#AAAAAA;
  3147. }
  3148. #u41713 {
  3149. border-width:0px;
  3150. position:absolute;
  3151. left:1892px;
  3152. top:748px;
  3153. width:103px;
  3154. height:24px;
  3155. display:flex;
  3156. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3157. font-weight:400;
  3158. font-style:normal;
  3159. font-size:10px;
  3160. color:#AAAAAA;
  3161. }
  3162. #u41713 .text {
  3163. position:absolute;
  3164. align-self:flex-start;
  3165. padding:5px 0px 5px 0px;
  3166. box-sizing:border-box;
  3167. width:100%;
  3168. }
  3169. #u41713_text {
  3170. border-width:0px;
  3171. white-space:nowrap;
  3172. text-transform:none;
  3173. }
  3174. #u41714_div {
  3175. border-width:0px;
  3176. position:absolute;
  3177. left:0px;
  3178. top:0px;
  3179. width:320px;
  3180. height:90px;
  3181. background:inherit;
  3182. background-color:rgba(255, 255, 255, 0);
  3183. border:none;
  3184. border-left:0px;
  3185. border-top:0px;
  3186. border-right:0px;
  3187. border-radius:0px;
  3188. border-bottom-right-radius:0px;
  3189. border-bottom-left-radius:0px;
  3190. -moz-box-shadow:none;
  3191. -webkit-box-shadow:none;
  3192. box-shadow:none;
  3193. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3194. font-weight:400;
  3195. font-style:normal;
  3196. font-size:14px;
  3197. line-height:30px;
  3198. }
  3199. #u41714 {
  3200. border-width:0px;
  3201. position:absolute;
  3202. left:1987px;
  3203. top:292px;
  3204. width:320px;
  3205. height:90px;
  3206. display:flex;
  3207. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3208. font-weight:400;
  3209. font-style:normal;
  3210. font-size:14px;
  3211. line-height:30px;
  3212. }
  3213. #u41714 .text {
  3214. position:absolute;
  3215. align-self:flex-start;
  3216. padding:0px 0px 0px 0px;
  3217. box-sizing:border-box;
  3218. width:100%;
  3219. }
  3220. #u41714_text {
  3221. border-width:0px;
  3222. word-wrap:break-word;
  3223. text-transform:none;
  3224. }
  3225. #u41715_div {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:320px;
  3231. height:60px;
  3232. background:inherit;
  3233. background-color:rgba(255, 255, 255, 0);
  3234. border:none;
  3235. border-left:0px;
  3236. border-top:0px;
  3237. border-right:0px;
  3238. border-radius:0px;
  3239. border-bottom-right-radius:0px;
  3240. border-bottom-left-radius:0px;
  3241. -moz-box-shadow:none;
  3242. -webkit-box-shadow:none;
  3243. box-shadow:none;
  3244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3245. font-weight:400;
  3246. font-style:normal;
  3247. font-size:14px;
  3248. line-height:30px;
  3249. }
  3250. #u41715 {
  3251. border-width:0px;
  3252. position:absolute;
  3253. left:2307px;
  3254. top:292px;
  3255. width:320px;
  3256. height:60px;
  3257. display:flex;
  3258. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3259. font-weight:400;
  3260. font-style:normal;
  3261. font-size:14px;
  3262. line-height:30px;
  3263. }
  3264. #u41715 .text {
  3265. position:absolute;
  3266. align-self:flex-start;
  3267. padding:0px 0px 0px 0px;
  3268. box-sizing:border-box;
  3269. width:100%;
  3270. }
  3271. #u41715_text {
  3272. border-width:0px;
  3273. word-wrap:break-word;
  3274. text-transform:none;
  3275. }
  3276. #u41716_div {
  3277. border-width:0px;
  3278. position:absolute;
  3279. left:0px;
  3280. top:0px;
  3281. width:320px;
  3282. height:30px;
  3283. background:inherit;
  3284. background-color:rgba(255, 255, 255, 0);
  3285. border:none;
  3286. border-left:0px;
  3287. border-top:0px;
  3288. border-right:0px;
  3289. border-radius:0px;
  3290. border-bottom-right-radius:0px;
  3291. border-bottom-left-radius:0px;
  3292. -moz-box-shadow:none;
  3293. -webkit-box-shadow:none;
  3294. box-shadow:none;
  3295. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3296. font-weight:500;
  3297. font-style:normal;
  3298. font-size:18px;
  3299. line-height:30px;
  3300. }
  3301. #u41716 {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:1667px;
  3305. top:402px;
  3306. width:320px;
  3307. height:30px;
  3308. display:flex;
  3309. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3310. font-weight:500;
  3311. font-style:normal;
  3312. font-size:18px;
  3313. line-height:30px;
  3314. }
  3315. #u41716 .text {
  3316. position:absolute;
  3317. align-self:flex-start;
  3318. padding:0px 0px 0px 0px;
  3319. box-sizing:border-box;
  3320. width:100%;
  3321. }
  3322. #u41716_text {
  3323. border-width:0px;
  3324. word-wrap:break-word;
  3325. text-transform:none;
  3326. }
  3327. #u41717_img {
  3328. border-width:0px;
  3329. position:absolute;
  3330. left:0px;
  3331. top:0px;
  3332. width:108px;
  3333. height:108px;
  3334. }
  3335. #u41717 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:2481px;
  3339. top:119px;
  3340. width:108px;
  3341. height:108px;
  3342. display:flex;
  3343. -webkit-transform:rotate(315deg);
  3344. -moz-transform:rotate(315deg);
  3345. -ms-transform:rotate(315deg);
  3346. transform:rotate(315deg);
  3347. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3348. font-weight:400;
  3349. font-style:normal;
  3350. font-size:28px;
  3351. color:#D9001B;
  3352. }
  3353. #u41717 .text {
  3354. position:absolute;
  3355. align-self:center;
  3356. padding:2px 2px 2px 2px;
  3357. box-sizing:border-box;
  3358. width:100%;
  3359. }
  3360. #u41717_text {
  3361. border-width:0px;
  3362. word-wrap:break-word;
  3363. text-transform:none;
  3364. }
  3365. #u41718 {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:1667px;
  3369. top:442px;
  3370. width:853px;
  3371. height:118px;
  3372. }
  3373. #u41719_img {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:0px;
  3377. top:0px;
  3378. width:171px;
  3379. height:38px;
  3380. }
  3381. #u41719 {
  3382. border-width:0px;
  3383. position:absolute;
  3384. left:0px;
  3385. top:0px;
  3386. width:171px;
  3387. height:38px;
  3388. display:flex;
  3389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3390. font-weight:400;
  3391. font-style:normal;
  3392. font-size:12px;
  3393. color:#FFFFFF;
  3394. }
  3395. #u41719 .text {
  3396. position:absolute;
  3397. align-self:center;
  3398. padding:2px 2px 2px 0px;
  3399. box-sizing:border-box;
  3400. width:100%;
  3401. }
  3402. #u41719_text {
  3403. border-width:0px;
  3404. word-wrap:break-word;
  3405. text-transform:none;
  3406. }
  3407. #u41720_img {
  3408. border-width:0px;
  3409. position:absolute;
  3410. left:0px;
  3411. top:0px;
  3412. width:171px;
  3413. height:38px;
  3414. }
  3415. #u41720 {
  3416. border-width:0px;
  3417. position:absolute;
  3418. left:171px;
  3419. top:0px;
  3420. width:171px;
  3421. height:38px;
  3422. display:flex;
  3423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3424. font-weight:400;
  3425. font-style:normal;
  3426. font-size:12px;
  3427. color:#FFFFFF;
  3428. }
  3429. #u41720 .text {
  3430. position:absolute;
  3431. align-self:center;
  3432. padding:2px 2px 2px 0px;
  3433. box-sizing:border-box;
  3434. width:100%;
  3435. }
  3436. #u41720_text {
  3437. border-width:0px;
  3438. word-wrap:break-word;
  3439. text-transform:none;
  3440. }
  3441. #u41721_img {
  3442. border-width:0px;
  3443. position:absolute;
  3444. left:0px;
  3445. top:0px;
  3446. width:171px;
  3447. height:38px;
  3448. }
  3449. #u41721 {
  3450. border-width:0px;
  3451. position:absolute;
  3452. left:342px;
  3453. top:0px;
  3454. width:171px;
  3455. height:38px;
  3456. display:flex;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. color:#FFFFFF;
  3462. }
  3463. #u41721 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u41721_text {
  3471. border-width:0px;
  3472. word-wrap:break-word;
  3473. text-transform:none;
  3474. }
  3475. #u41722_img {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:0px;
  3479. top:0px;
  3480. width:171px;
  3481. height:38px;
  3482. }
  3483. #u41722 {
  3484. border-width:0px;
  3485. position:absolute;
  3486. left:513px;
  3487. top:0px;
  3488. width:171px;
  3489. height:38px;
  3490. display:flex;
  3491. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3492. font-weight:400;
  3493. font-style:normal;
  3494. font-size:12px;
  3495. color:#FFFFFF;
  3496. }
  3497. #u41722 .text {
  3498. position:absolute;
  3499. align-self:center;
  3500. padding:2px 2px 2px 0px;
  3501. box-sizing:border-box;
  3502. width:100%;
  3503. }
  3504. #u41722_text {
  3505. border-width:0px;
  3506. word-wrap:break-word;
  3507. text-transform:none;
  3508. }
  3509. #u41723_img {
  3510. border-width:0px;
  3511. position:absolute;
  3512. left:0px;
  3513. top:0px;
  3514. width:169px;
  3515. height:38px;
  3516. }
  3517. #u41723 {
  3518. border-width:0px;
  3519. position:absolute;
  3520. left:684px;
  3521. top:0px;
  3522. width:169px;
  3523. height:38px;
  3524. display:flex;
  3525. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:12px;
  3529. color:#FFFFFF;
  3530. }
  3531. #u41723 .text {
  3532. position:absolute;
  3533. align-self:center;
  3534. padding:2px 2px 2px 0px;
  3535. box-sizing:border-box;
  3536. width:100%;
  3537. }
  3538. #u41723_text {
  3539. border-width:0px;
  3540. word-wrap:break-word;
  3541. text-transform:none;
  3542. }
  3543. #u41724_img {
  3544. border-width:0px;
  3545. position:absolute;
  3546. left:0px;
  3547. top:0px;
  3548. width:171px;
  3549. height:40px;
  3550. }
  3551. #u41724 {
  3552. border-width:0px;
  3553. position:absolute;
  3554. left:0px;
  3555. top:38px;
  3556. width:171px;
  3557. height:40px;
  3558. display:flex;
  3559. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:12px;
  3563. color:#333333;
  3564. }
  3565. #u41724 .text {
  3566. position:absolute;
  3567. align-self:center;
  3568. padding:2px 2px 2px 0px;
  3569. box-sizing:border-box;
  3570. width:100%;
  3571. }
  3572. #u41724_text {
  3573. border-width:0px;
  3574. word-wrap:break-word;
  3575. text-transform:none;
  3576. visibility:hidden;
  3577. }
  3578. #u41725_img {
  3579. border-width:0px;
  3580. position:absolute;
  3581. left:0px;
  3582. top:0px;
  3583. width:171px;
  3584. height:40px;
  3585. }
  3586. #u41725 {
  3587. border-width:0px;
  3588. position:absolute;
  3589. left:171px;
  3590. top:38px;
  3591. width:171px;
  3592. height:40px;
  3593. display:flex;
  3594. font-family:'ArialMT', 'Arial', sans-serif;
  3595. font-weight:400;
  3596. font-style:normal;
  3597. font-size:12px;
  3598. color:#AAAAAA;
  3599. text-align:left;
  3600. }
  3601. #u41725 .text {
  3602. position:absolute;
  3603. align-self:center;
  3604. padding:2px 2px 2px 0px;
  3605. box-sizing:border-box;
  3606. width:100%;
  3607. }
  3608. #u41725_text {
  3609. border-width:0px;
  3610. word-wrap:break-word;
  3611. text-transform:none;
  3612. visibility:hidden;
  3613. }
  3614. #u41726_img {
  3615. border-width:0px;
  3616. position:absolute;
  3617. left:0px;
  3618. top:0px;
  3619. width:171px;
  3620. height:40px;
  3621. }
  3622. #u41726 {
  3623. border-width:0px;
  3624. position:absolute;
  3625. left:342px;
  3626. top:38px;
  3627. width:171px;
  3628. height:40px;
  3629. display:flex;
  3630. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3631. font-weight:400;
  3632. font-style:normal;
  3633. font-size:12px;
  3634. color:#333333;
  3635. }
  3636. #u41726 .text {
  3637. position:absolute;
  3638. align-self:center;
  3639. padding:2px 2px 2px 0px;
  3640. box-sizing:border-box;
  3641. width:100%;
  3642. }
  3643. #u41726_text {
  3644. border-width:0px;
  3645. word-wrap:break-word;
  3646. text-transform:none;
  3647. visibility:hidden;
  3648. }
  3649. #u41727_img {
  3650. border-width:0px;
  3651. position:absolute;
  3652. left:0px;
  3653. top:0px;
  3654. width:171px;
  3655. height:40px;
  3656. }
  3657. #u41727 {
  3658. border-width:0px;
  3659. position:absolute;
  3660. left:513px;
  3661. top:38px;
  3662. width:171px;
  3663. height:40px;
  3664. display:flex;
  3665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3666. font-weight:400;
  3667. font-style:normal;
  3668. font-size:12px;
  3669. color:#333333;
  3670. }
  3671. #u41727 .text {
  3672. position:absolute;
  3673. align-self:center;
  3674. padding:2px 2px 2px 0px;
  3675. box-sizing:border-box;
  3676. width:100%;
  3677. }
  3678. #u41727_text {
  3679. border-width:0px;
  3680. word-wrap:break-word;
  3681. text-transform:none;
  3682. visibility:hidden;
  3683. }
  3684. #u41728_img {
  3685. border-width:0px;
  3686. position:absolute;
  3687. left:0px;
  3688. top:0px;
  3689. width:169px;
  3690. height:40px;
  3691. }
  3692. #u41728 {
  3693. border-width:0px;
  3694. position:absolute;
  3695. left:684px;
  3696. top:38px;
  3697. width:169px;
  3698. height:40px;
  3699. display:flex;
  3700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3701. font-weight:400;
  3702. font-style:normal;
  3703. font-size:12px;
  3704. color:#333333;
  3705. }
  3706. #u41728 .text {
  3707. position:absolute;
  3708. align-self:center;
  3709. padding:2px 2px 2px 0px;
  3710. box-sizing:border-box;
  3711. width:100%;
  3712. }
  3713. #u41728_text {
  3714. border-width:0px;
  3715. word-wrap:break-word;
  3716. text-transform:none;
  3717. }
  3718. #u41729_img {
  3719. border-width:0px;
  3720. position:absolute;
  3721. left:0px;
  3722. top:0px;
  3723. width:171px;
  3724. height:40px;
  3725. }
  3726. #u41729 {
  3727. border-width:0px;
  3728. position:absolute;
  3729. left:0px;
  3730. top:78px;
  3731. width:171px;
  3732. height:40px;
  3733. display:flex;
  3734. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3735. font-weight:400;
  3736. font-style:normal;
  3737. font-size:12px;
  3738. color:#333333;
  3739. }
  3740. #u41729 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 0px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u41729_text {
  3748. border-width:0px;
  3749. word-wrap:break-word;
  3750. text-transform:none;
  3751. visibility:hidden;
  3752. }
  3753. #u41730_img {
  3754. border-width:0px;
  3755. position:absolute;
  3756. left:0px;
  3757. top:0px;
  3758. width:171px;
  3759. height:40px;
  3760. }
  3761. #u41730 {
  3762. border-width:0px;
  3763. position:absolute;
  3764. left:171px;
  3765. top:78px;
  3766. width:171px;
  3767. height:40px;
  3768. display:flex;
  3769. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3770. font-weight:400;
  3771. font-style:normal;
  3772. font-size:12px;
  3773. color:#333333;
  3774. }
  3775. #u41730 .text {
  3776. position:absolute;
  3777. align-self:center;
  3778. padding:2px 2px 2px 0px;
  3779. box-sizing:border-box;
  3780. width:100%;
  3781. }
  3782. #u41730_text {
  3783. border-width:0px;
  3784. word-wrap:break-word;
  3785. text-transform:none;
  3786. visibility:hidden;
  3787. }
  3788. #u41731_img {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:0px;
  3792. top:0px;
  3793. width:171px;
  3794. height:40px;
  3795. }
  3796. #u41731 {
  3797. border-width:0px;
  3798. position:absolute;
  3799. left:342px;
  3800. top:78px;
  3801. width:171px;
  3802. height:40px;
  3803. display:flex;
  3804. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. color:#333333;
  3809. }
  3810. #u41731 .text {
  3811. position:absolute;
  3812. align-self:center;
  3813. padding:2px 2px 2px 0px;
  3814. box-sizing:border-box;
  3815. width:100%;
  3816. }
  3817. #u41731_text {
  3818. border-width:0px;
  3819. word-wrap:break-word;
  3820. text-transform:none;
  3821. visibility:hidden;
  3822. }
  3823. #u41732_img {
  3824. border-width:0px;
  3825. position:absolute;
  3826. left:0px;
  3827. top:0px;
  3828. width:171px;
  3829. height:40px;
  3830. }
  3831. #u41732 {
  3832. border-width:0px;
  3833. position:absolute;
  3834. left:513px;
  3835. top:78px;
  3836. width:171px;
  3837. height:40px;
  3838. display:flex;
  3839. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3840. font-weight:400;
  3841. font-style:normal;
  3842. font-size:12px;
  3843. color:#333333;
  3844. }
  3845. #u41732 .text {
  3846. position:absolute;
  3847. align-self:center;
  3848. padding:2px 2px 2px 0px;
  3849. box-sizing:border-box;
  3850. width:100%;
  3851. }
  3852. #u41732_text {
  3853. border-width:0px;
  3854. word-wrap:break-word;
  3855. text-transform:none;
  3856. visibility:hidden;
  3857. }
  3858. #u41733_img {
  3859. border-width:0px;
  3860. position:absolute;
  3861. left:0px;
  3862. top:0px;
  3863. width:169px;
  3864. height:40px;
  3865. }
  3866. #u41733 {
  3867. border-width:0px;
  3868. position:absolute;
  3869. left:684px;
  3870. top:78px;
  3871. width:169px;
  3872. height:40px;
  3873. display:flex;
  3874. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3875. font-weight:400;
  3876. font-style:normal;
  3877. font-size:12px;
  3878. color:#333333;
  3879. }
  3880. #u41733 .text {
  3881. position:absolute;
  3882. align-self:center;
  3883. padding:2px 2px 2px 0px;
  3884. box-sizing:border-box;
  3885. width:100%;
  3886. }
  3887. #u41733_text {
  3888. border-width:0px;
  3889. word-wrap:break-word;
  3890. text-transform:none;
  3891. }
  3892. #u41734 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:0px;
  3898. height:0px;
  3899. }
  3900. #u41735_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:1000px;
  3906. height:60px;
  3907. background:inherit;
  3908. background-color:rgba(255, 255, 255, 1);
  3909. box-sizing:border-box;
  3910. border-width:1px;
  3911. border-style:solid;
  3912. border-color:rgba(215, 215, 215, 1);
  3913. border-radius:0px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3918. font-weight:400;
  3919. font-style:normal;
  3920. font-size:14px;
  3921. color:#AAAAAA;
  3922. text-align:center;
  3923. line-height:30px;
  3924. }
  3925. #u41735 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:1637px;
  3929. top:1190px;
  3930. width:1000px;
  3931. height:60px;
  3932. display:flex;
  3933. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:14px;
  3937. color:#AAAAAA;
  3938. text-align:center;
  3939. line-height:30px;
  3940. }
  3941. #u41735 .text {
  3942. position:absolute;
  3943. align-self:center;
  3944. padding:5px 10px 5px 10px;
  3945. box-sizing:border-box;
  3946. width:100%;
  3947. }
  3948. #u41735_text {
  3949. border-width:0px;
  3950. word-wrap:break-word;
  3951. text-transform:none;
  3952. visibility:hidden;
  3953. }
  3954. #u41736_div {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:0px;
  3958. top:0px;
  3959. width:80px;
  3960. height:30px;
  3961. background:inherit;
  3962. background-color:rgba(255, 255, 255, 1);
  3963. box-sizing:border-box;
  3964. border-width:1px;
  3965. border-style:solid;
  3966. border-color:rgba(170, 170, 170, 1);
  3967. border-radius:4px;
  3968. -moz-box-shadow:none;
  3969. -webkit-box-shadow:none;
  3970. box-shadow:none;
  3971. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3972. font-weight:400;
  3973. font-style:normal;
  3974. font-size:14px;
  3975. }
  3976. #u41736 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:2531px;
  3980. top:1205px;
  3981. width:80px;
  3982. height:30px;
  3983. display:flex;
  3984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3985. font-weight:400;
  3986. font-style:normal;
  3987. font-size:14px;
  3988. }
  3989. #u41736 .text {
  3990. position:absolute;
  3991. align-self:center;
  3992. padding:2px 2px 2px 2px;
  3993. box-sizing:border-box;
  3994. width:100%;
  3995. }
  3996. #u41736_text {
  3997. border-width:0px;
  3998. word-wrap:break-word;
  3999. text-transform:none;
  4000. }
  4001. #u41737 {
  4002. border-width:0px;
  4003. position:absolute;
  4004. left:0px;
  4005. top:0px;
  4006. width:0px;
  4007. height:0px;
  4008. }
  4009. #u41738_div {
  4010. border-width:0px;
  4011. position:absolute;
  4012. left:0px;
  4013. top:0px;
  4014. width:1000px;
  4015. height:1201px;
  4016. background:inherit;
  4017. background-color:rgba(242, 242, 242, 1);
  4018. box-sizing:border-box;
  4019. border-width:1px;
  4020. border-style:solid;
  4021. border-color:rgba(215, 215, 215, 1);
  4022. border-radius:0px;
  4023. -moz-box-shadow:none;
  4024. -webkit-box-shadow:none;
  4025. box-shadow:none;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. font-size:14px;
  4030. color:#AAAAAA;
  4031. text-align:center;
  4032. line-height:30px;
  4033. }
  4034. #u41738 {
  4035. border-width:0px;
  4036. position:absolute;
  4037. left:2627px;
  4038. top:49px;
  4039. width:1000px;
  4040. height:1201px;
  4041. display:flex;
  4042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4043. font-weight:400;
  4044. font-style:normal;
  4045. font-size:14px;
  4046. color:#AAAAAA;
  4047. text-align:center;
  4048. line-height:30px;
  4049. }
  4050. #u41738 .text {
  4051. position:absolute;
  4052. align-self:center;
  4053. padding:5px 10px 5px 10px;
  4054. box-sizing:border-box;
  4055. width:100%;
  4056. }
  4057. #u41738_text {
  4058. border-width:0px;
  4059. word-wrap:break-word;
  4060. text-transform:none;
  4061. visibility:hidden;
  4062. }
  4063. #u41739_div {
  4064. border-width:0px;
  4065. position:absolute;
  4066. left:0px;
  4067. top:0px;
  4068. width:1000px;
  4069. height:200px;
  4070. background:inherit;
  4071. background-color:rgba(255, 255, 255, 1);
  4072. box-sizing:border-box;
  4073. border-width:1px;
  4074. border-style:solid;
  4075. border-color:rgba(215, 215, 215, 1);
  4076. border-radius:0px;
  4077. -moz-box-shadow:none;
  4078. -webkit-box-shadow:none;
  4079. box-shadow:none;
  4080. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4081. font-weight:400;
  4082. font-style:normal;
  4083. font-size:14px;
  4084. color:#AAAAAA;
  4085. text-align:center;
  4086. line-height:30px;
  4087. }
  4088. #u41739 {
  4089. border-width:0px;
  4090. position:absolute;
  4091. left:2627px;
  4092. top:49px;
  4093. width:1000px;
  4094. height:200px;
  4095. display:flex;
  4096. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4097. font-weight:400;
  4098. font-style:normal;
  4099. font-size:14px;
  4100. color:#AAAAAA;
  4101. text-align:center;
  4102. line-height:30px;
  4103. }
  4104. #u41739 .text {
  4105. position:absolute;
  4106. align-self:center;
  4107. padding:5px 10px 5px 10px;
  4108. box-sizing:border-box;
  4109. width:100%;
  4110. }
  4111. #u41739_text {
  4112. border-width:0px;
  4113. word-wrap:break-word;
  4114. text-transform:none;
  4115. visibility:hidden;
  4116. }
  4117. #u41740_div {
  4118. border-width:0px;
  4119. position:absolute;
  4120. left:0px;
  4121. top:0px;
  4122. width:83px;
  4123. height:35px;
  4124. background:inherit;
  4125. background-color:rgba(255, 255, 255, 0);
  4126. border:none;
  4127. border-top:0px;
  4128. border-right:0px;
  4129. border-bottom:0px;
  4130. border-radius:0px;
  4131. border-top-left-radius:0px;
  4132. border-bottom-left-radius:0px;
  4133. -moz-box-shadow:none;
  4134. -webkit-box-shadow:none;
  4135. box-shadow:none;
  4136. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4137. font-weight:500;
  4138. font-style:normal;
  4139. font-size:18px;
  4140. }
  4141. #u41740 {
  4142. border-width:0px;
  4143. position:absolute;
  4144. left:2647px;
  4145. top:67px;
  4146. width:83px;
  4147. height:35px;
  4148. display:flex;
  4149. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4150. font-weight:500;
  4151. font-style:normal;
  4152. font-size:18px;
  4153. }
  4154. #u41740 .text {
  4155. position:absolute;
  4156. align-self:center;
  4157. padding:5px 10px 5px 0px;
  4158. box-sizing:border-box;
  4159. width:100%;
  4160. }
  4161. #u41740_text {
  4162. border-width:0px;
  4163. white-space:nowrap;
  4164. text-transform:none;
  4165. }
  4166. #u41741 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:0px;
  4170. top:0px;
  4171. width:0px;
  4172. height:0px;
  4173. }
  4174. #u41742_div {
  4175. border-width:0px;
  4176. position:absolute;
  4177. left:0px;
  4178. top:0px;
  4179. width:40px;
  4180. height:40px;
  4181. background:inherit;
  4182. background-color:rgba(255, 255, 255, 0);
  4183. border:none;
  4184. border-top:0px;
  4185. border-right:0px;
  4186. border-bottom:0px;
  4187. border-radius:0px;
  4188. border-top-left-radius:0px;
  4189. border-bottom-left-radius:0px;
  4190. -moz-box-shadow:none;
  4191. -webkit-box-shadow:none;
  4192. box-shadow:none;
  4193. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4194. font-weight:500;
  4195. font-style:normal;
  4196. font-size:14px;
  4197. text-align:center;
  4198. }
  4199. #u41742 {
  4200. border-width:0px;
  4201. position:absolute;
  4202. left:3587px;
  4203. top:49px;
  4204. width:40px;
  4205. height:40px;
  4206. display:flex;
  4207. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4208. font-weight:500;
  4209. font-style:normal;
  4210. font-size:14px;
  4211. text-align:center;
  4212. }
  4213. #u41742 .text {
  4214. position:absolute;
  4215. align-self:center;
  4216. padding:5px 10px 5px 0px;
  4217. box-sizing:border-box;
  4218. width:100%;
  4219. }
  4220. #u41742_text {
  4221. border-width:0px;
  4222. word-wrap:break-word;
  4223. text-transform:none;
  4224. }
  4225. #u41743_img {
  4226. border-width:0px;
  4227. position:absolute;
  4228. left:0px;
  4229. top:0px;
  4230. width:13px;
  4231. height:13px;
  4232. }
  4233. #u41743 {
  4234. border-width:0px;
  4235. position:absolute;
  4236. left:3575px;
  4237. top:65px;
  4238. width:13px;
  4239. height:13px;
  4240. display:flex;
  4241. font-size:14px;
  4242. }
  4243. #u41743 .text {
  4244. position:absolute;
  4245. align-self:center;
  4246. padding:2px 2px 2px 2px;
  4247. box-sizing:border-box;
  4248. width:100%;
  4249. }
  4250. #u41743_text {
  4251. border-width:0px;
  4252. word-wrap:break-word;
  4253. text-transform:none;
  4254. visibility:hidden;
  4255. }
  4256. #u41744_div {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:0px;
  4261. width:227px;
  4262. height:43px;
  4263. background:inherit;
  4264. background-color:rgba(255, 255, 255, 0);
  4265. border:none;
  4266. border-top:0px;
  4267. border-right:0px;
  4268. border-bottom:0px;
  4269. border-radius:0px;
  4270. border-top-left-radius:0px;
  4271. border-bottom-left-radius:0px;
  4272. -moz-box-shadow:none;
  4273. -webkit-box-shadow:none;
  4274. box-shadow:none;
  4275. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4276. font-weight:500;
  4277. font-style:normal;
  4278. font-size:24px;
  4279. }
  4280. #u41744 {
  4281. border-width:0px;
  4282. position:absolute;
  4283. left:2657px;
  4284. top:118px;
  4285. width:227px;
  4286. height:43px;
  4287. display:flex;
  4288. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4289. font-weight:500;
  4290. font-style:normal;
  4291. font-size:24px;
  4292. }
  4293. #u41744 .text {
  4294. position:absolute;
  4295. align-self:center;
  4296. padding:5px 10px 5px 0px;
  4297. box-sizing:border-box;
  4298. width:100%;
  4299. }
  4300. #u41744_text {
  4301. border-width:0px;
  4302. white-space:nowrap;
  4303. text-transform:none;
  4304. }
  4305. #u41745_div {
  4306. border-width:0px;
  4307. position:absolute;
  4308. left:0px;
  4309. top:0px;
  4310. width:325px;
  4311. height:60px;
  4312. background:inherit;
  4313. background-color:rgba(255, 255, 255, 0);
  4314. border:none;
  4315. border-left:0px;
  4316. border-top:0px;
  4317. border-right:0px;
  4318. border-radius:0px;
  4319. border-bottom-right-radius:0px;
  4320. border-bottom-left-radius:0px;
  4321. -moz-box-shadow:none;
  4322. -webkit-box-shadow:none;
  4323. box-shadow:none;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:14px;
  4328. line-height:30px;
  4329. }
  4330. #u41745 {
  4331. border-width:0px;
  4332. position:absolute;
  4333. left:2657px;
  4334. top:171px;
  4335. width:325px;
  4336. height:60px;
  4337. display:flex;
  4338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4339. font-weight:400;
  4340. font-style:normal;
  4341. font-size:14px;
  4342. line-height:30px;
  4343. }
  4344. #u41745 .text {
  4345. position:absolute;
  4346. align-self:flex-start;
  4347. padding:0px 0px 0px 0px;
  4348. box-sizing:border-box;
  4349. width:100%;
  4350. }
  4351. #u41745_text {
  4352. border-width:0px;
  4353. word-wrap:break-word;
  4354. text-transform:none;
  4355. }
  4356. #u41746_div {
  4357. border-width:0px;
  4358. position:absolute;
  4359. left:0px;
  4360. top:0px;
  4361. width:1000px;
  4362. height:336px;
  4363. background:inherit;
  4364. background-color:rgba(255, 255, 255, 1);
  4365. box-sizing:border-box;
  4366. border-width:1px;
  4367. border-style:solid;
  4368. border-color:rgba(215, 215, 215, 1);
  4369. border-radius:0px;
  4370. -moz-box-shadow:none;
  4371. -webkit-box-shadow:none;
  4372. box-shadow:none;
  4373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4374. font-weight:400;
  4375. font-style:normal;
  4376. font-size:14px;
  4377. color:#AAAAAA;
  4378. text-align:center;
  4379. line-height:30px;
  4380. }
  4381. #u41746 {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:2627px;
  4385. top:259px;
  4386. width:1000px;
  4387. height:336px;
  4388. display:flex;
  4389. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4390. font-weight:400;
  4391. font-style:normal;
  4392. font-size:14px;
  4393. color:#AAAAAA;
  4394. text-align:center;
  4395. line-height:30px;
  4396. }
  4397. #u41746 .text {
  4398. position:absolute;
  4399. align-self:center;
  4400. padding:5px 10px 5px 10px;
  4401. box-sizing:border-box;
  4402. width:100%;
  4403. }
  4404. #u41746_text {
  4405. border-width:0px;
  4406. word-wrap:break-word;
  4407. text-transform:none;
  4408. visibility:hidden;
  4409. }
  4410. #u41747_div {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:0px;
  4414. top:0px;
  4415. width:320px;
  4416. height:90px;
  4417. background:inherit;
  4418. background-color:rgba(255, 255, 255, 0);
  4419. border:none;
  4420. border-left:0px;
  4421. border-top:0px;
  4422. border-right:0px;
  4423. border-radius:0px;
  4424. border-bottom-right-radius:0px;
  4425. border-bottom-left-radius:0px;
  4426. -moz-box-shadow:none;
  4427. -webkit-box-shadow:none;
  4428. box-shadow:none;
  4429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4430. font-weight:400;
  4431. font-style:normal;
  4432. font-size:14px;
  4433. line-height:30px;
  4434. }
  4435. #u41747 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:2657px;
  4439. top:292px;
  4440. width:320px;
  4441. height:90px;
  4442. display:flex;
  4443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4444. font-weight:400;
  4445. font-style:normal;
  4446. font-size:14px;
  4447. line-height:30px;
  4448. }
  4449. #u41747 .text {
  4450. position:absolute;
  4451. align-self:flex-start;
  4452. padding:0px 0px 0px 0px;
  4453. box-sizing:border-box;
  4454. width:100%;
  4455. }
  4456. #u41747_text {
  4457. border-width:0px;
  4458. word-wrap:break-word;
  4459. text-transform:none;
  4460. }
  4461. #u41748 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:0px;
  4467. height:0px;
  4468. }
  4469. #u41749_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:1000px;
  4475. height:645px;
  4476. background:inherit;
  4477. background-color:rgba(255, 255, 255, 1);
  4478. box-sizing:border-box;
  4479. border-width:1px;
  4480. border-style:solid;
  4481. border-color:rgba(215, 215, 215, 1);
  4482. border-radius:0px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. }
  4487. #u41749 {
  4488. border-width:0px;
  4489. position:absolute;
  4490. left:2627px;
  4491. top:605px;
  4492. width:1000px;
  4493. height:645px;
  4494. display:flex;
  4495. }
  4496. #u41749 .text {
  4497. position:absolute;
  4498. align-self:center;
  4499. padding:2px 2px 2px 2px;
  4500. box-sizing:border-box;
  4501. width:100%;
  4502. }
  4503. #u41749_text {
  4504. border-width:0px;
  4505. word-wrap:break-word;
  4506. text-transform:none;
  4507. visibility:hidden;
  4508. }
  4509. #u41750_div {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:0px;
  4513. top:0px;
  4514. width:103px;
  4515. height:24px;
  4516. background:inherit;
  4517. background-color:rgba(255, 255, 255, 0);
  4518. border:none;
  4519. border-top:0px;
  4520. border-right:0px;
  4521. border-bottom:0px;
  4522. border-radius:0px;
  4523. border-top-left-radius:0px;
  4524. border-bottom-left-radius:0px;
  4525. -moz-box-shadow:none;
  4526. -webkit-box-shadow:none;
  4527. box-shadow:none;
  4528. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4529. font-weight:400;
  4530. font-style:normal;
  4531. font-size:10px;
  4532. color:#AAAAAA;
  4533. }
  4534. #u41750 {
  4535. border-width:0px;
  4536. position:absolute;
  4537. left:2882px;
  4538. top:678px;
  4539. width:103px;
  4540. height:24px;
  4541. display:flex;
  4542. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4543. font-weight:400;
  4544. font-style:normal;
  4545. font-size:10px;
  4546. color:#AAAAAA;
  4547. }
  4548. #u41750 .text {
  4549. position:absolute;
  4550. align-self:flex-start;
  4551. padding:5px 0px 5px 0px;
  4552. box-sizing:border-box;
  4553. width:100%;
  4554. }
  4555. #u41750_text {
  4556. border-width:0px;
  4557. white-space:nowrap;
  4558. text-transform:none;
  4559. }
  4560. #u41751 {
  4561. border-width:0px;
  4562. position:absolute;
  4563. left:0px;
  4564. top:0px;
  4565. width:0px;
  4566. height:0px;
  4567. }
  4568. #u41752_div {
  4569. border-width:0px;
  4570. position:absolute;
  4571. left:0px;
  4572. top:0px;
  4573. width:43px;
  4574. height:30px;
  4575. background:inherit;
  4576. background-color:rgba(255, 255, 255, 0);
  4577. border:none;
  4578. border-top:0px;
  4579. border-right:0px;
  4580. border-bottom:0px;
  4581. border-radius:0px;
  4582. border-top-left-radius:0px;
  4583. border-bottom-left-radius:0px;
  4584. -moz-box-shadow:none;
  4585. -webkit-box-shadow:none;
  4586. box-shadow:none;
  4587. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4588. font-weight:400;
  4589. font-style:normal;
  4590. font-size:14px;
  4591. }
  4592. #u41752 {
  4593. border-width:0px;
  4594. position:absolute;
  4595. left:2715px;
  4596. top:680px;
  4597. width:43px;
  4598. height:30px;
  4599. display:flex;
  4600. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4601. font-weight:400;
  4602. font-style:normal;
  4603. font-size:14px;
  4604. }
  4605. #u41752 .text {
  4606. position:absolute;
  4607. align-self:flex-start;
  4608. padding:0px 0px 0px 0px;
  4609. box-sizing:border-box;
  4610. width:100%;
  4611. }
  4612. #u41752_text {
  4613. border-width:0px;
  4614. white-space:nowrap;
  4615. text-transform:none;
  4616. }
  4617. #u41753_div {
  4618. border-width:0px;
  4619. position:absolute;
  4620. left:0px;
  4621. top:0px;
  4622. width:23px;
  4623. height:16px;
  4624. background:inherit;
  4625. background-color:rgba(255, 255, 255, 0);
  4626. border:none;
  4627. border-top:0px;
  4628. border-right:0px;
  4629. border-bottom:0px;
  4630. border-radius:0px;
  4631. border-top-left-radius:0px;
  4632. border-bottom-left-radius:0px;
  4633. -moz-box-shadow:none;
  4634. -webkit-box-shadow:none;
  4635. box-shadow:none;
  4636. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4637. font-weight:400;
  4638. font-style:normal;
  4639. font-size:11px;
  4640. color:#AAAAAA;
  4641. }
  4642. #u41753 {
  4643. border-width:0px;
  4644. position:absolute;
  4645. left:2715px;
  4646. top:708px;
  4647. width:23px;
  4648. height:16px;
  4649. display:flex;
  4650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4651. font-weight:400;
  4652. font-style:normal;
  4653. font-size:11px;
  4654. color:#AAAAAA;
  4655. }
  4656. #u41753 .text {
  4657. position:absolute;
  4658. align-self:flex-start;
  4659. padding:0px 0px 0px 0px;
  4660. box-sizing:border-box;
  4661. width:100%;
  4662. }
  4663. #u41753_text {
  4664. border-width:0px;
  4665. white-space:nowrap;
  4666. text-transform:none;
  4667. }
  4668. #u41754_div {
  4669. border-width:0px;
  4670. position:absolute;
  4671. left:0px;
  4672. top:0px;
  4673. width:43px;
  4674. height:20px;
  4675. background:inherit;
  4676. background-color:rgba(255, 255, 255, 0);
  4677. border:none;
  4678. border-top:0px;
  4679. border-right:0px;
  4680. border-bottom:0px;
  4681. border-radius:0px;
  4682. border-top-left-radius:0px;
  4683. border-bottom-left-radius:0px;
  4684. -moz-box-shadow:none;
  4685. -webkit-box-shadow:none;
  4686. box-shadow:none;
  4687. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4688. font-weight:400;
  4689. font-style:normal;
  4690. font-size:14px;
  4691. }
  4692. #u41754 {
  4693. border-width:0px;
  4694. position:absolute;
  4695. left:2715px;
  4696. top:750px;
  4697. width:43px;
  4698. height:20px;
  4699. display:flex;
  4700. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4701. font-weight:400;
  4702. font-style:normal;
  4703. font-size:14px;
  4704. }
  4705. #u41754 .text {
  4706. position:absolute;
  4707. align-self:flex-start;
  4708. padding:0px 0px 0px 0px;
  4709. box-sizing:border-box;
  4710. width:100%;
  4711. }
  4712. #u41754_text {
  4713. border-width:0px;
  4714. white-space:nowrap;
  4715. text-transform:none;
  4716. }
  4717. #u41755_div {
  4718. border-width:0px;
  4719. position:absolute;
  4720. left:0px;
  4721. top:0px;
  4722. width:75px;
  4723. height:16px;
  4724. background:inherit;
  4725. background-color:rgba(255, 255, 255, 0);
  4726. border:none;
  4727. border-top:0px;
  4728. border-right:0px;
  4729. border-bottom:0px;
  4730. border-radius:0px;
  4731. border-top-left-radius:0px;
  4732. border-bottom-left-radius:0px;
  4733. -moz-box-shadow:none;
  4734. -webkit-box-shadow:none;
  4735. box-shadow:none;
  4736. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4737. font-weight:400;
  4738. font-style:normal;
  4739. font-size:11px;
  4740. color:#AAAAAA;
  4741. }
  4742. #u41755 {
  4743. border-width:0px;
  4744. position:absolute;
  4745. left:2715px;
  4746. top:778px;
  4747. width:75px;
  4748. height:16px;
  4749. display:flex;
  4750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4751. font-weight:400;
  4752. font-style:normal;
  4753. font-size:11px;
  4754. color:#AAAAAA;
  4755. }
  4756. #u41755 .text {
  4757. position:absolute;
  4758. align-self:flex-start;
  4759. padding:0px 0px 0px 0px;
  4760. box-sizing:border-box;
  4761. width:100%;
  4762. }
  4763. #u41755_text {
  4764. border-width:0px;
  4765. white-space:nowrap;
  4766. text-transform:none;
  4767. }
  4768. #u41756_div {
  4769. border-width:0px;
  4770. position:absolute;
  4771. left:0px;
  4772. top:0px;
  4773. width:37px;
  4774. height:35px;
  4775. background:inherit;
  4776. background-color:rgba(255, 255, 255, 0);
  4777. border:none;
  4778. border-top:0px;
  4779. border-right:0px;
  4780. border-bottom:0px;
  4781. border-radius:0px;
  4782. border-top-left-radius:0px;
  4783. border-bottom-left-radius:0px;
  4784. -moz-box-shadow:none;
  4785. -webkit-box-shadow:none;
  4786. box-shadow:none;
  4787. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4788. font-weight:500;
  4789. font-style:normal;
  4790. font-size:18px;
  4791. }
  4792. #u41756 {
  4793. border-width:0px;
  4794. position:absolute;
  4795. left:2653px;
  4796. top:623px;
  4797. width:37px;
  4798. height:35px;
  4799. display:flex;
  4800. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4801. font-weight:500;
  4802. font-style:normal;
  4803. font-size:18px;
  4804. }
  4805. #u41756 .text {
  4806. position:absolute;
  4807. align-self:flex-start;
  4808. padding:5px 0px 5px 0px;
  4809. box-sizing:border-box;
  4810. width:100%;
  4811. }
  4812. #u41756_text {
  4813. border-width:0px;
  4814. white-space:nowrap;
  4815. text-transform:none;
  4816. }
  4817. #u41757 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:0px;
  4821. top:0px;
  4822. width:0px;
  4823. height:0px;
  4824. }
  4825. #u41758_img {
  4826. border-width:0px;
  4827. position:absolute;
  4828. left:0px;
  4829. top:0px;
  4830. width:2px;
  4831. height:32px;
  4832. }
  4833. #u41758 {
  4834. border-width:0px;
  4835. position:absolute;
  4836. left:2692px;
  4837. top:714px;
  4838. width:1px;
  4839. height:31px;
  4840. display:flex;
  4841. }
  4842. #u41758 .text {
  4843. position:absolute;
  4844. align-self:center;
  4845. padding:2px 2px 2px 2px;
  4846. box-sizing:border-box;
  4847. width:100%;
  4848. }
  4849. #u41758_text {
  4850. border-width:0px;
  4851. word-wrap:break-word;
  4852. text-transform:none;
  4853. visibility:hidden;
  4854. }
  4855. #u41759 {
  4856. border-width:0px;
  4857. position:absolute;
  4858. left:0px;
  4859. top:0px;
  4860. width:0px;
  4861. height:0px;
  4862. }
  4863. #u41760_div {
  4864. border-width:0px;
  4865. position:absolute;
  4866. left:0px;
  4867. top:0px;
  4868. width:30px;
  4869. height:30px;
  4870. background:inherit;
  4871. background-color:rgba(24, 144, 255, 1);
  4872. border:none;
  4873. border-radius:4px;
  4874. -moz-box-shadow:none;
  4875. -webkit-box-shadow:none;
  4876. box-shadow:none;
  4877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4878. font-weight:400;
  4879. font-style:normal;
  4880. font-size:10px;
  4881. color:#FFFFFF;
  4882. }
  4883. #u41760 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:2677px;
  4887. top:750px;
  4888. width:30px;
  4889. height:30px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4892. font-weight:400;
  4893. font-style:normal;
  4894. font-size:10px;
  4895. color:#FFFFFF;
  4896. }
  4897. #u41760 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:2px 2px 2px 2px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u41760_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. }
  4909. #u41761 {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:0px;
  4915. height:0px;
  4916. }
  4917. #u41762_div {
  4918. border-width:0px;
  4919. position:absolute;
  4920. left:0px;
  4921. top:0px;
  4922. width:30px;
  4923. height:30px;
  4924. background:inherit;
  4925. background-color:rgba(24, 144, 255, 1);
  4926. border:none;
  4927. border-radius:4px;
  4928. -moz-box-shadow:none;
  4929. -webkit-box-shadow:none;
  4930. box-shadow:none;
  4931. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4932. font-weight:400;
  4933. font-style:normal;
  4934. font-size:12px;
  4935. color:#FFFFFF;
  4936. }
  4937. #u41762 {
  4938. border-width:0px;
  4939. position:absolute;
  4940. left:2677px;
  4941. top:680px;
  4942. width:30px;
  4943. height:30px;
  4944. display:flex;
  4945. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4946. font-weight:400;
  4947. font-style:normal;
  4948. font-size:12px;
  4949. color:#FFFFFF;
  4950. }
  4951. #u41762 .text {
  4952. position:absolute;
  4953. align-self:center;
  4954. padding:2px 2px 2px 2px;
  4955. box-sizing:border-box;
  4956. width:100%;
  4957. }
  4958. #u41762_text {
  4959. border-width:0px;
  4960. word-wrap:break-word;
  4961. text-transform:none;
  4962. }
  4963. #u41763 {
  4964. border-width:0px;
  4965. position:absolute;
  4966. left:0px;
  4967. top:0px;
  4968. width:0px;
  4969. height:0px;
  4970. }
  4971. #u41764_img {
  4972. border-width:0px;
  4973. position:absolute;
  4974. left:0px;
  4975. top:0px;
  4976. width:9px;
  4977. height:9px;
  4978. }
  4979. #u41764 {
  4980. border-width:0px;
  4981. position:absolute;
  4982. left:2699px;
  4983. top:702px;
  4984. width:9px;
  4985. height:9px;
  4986. display:flex;
  4987. }
  4988. #u41764 .text {
  4989. position:absolute;
  4990. align-self:center;
  4991. padding:2px 2px 2px 2px;
  4992. box-sizing:border-box;
  4993. width:100%;
  4994. }
  4995. #u41764_text {
  4996. border-width:0px;
  4997. word-wrap:break-word;
  4998. text-transform:none;
  4999. visibility:hidden;
  5000. }
  5001. #u41765_img {
  5002. border-width:0px;
  5003. position:absolute;
  5004. left:0px;
  5005. top:0px;
  5006. width:5px;
  5007. height:4px;
  5008. }
  5009. #u41765 {
  5010. border-width:0px;
  5011. position:absolute;
  5012. left:2701px;
  5013. top:705px;
  5014. width:5px;
  5015. height:4px;
  5016. display:flex;
  5017. }
  5018. #u41765 .text {
  5019. position:absolute;
  5020. align-self:center;
  5021. padding:2px 2px 2px 2px;
  5022. box-sizing:border-box;
  5023. width:100%;
  5024. }
  5025. #u41765_text {
  5026. border-width:0px;
  5027. word-wrap:break-word;
  5028. text-transform:none;
  5029. visibility:hidden;
  5030. }
  5031. #u41766_img {
  5032. border-width:0px;
  5033. position:absolute;
  5034. left:0px;
  5035. top:0px;
  5036. width:2px;
  5037. height:32px;
  5038. }
  5039. #u41766 {
  5040. border-width:0px;
  5041. position:absolute;
  5042. left:2692px;
  5043. top:790px;
  5044. width:1px;
  5045. height:31px;
  5046. display:flex;
  5047. }
  5048. #u41766 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 2px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u41766_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. visibility:hidden;
  5060. }
  5061. #u41767 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:0px;
  5065. top:0px;
  5066. width:0px;
  5067. height:0px;
  5068. }
  5069. #u41768_div {
  5070. border-width:0px;
  5071. position:absolute;
  5072. left:0px;
  5073. top:0px;
  5074. width:30px;
  5075. height:30px;
  5076. background:inherit;
  5077. background-color:rgba(24, 144, 255, 1);
  5078. border:none;
  5079. border-radius:4px;
  5080. -moz-box-shadow:none;
  5081. -webkit-box-shadow:none;
  5082. box-shadow:none;
  5083. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5084. font-weight:400;
  5085. font-style:normal;
  5086. font-size:10px;
  5087. color:#FFFFFF;
  5088. }
  5089. #u41768 {
  5090. border-width:0px;
  5091. position:absolute;
  5092. left:2677px;
  5093. top:826px;
  5094. width:30px;
  5095. height:30px;
  5096. display:flex;
  5097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5098. font-weight:400;
  5099. font-style:normal;
  5100. font-size:10px;
  5101. color:#FFFFFF;
  5102. }
  5103. #u41768 .text {
  5104. position:absolute;
  5105. align-self:center;
  5106. padding:2px 2px 2px 2px;
  5107. box-sizing:border-box;
  5108. width:100%;
  5109. }
  5110. #u41768_text {
  5111. border-width:0px;
  5112. word-wrap:break-word;
  5113. text-transform:none;
  5114. }
  5115. #u41769_div {
  5116. border-width:0px;
  5117. position:absolute;
  5118. left:0px;
  5119. top:0px;
  5120. width:103px;
  5121. height:24px;
  5122. background:inherit;
  5123. background-color:rgba(255, 255, 255, 0);
  5124. border:none;
  5125. border-top:0px;
  5126. border-right:0px;
  5127. border-bottom:0px;
  5128. border-radius:0px;
  5129. border-top-left-radius:0px;
  5130. border-bottom-left-radius:0px;
  5131. -moz-box-shadow:none;
  5132. -webkit-box-shadow:none;
  5133. box-shadow:none;
  5134. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5135. font-weight:400;
  5136. font-style:normal;
  5137. font-size:10px;
  5138. color:#AAAAAA;
  5139. }
  5140. #u41769 {
  5141. border-width:0px;
  5142. position:absolute;
  5143. left:2882px;
  5144. top:748px;
  5145. width:103px;
  5146. height:24px;
  5147. display:flex;
  5148. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5149. font-weight:400;
  5150. font-style:normal;
  5151. font-size:10px;
  5152. color:#AAAAAA;
  5153. }
  5154. #u41769 .text {
  5155. position:absolute;
  5156. align-self:flex-start;
  5157. padding:5px 0px 5px 0px;
  5158. box-sizing:border-box;
  5159. width:100%;
  5160. }
  5161. #u41769_text {
  5162. border-width:0px;
  5163. white-space:nowrap;
  5164. text-transform:none;
  5165. }
  5166. #u41770_div {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:0px;
  5171. width:78px;
  5172. height:16px;
  5173. background:inherit;
  5174. background-color:rgba(255, 255, 255, 0);
  5175. border:none;
  5176. border-top:0px;
  5177. border-right:0px;
  5178. border-bottom:0px;
  5179. border-radius:0px;
  5180. border-top-left-radius:0px;
  5181. border-bottom-left-radius:0px;
  5182. -moz-box-shadow:none;
  5183. -webkit-box-shadow:none;
  5184. box-shadow:none;
  5185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5186. font-weight:400;
  5187. font-style:normal;
  5188. font-size:11px;
  5189. color:#AAAAAA;
  5190. }
  5191. #u41770 {
  5192. border-width:0px;
  5193. position:absolute;
  5194. left:2715px;
  5195. top:826px;
  5196. width:78px;
  5197. height:16px;
  5198. display:flex;
  5199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5200. font-weight:400;
  5201. font-style:normal;
  5202. font-size:11px;
  5203. color:#AAAAAA;
  5204. }
  5205. #u41770 .text {
  5206. position:absolute;
  5207. align-self:flex-start;
  5208. padding:0px 0px 0px 0px;
  5209. box-sizing:border-box;
  5210. width:100%;
  5211. }
  5212. #u41770_text {
  5213. border-width:0px;
  5214. white-space:nowrap;
  5215. text-transform:none;
  5216. }
  5217. #u41771_div {
  5218. border-width:0px;
  5219. position:absolute;
  5220. left:0px;
  5221. top:0px;
  5222. width:103px;
  5223. height:24px;
  5224. background:inherit;
  5225. background-color:rgba(255, 255, 255, 0);
  5226. border:none;
  5227. border-top:0px;
  5228. border-right:0px;
  5229. border-bottom:0px;
  5230. border-radius:0px;
  5231. border-top-left-radius:0px;
  5232. border-bottom-left-radius:0px;
  5233. -moz-box-shadow:none;
  5234. -webkit-box-shadow:none;
  5235. box-shadow:none;
  5236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5237. font-weight:400;
  5238. font-style:normal;
  5239. font-size:10px;
  5240. color:#AAAAAA;
  5241. }
  5242. #u41771 {
  5243. border-width:0px;
  5244. position:absolute;
  5245. left:2882px;
  5246. top:822px;
  5247. width:103px;
  5248. height:24px;
  5249. display:flex;
  5250. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5251. font-weight:400;
  5252. font-style:normal;
  5253. font-size:10px;
  5254. color:#AAAAAA;
  5255. }
  5256. #u41771 .text {
  5257. position:absolute;
  5258. align-self:flex-start;
  5259. padding:5px 0px 5px 0px;
  5260. box-sizing:border-box;
  5261. width:100%;
  5262. }
  5263. #u41771_text {
  5264. border-width:0px;
  5265. white-space:nowrap;
  5266. text-transform:none;
  5267. }
  5268. #u41772_div {
  5269. border-width:0px;
  5270. position:absolute;
  5271. left:0px;
  5272. top:0px;
  5273. width:320px;
  5274. height:90px;
  5275. background:inherit;
  5276. background-color:rgba(255, 255, 255, 0);
  5277. border:none;
  5278. border-left:0px;
  5279. border-top:0px;
  5280. border-right:0px;
  5281. border-radius:0px;
  5282. border-bottom-right-radius:0px;
  5283. border-bottom-left-radius:0px;
  5284. -moz-box-shadow:none;
  5285. -webkit-box-shadow:none;
  5286. box-shadow:none;
  5287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5288. font-weight:400;
  5289. font-style:normal;
  5290. font-size:14px;
  5291. line-height:30px;
  5292. }
  5293. #u41772 {
  5294. border-width:0px;
  5295. position:absolute;
  5296. left:2977px;
  5297. top:292px;
  5298. width:320px;
  5299. height:90px;
  5300. display:flex;
  5301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. line-height:30px;
  5306. }
  5307. #u41772 .text {
  5308. position:absolute;
  5309. align-self:flex-start;
  5310. padding:0px 0px 0px 0px;
  5311. box-sizing:border-box;
  5312. width:100%;
  5313. }
  5314. #u41772_text {
  5315. border-width:0px;
  5316. word-wrap:break-word;
  5317. text-transform:none;
  5318. }
  5319. #u41773_div {
  5320. border-width:0px;
  5321. position:absolute;
  5322. left:0px;
  5323. top:0px;
  5324. width:320px;
  5325. height:60px;
  5326. background:inherit;
  5327. background-color:rgba(255, 255, 255, 0);
  5328. border:none;
  5329. border-left:0px;
  5330. border-top:0px;
  5331. border-right:0px;
  5332. border-radius:0px;
  5333. border-bottom-right-radius:0px;
  5334. border-bottom-left-radius:0px;
  5335. -moz-box-shadow:none;
  5336. -webkit-box-shadow:none;
  5337. box-shadow:none;
  5338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5339. font-weight:400;
  5340. font-style:normal;
  5341. font-size:14px;
  5342. line-height:30px;
  5343. }
  5344. #u41773 {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:3297px;
  5348. top:292px;
  5349. width:320px;
  5350. height:60px;
  5351. display:flex;
  5352. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5353. font-weight:400;
  5354. font-style:normal;
  5355. font-size:14px;
  5356. line-height:30px;
  5357. }
  5358. #u41773 .text {
  5359. position:absolute;
  5360. align-self:flex-start;
  5361. padding:0px 0px 0px 0px;
  5362. box-sizing:border-box;
  5363. width:100%;
  5364. }
  5365. #u41773_text {
  5366. border-width:0px;
  5367. word-wrap:break-word;
  5368. text-transform:none;
  5369. }
  5370. #u41774_div {
  5371. border-width:0px;
  5372. position:absolute;
  5373. left:0px;
  5374. top:0px;
  5375. width:320px;
  5376. height:30px;
  5377. background:inherit;
  5378. background-color:rgba(255, 255, 255, 0);
  5379. border:none;
  5380. border-left:0px;
  5381. border-top:0px;
  5382. border-right:0px;
  5383. border-radius:0px;
  5384. border-bottom-right-radius:0px;
  5385. border-bottom-left-radius:0px;
  5386. -moz-box-shadow:none;
  5387. -webkit-box-shadow:none;
  5388. box-shadow:none;
  5389. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5390. font-weight:500;
  5391. font-style:normal;
  5392. font-size:18px;
  5393. line-height:30px;
  5394. }
  5395. #u41774 {
  5396. border-width:0px;
  5397. position:absolute;
  5398. left:2657px;
  5399. top:402px;
  5400. width:320px;
  5401. height:30px;
  5402. display:flex;
  5403. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5404. font-weight:500;
  5405. font-style:normal;
  5406. font-size:18px;
  5407. line-height:30px;
  5408. }
  5409. #u41774 .text {
  5410. position:absolute;
  5411. align-self:flex-start;
  5412. padding:0px 0px 0px 0px;
  5413. box-sizing:border-box;
  5414. width:100%;
  5415. }
  5416. #u41774_text {
  5417. border-width:0px;
  5418. word-wrap:break-word;
  5419. text-transform:none;
  5420. }
  5421. #u41775_img {
  5422. border-width:0px;
  5423. position:absolute;
  5424. left:0px;
  5425. top:0px;
  5426. width:108px;
  5427. height:108px;
  5428. }
  5429. #u41775 {
  5430. border-width:0px;
  5431. position:absolute;
  5432. left:3471px;
  5433. top:119px;
  5434. width:108px;
  5435. height:108px;
  5436. display:flex;
  5437. -webkit-transform:rotate(315deg);
  5438. -moz-transform:rotate(315deg);
  5439. -ms-transform:rotate(315deg);
  5440. transform:rotate(315deg);
  5441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5442. font-weight:400;
  5443. font-style:normal;
  5444. font-size:28px;
  5445. }
  5446. #u41775 .text {
  5447. position:absolute;
  5448. align-self:center;
  5449. padding:2px 2px 2px 2px;
  5450. box-sizing:border-box;
  5451. width:100%;
  5452. }
  5453. #u41775_text {
  5454. border-width:0px;
  5455. word-wrap:break-word;
  5456. text-transform:none;
  5457. }
  5458. #u41776 {
  5459. border-width:0px;
  5460. position:absolute;
  5461. left:2657px;
  5462. top:442px;
  5463. width:853px;
  5464. height:118px;
  5465. }
  5466. #u41777_img {
  5467. border-width:0px;
  5468. position:absolute;
  5469. left:0px;
  5470. top:0px;
  5471. width:171px;
  5472. height:38px;
  5473. }
  5474. #u41777 {
  5475. border-width:0px;
  5476. position:absolute;
  5477. left:0px;
  5478. top:0px;
  5479. width:171px;
  5480. height:38px;
  5481. display:flex;
  5482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5483. font-weight:400;
  5484. font-style:normal;
  5485. font-size:12px;
  5486. color:#FFFFFF;
  5487. }
  5488. #u41777 .text {
  5489. position:absolute;
  5490. align-self:center;
  5491. padding:2px 2px 2px 0px;
  5492. box-sizing:border-box;
  5493. width:100%;
  5494. }
  5495. #u41777_text {
  5496. border-width:0px;
  5497. word-wrap:break-word;
  5498. text-transform:none;
  5499. }
  5500. #u41778_img {
  5501. border-width:0px;
  5502. position:absolute;
  5503. left:0px;
  5504. top:0px;
  5505. width:171px;
  5506. height:38px;
  5507. }
  5508. #u41778 {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:171px;
  5512. top:0px;
  5513. width:171px;
  5514. height:38px;
  5515. display:flex;
  5516. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5517. font-weight:400;
  5518. font-style:normal;
  5519. font-size:12px;
  5520. color:#FFFFFF;
  5521. }
  5522. #u41778 .text {
  5523. position:absolute;
  5524. align-self:center;
  5525. padding:2px 2px 2px 0px;
  5526. box-sizing:border-box;
  5527. width:100%;
  5528. }
  5529. #u41778_text {
  5530. border-width:0px;
  5531. word-wrap:break-word;
  5532. text-transform:none;
  5533. }
  5534. #u41779_img {
  5535. border-width:0px;
  5536. position:absolute;
  5537. left:0px;
  5538. top:0px;
  5539. width:171px;
  5540. height:38px;
  5541. }
  5542. #u41779 {
  5543. border-width:0px;
  5544. position:absolute;
  5545. left:342px;
  5546. top:0px;
  5547. width:171px;
  5548. height:38px;
  5549. display:flex;
  5550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5551. font-weight:400;
  5552. font-style:normal;
  5553. font-size:12px;
  5554. color:#FFFFFF;
  5555. }
  5556. #u41779 .text {
  5557. position:absolute;
  5558. align-self:center;
  5559. padding:2px 2px 2px 0px;
  5560. box-sizing:border-box;
  5561. width:100%;
  5562. }
  5563. #u41779_text {
  5564. border-width:0px;
  5565. word-wrap:break-word;
  5566. text-transform:none;
  5567. }
  5568. #u41780_img {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:0px;
  5572. top:0px;
  5573. width:171px;
  5574. height:38px;
  5575. }
  5576. #u41780 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:513px;
  5580. top:0px;
  5581. width:171px;
  5582. height:38px;
  5583. display:flex;
  5584. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5585. font-weight:400;
  5586. font-style:normal;
  5587. font-size:12px;
  5588. color:#FFFFFF;
  5589. }
  5590. #u41780 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 0px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u41780_text {
  5598. border-width:0px;
  5599. word-wrap:break-word;
  5600. text-transform:none;
  5601. }
  5602. #u41781_img {
  5603. border-width:0px;
  5604. position:absolute;
  5605. left:0px;
  5606. top:0px;
  5607. width:169px;
  5608. height:38px;
  5609. }
  5610. #u41781 {
  5611. border-width:0px;
  5612. position:absolute;
  5613. left:684px;
  5614. top:0px;
  5615. width:169px;
  5616. height:38px;
  5617. display:flex;
  5618. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5619. font-weight:400;
  5620. font-style:normal;
  5621. font-size:12px;
  5622. color:#FFFFFF;
  5623. }
  5624. #u41781 .text {
  5625. position:absolute;
  5626. align-self:center;
  5627. padding:2px 2px 2px 0px;
  5628. box-sizing:border-box;
  5629. width:100%;
  5630. }
  5631. #u41781_text {
  5632. border-width:0px;
  5633. word-wrap:break-word;
  5634. text-transform:none;
  5635. }
  5636. #u41782_img {
  5637. border-width:0px;
  5638. position:absolute;
  5639. left:0px;
  5640. top:0px;
  5641. width:171px;
  5642. height:40px;
  5643. }
  5644. #u41782 {
  5645. border-width:0px;
  5646. position:absolute;
  5647. left:0px;
  5648. top:38px;
  5649. width:171px;
  5650. height:40px;
  5651. display:flex;
  5652. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5653. font-weight:400;
  5654. font-style:normal;
  5655. font-size:12px;
  5656. color:#333333;
  5657. }
  5658. #u41782 .text {
  5659. position:absolute;
  5660. align-self:center;
  5661. padding:2px 2px 2px 0px;
  5662. box-sizing:border-box;
  5663. width:100%;
  5664. }
  5665. #u41782_text {
  5666. border-width:0px;
  5667. word-wrap:break-word;
  5668. text-transform:none;
  5669. visibility:hidden;
  5670. }
  5671. #u41783_img {
  5672. border-width:0px;
  5673. position:absolute;
  5674. left:0px;
  5675. top:0px;
  5676. width:171px;
  5677. height:40px;
  5678. }
  5679. #u41783 {
  5680. border-width:0px;
  5681. position:absolute;
  5682. left:171px;
  5683. top:38px;
  5684. width:171px;
  5685. height:40px;
  5686. display:flex;
  5687. font-family:'ArialMT', 'Arial', sans-serif;
  5688. font-weight:400;
  5689. font-style:normal;
  5690. font-size:12px;
  5691. color:#AAAAAA;
  5692. text-align:left;
  5693. }
  5694. #u41783 .text {
  5695. position:absolute;
  5696. align-self:center;
  5697. padding:2px 2px 2px 0px;
  5698. box-sizing:border-box;
  5699. width:100%;
  5700. }
  5701. #u41783_text {
  5702. border-width:0px;
  5703. word-wrap:break-word;
  5704. text-transform:none;
  5705. visibility:hidden;
  5706. }
  5707. #u41784_img {
  5708. border-width:0px;
  5709. position:absolute;
  5710. left:0px;
  5711. top:0px;
  5712. width:171px;
  5713. height:40px;
  5714. }
  5715. #u41784 {
  5716. border-width:0px;
  5717. position:absolute;
  5718. left:342px;
  5719. top:38px;
  5720. width:171px;
  5721. height:40px;
  5722. display:flex;
  5723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5724. font-weight:400;
  5725. font-style:normal;
  5726. font-size:12px;
  5727. color:#333333;
  5728. }
  5729. #u41784 .text {
  5730. position:absolute;
  5731. align-self:center;
  5732. padding:2px 2px 2px 0px;
  5733. box-sizing:border-box;
  5734. width:100%;
  5735. }
  5736. #u41784_text {
  5737. border-width:0px;
  5738. word-wrap:break-word;
  5739. text-transform:none;
  5740. visibility:hidden;
  5741. }
  5742. #u41785_img {
  5743. border-width:0px;
  5744. position:absolute;
  5745. left:0px;
  5746. top:0px;
  5747. width:171px;
  5748. height:40px;
  5749. }
  5750. #u41785 {
  5751. border-width:0px;
  5752. position:absolute;
  5753. left:513px;
  5754. top:38px;
  5755. width:171px;
  5756. height:40px;
  5757. display:flex;
  5758. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5759. font-weight:400;
  5760. font-style:normal;
  5761. font-size:12px;
  5762. color:#333333;
  5763. }
  5764. #u41785 .text {
  5765. position:absolute;
  5766. align-self:center;
  5767. padding:2px 2px 2px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u41785_text {
  5772. border-width:0px;
  5773. word-wrap:break-word;
  5774. text-transform:none;
  5775. visibility:hidden;
  5776. }
  5777. #u41786_img {
  5778. border-width:0px;
  5779. position:absolute;
  5780. left:0px;
  5781. top:0px;
  5782. width:169px;
  5783. height:40px;
  5784. }
  5785. #u41786 {
  5786. border-width:0px;
  5787. position:absolute;
  5788. left:684px;
  5789. top:38px;
  5790. width:169px;
  5791. height:40px;
  5792. display:flex;
  5793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5794. font-weight:400;
  5795. font-style:normal;
  5796. font-size:12px;
  5797. color:#333333;
  5798. }
  5799. #u41786 .text {
  5800. position:absolute;
  5801. align-self:center;
  5802. padding:2px 2px 2px 0px;
  5803. box-sizing:border-box;
  5804. width:100%;
  5805. }
  5806. #u41786_text {
  5807. border-width:0px;
  5808. word-wrap:break-word;
  5809. text-transform:none;
  5810. }
  5811. #u41787_img {
  5812. border-width:0px;
  5813. position:absolute;
  5814. left:0px;
  5815. top:0px;
  5816. width:171px;
  5817. height:40px;
  5818. }
  5819. #u41787 {
  5820. border-width:0px;
  5821. position:absolute;
  5822. left:0px;
  5823. top:78px;
  5824. width:171px;
  5825. height:40px;
  5826. display:flex;
  5827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5828. font-weight:400;
  5829. font-style:normal;
  5830. font-size:12px;
  5831. color:#333333;
  5832. }
  5833. #u41787 .text {
  5834. position:absolute;
  5835. align-self:center;
  5836. padding:2px 2px 2px 0px;
  5837. box-sizing:border-box;
  5838. width:100%;
  5839. }
  5840. #u41787_text {
  5841. border-width:0px;
  5842. word-wrap:break-word;
  5843. text-transform:none;
  5844. visibility:hidden;
  5845. }
  5846. #u41788_img {
  5847. border-width:0px;
  5848. position:absolute;
  5849. left:0px;
  5850. top:0px;
  5851. width:171px;
  5852. height:40px;
  5853. }
  5854. #u41788 {
  5855. border-width:0px;
  5856. position:absolute;
  5857. left:171px;
  5858. top:78px;
  5859. width:171px;
  5860. height:40px;
  5861. display:flex;
  5862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5863. font-weight:400;
  5864. font-style:normal;
  5865. font-size:12px;
  5866. color:#333333;
  5867. }
  5868. #u41788 .text {
  5869. position:absolute;
  5870. align-self:center;
  5871. padding:2px 2px 2px 0px;
  5872. box-sizing:border-box;
  5873. width:100%;
  5874. }
  5875. #u41788_text {
  5876. border-width:0px;
  5877. word-wrap:break-word;
  5878. text-transform:none;
  5879. visibility:hidden;
  5880. }
  5881. #u41789_img {
  5882. border-width:0px;
  5883. position:absolute;
  5884. left:0px;
  5885. top:0px;
  5886. width:171px;
  5887. height:40px;
  5888. }
  5889. #u41789 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:342px;
  5893. top:78px;
  5894. width:171px;
  5895. height:40px;
  5896. display:flex;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-weight:400;
  5899. font-style:normal;
  5900. font-size:12px;
  5901. color:#333333;
  5902. }
  5903. #u41789 .text {
  5904. position:absolute;
  5905. align-self:center;
  5906. padding:2px 2px 2px 0px;
  5907. box-sizing:border-box;
  5908. width:100%;
  5909. }
  5910. #u41789_text {
  5911. border-width:0px;
  5912. word-wrap:break-word;
  5913. text-transform:none;
  5914. visibility:hidden;
  5915. }
  5916. #u41790_img {
  5917. border-width:0px;
  5918. position:absolute;
  5919. left:0px;
  5920. top:0px;
  5921. width:171px;
  5922. height:40px;
  5923. }
  5924. #u41790 {
  5925. border-width:0px;
  5926. position:absolute;
  5927. left:513px;
  5928. top:78px;
  5929. width:171px;
  5930. height:40px;
  5931. display:flex;
  5932. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5933. font-weight:400;
  5934. font-style:normal;
  5935. font-size:12px;
  5936. color:#333333;
  5937. }
  5938. #u41790 .text {
  5939. position:absolute;
  5940. align-self:center;
  5941. padding:2px 2px 2px 0px;
  5942. box-sizing:border-box;
  5943. width:100%;
  5944. }
  5945. #u41790_text {
  5946. border-width:0px;
  5947. word-wrap:break-word;
  5948. text-transform:none;
  5949. visibility:hidden;
  5950. }
  5951. #u41791_img {
  5952. border-width:0px;
  5953. position:absolute;
  5954. left:0px;
  5955. top:0px;
  5956. width:169px;
  5957. height:40px;
  5958. }
  5959. #u41791 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:684px;
  5963. top:78px;
  5964. width:169px;
  5965. height:40px;
  5966. display:flex;
  5967. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5968. font-weight:400;
  5969. font-style:normal;
  5970. font-size:12px;
  5971. color:#333333;
  5972. }
  5973. #u41791 .text {
  5974. position:absolute;
  5975. align-self:center;
  5976. padding:2px 2px 2px 0px;
  5977. box-sizing:border-box;
  5978. width:100%;
  5979. }
  5980. #u41791_text {
  5981. border-width:0px;
  5982. word-wrap:break-word;
  5983. text-transform:none;
  5984. }
  5985. #u41792 {
  5986. border-width:0px;
  5987. position:absolute;
  5988. left:0px;
  5989. top:0px;
  5990. width:0px;
  5991. height:0px;
  5992. }
  5993. #u41793_div {
  5994. border-width:0px;
  5995. position:absolute;
  5996. left:0px;
  5997. top:0px;
  5998. width:1000px;
  5999. height:60px;
  6000. background:inherit;
  6001. background-color:rgba(255, 255, 255, 1);
  6002. box-sizing:border-box;
  6003. border-width:1px;
  6004. border-style:solid;
  6005. border-color:rgba(215, 215, 215, 1);
  6006. border-radius:0px;
  6007. -moz-box-shadow:none;
  6008. -webkit-box-shadow:none;
  6009. box-shadow:none;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. color:#AAAAAA;
  6015. text-align:center;
  6016. line-height:30px;
  6017. }
  6018. #u41793 {
  6019. border-width:0px;
  6020. position:absolute;
  6021. left:2627px;
  6022. top:1190px;
  6023. width:1000px;
  6024. height:60px;
  6025. display:flex;
  6026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6027. font-weight:400;
  6028. font-style:normal;
  6029. font-size:14px;
  6030. color:#AAAAAA;
  6031. text-align:center;
  6032. line-height:30px;
  6033. }
  6034. #u41793 .text {
  6035. position:absolute;
  6036. align-self:center;
  6037. padding:5px 10px 5px 10px;
  6038. box-sizing:border-box;
  6039. width:100%;
  6040. }
  6041. #u41793_text {
  6042. border-width:0px;
  6043. word-wrap:break-word;
  6044. text-transform:none;
  6045. visibility:hidden;
  6046. }
  6047. #u41794_div {
  6048. border-width:0px;
  6049. position:absolute;
  6050. left:0px;
  6051. top:0px;
  6052. width:80px;
  6053. height:30px;
  6054. background:inherit;
  6055. background-color:rgba(255, 255, 255, 1);
  6056. box-sizing:border-box;
  6057. border-width:1px;
  6058. border-style:solid;
  6059. border-color:rgba(170, 170, 170, 1);
  6060. border-radius:4px;
  6061. -moz-box-shadow:none;
  6062. -webkit-box-shadow:none;
  6063. box-shadow:none;
  6064. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6065. font-weight:400;
  6066. font-style:normal;
  6067. font-size:14px;
  6068. }
  6069. #u41794 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:3521px;
  6073. top:1205px;
  6074. width:80px;
  6075. height:30px;
  6076. display:flex;
  6077. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. font-size:14px;
  6081. }
  6082. #u41794 .text {
  6083. position:absolute;
  6084. align-self:center;
  6085. padding:2px 2px 2px 2px;
  6086. box-sizing:border-box;
  6087. width:100%;
  6088. }
  6089. #u41794_text {
  6090. border-width:0px;
  6091. word-wrap:break-word;
  6092. text-transform:none;
  6093. }
  6094. #u41795_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:85px;
  6100. height:20px;
  6101. background:inherit;
  6102. background-color:rgba(30, 42, 68, 1);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. color:#FFFFFF;
  6112. }
  6113. #u41795 {
  6114. border-width:0px;
  6115. position:absolute;
  6116. left:1374px;
  6117. top:15px;
  6118. width:85px;
  6119. height:20px;
  6120. display:flex;
  6121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6122. font-weight:400;
  6123. font-style:normal;
  6124. color:#FFFFFF;
  6125. }
  6126. #u41795 .text {
  6127. position:absolute;
  6128. align-self:flex-start;
  6129. padding:0px 0px 0px 0px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u41795_text {
  6134. border-width:0px;
  6135. white-space:nowrap;
  6136. text-transform:none;
  6137. }