styles.css 127 KB

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