styles.css 109 KB

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