styles.css 143 KB

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