styles.css 134 KB

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