styles.css 109 KB

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