styles.css 128 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:3279px;
  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. #u127516_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. #u127516 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u127516 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u127516_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u127517_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. #u127517 {
  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. #u127517 .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. #u127517_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u127518_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. #u127518 {
  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. #u127518 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u127518_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u127519 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u127520_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u127520 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u127520 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u127520_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u127521_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. #u127521 {
  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. #u127521 .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. #u127521_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u127522_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. #u127522 {
  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. #u127522 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u127522_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u127523 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u127524_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. #u127524 {
  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. #u127524 .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. #u127524_text {
  307. border-width:0px;
  308. white-space:nowrap;
  309. text-transform:none;
  310. }
  311. #u127525_img {
  312. border-width:0px;
  313. position:absolute;
  314. left:0px;
  315. top:0px;
  316. width:14px;
  317. height:14px;
  318. }
  319. #u127525 {
  320. border-width:0px;
  321. position:absolute;
  322. left:20px;
  323. top:75px;
  324. width:14px;
  325. height:14px;
  326. display:flex;
  327. }
  328. #u127525 .text {
  329. position:absolute;
  330. align-self:center;
  331. padding:2px 2px 2px 2px;
  332. box-sizing:border-box;
  333. width:100%;
  334. }
  335. #u127525_text {
  336. border-width:0px;
  337. word-wrap:break-word;
  338. text-transform:none;
  339. visibility:hidden;
  340. }
  341. #u127526 {
  342. border-width:0px;
  343. position:absolute;
  344. left:0px;
  345. top:0px;
  346. width:0px;
  347. height:0px;
  348. }
  349. #u127527_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. #u127527 {
  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. #u127527 .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. #u127527_text {
  391. border-width:0px;
  392. white-space:nowrap;
  393. text-transform:none;
  394. }
  395. #u127528_img {
  396. border-width:0px;
  397. position:absolute;
  398. left:0px;
  399. top:0px;
  400. width:14px;
  401. height:14px;
  402. }
  403. #u127528 {
  404. border-width:0px;
  405. position:absolute;
  406. left:20px;
  407. top:151px;
  408. width:14px;
  409. height:14px;
  410. display:flex;
  411. }
  412. #u127528 .text {
  413. position:absolute;
  414. align-self:center;
  415. padding:2px 2px 2px 2px;
  416. box-sizing:border-box;
  417. width:100%;
  418. }
  419. #u127528_text {
  420. border-width:0px;
  421. word-wrap:break-word;
  422. text-transform:none;
  423. visibility:hidden;
  424. }
  425. #u127529 {
  426. border-width:0px;
  427. position:absolute;
  428. left:0px;
  429. top:0px;
  430. width:0px;
  431. height:0px;
  432. }
  433. #u127530_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. #u127530 {
  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. #u127530 .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. #u127530_text {
  475. border-width:0px;
  476. white-space:nowrap;
  477. text-transform:none;
  478. }
  479. #u127531_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:14px;
  485. height:14px;
  486. }
  487. #u127531 {
  488. border-width:0px;
  489. position:absolute;
  490. left:20px;
  491. top:403px;
  492. width:14px;
  493. height:14px;
  494. display:flex;
  495. }
  496. #u127531 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u127531_text {
  504. border-width:0px;
  505. word-wrap:break-word;
  506. text-transform:none;
  507. visibility:hidden;
  508. }
  509. #u127532 {
  510. border-width:0px;
  511. position:absolute;
  512. left:0px;
  513. top:0px;
  514. width:0px;
  515. height:0px;
  516. }
  517. #u127533_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. #u127533 {
  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. #u127533 .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. #u127533_text {
  559. border-width:0px;
  560. white-space:nowrap;
  561. text-transform:none;
  562. }
  563. #u127534_img {
  564. border-width:0px;
  565. position:absolute;
  566. left:0px;
  567. top:0px;
  568. width:14px;
  569. height:14px;
  570. }
  571. #u127534 {
  572. border-width:0px;
  573. position:absolute;
  574. left:20px;
  575. top:113px;
  576. width:14px;
  577. height:14px;
  578. display:flex;
  579. }
  580. #u127534 .text {
  581. position:absolute;
  582. align-self:center;
  583. padding:2px 2px 2px 2px;
  584. box-sizing:border-box;
  585. width:100%;
  586. }
  587. #u127534_text {
  588. border-width:0px;
  589. word-wrap:break-word;
  590. text-transform:none;
  591. visibility:hidden;
  592. }
  593. #u127535 {
  594. border-width:0px;
  595. position:absolute;
  596. left:0px;
  597. top:0px;
  598. width:0px;
  599. height:0px;
  600. }
  601. #u127536_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. #u127536 {
  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. #u127536 .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. #u127536_text {
  643. border-width:0px;
  644. white-space:nowrap;
  645. text-transform:none;
  646. }
  647. #u127537_img {
  648. border-width:0px;
  649. position:absolute;
  650. left:0px;
  651. top:0px;
  652. width:14px;
  653. height:14px;
  654. }
  655. #u127537 {
  656. border-width:0px;
  657. position:absolute;
  658. left:20px;
  659. top:445px;
  660. width:14px;
  661. height:14px;
  662. display:flex;
  663. }
  664. #u127537 .text {
  665. position:absolute;
  666. align-self:center;
  667. padding:2px 2px 2px 2px;
  668. box-sizing:border-box;
  669. width:100%;
  670. }
  671. #u127537_text {
  672. border-width:0px;
  673. word-wrap:break-word;
  674. text-transform:none;
  675. visibility:hidden;
  676. }
  677. #u127538 {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:0px;
  683. height:0px;
  684. }
  685. #u127539_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. #u127539 {
  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. #u127539 .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. #u127539_text {
  727. border-width:0px;
  728. white-space:nowrap;
  729. text-transform:none;
  730. }
  731. #u127540_img {
  732. border-width:0px;
  733. position:absolute;
  734. left:0px;
  735. top:0px;
  736. width:14px;
  737. height:14px;
  738. }
  739. #u127540 {
  740. border-width:0px;
  741. position:absolute;
  742. left:20px;
  743. top:319px;
  744. width:14px;
  745. height:14px;
  746. display:flex;
  747. }
  748. #u127540 .text {
  749. position:absolute;
  750. align-self:center;
  751. padding:2px 2px 2px 2px;
  752. box-sizing:border-box;
  753. width:100%;
  754. }
  755. #u127540_text {
  756. border-width:0px;
  757. word-wrap:break-word;
  758. text-transform:none;
  759. visibility:hidden;
  760. }
  761. #u127541 {
  762. border-width:0px;
  763. position:absolute;
  764. left:0px;
  765. top:0px;
  766. width:0px;
  767. height:0px;
  768. }
  769. #u127542_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. #u127542 {
  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. #u127542 .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. #u127542_text {
  811. border-width:0px;
  812. white-space:nowrap;
  813. text-transform:none;
  814. }
  815. #u127543_img {
  816. border-width:0px;
  817. position:absolute;
  818. left:0px;
  819. top:0px;
  820. width:14px;
  821. height:14px;
  822. }
  823. #u127543 {
  824. border-width:0px;
  825. position:absolute;
  826. left:20px;
  827. top:193px;
  828. width:14px;
  829. height:14px;
  830. display:flex;
  831. }
  832. #u127543 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 2px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u127543_text {
  840. border-width:0px;
  841. word-wrap:break-word;
  842. text-transform:none;
  843. visibility:hidden;
  844. }
  845. #u127544 {
  846. border-width:0px;
  847. position:absolute;
  848. left:0px;
  849. top:0px;
  850. width:0px;
  851. height:0px;
  852. }
  853. #u127545_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. #u127545 {
  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. #u127545 .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. #u127545_text {
  895. border-width:0px;
  896. white-space:nowrap;
  897. text-transform:none;
  898. }
  899. #u127546_img {
  900. border-width:0px;
  901. position:absolute;
  902. left:0px;
  903. top:0px;
  904. width:14px;
  905. height:14px;
  906. }
  907. #u127546 {
  908. border-width:0px;
  909. position:absolute;
  910. left:20px;
  911. top:361px;
  912. width:14px;
  913. height:14px;
  914. display:flex;
  915. }
  916. #u127546 .text {
  917. position:absolute;
  918. align-self:center;
  919. padding:2px 2px 2px 2px;
  920. box-sizing:border-box;
  921. width:100%;
  922. }
  923. #u127546_text {
  924. border-width:0px;
  925. word-wrap:break-word;
  926. text-transform:none;
  927. visibility:hidden;
  928. }
  929. #u127547 {
  930. border-width:0px;
  931. position:absolute;
  932. left:0px;
  933. top:0px;
  934. width:0px;
  935. height:0px;
  936. }
  937. #u127548_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. #u127548 {
  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. #u127548 .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. #u127548_text {
  979. border-width:0px;
  980. white-space:nowrap;
  981. text-transform:none;
  982. }
  983. #u127549_img {
  984. border-width:0px;
  985. position:absolute;
  986. left:0px;
  987. top:0px;
  988. width:14px;
  989. height:14px;
  990. }
  991. #u127549 {
  992. border-width:0px;
  993. position:absolute;
  994. left:20px;
  995. top:487px;
  996. width:14px;
  997. height:14px;
  998. display:flex;
  999. }
  1000. #u127549 .text {
  1001. position:absolute;
  1002. align-self:center;
  1003. padding:2px 2px 2px 2px;
  1004. box-sizing:border-box;
  1005. width:100%;
  1006. }
  1007. #u127549_text {
  1008. border-width:0px;
  1009. word-wrap:break-word;
  1010. text-transform:none;
  1011. visibility:hidden;
  1012. }
  1013. #u127550_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. #u127550 {
  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. #u127550 .text {
  1046. position:absolute;
  1047. align-self:center;
  1048. padding:0px 0px 0px 0px;
  1049. box-sizing:border-box;
  1050. width:100%;
  1051. }
  1052. #u127550_text {
  1053. border-width:0px;
  1054. white-space:nowrap;
  1055. text-transform:none;
  1056. }
  1057. #u127551_img {
  1058. border-width:0px;
  1059. position:absolute;
  1060. left:0px;
  1061. top:0px;
  1062. width:22px;
  1063. height:22px;
  1064. }
  1065. #u127551 {
  1066. border-width:0px;
  1067. position:absolute;
  1068. left:20px;
  1069. top:1144px;
  1070. width:22px;
  1071. height:22px;
  1072. display:flex;
  1073. }
  1074. #u127551 .text {
  1075. position:absolute;
  1076. align-self:center;
  1077. padding:2px 2px 2px 2px;
  1078. box-sizing:border-box;
  1079. width:100%;
  1080. }
  1081. #u127551_text {
  1082. border-width:0px;
  1083. word-wrap:break-word;
  1084. text-transform:none;
  1085. visibility:hidden;
  1086. }
  1087. #u127552_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. #u127552 {
  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. #u127552 .text {
  1120. position:absolute;
  1121. align-self:center;
  1122. padding:0px 0px 0px 0px;
  1123. box-sizing:border-box;
  1124. width:100%;
  1125. }
  1126. #u127552_text {
  1127. border-width:0px;
  1128. white-space:nowrap;
  1129. text-transform:none;
  1130. }
  1131. #u127553_img {
  1132. border-width:0px;
  1133. position:absolute;
  1134. left:0px;
  1135. top:0px;
  1136. width:22px;
  1137. height:22px;
  1138. }
  1139. #u127553 {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:20px;
  1143. top:1186px;
  1144. width:22px;
  1145. height:22px;
  1146. display:flex;
  1147. }
  1148. #u127553 .text {
  1149. position:absolute;
  1150. align-self:center;
  1151. padding:2px 2px 2px 2px;
  1152. box-sizing:border-box;
  1153. width:100%;
  1154. }
  1155. #u127553_text {
  1156. border-width:0px;
  1157. word-wrap:break-word;
  1158. text-transform:none;
  1159. visibility:hidden;
  1160. }
  1161. #u127554 {
  1162. border-width:0px;
  1163. position:absolute;
  1164. left:0px;
  1165. top:0px;
  1166. width:0px;
  1167. height:0px;
  1168. }
  1169. #u127555_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. #u127555 {
  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. #u127555 .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. #u127555_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u127556_img {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:14px;
  1221. height:14px;
  1222. }
  1223. #u127556 {
  1224. border-width:0px;
  1225. position:absolute;
  1226. left:20px;
  1227. top:235px;
  1228. width:14px;
  1229. height:14px;
  1230. display:flex;
  1231. }
  1232. #u127556 .text {
  1233. position:absolute;
  1234. align-self:center;
  1235. padding:2px 2px 2px 2px;
  1236. box-sizing:border-box;
  1237. width:100%;
  1238. }
  1239. #u127556_text {
  1240. border-width:0px;
  1241. word-wrap:break-word;
  1242. text-transform:none;
  1243. visibility:hidden;
  1244. }
  1245. #u127557 {
  1246. border-width:0px;
  1247. position:absolute;
  1248. left:0px;
  1249. top:0px;
  1250. width:0px;
  1251. height:0px;
  1252. }
  1253. #u127558_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. #u127558 {
  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. #u127558 .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. #u127558_text {
  1295. border-width:0px;
  1296. white-space:nowrap;
  1297. text-transform:none;
  1298. }
  1299. #u127559_img {
  1300. border-width:0px;
  1301. position:absolute;
  1302. left:0px;
  1303. top:0px;
  1304. width:14px;
  1305. height:14px;
  1306. }
  1307. #u127559 {
  1308. border-width:0px;
  1309. position:absolute;
  1310. left:20px;
  1311. top:277px;
  1312. width:14px;
  1313. height:14px;
  1314. display:flex;
  1315. }
  1316. #u127559 .text {
  1317. position:absolute;
  1318. align-self:center;
  1319. padding:2px 2px 2px 2px;
  1320. box-sizing:border-box;
  1321. width:100%;
  1322. }
  1323. #u127559_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u127560 {
  1330. border-width:0px;
  1331. position:absolute;
  1332. left:0px;
  1333. top:0px;
  1334. width:0px;
  1335. height:0px;
  1336. }
  1337. #u127561_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. #u127561_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. #u127561_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. #u127561 {
  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. #u127561 .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. #u127561_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. #u127561.disabled {
  1428. }
  1429. .u127561_input_option {
  1430. font-size:14px;
  1431. }
  1432. #u127562_img {
  1433. border-width:0px;
  1434. position:absolute;
  1435. left:0px;
  1436. top:0px;
  1437. width:22px;
  1438. height:22px;
  1439. }
  1440. #u127562 {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:1194px;
  1444. top:14px;
  1445. width:22px;
  1446. height:22px;
  1447. display:flex;
  1448. }
  1449. #u127562 .text {
  1450. position:absolute;
  1451. align-self:center;
  1452. padding:2px 2px 2px 2px;
  1453. box-sizing:border-box;
  1454. width:100%;
  1455. }
  1456. #u127562_text {
  1457. border-width:0px;
  1458. word-wrap:break-word;
  1459. text-transform:none;
  1460. visibility:hidden;
  1461. }
  1462. #u127563_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. #u127563 {
  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. #u127563 .text {
  1497. position:absolute;
  1498. align-self:center;
  1499. padding:0px 0px 0px 0px;
  1500. box-sizing:border-box;
  1501. width:100%;
  1502. }
  1503. #u127563_text {
  1504. border-width:0px;
  1505. word-wrap:break-word;
  1506. text-transform:none;
  1507. }
  1508. #u127564_img {
  1509. border-width:0px;
  1510. position:absolute;
  1511. left:0px;
  1512. top:0px;
  1513. width:2px;
  1514. height:12px;
  1515. }
  1516. #u127564 {
  1517. border-width:0px;
  1518. position:absolute;
  1519. left:1452px;
  1520. top:19px;
  1521. width:1px;
  1522. height:11px;
  1523. display:flex;
  1524. }
  1525. #u127564 .text {
  1526. position:absolute;
  1527. align-self:center;
  1528. padding:2px 2px 2px 2px;
  1529. box-sizing:border-box;
  1530. width:100%;
  1531. }
  1532. #u127564_text {
  1533. border-width:0px;
  1534. word-wrap:break-word;
  1535. text-transform:none;
  1536. visibility:hidden;
  1537. }
  1538. #u127565_div {
  1539. border-width:0px;
  1540. position:absolute;
  1541. left:0px;
  1542. top:0px;
  1543. width:1260px;
  1544. height:1180px;
  1545. background:inherit;
  1546. background-color:rgba(255, 255, 255, 1);
  1547. border:none;
  1548. border-radius:0px;
  1549. -moz-box-shadow:none;
  1550. -webkit-box-shadow:none;
  1551. box-shadow:none;
  1552. }
  1553. #u127565 {
  1554. border-width:0px;
  1555. position:absolute;
  1556. left:330px;
  1557. top:50px;
  1558. width:1260px;
  1559. height:1180px;
  1560. display:flex;
  1561. }
  1562. #u127565 .text {
  1563. position:absolute;
  1564. align-self:center;
  1565. padding:2px 2px 2px 2px;
  1566. box-sizing:border-box;
  1567. width:100%;
  1568. }
  1569. #u127565_text {
  1570. border-width:0px;
  1571. word-wrap:break-word;
  1572. text-transform:none;
  1573. visibility:hidden;
  1574. }
  1575. #u127566_div {
  1576. border-width:0px;
  1577. position:absolute;
  1578. left:0px;
  1579. top:0px;
  1580. width:109px;
  1581. height:50px;
  1582. background:inherit;
  1583. background-color:rgba(224, 231, 247, 0);
  1584. border:none;
  1585. border-radius:0px;
  1586. -moz-box-shadow:none;
  1587. -webkit-box-shadow:none;
  1588. box-shadow:none;
  1589. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1590. font-weight:500;
  1591. font-style:normal;
  1592. font-size:18px;
  1593. }
  1594. #u127566 {
  1595. border-width:0px;
  1596. position:absolute;
  1597. left:350px;
  1598. top:50px;
  1599. width:109px;
  1600. height:50px;
  1601. display:flex;
  1602. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1603. font-weight:500;
  1604. font-style:normal;
  1605. font-size:18px;
  1606. }
  1607. #u127566 .text {
  1608. position:absolute;
  1609. align-self:center;
  1610. padding:0px 0px 0px 0px;
  1611. box-sizing:border-box;
  1612. width:100%;
  1613. }
  1614. #u127566_text {
  1615. border-width:0px;
  1616. white-space:nowrap;
  1617. text-transform:none;
  1618. }
  1619. #u127567 {
  1620. border-width:0px;
  1621. position:absolute;
  1622. left:351px;
  1623. top:226px;
  1624. width:1218px;
  1625. height:220px;
  1626. }
  1627. #u127568_img {
  1628. border-width:0px;
  1629. position:absolute;
  1630. left:0px;
  1631. top:0px;
  1632. width:56px;
  1633. height:38px;
  1634. }
  1635. #u127568 {
  1636. border-width:0px;
  1637. position:absolute;
  1638. left:0px;
  1639. top:0px;
  1640. width:56px;
  1641. height:38px;
  1642. display:flex;
  1643. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1644. font-weight:400;
  1645. font-style:normal;
  1646. font-size:12px;
  1647. color:#FFFFFF;
  1648. }
  1649. #u127568 .text {
  1650. position:absolute;
  1651. align-self:center;
  1652. padding:2px 2px 2px 0px;
  1653. box-sizing:border-box;
  1654. width:100%;
  1655. }
  1656. #u127568_text {
  1657. border-width:0px;
  1658. word-wrap:break-word;
  1659. text-transform:none;
  1660. }
  1661. #u127569_img {
  1662. border-width:0px;
  1663. position:absolute;
  1664. left:0px;
  1665. top:0px;
  1666. width:168px;
  1667. height:38px;
  1668. }
  1669. #u127569 {
  1670. border-width:0px;
  1671. position:absolute;
  1672. left:56px;
  1673. top:0px;
  1674. width:168px;
  1675. height:38px;
  1676. display:flex;
  1677. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1678. font-weight:400;
  1679. font-style:normal;
  1680. font-size:12px;
  1681. color:#FFFFFF;
  1682. }
  1683. #u127569 .text {
  1684. position:absolute;
  1685. align-self:center;
  1686. padding:2px 2px 2px 0px;
  1687. box-sizing:border-box;
  1688. width:100%;
  1689. }
  1690. #u127569_text {
  1691. border-width:0px;
  1692. word-wrap:break-word;
  1693. text-transform:none;
  1694. }
  1695. #u127570_img {
  1696. border-width:0px;
  1697. position:absolute;
  1698. left:0px;
  1699. top:0px;
  1700. width:168px;
  1701. height:38px;
  1702. }
  1703. #u127570 {
  1704. border-width:0px;
  1705. position:absolute;
  1706. left:224px;
  1707. top:0px;
  1708. width:168px;
  1709. height:38px;
  1710. display:flex;
  1711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1712. font-weight:400;
  1713. font-style:normal;
  1714. font-size:12px;
  1715. color:#FFFFFF;
  1716. }
  1717. #u127570 .text {
  1718. position:absolute;
  1719. align-self:center;
  1720. padding:2px 2px 2px 0px;
  1721. box-sizing:border-box;
  1722. width:100%;
  1723. }
  1724. #u127570_text {
  1725. border-width:0px;
  1726. word-wrap:break-word;
  1727. text-transform:none;
  1728. }
  1729. #u127571_img {
  1730. border-width:0px;
  1731. position:absolute;
  1732. left:0px;
  1733. top:0px;
  1734. width:168px;
  1735. height:38px;
  1736. }
  1737. #u127571 {
  1738. border-width:0px;
  1739. position:absolute;
  1740. left:392px;
  1741. top:0px;
  1742. width:168px;
  1743. height:38px;
  1744. display:flex;
  1745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1746. font-weight:400;
  1747. font-style:normal;
  1748. font-size:12px;
  1749. color:#FFFFFF;
  1750. }
  1751. #u127571 .text {
  1752. position:absolute;
  1753. align-self:center;
  1754. padding:2px 2px 2px 0px;
  1755. box-sizing:border-box;
  1756. width:100%;
  1757. }
  1758. #u127571_text {
  1759. border-width:0px;
  1760. word-wrap:break-word;
  1761. text-transform:none;
  1762. }
  1763. #u127572_img {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:168px;
  1769. height:38px;
  1770. }
  1771. #u127572 {
  1772. border-width:0px;
  1773. position:absolute;
  1774. left:560px;
  1775. top:0px;
  1776. width:168px;
  1777. height:38px;
  1778. display:flex;
  1779. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:12px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u127572 .text {
  1786. position:absolute;
  1787. align-self:center;
  1788. padding:2px 2px 2px 0px;
  1789. box-sizing:border-box;
  1790. width:100%;
  1791. }
  1792. #u127572_text {
  1793. border-width:0px;
  1794. word-wrap:break-word;
  1795. text-transform:none;
  1796. }
  1797. #u127573_img {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:152px;
  1803. height:38px;
  1804. }
  1805. #u127573 {
  1806. border-width:0px;
  1807. position:absolute;
  1808. left:728px;
  1809. top:0px;
  1810. width:152px;
  1811. height:38px;
  1812. display:flex;
  1813. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1814. font-weight:400;
  1815. font-style:normal;
  1816. font-size:12px;
  1817. color:#FFFFFF;
  1818. }
  1819. #u127573 .text {
  1820. position:absolute;
  1821. align-self:center;
  1822. padding:2px 2px 2px 0px;
  1823. box-sizing:border-box;
  1824. width:100%;
  1825. }
  1826. #u127573_text {
  1827. border-width:0px;
  1828. word-wrap:break-word;
  1829. text-transform:none;
  1830. }
  1831. #u127574_img {
  1832. border-width:0px;
  1833. position:absolute;
  1834. left:0px;
  1835. top:0px;
  1836. width:168px;
  1837. height:38px;
  1838. }
  1839. #u127574 {
  1840. border-width:0px;
  1841. position:absolute;
  1842. left:880px;
  1843. top:0px;
  1844. width:168px;
  1845. height:38px;
  1846. display:flex;
  1847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1848. font-weight:400;
  1849. font-style:normal;
  1850. font-size:12px;
  1851. color:#FFFFFF;
  1852. }
  1853. #u127574 .text {
  1854. position:absolute;
  1855. align-self:center;
  1856. padding:2px 2px 2px 0px;
  1857. box-sizing:border-box;
  1858. width:100%;
  1859. }
  1860. #u127574_text {
  1861. border-width:0px;
  1862. word-wrap:break-word;
  1863. text-transform:none;
  1864. }
  1865. #u127575_img {
  1866. border-width:0px;
  1867. position:absolute;
  1868. left:0px;
  1869. top:0px;
  1870. width:170px;
  1871. height:38px;
  1872. }
  1873. #u127575 {
  1874. border-width:0px;
  1875. position:absolute;
  1876. left:1048px;
  1877. top:0px;
  1878. width:170px;
  1879. height:38px;
  1880. display:flex;
  1881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1882. font-weight:400;
  1883. font-style:normal;
  1884. font-size:12px;
  1885. color:#FFFFFF;
  1886. }
  1887. #u127575 .text {
  1888. position:absolute;
  1889. align-self:center;
  1890. padding:2px 2px 2px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u127575_text {
  1895. border-width:0px;
  1896. word-wrap:break-word;
  1897. text-transform:none;
  1898. }
  1899. #u127576_img {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:56px;
  1905. height:39px;
  1906. }
  1907. #u127576 {
  1908. border-width:0px;
  1909. position:absolute;
  1910. left:0px;
  1911. top:38px;
  1912. width:56px;
  1913. height:39px;
  1914. display:flex;
  1915. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. }
  1920. #u127576 .text {
  1921. position:absolute;
  1922. align-self:center;
  1923. padding:2px 2px 2px 0px;
  1924. box-sizing:border-box;
  1925. width:100%;
  1926. }
  1927. #u127576_text {
  1928. border-width:0px;
  1929. word-wrap:break-word;
  1930. text-transform:none;
  1931. }
  1932. #u127577_img {
  1933. border-width:0px;
  1934. position:absolute;
  1935. left:0px;
  1936. top:0px;
  1937. width:168px;
  1938. height:39px;
  1939. }
  1940. #u127577 {
  1941. border-width:0px;
  1942. position:absolute;
  1943. left:56px;
  1944. top:38px;
  1945. width:168px;
  1946. height:39px;
  1947. display:flex;
  1948. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1949. font-weight:400;
  1950. font-style:normal;
  1951. font-size:12px;
  1952. color:#AAAAAA;
  1953. }
  1954. #u127577 .text {
  1955. position:absolute;
  1956. align-self:center;
  1957. padding:2px 2px 2px 0px;
  1958. box-sizing:border-box;
  1959. width:100%;
  1960. }
  1961. #u127577_text {
  1962. border-width:0px;
  1963. word-wrap:break-word;
  1964. text-transform:none;
  1965. visibility:hidden;
  1966. }
  1967. #u127578_img {
  1968. border-width:0px;
  1969. position:absolute;
  1970. left:0px;
  1971. top:0px;
  1972. width:168px;
  1973. height:39px;
  1974. }
  1975. #u127578 {
  1976. border-width:0px;
  1977. position:absolute;
  1978. left:224px;
  1979. top:38px;
  1980. width:168px;
  1981. height:39px;
  1982. display:flex;
  1983. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1984. font-weight:400;
  1985. font-style:normal;
  1986. font-size:12px;
  1987. color:#AAAAAA;
  1988. }
  1989. #u127578 .text {
  1990. position:absolute;
  1991. align-self:center;
  1992. padding:2px 2px 2px 0px;
  1993. box-sizing:border-box;
  1994. width:100%;
  1995. }
  1996. #u127578_text {
  1997. border-width:0px;
  1998. word-wrap:break-word;
  1999. text-transform:none;
  2000. visibility:hidden;
  2001. }
  2002. #u127579_img {
  2003. border-width:0px;
  2004. position:absolute;
  2005. left:0px;
  2006. top:0px;
  2007. width:168px;
  2008. height:39px;
  2009. }
  2010. #u127579 {
  2011. border-width:0px;
  2012. position:absolute;
  2013. left:392px;
  2014. top:38px;
  2015. width:168px;
  2016. height:39px;
  2017. display:flex;
  2018. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2019. font-weight:400;
  2020. font-style:normal;
  2021. font-size:12px;
  2022. color:#333333;
  2023. }
  2024. #u127579 .text {
  2025. position:absolute;
  2026. align-self:center;
  2027. padding:2px 2px 2px 0px;
  2028. box-sizing:border-box;
  2029. width:100%;
  2030. }
  2031. #u127579_text {
  2032. border-width:0px;
  2033. word-wrap:break-word;
  2034. text-transform:none;
  2035. }
  2036. #u127580_img {
  2037. border-width:0px;
  2038. position:absolute;
  2039. left:0px;
  2040. top:0px;
  2041. width:168px;
  2042. height:39px;
  2043. }
  2044. #u127580 {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:560px;
  2048. top:38px;
  2049. width:168px;
  2050. height:39px;
  2051. display:flex;
  2052. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2053. font-weight:400;
  2054. font-style:normal;
  2055. font-size:12px;
  2056. }
  2057. #u127580 .text {
  2058. position:absolute;
  2059. align-self:center;
  2060. padding:2px 2px 2px 0px;
  2061. box-sizing:border-box;
  2062. width:100%;
  2063. }
  2064. #u127580_text {
  2065. border-width:0px;
  2066. word-wrap:break-word;
  2067. text-transform:none;
  2068. }
  2069. #u127581_img {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:152px;
  2075. height:39px;
  2076. }
  2077. #u127581 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:728px;
  2081. top:38px;
  2082. width:152px;
  2083. height:39px;
  2084. display:flex;
  2085. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2086. font-weight:400;
  2087. font-style:normal;
  2088. font-size:12px;
  2089. }
  2090. #u127581 .text {
  2091. position:absolute;
  2092. align-self:center;
  2093. padding:2px 2px 2px 0px;
  2094. box-sizing:border-box;
  2095. width:100%;
  2096. }
  2097. #u127581_text {
  2098. border-width:0px;
  2099. word-wrap:break-word;
  2100. text-transform:none;
  2101. }
  2102. #u127582_img {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:0px;
  2106. top:0px;
  2107. width:168px;
  2108. height:39px;
  2109. }
  2110. #u127582 {
  2111. border-width:0px;
  2112. position:absolute;
  2113. left:880px;
  2114. top:38px;
  2115. width:168px;
  2116. height:39px;
  2117. display:flex;
  2118. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2119. font-weight:400;
  2120. font-style:normal;
  2121. font-size:12px;
  2122. }
  2123. #u127582 .text {
  2124. position:absolute;
  2125. align-self:center;
  2126. padding:2px 2px 2px 0px;
  2127. box-sizing:border-box;
  2128. width:100%;
  2129. }
  2130. #u127582_text {
  2131. border-width:0px;
  2132. word-wrap:break-word;
  2133. text-transform:none;
  2134. }
  2135. #u127583_img {
  2136. border-width:0px;
  2137. position:absolute;
  2138. left:0px;
  2139. top:0px;
  2140. width:170px;
  2141. height:39px;
  2142. }
  2143. #u127583 {
  2144. border-width:0px;
  2145. position:absolute;
  2146. left:1048px;
  2147. top:38px;
  2148. width:170px;
  2149. height:39px;
  2150. display:flex;
  2151. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2152. font-weight:400;
  2153. font-style:normal;
  2154. font-size:12px;
  2155. color:#298FFF;
  2156. }
  2157. #u127583 .text {
  2158. position:absolute;
  2159. align-self:center;
  2160. padding:2px 2px 2px 0px;
  2161. box-sizing:border-box;
  2162. width:100%;
  2163. }
  2164. #u127583_text {
  2165. border-width:0px;
  2166. word-wrap:break-word;
  2167. text-transform:none;
  2168. }
  2169. #u127584_img {
  2170. border-width:0px;
  2171. position:absolute;
  2172. left:0px;
  2173. top:0px;
  2174. width:56px;
  2175. height:38px;
  2176. }
  2177. #u127584 {
  2178. border-width:0px;
  2179. position:absolute;
  2180. left:0px;
  2181. top:77px;
  2182. width:56px;
  2183. height:38px;
  2184. display:flex;
  2185. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2186. font-weight:400;
  2187. font-style:normal;
  2188. font-size:12px;
  2189. color:#606266;
  2190. }
  2191. #u127584 .text {
  2192. position:absolute;
  2193. align-self:center;
  2194. padding:2px 2px 2px 0px;
  2195. box-sizing:border-box;
  2196. width:100%;
  2197. }
  2198. #u127584_text {
  2199. border-width:0px;
  2200. word-wrap:break-word;
  2201. text-transform:none;
  2202. }
  2203. #u127585_img {
  2204. border-width:0px;
  2205. position:absolute;
  2206. left:0px;
  2207. top:0px;
  2208. width:168px;
  2209. height:38px;
  2210. }
  2211. #u127585 {
  2212. border-width:0px;
  2213. position:absolute;
  2214. left:56px;
  2215. top:77px;
  2216. width:168px;
  2217. height:38px;
  2218. display:flex;
  2219. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2220. font-weight:400;
  2221. font-style:normal;
  2222. font-size:12px;
  2223. color:#606266;
  2224. }
  2225. #u127585 .text {
  2226. position:absolute;
  2227. align-self:center;
  2228. padding:2px 2px 2px 0px;
  2229. box-sizing:border-box;
  2230. width:100%;
  2231. }
  2232. #u127585_text {
  2233. border-width:0px;
  2234. word-wrap:break-word;
  2235. text-transform:none;
  2236. visibility:hidden;
  2237. }
  2238. #u127586_img {
  2239. border-width:0px;
  2240. position:absolute;
  2241. left:0px;
  2242. top:0px;
  2243. width:168px;
  2244. height:38px;
  2245. }
  2246. #u127586 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:224px;
  2250. top:77px;
  2251. width:168px;
  2252. height:38px;
  2253. display:flex;
  2254. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:12px;
  2258. color:#606266;
  2259. }
  2260. #u127586 .text {
  2261. position:absolute;
  2262. align-self:center;
  2263. padding:2px 2px 2px 0px;
  2264. box-sizing:border-box;
  2265. width:100%;
  2266. }
  2267. #u127586_text {
  2268. border-width:0px;
  2269. word-wrap:break-word;
  2270. text-transform:none;
  2271. visibility:hidden;
  2272. }
  2273. #u127587_img {
  2274. border-width:0px;
  2275. position:absolute;
  2276. left:0px;
  2277. top:0px;
  2278. width:168px;
  2279. height:38px;
  2280. }
  2281. #u127587 {
  2282. border-width:0px;
  2283. position:absolute;
  2284. left:392px;
  2285. top:77px;
  2286. width:168px;
  2287. height:38px;
  2288. display:flex;
  2289. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2290. font-weight:400;
  2291. font-style:normal;
  2292. font-size:12px;
  2293. color:#606266;
  2294. }
  2295. #u127587 .text {
  2296. position:absolute;
  2297. align-self:center;
  2298. padding:2px 2px 2px 0px;
  2299. box-sizing:border-box;
  2300. width:100%;
  2301. }
  2302. #u127587_text {
  2303. border-width:0px;
  2304. word-wrap:break-word;
  2305. text-transform:none;
  2306. visibility:hidden;
  2307. }
  2308. #u127588_img {
  2309. border-width:0px;
  2310. position:absolute;
  2311. left:0px;
  2312. top:0px;
  2313. width:168px;
  2314. height:38px;
  2315. }
  2316. #u127588 {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:560px;
  2320. top:77px;
  2321. width:168px;
  2322. height:38px;
  2323. display:flex;
  2324. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2325. font-weight:400;
  2326. font-style:normal;
  2327. font-size:12px;
  2328. color:#606266;
  2329. }
  2330. #u127588 .text {
  2331. position:absolute;
  2332. align-self:center;
  2333. padding:2px 2px 2px 0px;
  2334. box-sizing:border-box;
  2335. width:100%;
  2336. }
  2337. #u127588_text {
  2338. border-width:0px;
  2339. word-wrap:break-word;
  2340. text-transform:none;
  2341. visibility:hidden;
  2342. }
  2343. #u127589_img {
  2344. border-width:0px;
  2345. position:absolute;
  2346. left:0px;
  2347. top:0px;
  2348. width:152px;
  2349. height:38px;
  2350. }
  2351. #u127589 {
  2352. border-width:0px;
  2353. position:absolute;
  2354. left:728px;
  2355. top:77px;
  2356. width:152px;
  2357. height:38px;
  2358. display:flex;
  2359. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2360. font-weight:400;
  2361. font-style:normal;
  2362. font-size:12px;
  2363. color:#606266;
  2364. }
  2365. #u127589 .text {
  2366. position:absolute;
  2367. align-self:center;
  2368. padding:2px 2px 2px 0px;
  2369. box-sizing:border-box;
  2370. width:100%;
  2371. }
  2372. #u127589_text {
  2373. border-width:0px;
  2374. word-wrap:break-word;
  2375. text-transform:none;
  2376. visibility:hidden;
  2377. }
  2378. #u127590_img {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:0px;
  2382. top:0px;
  2383. width:168px;
  2384. height:38px;
  2385. }
  2386. #u127590 {
  2387. border-width:0px;
  2388. position:absolute;
  2389. left:880px;
  2390. top:77px;
  2391. width:168px;
  2392. height:38px;
  2393. display:flex;
  2394. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2395. font-weight:400;
  2396. font-style:normal;
  2397. font-size:12px;
  2398. color:#606266;
  2399. }
  2400. #u127590 .text {
  2401. position:absolute;
  2402. align-self:center;
  2403. padding:2px 2px 2px 0px;
  2404. box-sizing:border-box;
  2405. width:100%;
  2406. }
  2407. #u127590_text {
  2408. border-width:0px;
  2409. word-wrap:break-word;
  2410. text-transform:none;
  2411. visibility:hidden;
  2412. }
  2413. #u127591_img {
  2414. border-width:0px;
  2415. position:absolute;
  2416. left:0px;
  2417. top:0px;
  2418. width:170px;
  2419. height:38px;
  2420. }
  2421. #u127591 {
  2422. border-width:0px;
  2423. position:absolute;
  2424. left:1048px;
  2425. top:77px;
  2426. width:170px;
  2427. height:38px;
  2428. display:flex;
  2429. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2430. font-weight:400;
  2431. font-style:normal;
  2432. font-size:12px;
  2433. color:#298FFF;
  2434. }
  2435. #u127591 .text {
  2436. position:absolute;
  2437. align-self:center;
  2438. padding:2px 2px 2px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u127591_text {
  2443. border-width:0px;
  2444. word-wrap:break-word;
  2445. text-transform:none;
  2446. visibility:hidden;
  2447. }
  2448. #u127592_img {
  2449. border-width:0px;
  2450. position:absolute;
  2451. left:0px;
  2452. top:0px;
  2453. width:56px;
  2454. height:35px;
  2455. }
  2456. #u127592 {
  2457. border-width:0px;
  2458. position:absolute;
  2459. left:0px;
  2460. top:115px;
  2461. width:56px;
  2462. height:35px;
  2463. display:flex;
  2464. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2465. font-weight:400;
  2466. font-style:normal;
  2467. font-size:12px;
  2468. color:#606266;
  2469. }
  2470. #u127592 .text {
  2471. position:absolute;
  2472. align-self:center;
  2473. padding:2px 2px 2px 0px;
  2474. box-sizing:border-box;
  2475. width:100%;
  2476. }
  2477. #u127592_text {
  2478. border-width:0px;
  2479. word-wrap:break-word;
  2480. text-transform:none;
  2481. }
  2482. #u127593_img {
  2483. border-width:0px;
  2484. position:absolute;
  2485. left:0px;
  2486. top:0px;
  2487. width:168px;
  2488. height:35px;
  2489. }
  2490. #u127593 {
  2491. border-width:0px;
  2492. position:absolute;
  2493. left:56px;
  2494. top:115px;
  2495. width:168px;
  2496. height:35px;
  2497. display:flex;
  2498. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2499. font-weight:400;
  2500. font-style:normal;
  2501. font-size:12px;
  2502. color:#606266;
  2503. }
  2504. #u127593 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 0px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u127593_text {
  2512. border-width:0px;
  2513. word-wrap:break-word;
  2514. text-transform:none;
  2515. visibility:hidden;
  2516. }
  2517. #u127594_img {
  2518. border-width:0px;
  2519. position:absolute;
  2520. left:0px;
  2521. top:0px;
  2522. width:168px;
  2523. height:35px;
  2524. }
  2525. #u127594 {
  2526. border-width:0px;
  2527. position:absolute;
  2528. left:224px;
  2529. top:115px;
  2530. width:168px;
  2531. height:35px;
  2532. display:flex;
  2533. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2534. font-weight:400;
  2535. font-style:normal;
  2536. font-size:12px;
  2537. color:#606266;
  2538. }
  2539. #u127594 .text {
  2540. position:absolute;
  2541. align-self:center;
  2542. padding:2px 2px 2px 0px;
  2543. box-sizing:border-box;
  2544. width:100%;
  2545. }
  2546. #u127594_text {
  2547. border-width:0px;
  2548. word-wrap:break-word;
  2549. text-transform:none;
  2550. visibility:hidden;
  2551. }
  2552. #u127595_img {
  2553. border-width:0px;
  2554. position:absolute;
  2555. left:0px;
  2556. top:0px;
  2557. width:168px;
  2558. height:35px;
  2559. }
  2560. #u127595 {
  2561. border-width:0px;
  2562. position:absolute;
  2563. left:392px;
  2564. top:115px;
  2565. width:168px;
  2566. height:35px;
  2567. display:flex;
  2568. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2569. font-weight:400;
  2570. font-style:normal;
  2571. font-size:12px;
  2572. color:#606266;
  2573. }
  2574. #u127595 .text {
  2575. position:absolute;
  2576. align-self:center;
  2577. padding:2px 2px 2px 0px;
  2578. box-sizing:border-box;
  2579. width:100%;
  2580. }
  2581. #u127595_text {
  2582. border-width:0px;
  2583. word-wrap:break-word;
  2584. text-transform:none;
  2585. visibility:hidden;
  2586. }
  2587. #u127596_img {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:0px;
  2591. top:0px;
  2592. width:168px;
  2593. height:35px;
  2594. }
  2595. #u127596 {
  2596. border-width:0px;
  2597. position:absolute;
  2598. left:560px;
  2599. top:115px;
  2600. width:168px;
  2601. height:35px;
  2602. display:flex;
  2603. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2604. font-weight:400;
  2605. font-style:normal;
  2606. font-size:12px;
  2607. color:#606266;
  2608. }
  2609. #u127596 .text {
  2610. position:absolute;
  2611. align-self:center;
  2612. padding:2px 2px 2px 0px;
  2613. box-sizing:border-box;
  2614. width:100%;
  2615. }
  2616. #u127596_text {
  2617. border-width:0px;
  2618. word-wrap:break-word;
  2619. text-transform:none;
  2620. visibility:hidden;
  2621. }
  2622. #u127597_img {
  2623. border-width:0px;
  2624. position:absolute;
  2625. left:0px;
  2626. top:0px;
  2627. width:152px;
  2628. height:35px;
  2629. }
  2630. #u127597 {
  2631. border-width:0px;
  2632. position:absolute;
  2633. left:728px;
  2634. top:115px;
  2635. width:152px;
  2636. height:35px;
  2637. display:flex;
  2638. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2639. font-weight:400;
  2640. font-style:normal;
  2641. font-size:12px;
  2642. color:#606266;
  2643. }
  2644. #u127597 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 0px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u127597_text {
  2652. border-width:0px;
  2653. word-wrap:break-word;
  2654. text-transform:none;
  2655. visibility:hidden;
  2656. }
  2657. #u127598_img {
  2658. border-width:0px;
  2659. position:absolute;
  2660. left:0px;
  2661. top:0px;
  2662. width:168px;
  2663. height:35px;
  2664. }
  2665. #u127598 {
  2666. border-width:0px;
  2667. position:absolute;
  2668. left:880px;
  2669. top:115px;
  2670. width:168px;
  2671. height:35px;
  2672. display:flex;
  2673. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2674. font-weight:400;
  2675. font-style:normal;
  2676. font-size:12px;
  2677. color:#606266;
  2678. }
  2679. #u127598 .text {
  2680. position:absolute;
  2681. align-self:center;
  2682. padding:2px 2px 2px 0px;
  2683. box-sizing:border-box;
  2684. width:100%;
  2685. }
  2686. #u127598_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u127599_img {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:0px;
  2696. top:0px;
  2697. width:170px;
  2698. height:35px;
  2699. }
  2700. #u127599 {
  2701. border-width:0px;
  2702. position:absolute;
  2703. left:1048px;
  2704. top:115px;
  2705. width:170px;
  2706. height:35px;
  2707. display:flex;
  2708. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2709. font-weight:400;
  2710. font-style:normal;
  2711. font-size:12px;
  2712. color:#02A7F0;
  2713. }
  2714. #u127599 .text {
  2715. position:absolute;
  2716. align-self:center;
  2717. padding:2px 2px 2px 0px;
  2718. box-sizing:border-box;
  2719. width:100%;
  2720. }
  2721. #u127599_text {
  2722. border-width:0px;
  2723. word-wrap:break-word;
  2724. text-transform:none;
  2725. visibility:hidden;
  2726. }
  2727. #u127600_img {
  2728. border-width:0px;
  2729. position:absolute;
  2730. left:0px;
  2731. top:0px;
  2732. width:56px;
  2733. height:36px;
  2734. }
  2735. #u127600 {
  2736. border-width:0px;
  2737. position:absolute;
  2738. left:0px;
  2739. top:150px;
  2740. width:56px;
  2741. height:36px;
  2742. display:flex;
  2743. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2744. font-weight:400;
  2745. font-style:normal;
  2746. font-size:12px;
  2747. color:#606266;
  2748. }
  2749. #u127600 .text {
  2750. position:absolute;
  2751. align-self:center;
  2752. padding:2px 2px 2px 0px;
  2753. box-sizing:border-box;
  2754. width:100%;
  2755. }
  2756. #u127600_text {
  2757. border-width:0px;
  2758. word-wrap:break-word;
  2759. text-transform:none;
  2760. }
  2761. #u127601_img {
  2762. border-width:0px;
  2763. position:absolute;
  2764. left:0px;
  2765. top:0px;
  2766. width:168px;
  2767. height:36px;
  2768. }
  2769. #u127601 {
  2770. border-width:0px;
  2771. position:absolute;
  2772. left:56px;
  2773. top:150px;
  2774. width:168px;
  2775. height:36px;
  2776. display:flex;
  2777. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2778. font-weight:400;
  2779. font-style:normal;
  2780. font-size:12px;
  2781. color:#606266;
  2782. }
  2783. #u127601 .text {
  2784. position:absolute;
  2785. align-self:center;
  2786. padding:2px 2px 2px 0px;
  2787. box-sizing:border-box;
  2788. width:100%;
  2789. }
  2790. #u127601_text {
  2791. border-width:0px;
  2792. word-wrap:break-word;
  2793. text-transform:none;
  2794. visibility:hidden;
  2795. }
  2796. #u127602_img {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:0px;
  2800. top:0px;
  2801. width:168px;
  2802. height:36px;
  2803. }
  2804. #u127602 {
  2805. border-width:0px;
  2806. position:absolute;
  2807. left:224px;
  2808. top:150px;
  2809. width:168px;
  2810. height:36px;
  2811. display:flex;
  2812. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2813. font-weight:400;
  2814. font-style:normal;
  2815. font-size:12px;
  2816. color:#606266;
  2817. }
  2818. #u127602 .text {
  2819. position:absolute;
  2820. align-self:center;
  2821. padding:2px 2px 2px 0px;
  2822. box-sizing:border-box;
  2823. width:100%;
  2824. }
  2825. #u127602_text {
  2826. border-width:0px;
  2827. word-wrap:break-word;
  2828. text-transform:none;
  2829. visibility:hidden;
  2830. }
  2831. #u127603_img {
  2832. border-width:0px;
  2833. position:absolute;
  2834. left:0px;
  2835. top:0px;
  2836. width:168px;
  2837. height:36px;
  2838. }
  2839. #u127603 {
  2840. border-width:0px;
  2841. position:absolute;
  2842. left:392px;
  2843. top:150px;
  2844. width:168px;
  2845. height:36px;
  2846. display:flex;
  2847. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2848. font-weight:400;
  2849. font-style:normal;
  2850. font-size:12px;
  2851. color:#606266;
  2852. }
  2853. #u127603 .text {
  2854. position:absolute;
  2855. align-self:center;
  2856. padding:2px 2px 2px 0px;
  2857. box-sizing:border-box;
  2858. width:100%;
  2859. }
  2860. #u127603_text {
  2861. border-width:0px;
  2862. word-wrap:break-word;
  2863. text-transform:none;
  2864. visibility:hidden;
  2865. }
  2866. #u127604_img {
  2867. border-width:0px;
  2868. position:absolute;
  2869. left:0px;
  2870. top:0px;
  2871. width:168px;
  2872. height:36px;
  2873. }
  2874. #u127604 {
  2875. border-width:0px;
  2876. position:absolute;
  2877. left:560px;
  2878. top:150px;
  2879. width:168px;
  2880. height:36px;
  2881. display:flex;
  2882. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2883. font-weight:400;
  2884. font-style:normal;
  2885. font-size:12px;
  2886. color:#606266;
  2887. }
  2888. #u127604 .text {
  2889. position:absolute;
  2890. align-self:center;
  2891. padding:2px 2px 2px 0px;
  2892. box-sizing:border-box;
  2893. width:100%;
  2894. }
  2895. #u127604_text {
  2896. border-width:0px;
  2897. word-wrap:break-word;
  2898. text-transform:none;
  2899. visibility:hidden;
  2900. }
  2901. #u127605_img {
  2902. border-width:0px;
  2903. position:absolute;
  2904. left:0px;
  2905. top:0px;
  2906. width:152px;
  2907. height:36px;
  2908. }
  2909. #u127605 {
  2910. border-width:0px;
  2911. position:absolute;
  2912. left:728px;
  2913. top:150px;
  2914. width:152px;
  2915. height:36px;
  2916. display:flex;
  2917. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. color:#606266;
  2922. }
  2923. #u127605 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 0px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u127605_text {
  2931. border-width:0px;
  2932. word-wrap:break-word;
  2933. text-transform:none;
  2934. visibility:hidden;
  2935. }
  2936. #u127606_img {
  2937. border-width:0px;
  2938. position:absolute;
  2939. left:0px;
  2940. top:0px;
  2941. width:168px;
  2942. height:36px;
  2943. }
  2944. #u127606 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:880px;
  2948. top:150px;
  2949. width:168px;
  2950. height:36px;
  2951. display:flex;
  2952. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  2953. font-weight:400;
  2954. font-style:normal;
  2955. font-size:12px;
  2956. color:#606266;
  2957. }
  2958. #u127606 .text {
  2959. position:absolute;
  2960. align-self:center;
  2961. padding:2px 2px 2px 0px;
  2962. box-sizing:border-box;
  2963. width:100%;
  2964. }
  2965. #u127606_text {
  2966. border-width:0px;
  2967. word-wrap:break-word;
  2968. text-transform:none;
  2969. visibility:hidden;
  2970. }
  2971. #u127607_img {
  2972. border-width:0px;
  2973. position:absolute;
  2974. left:0px;
  2975. top:0px;
  2976. width:170px;
  2977. height:36px;
  2978. }
  2979. #u127607 {
  2980. border-width:0px;
  2981. position:absolute;
  2982. left:1048px;
  2983. top:150px;
  2984. width:170px;
  2985. height:36px;
  2986. display:flex;
  2987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2988. font-weight:400;
  2989. font-style:normal;
  2990. font-size:12px;
  2991. color:#02A7F0;
  2992. }
  2993. #u127607 .text {
  2994. position:absolute;
  2995. align-self:center;
  2996. padding:2px 2px 2px 0px;
  2997. box-sizing:border-box;
  2998. width:100%;
  2999. }
  3000. #u127607_text {
  3001. border-width:0px;
  3002. word-wrap:break-word;
  3003. text-transform:none;
  3004. visibility:hidden;
  3005. }
  3006. #u127608_img {
  3007. border-width:0px;
  3008. position:absolute;
  3009. left:0px;
  3010. top:0px;
  3011. width:56px;
  3012. height:34px;
  3013. }
  3014. #u127608 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:0px;
  3018. top:186px;
  3019. width:56px;
  3020. height:34px;
  3021. display:flex;
  3022. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3023. font-weight:400;
  3024. font-style:normal;
  3025. font-size:12px;
  3026. color:#606266;
  3027. }
  3028. #u127608 .text {
  3029. position:absolute;
  3030. align-self:center;
  3031. padding:2px 2px 2px 0px;
  3032. box-sizing:border-box;
  3033. width:100%;
  3034. }
  3035. #u127608_text {
  3036. border-width:0px;
  3037. word-wrap:break-word;
  3038. text-transform:none;
  3039. visibility:hidden;
  3040. }
  3041. #u127609_img {
  3042. border-width:0px;
  3043. position:absolute;
  3044. left:0px;
  3045. top:0px;
  3046. width:168px;
  3047. height:34px;
  3048. }
  3049. #u127609 {
  3050. border-width:0px;
  3051. position:absolute;
  3052. left:56px;
  3053. top:186px;
  3054. width:168px;
  3055. height:34px;
  3056. display:flex;
  3057. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3058. font-weight:400;
  3059. font-style:normal;
  3060. font-size:12px;
  3061. color:#606266;
  3062. }
  3063. #u127609 .text {
  3064. position:absolute;
  3065. align-self:center;
  3066. padding:2px 2px 2px 0px;
  3067. box-sizing:border-box;
  3068. width:100%;
  3069. }
  3070. #u127609_text {
  3071. border-width:0px;
  3072. word-wrap:break-word;
  3073. text-transform:none;
  3074. visibility:hidden;
  3075. }
  3076. #u127610_img {
  3077. border-width:0px;
  3078. position:absolute;
  3079. left:0px;
  3080. top:0px;
  3081. width:168px;
  3082. height:34px;
  3083. }
  3084. #u127610 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:224px;
  3088. top:186px;
  3089. width:168px;
  3090. height:34px;
  3091. display:flex;
  3092. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3093. font-weight:400;
  3094. font-style:normal;
  3095. font-size:12px;
  3096. color:#606266;
  3097. }
  3098. #u127610 .text {
  3099. position:absolute;
  3100. align-self:center;
  3101. padding:2px 2px 2px 0px;
  3102. box-sizing:border-box;
  3103. width:100%;
  3104. }
  3105. #u127610_text {
  3106. border-width:0px;
  3107. word-wrap:break-word;
  3108. text-transform:none;
  3109. visibility:hidden;
  3110. }
  3111. #u127611_img {
  3112. border-width:0px;
  3113. position:absolute;
  3114. left:0px;
  3115. top:0px;
  3116. width:168px;
  3117. height:34px;
  3118. }
  3119. #u127611 {
  3120. border-width:0px;
  3121. position:absolute;
  3122. left:392px;
  3123. top:186px;
  3124. width:168px;
  3125. height:34px;
  3126. display:flex;
  3127. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3128. font-weight:400;
  3129. font-style:normal;
  3130. font-size:12px;
  3131. color:#606266;
  3132. }
  3133. #u127611 .text {
  3134. position:absolute;
  3135. align-self:center;
  3136. padding:2px 2px 2px 0px;
  3137. box-sizing:border-box;
  3138. width:100%;
  3139. }
  3140. #u127611_text {
  3141. border-width:0px;
  3142. word-wrap:break-word;
  3143. text-transform:none;
  3144. visibility:hidden;
  3145. }
  3146. #u127612_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:168px;
  3152. height:34px;
  3153. }
  3154. #u127612 {
  3155. border-width:0px;
  3156. position:absolute;
  3157. left:560px;
  3158. top:186px;
  3159. width:168px;
  3160. height:34px;
  3161. display:flex;
  3162. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3163. font-weight:400;
  3164. font-style:normal;
  3165. font-size:12px;
  3166. color:#606266;
  3167. }
  3168. #u127612 .text {
  3169. position:absolute;
  3170. align-self:center;
  3171. padding:2px 2px 2px 0px;
  3172. box-sizing:border-box;
  3173. width:100%;
  3174. }
  3175. #u127612_text {
  3176. border-width:0px;
  3177. word-wrap:break-word;
  3178. text-transform:none;
  3179. visibility:hidden;
  3180. }
  3181. #u127613_img {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:0px;
  3185. top:0px;
  3186. width:152px;
  3187. height:34px;
  3188. }
  3189. #u127613 {
  3190. border-width:0px;
  3191. position:absolute;
  3192. left:728px;
  3193. top:186px;
  3194. width:152px;
  3195. height:34px;
  3196. display:flex;
  3197. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3198. font-weight:400;
  3199. font-style:normal;
  3200. font-size:12px;
  3201. color:#606266;
  3202. }
  3203. #u127613 .text {
  3204. position:absolute;
  3205. align-self:center;
  3206. padding:2px 2px 2px 0px;
  3207. box-sizing:border-box;
  3208. width:100%;
  3209. }
  3210. #u127613_text {
  3211. border-width:0px;
  3212. word-wrap:break-word;
  3213. text-transform:none;
  3214. visibility:hidden;
  3215. }
  3216. #u127614_img {
  3217. border-width:0px;
  3218. position:absolute;
  3219. left:0px;
  3220. top:0px;
  3221. width:168px;
  3222. height:34px;
  3223. }
  3224. #u127614 {
  3225. border-width:0px;
  3226. position:absolute;
  3227. left:880px;
  3228. top:186px;
  3229. width:168px;
  3230. height:34px;
  3231. display:flex;
  3232. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3233. font-weight:400;
  3234. font-style:normal;
  3235. font-size:12px;
  3236. color:#606266;
  3237. }
  3238. #u127614 .text {
  3239. position:absolute;
  3240. align-self:center;
  3241. padding:2px 2px 2px 0px;
  3242. box-sizing:border-box;
  3243. width:100%;
  3244. }
  3245. #u127614_text {
  3246. border-width:0px;
  3247. word-wrap:break-word;
  3248. text-transform:none;
  3249. visibility:hidden;
  3250. }
  3251. #u127615_img {
  3252. border-width:0px;
  3253. position:absolute;
  3254. left:0px;
  3255. top:0px;
  3256. width:170px;
  3257. height:34px;
  3258. }
  3259. #u127615 {
  3260. border-width:0px;
  3261. position:absolute;
  3262. left:1048px;
  3263. top:186px;
  3264. width:170px;
  3265. height:34px;
  3266. display:flex;
  3267. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3268. font-weight:400;
  3269. font-style:normal;
  3270. font-size:12px;
  3271. color:#606266;
  3272. }
  3273. #u127615 .text {
  3274. position:absolute;
  3275. align-self:center;
  3276. padding:2px 2px 2px 0px;
  3277. box-sizing:border-box;
  3278. width:100%;
  3279. }
  3280. #u127615_text {
  3281. border-width:0px;
  3282. word-wrap:break-word;
  3283. text-transform:none;
  3284. visibility:hidden;
  3285. }
  3286. #u127616_div {
  3287. border-width:0px;
  3288. position:absolute;
  3289. left:0px;
  3290. top:0px;
  3291. width:55px;
  3292. height:30px;
  3293. background:inherit;
  3294. background-color:rgba(255, 255, 255, 1);
  3295. box-sizing:border-box;
  3296. border-width:1px;
  3297. border-style:solid;
  3298. border-color:rgba(170, 170, 170, 1);
  3299. border-radius:4px;
  3300. -moz-box-shadow:none;
  3301. -webkit-box-shadow:none;
  3302. box-shadow:none;
  3303. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3304. font-weight:400;
  3305. font-style:normal;
  3306. font-size:12px;
  3307. color:#555555;
  3308. }
  3309. #u127616 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:1514px;
  3313. top:60px;
  3314. width:55px;
  3315. height:30px;
  3316. display:flex;
  3317. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. color:#555555;
  3322. }
  3323. #u127616 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:5px 15px 5px 15px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u127616_text {
  3331. border-width:0px;
  3332. white-space:nowrap;
  3333. text-transform:none;
  3334. }
  3335. #u127617 {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:0px;
  3341. height:0px;
  3342. }
  3343. #u127618_div {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:0px;
  3347. top:0px;
  3348. width:59px;
  3349. height:30px;
  3350. background:inherit;
  3351. background-color:rgba(41, 143, 255, 1);
  3352. border:none;
  3353. border-radius:4px;
  3354. -moz-box-shadow:none;
  3355. -webkit-box-shadow:none;
  3356. box-shadow:none;
  3357. font-family:'Microsoft YaHei', sans-serif;
  3358. font-weight:400;
  3359. font-style:normal;
  3360. font-size:14px;
  3361. color:#FFFFFF;
  3362. }
  3363. #u127618 {
  3364. border-width:0px;
  3365. position:absolute;
  3366. left:650px;
  3367. top:177px;
  3368. width:59px;
  3369. height:30px;
  3370. display:flex;
  3371. font-family:'Microsoft YaHei', sans-serif;
  3372. font-weight:400;
  3373. font-style:normal;
  3374. font-size:14px;
  3375. color:#FFFFFF;
  3376. }
  3377. #u127618 .text {
  3378. position:absolute;
  3379. align-self:center;
  3380. padding:5px 15px 5px 15px;
  3381. box-sizing:border-box;
  3382. width:100%;
  3383. }
  3384. #u127618_text {
  3385. border-width:0px;
  3386. white-space:nowrap;
  3387. text-transform:none;
  3388. }
  3389. #u127619_div {
  3390. border-width:0px;
  3391. position:absolute;
  3392. left:0px;
  3393. top:0px;
  3394. width:55px;
  3395. height:30px;
  3396. background:inherit;
  3397. background-color:rgba(255, 255, 255, 1);
  3398. box-sizing:border-box;
  3399. border-width:1px;
  3400. border-style:solid;
  3401. border-color:rgba(170, 170, 170, 1);
  3402. border-radius:4px;
  3403. -moz-box-shadow:none;
  3404. -webkit-box-shadow:none;
  3405. box-shadow:none;
  3406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3407. font-weight:400;
  3408. font-style:normal;
  3409. font-size:12px;
  3410. color:#555555;
  3411. }
  3412. #u127619 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:719px;
  3416. top:177px;
  3417. width:55px;
  3418. height:30px;
  3419. display:flex;
  3420. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3421. font-weight:400;
  3422. font-style:normal;
  3423. font-size:12px;
  3424. color:#555555;
  3425. }
  3426. #u127619 .text {
  3427. position:absolute;
  3428. align-self:center;
  3429. padding:5px 15px 5px 15px;
  3430. box-sizing:border-box;
  3431. width:100%;
  3432. }
  3433. #u127619_text {
  3434. border-width:0px;
  3435. white-space:nowrap;
  3436. text-transform:none;
  3437. }
  3438. #u127620 {
  3439. border-width:0px;
  3440. position:absolute;
  3441. left:0px;
  3442. top:0px;
  3443. width:0px;
  3444. height:0px;
  3445. }
  3446. #u127621_div {
  3447. border-width:0px;
  3448. position:absolute;
  3449. left:0px;
  3450. top:0px;
  3451. width:140px;
  3452. height:30px;
  3453. background:inherit;
  3454. background-color:rgba(255, 255, 255, 1);
  3455. box-sizing:border-box;
  3456. border-width:1px;
  3457. border-style:solid;
  3458. border-color:rgba(201, 201, 201, 1);
  3459. border-radius:4px;
  3460. -moz-box-shadow:none;
  3461. -webkit-box-shadow:none;
  3462. box-shadow:none;
  3463. font-family:'Microsoft YaHei', sans-serif;
  3464. font-weight:400;
  3465. font-style:normal;
  3466. font-size:14px;
  3467. color:#CCCCCC;
  3468. text-align:left;
  3469. }
  3470. #u127621 {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:350px;
  3474. top:177px;
  3475. width:140px;
  3476. height:30px;
  3477. display:flex;
  3478. font-family:'Microsoft YaHei', sans-serif;
  3479. font-weight:400;
  3480. font-style:normal;
  3481. font-size:14px;
  3482. color:#CCCCCC;
  3483. text-align:left;
  3484. }
  3485. #u127621 .text {
  3486. position:absolute;
  3487. align-self:center;
  3488. padding:2px 8px 2px 8px;
  3489. box-sizing:border-box;
  3490. width:100%;
  3491. }
  3492. #u127621_text {
  3493. border-width:0px;
  3494. word-wrap:break-word;
  3495. text-transform:none;
  3496. visibility:hidden;
  3497. }
  3498. #u127622_input {
  3499. position:absolute;
  3500. left:0px;
  3501. top:0px;
  3502. width:127px;
  3503. height:25px;
  3504. padding:2px 2px 2px 2px;
  3505. font-family:'Microsoft YaHei', sans-serif;
  3506. font-weight:400;
  3507. font-style:normal;
  3508. font-size:10px;
  3509. letter-spacing:normal;
  3510. color:#000000;
  3511. vertical-align:none;
  3512. text-align:left;
  3513. text-transform:none;
  3514. background-color:transparent;
  3515. border-color:transparent;
  3516. }
  3517. #u127622_input.disabled {
  3518. position:absolute;
  3519. left:0px;
  3520. top:0px;
  3521. width:127px;
  3522. height:25px;
  3523. padding:2px 2px 2px 2px;
  3524. font-family:'Microsoft YaHei', sans-serif;
  3525. font-weight:400;
  3526. font-style:normal;
  3527. font-size:10px;
  3528. letter-spacing:normal;
  3529. color:#000000;
  3530. vertical-align:none;
  3531. text-align:left;
  3532. text-transform:none;
  3533. background-color:transparent;
  3534. border-color:transparent;
  3535. }
  3536. #u127622_div {
  3537. border-width:0px;
  3538. position:absolute;
  3539. left:0px;
  3540. top:0px;
  3541. width:127px;
  3542. height:25px;
  3543. background:inherit;
  3544. background-color:rgba(255, 255, 255, 1);
  3545. border:none;
  3546. border-radius:0px;
  3547. -moz-box-shadow:none;
  3548. -webkit-box-shadow:none;
  3549. box-shadow:none;
  3550. font-family:'Microsoft YaHei', sans-serif;
  3551. font-weight:400;
  3552. font-style:normal;
  3553. font-size:10px;
  3554. }
  3555. #u127622 {
  3556. border-width:0px;
  3557. position:absolute;
  3558. left:358px;
  3559. top:178px;
  3560. width:127px;
  3561. height:25px;
  3562. display:flex;
  3563. font-family:'Microsoft YaHei', sans-serif;
  3564. font-weight:400;
  3565. font-style:normal;
  3566. font-size:10px;
  3567. }
  3568. #u127622 .text {
  3569. position:absolute;
  3570. align-self:center;
  3571. padding:2px 2px 2px 2px;
  3572. box-sizing:border-box;
  3573. width:100%;
  3574. }
  3575. #u127622_div.disabled {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:127px;
  3581. height:25px;
  3582. background:inherit;
  3583. background-color:rgba(240, 240, 240, 1);
  3584. border:none;
  3585. border-radius:0px;
  3586. -moz-box-shadow:none;
  3587. -webkit-box-shadow:none;
  3588. box-shadow:none;
  3589. font-family:'Microsoft YaHei', sans-serif;
  3590. font-weight:400;
  3591. font-style:normal;
  3592. font-size:10px;
  3593. }
  3594. #u127622.disabled {
  3595. }
  3596. #u127623_div {
  3597. border-width:0px;
  3598. position:absolute;
  3599. left:0px;
  3600. top:0px;
  3601. width:1237px;
  3602. height:560px;
  3603. background:inherit;
  3604. background-color:rgba(255, 255, 255, 0);
  3605. border:none;
  3606. border-radius:0px;
  3607. -moz-box-shadow:none;
  3608. -webkit-box-shadow:none;
  3609. box-shadow:none;
  3610. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3611. font-weight:400;
  3612. font-style:normal;
  3613. font-size:18px;
  3614. color:#D9001B;
  3615. line-height:40px;
  3616. }
  3617. #u127623 {
  3618. border-width:0px;
  3619. position:absolute;
  3620. left:535px;
  3621. top:-750px;
  3622. width:1237px;
  3623. height:560px;
  3624. display:flex;
  3625. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3626. font-weight:400;
  3627. font-style:normal;
  3628. font-size:18px;
  3629. color:#D9001B;
  3630. line-height:40px;
  3631. }
  3632. #u127623 .text {
  3633. position:absolute;
  3634. align-self:flex-start;
  3635. padding:0px 0px 0px 0px;
  3636. box-sizing:border-box;
  3637. width:100%;
  3638. }
  3639. #u127623_text {
  3640. border-width:0px;
  3641. white-space:nowrap;
  3642. text-transform:none;
  3643. }
  3644. #u127624_div {
  3645. border-width:0px;
  3646. position:absolute;
  3647. left:0px;
  3648. top:0px;
  3649. width:928px;
  3650. height:80px;
  3651. background:inherit;
  3652. background-color:rgba(255, 255, 255, 0);
  3653. border:none;
  3654. border-radius:0px;
  3655. -moz-box-shadow:none;
  3656. -webkit-box-shadow:none;
  3657. box-shadow:none;
  3658. font-size:14px;
  3659. color:#D9001B;
  3660. line-height:40px;
  3661. }
  3662. #u127624 {
  3663. border-width:0px;
  3664. position:absolute;
  3665. left:381px;
  3666. top:469px;
  3667. width:928px;
  3668. height:80px;
  3669. display:flex;
  3670. font-size:14px;
  3671. color:#D9001B;
  3672. line-height:40px;
  3673. }
  3674. #u127624 .text {
  3675. position:absolute;
  3676. align-self:flex-start;
  3677. padding:0px 0px 0px 0px;
  3678. box-sizing:border-box;
  3679. width:100%;
  3680. }
  3681. #u127624_text {
  3682. border-width:0px;
  3683. white-space:nowrap;
  3684. text-transform:none;
  3685. }
  3686. #u127625 {
  3687. border-width:0px;
  3688. position:absolute;
  3689. left:0px;
  3690. top:0px;
  3691. width:0px;
  3692. height:0px;
  3693. }
  3694. #u127626_div {
  3695. border-width:0px;
  3696. position:absolute;
  3697. left:0px;
  3698. top:0px;
  3699. width:800px;
  3700. height:1200px;
  3701. background:inherit;
  3702. background-color:rgba(255, 255, 255, 1);
  3703. box-sizing:border-box;
  3704. border-width:1px;
  3705. border-style:solid;
  3706. border-color:rgba(215, 215, 215, 1);
  3707. border-radius:0px;
  3708. -moz-box-shadow:none;
  3709. -webkit-box-shadow:none;
  3710. box-shadow:none;
  3711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3712. font-weight:400;
  3713. font-style:normal;
  3714. font-size:14px;
  3715. color:#AAAAAA;
  3716. text-align:center;
  3717. line-height:30px;
  3718. }
  3719. #u127626 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:2479px;
  3723. top:50px;
  3724. width:800px;
  3725. height:1200px;
  3726. display:flex;
  3727. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:14px;
  3731. color:#AAAAAA;
  3732. text-align:center;
  3733. line-height:30px;
  3734. }
  3735. #u127626 .text {
  3736. position:absolute;
  3737. align-self:center;
  3738. padding:5px 10px 5px 10px;
  3739. box-sizing:border-box;
  3740. width:100%;
  3741. }
  3742. #u127626_text {
  3743. border-width:0px;
  3744. word-wrap:break-word;
  3745. text-transform:none;
  3746. visibility:hidden;
  3747. }
  3748. #u127627_div {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:0px;
  3752. top:0px;
  3753. width:736px;
  3754. height:60px;
  3755. background:inherit;
  3756. background-color:rgba(242, 242, 242, 1);
  3757. border:none;
  3758. border-radius:4px;
  3759. -moz-box-shadow:none;
  3760. -webkit-box-shadow:none;
  3761. box-shadow:none;
  3762. font-size:11px;
  3763. }
  3764. #u127627 {
  3765. border-width:0px;
  3766. position:absolute;
  3767. left:2499px;
  3768. top:113px;
  3769. width:736px;
  3770. height:60px;
  3771. display:flex;
  3772. font-size:11px;
  3773. }
  3774. #u127627 .text {
  3775. position:absolute;
  3776. align-self:center;
  3777. padding:2px 2px 2px 2px;
  3778. box-sizing:border-box;
  3779. width:100%;
  3780. }
  3781. #u127627_text {
  3782. border-width:0px;
  3783. word-wrap:break-word;
  3784. text-transform:none;
  3785. visibility:hidden;
  3786. }
  3787. #u127628_div {
  3788. border-width:0px;
  3789. position:absolute;
  3790. left:0px;
  3791. top:0px;
  3792. width:155px;
  3793. height:35px;
  3794. background:inherit;
  3795. background-color:rgba(255, 255, 255, 0);
  3796. border:none;
  3797. border-top:0px;
  3798. border-right:0px;
  3799. border-bottom:0px;
  3800. border-radius:0px;
  3801. border-top-left-radius:0px;
  3802. border-bottom-left-radius:0px;
  3803. -moz-box-shadow:none;
  3804. -webkit-box-shadow:none;
  3805. box-shadow:none;
  3806. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3807. font-weight:500;
  3808. font-style:normal;
  3809. font-size:18px;
  3810. }
  3811. #u127628 {
  3812. border-width:0px;
  3813. position:absolute;
  3814. left:2499px;
  3815. top:68px;
  3816. width:155px;
  3817. height:35px;
  3818. display:flex;
  3819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  3820. font-weight:500;
  3821. font-style:normal;
  3822. font-size:18px;
  3823. }
  3824. #u127628 .text {
  3825. position:absolute;
  3826. align-self:center;
  3827. padding:5px 10px 5px 0px;
  3828. box-sizing:border-box;
  3829. width:100%;
  3830. }
  3831. #u127628_text {
  3832. border-width:0px;
  3833. white-space:nowrap;
  3834. text-transform:none;
  3835. }
  3836. #u127629_div {
  3837. border-width:0px;
  3838. position:absolute;
  3839. left:0px;
  3840. top:0px;
  3841. width:740px;
  3842. height:40px;
  3843. background:inherit;
  3844. background-color:rgba(255, 255, 128, 0.0980392156862745);
  3845. border:none;
  3846. border-radius:6px;
  3847. -moz-box-shadow:none;
  3848. -webkit-box-shadow:none;
  3849. box-shadow:none;
  3850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3851. font-weight:400;
  3852. font-style:normal;
  3853. font-size:12px;
  3854. color:#F59A23;
  3855. text-align:left;
  3856. }
  3857. #u127629 {
  3858. border-width:0px;
  3859. position:absolute;
  3860. left:2499px;
  3861. top:173px;
  3862. width:740px;
  3863. height:40px;
  3864. display:flex;
  3865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3866. font-weight:400;
  3867. font-style:normal;
  3868. font-size:12px;
  3869. color:#F59A23;
  3870. text-align:left;
  3871. }
  3872. #u127629 .text {
  3873. position:absolute;
  3874. align-self:center;
  3875. padding:2px 2px 2px 10px;
  3876. box-sizing:border-box;
  3877. width:100%;
  3878. }
  3879. #u127629_text {
  3880. border-width:0px;
  3881. word-wrap:break-word;
  3882. text-transform:none;
  3883. }
  3884. #u127630 {
  3885. border-width:0px;
  3886. position:absolute;
  3887. left:0px;
  3888. top:0px;
  3889. width:0px;
  3890. height:0px;
  3891. }
  3892. #u127631 {
  3893. border-width:0px;
  3894. position:absolute;
  3895. left:0px;
  3896. top:0px;
  3897. width:0px;
  3898. height:0px;
  3899. }
  3900. #u127632_div {
  3901. border-width:0px;
  3902. position:absolute;
  3903. left:0px;
  3904. top:0px;
  3905. width:552px;
  3906. height:100px;
  3907. background:inherit;
  3908. background-color:rgba(255, 255, 255, 1);
  3909. box-sizing:border-box;
  3910. border-width:1px;
  3911. border-style:solid;
  3912. border-color:rgba(215, 215, 215, 1);
  3913. border-radius:4px;
  3914. -moz-box-shadow:none;
  3915. -webkit-box-shadow:none;
  3916. box-shadow:none;
  3917. font-size:11px;
  3918. }
  3919. #u127632 {
  3920. border-width:0px;
  3921. position:absolute;
  3922. left:2647px;
  3923. top:449px;
  3924. width:552px;
  3925. height:100px;
  3926. display:flex;
  3927. font-size:11px;
  3928. }
  3929. #u127632 .text {
  3930. position:absolute;
  3931. align-self:center;
  3932. padding:2px 2px 2px 2px;
  3933. box-sizing:border-box;
  3934. width:100%;
  3935. }
  3936. #u127632_text {
  3937. border-width:0px;
  3938. word-wrap:break-word;
  3939. text-transform:none;
  3940. visibility:hidden;
  3941. }
  3942. #u127633_input {
  3943. position:absolute;
  3944. left:0px;
  3945. top:0px;
  3946. width:515px;
  3947. height:80px;
  3948. padding:2px 2px 2px 2px;
  3949. font-family:'ArialMT', 'Arial', sans-serif;
  3950. font-weight:400;
  3951. font-style:normal;
  3952. font-size:13px;
  3953. letter-spacing:normal;
  3954. color:#000000;
  3955. vertical-align:none;
  3956. text-align:left;
  3957. text-transform:none;
  3958. background-color:transparent;
  3959. border-color:transparent;
  3960. resize:none;
  3961. }
  3962. #u127633_input.disabled {
  3963. position:absolute;
  3964. left:0px;
  3965. top:0px;
  3966. width:515px;
  3967. height:80px;
  3968. padding:2px 2px 2px 2px;
  3969. font-family:'ArialMT', 'Arial', sans-serif;
  3970. font-weight:400;
  3971. font-style:normal;
  3972. font-size:13px;
  3973. letter-spacing:normal;
  3974. color:#000000;
  3975. vertical-align:none;
  3976. text-align:left;
  3977. text-transform:none;
  3978. background-color:transparent;
  3979. border-color:transparent;
  3980. resize:none;
  3981. }
  3982. #u127633_div {
  3983. border-width:0px;
  3984. position:absolute;
  3985. left:0px;
  3986. top:0px;
  3987. width:515px;
  3988. height:80px;
  3989. background:inherit;
  3990. background-color:rgba(255, 255, 255, 1);
  3991. border:none;
  3992. border-radius:0px;
  3993. -moz-box-shadow:none;
  3994. -webkit-box-shadow:none;
  3995. box-shadow:none;
  3996. }
  3997. #u127633 {
  3998. border-width:0px;
  3999. position:absolute;
  4000. left:2666px;
  4001. top:459px;
  4002. width:515px;
  4003. height:80px;
  4004. display:flex;
  4005. }
  4006. #u127633 .text {
  4007. position:absolute;
  4008. align-self:flex-start;
  4009. padding:2px 2px 2px 2px;
  4010. box-sizing:border-box;
  4011. width:100%;
  4012. }
  4013. #u127633_div.disabled {
  4014. border-width:0px;
  4015. position:absolute;
  4016. left:0px;
  4017. top:0px;
  4018. width:515px;
  4019. height:80px;
  4020. background:inherit;
  4021. background-color:rgba(240, 240, 240, 1);
  4022. border:none;
  4023. border-radius:0px;
  4024. -moz-box-shadow:none;
  4025. -webkit-box-shadow:none;
  4026. box-shadow:none;
  4027. }
  4028. #u127633.disabled {
  4029. }
  4030. #u127634_div {
  4031. border-width:0px;
  4032. position:absolute;
  4033. left:0px;
  4034. top:0px;
  4035. width:56px;
  4036. height:14px;
  4037. background:inherit;
  4038. background-color:rgba(242, 242, 242, 1);
  4039. border:none;
  4040. border-radius:19px;
  4041. -moz-box-shadow:none;
  4042. -webkit-box-shadow:none;
  4043. box-shadow:none;
  4044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4045. font-weight:400;
  4046. font-style:normal;
  4047. font-size:10px;
  4048. color:#7F7F7F;
  4049. }
  4050. #u127634 {
  4051. border-width:0px;
  4052. position:absolute;
  4053. left:3136px;
  4054. top:530px;
  4055. width:56px;
  4056. height:14px;
  4057. display:flex;
  4058. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4059. font-weight:400;
  4060. font-style:normal;
  4061. font-size:10px;
  4062. color:#7F7F7F;
  4063. }
  4064. #u127634 .text {
  4065. position:absolute;
  4066. align-self:center;
  4067. padding:0px 0px 0px 0px;
  4068. box-sizing:border-box;
  4069. width:100%;
  4070. }
  4071. #u127634_text {
  4072. border-width:0px;
  4073. word-wrap:break-word;
  4074. text-transform:none;
  4075. }
  4076. #u127635_div {
  4077. border-width:0px;
  4078. position:absolute;
  4079. left:0px;
  4080. top:0px;
  4081. width:78px;
  4082. height:30px;
  4083. background:inherit;
  4084. background-color:rgba(255, 255, 255, 0);
  4085. border:none;
  4086. border-top:0px;
  4087. border-right:0px;
  4088. border-bottom:0px;
  4089. border-radius:0px;
  4090. border-top-left-radius:0px;
  4091. border-bottom-left-radius:0px;
  4092. -moz-box-shadow:none;
  4093. -webkit-box-shadow:none;
  4094. box-shadow:none;
  4095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4096. font-weight:400;
  4097. font-style:normal;
  4098. font-size:14px;
  4099. color:#7F7F7F;
  4100. text-align:right;
  4101. }
  4102. #u127635 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:2568px;
  4106. top:354px;
  4107. width:78px;
  4108. height:30px;
  4109. display:flex;
  4110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4111. font-weight:400;
  4112. font-style:normal;
  4113. font-size:14px;
  4114. color:#7F7F7F;
  4115. text-align:right;
  4116. }
  4117. #u127635 .text {
  4118. position:absolute;
  4119. align-self:center;
  4120. padding:5px 0px 5px 0px;
  4121. box-sizing:border-box;
  4122. width:100%;
  4123. }
  4124. #u127635_text {
  4125. border-width:0px;
  4126. white-space:nowrap;
  4127. text-transform:none;
  4128. }
  4129. #u127636 {
  4130. border-width:0px;
  4131. position:absolute;
  4132. left:0px;
  4133. top:0px;
  4134. width:0px;
  4135. height:0px;
  4136. }
  4137. #u127637_div {
  4138. border-width:0px;
  4139. position:absolute;
  4140. left:0px;
  4141. top:0px;
  4142. width:553px;
  4143. height:40px;
  4144. background:inherit;
  4145. background-color:rgba(255, 255, 255, 1);
  4146. box-sizing:border-box;
  4147. border-width:1px;
  4148. border-style:solid;
  4149. border-color:rgba(215, 215, 215, 1);
  4150. border-radius:4px;
  4151. -moz-box-shadow:none;
  4152. -webkit-box-shadow:none;
  4153. box-shadow:none;
  4154. font-size:11px;
  4155. }
  4156. #u127637 {
  4157. border-width:0px;
  4158. position:absolute;
  4159. left:2646px;
  4160. top:349px;
  4161. width:553px;
  4162. height:40px;
  4163. display:flex;
  4164. font-size:11px;
  4165. }
  4166. #u127637 .text {
  4167. position:absolute;
  4168. align-self:center;
  4169. padding:2px 2px 2px 2px;
  4170. box-sizing:border-box;
  4171. width:100%;
  4172. }
  4173. #u127637_text {
  4174. border-width:0px;
  4175. word-wrap:break-word;
  4176. text-transform:none;
  4177. visibility:hidden;
  4178. }
  4179. #u127638_input {
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:502px;
  4184. height:25px;
  4185. padding:2px 2px 2px 2px;
  4186. font-family:'ArialMT', 'Arial', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:13px;
  4190. letter-spacing:normal;
  4191. color:#000000;
  4192. vertical-align:none;
  4193. text-align:left;
  4194. text-transform:none;
  4195. background-color:transparent;
  4196. border-color:transparent;
  4197. }
  4198. #u127638_input.disabled {
  4199. position:absolute;
  4200. left:0px;
  4201. top:0px;
  4202. width:502px;
  4203. height:25px;
  4204. padding:2px 2px 2px 2px;
  4205. font-family:'ArialMT', 'Arial', sans-serif;
  4206. font-weight:400;
  4207. font-style:normal;
  4208. font-size:13px;
  4209. letter-spacing:normal;
  4210. color:#000000;
  4211. vertical-align:none;
  4212. text-align:left;
  4213. text-transform:none;
  4214. background-color:transparent;
  4215. border-color:transparent;
  4216. }
  4217. #u127638_div {
  4218. border-width:0px;
  4219. position:absolute;
  4220. left:0px;
  4221. top:0px;
  4222. width:502px;
  4223. height:25px;
  4224. background:inherit;
  4225. background-color:rgba(255, 255, 255, 1);
  4226. border:none;
  4227. border-radius:0px;
  4228. -moz-box-shadow:none;
  4229. -webkit-box-shadow:none;
  4230. box-shadow:none;
  4231. }
  4232. #u127638 {
  4233. border-width:0px;
  4234. position:absolute;
  4235. left:2671px;
  4236. top:357px;
  4237. width:502px;
  4238. height:25px;
  4239. display:flex;
  4240. }
  4241. #u127638 .text {
  4242. position:absolute;
  4243. align-self:center;
  4244. padding:2px 2px 2px 2px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u127638_div.disabled {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:502px;
  4254. height:25px;
  4255. background:inherit;
  4256. background-color:rgba(240, 240, 240, 1);
  4257. border:none;
  4258. border-radius:0px;
  4259. -moz-box-shadow:none;
  4260. -webkit-box-shadow:none;
  4261. box-shadow:none;
  4262. }
  4263. #u127638.disabled {
  4264. }
  4265. #u127639 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:0px;
  4269. top:0px;
  4270. width:0px;
  4271. height:0px;
  4272. }
  4273. #u127640_div {
  4274. border-width:0px;
  4275. position:absolute;
  4276. left:0px;
  4277. top:0px;
  4278. width:800px;
  4279. height:50px;
  4280. background:inherit;
  4281. background-color:rgba(255, 255, 255, 1);
  4282. box-sizing:border-box;
  4283. border-width:1px;
  4284. border-style:solid;
  4285. border-color:rgba(215, 215, 215, 1);
  4286. border-radius:0px;
  4287. -moz-box-shadow:none;
  4288. -webkit-box-shadow:none;
  4289. box-shadow:none;
  4290. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4291. font-weight:400;
  4292. font-style:normal;
  4293. font-size:14px;
  4294. color:#AAAAAA;
  4295. text-align:center;
  4296. line-height:30px;
  4297. }
  4298. #u127640 {
  4299. border-width:0px;
  4300. position:absolute;
  4301. left:2479px;
  4302. top:1200px;
  4303. width:800px;
  4304. height:50px;
  4305. display:flex;
  4306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4307. font-weight:400;
  4308. font-style:normal;
  4309. font-size:14px;
  4310. color:#AAAAAA;
  4311. text-align:center;
  4312. line-height:30px;
  4313. }
  4314. #u127640 .text {
  4315. position:absolute;
  4316. align-self:center;
  4317. padding:5px 10px 5px 10px;
  4318. box-sizing:border-box;
  4319. width:100%;
  4320. }
  4321. #u127640_text {
  4322. border-width:0px;
  4323. word-wrap:break-word;
  4324. text-transform:none;
  4325. visibility:hidden;
  4326. }
  4327. #u127641_div {
  4328. border-width:0px;
  4329. position:absolute;
  4330. left:0px;
  4331. top:0px;
  4332. width:80px;
  4333. height:30px;
  4334. background:inherit;
  4335. background-color:rgba(24, 144, 255, 1);
  4336. border:none;
  4337. border-radius:4px;
  4338. -moz-box-shadow:none;
  4339. -webkit-box-shadow:none;
  4340. box-shadow:none;
  4341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4342. font-weight:400;
  4343. font-style:normal;
  4344. font-size:14px;
  4345. color:#FFFFFF;
  4346. }
  4347. #u127641 {
  4348. border-width:0px;
  4349. position:absolute;
  4350. left:3179px;
  4351. top:1210px;
  4352. width:80px;
  4353. height:30px;
  4354. display:flex;
  4355. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4356. font-weight:400;
  4357. font-style:normal;
  4358. font-size:14px;
  4359. color:#FFFFFF;
  4360. }
  4361. #u127641 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u127641_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. }
  4373. #u127642_div {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:80px;
  4379. height:30px;
  4380. background:inherit;
  4381. background-color:rgba(255, 255, 255, 1);
  4382. box-sizing:border-box;
  4383. border-width:1px;
  4384. border-style:solid;
  4385. border-color:rgba(170, 170, 170, 1);
  4386. border-radius:4px;
  4387. -moz-box-shadow:none;
  4388. -webkit-box-shadow:none;
  4389. box-shadow:none;
  4390. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4391. font-weight:400;
  4392. font-style:normal;
  4393. font-size:14px;
  4394. }
  4395. #u127642 {
  4396. border-width:0px;
  4397. position:absolute;
  4398. left:3079px;
  4399. top:1210px;
  4400. width:80px;
  4401. height:30px;
  4402. display:flex;
  4403. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4404. font-weight:400;
  4405. font-style:normal;
  4406. font-size:14px;
  4407. }
  4408. #u127642 .text {
  4409. position:absolute;
  4410. align-self:center;
  4411. padding:2px 2px 2px 2px;
  4412. box-sizing:border-box;
  4413. width:100%;
  4414. }
  4415. #u127642_text {
  4416. border-width:0px;
  4417. word-wrap:break-word;
  4418. text-transform:none;
  4419. }
  4420. #u127643_div {
  4421. border-width:0px;
  4422. position:absolute;
  4423. left:0px;
  4424. top:0px;
  4425. width:71px;
  4426. height:30px;
  4427. background:inherit;
  4428. background-color:rgba(255, 255, 255, 0);
  4429. border:none;
  4430. border-top:0px;
  4431. border-right:0px;
  4432. border-bottom:0px;
  4433. border-radius:0px;
  4434. border-top-left-radius:0px;
  4435. border-bottom-left-radius:0px;
  4436. -moz-box-shadow:none;
  4437. -webkit-box-shadow:none;
  4438. box-shadow:none;
  4439. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4440. font-weight:400;
  4441. font-style:normal;
  4442. font-size:14px;
  4443. color:#7F7F7F;
  4444. }
  4445. #u127643 {
  4446. border-width:0px;
  4447. position:absolute;
  4448. left:2520px;
  4449. top:129px;
  4450. width:71px;
  4451. height:30px;
  4452. display:flex;
  4453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4454. font-weight:400;
  4455. font-style:normal;
  4456. font-size:14px;
  4457. color:#7F7F7F;
  4458. }
  4459. #u127643 .text {
  4460. position:absolute;
  4461. align-self:center;
  4462. padding:5px 0px 5px 0px;
  4463. box-sizing:border-box;
  4464. width:100%;
  4465. }
  4466. #u127643_text {
  4467. border-width:0px;
  4468. white-space:nowrap;
  4469. text-transform:none;
  4470. }
  4471. #u127644_div {
  4472. border-width:0px;
  4473. position:absolute;
  4474. left:0px;
  4475. top:0px;
  4476. width:155px;
  4477. height:30px;
  4478. background:inherit;
  4479. background-color:rgba(255, 255, 255, 0);
  4480. border:none;
  4481. border-top:0px;
  4482. border-right:0px;
  4483. border-bottom:0px;
  4484. border-radius:0px;
  4485. border-top-left-radius:0px;
  4486. border-bottom-left-radius:0px;
  4487. -moz-box-shadow:none;
  4488. -webkit-box-shadow:none;
  4489. box-shadow:none;
  4490. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4491. font-weight:400;
  4492. font-style:normal;
  4493. font-size:14px;
  4494. }
  4495. #u127644 {
  4496. border-width:0px;
  4497. position:absolute;
  4498. left:2599px;
  4499. top:129px;
  4500. width:155px;
  4501. height:30px;
  4502. display:flex;
  4503. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4504. font-weight:400;
  4505. font-style:normal;
  4506. font-size:14px;
  4507. }
  4508. #u127644 .text {
  4509. position:absolute;
  4510. align-self:center;
  4511. padding:5px 0px 5px 0px;
  4512. box-sizing:border-box;
  4513. width:100%;
  4514. }
  4515. #u127644_text {
  4516. border-width:0px;
  4517. white-space:nowrap;
  4518. text-transform:none;
  4519. }
  4520. #u127645_div {
  4521. border-width:0px;
  4522. position:absolute;
  4523. left:0px;
  4524. top:0px;
  4525. width:71px;
  4526. height:30px;
  4527. background:inherit;
  4528. background-color:rgba(255, 255, 255, 0);
  4529. border:none;
  4530. border-top:0px;
  4531. border-right:0px;
  4532. border-bottom:0px;
  4533. border-radius:0px;
  4534. border-top-left-radius:0px;
  4535. border-bottom-left-radius:0px;
  4536. -moz-box-shadow:none;
  4537. -webkit-box-shadow:none;
  4538. box-shadow:none;
  4539. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4540. font-weight:400;
  4541. font-style:normal;
  4542. font-size:14px;
  4543. color:#7F7F7F;
  4544. }
  4545. #u127645 {
  4546. border-width:0px;
  4547. position:absolute;
  4548. left:2923px;
  4549. top:129px;
  4550. width:71px;
  4551. height:30px;
  4552. display:flex;
  4553. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4554. font-weight:400;
  4555. font-style:normal;
  4556. font-size:14px;
  4557. color:#7F7F7F;
  4558. }
  4559. #u127645 .text {
  4560. position:absolute;
  4561. align-self:center;
  4562. padding:5px 0px 5px 0px;
  4563. box-sizing:border-box;
  4564. width:100%;
  4565. }
  4566. #u127645_text {
  4567. border-width:0px;
  4568. white-space:nowrap;
  4569. text-transform:none;
  4570. }
  4571. #u127646_div {
  4572. border-width:0px;
  4573. position:absolute;
  4574. left:0px;
  4575. top:0px;
  4576. width:57px;
  4577. height:30px;
  4578. background:inherit;
  4579. background-color:rgba(255, 255, 255, 0);
  4580. border:none;
  4581. border-top:0px;
  4582. border-right:0px;
  4583. border-bottom:0px;
  4584. border-radius:0px;
  4585. border-top-left-radius:0px;
  4586. border-bottom-left-radius:0px;
  4587. -moz-box-shadow:none;
  4588. -webkit-box-shadow:none;
  4589. box-shadow:none;
  4590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4591. font-weight:400;
  4592. font-style:normal;
  4593. font-size:14px;
  4594. }
  4595. #u127646 {
  4596. border-width:0px;
  4597. position:absolute;
  4598. left:3002px;
  4599. top:129px;
  4600. width:57px;
  4601. height:30px;
  4602. display:flex;
  4603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4604. font-weight:400;
  4605. font-style:normal;
  4606. font-size:14px;
  4607. }
  4608. #u127646 .text {
  4609. position:absolute;
  4610. align-self:center;
  4611. padding:5px 0px 5px 0px;
  4612. box-sizing:border-box;
  4613. width:100%;
  4614. }
  4615. #u127646_text {
  4616. border-width:0px;
  4617. white-space:nowrap;
  4618. text-transform:none;
  4619. }
  4620. #u127647_div {
  4621. border-width:0px;
  4622. position:absolute;
  4623. left:0px;
  4624. top:0px;
  4625. width:78px;
  4626. height:30px;
  4627. background:inherit;
  4628. background-color:rgba(255, 255, 255, 0);
  4629. border:none;
  4630. border-top:0px;
  4631. border-right:0px;
  4632. border-bottom:0px;
  4633. border-radius:0px;
  4634. border-top-left-radius:0px;
  4635. border-bottom-left-radius:0px;
  4636. -moz-box-shadow:none;
  4637. -webkit-box-shadow:none;
  4638. box-shadow:none;
  4639. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4640. font-weight:400;
  4641. font-style:normal;
  4642. font-size:14px;
  4643. color:#7F7F7F;
  4644. }
  4645. #u127647 {
  4646. border-width:0px;
  4647. position:absolute;
  4648. left:2569px;
  4649. top:404px;
  4650. width:78px;
  4651. height:30px;
  4652. display:flex;
  4653. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4654. font-weight:400;
  4655. font-style:normal;
  4656. font-size:14px;
  4657. color:#7F7F7F;
  4658. }
  4659. #u127647 .text {
  4660. position:absolute;
  4661. align-self:center;
  4662. padding:5px 0px 5px 0px;
  4663. box-sizing:border-box;
  4664. width:100%;
  4665. }
  4666. #u127647_text {
  4667. border-width:0px;
  4668. white-space:nowrap;
  4669. text-transform:none;
  4670. }
  4671. #u127648 {
  4672. border-width:0px;
  4673. position:absolute;
  4674. left:0px;
  4675. top:0px;
  4676. width:0px;
  4677. height:0px;
  4678. }
  4679. #u127649_div {
  4680. border-width:0px;
  4681. position:absolute;
  4682. left:0px;
  4683. top:0px;
  4684. width:553px;
  4685. height:40px;
  4686. background:inherit;
  4687. background-color:rgba(255, 255, 255, 1);
  4688. box-sizing:border-box;
  4689. border-width:1px;
  4690. border-style:solid;
  4691. border-color:rgba(215, 215, 215, 1);
  4692. border-radius:4px;
  4693. -moz-box-shadow:none;
  4694. -webkit-box-shadow:none;
  4695. box-shadow:none;
  4696. font-size:11px;
  4697. }
  4698. #u127649 {
  4699. border-width:0px;
  4700. position:absolute;
  4701. left:2647px;
  4702. top:399px;
  4703. width:553px;
  4704. height:40px;
  4705. display:flex;
  4706. font-size:11px;
  4707. }
  4708. #u127649 .text {
  4709. position:absolute;
  4710. align-self:center;
  4711. padding:2px 2px 2px 2px;
  4712. box-sizing:border-box;
  4713. width:100%;
  4714. }
  4715. #u127649_text {
  4716. border-width:0px;
  4717. word-wrap:break-word;
  4718. text-transform:none;
  4719. visibility:hidden;
  4720. }
  4721. #u127650_input {
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:502px;
  4726. height:25px;
  4727. padding:2px 2px 2px 2px;
  4728. font-family:'ArialMT', 'Arial', sans-serif;
  4729. font-weight:400;
  4730. font-style:normal;
  4731. font-size:13px;
  4732. letter-spacing:normal;
  4733. color:#000000;
  4734. vertical-align:none;
  4735. text-align:left;
  4736. text-transform:none;
  4737. background-color:transparent;
  4738. border-color:transparent;
  4739. }
  4740. #u127650_input.disabled {
  4741. position:absolute;
  4742. left:0px;
  4743. top:0px;
  4744. width:502px;
  4745. height:25px;
  4746. padding:2px 2px 2px 2px;
  4747. font-family:'ArialMT', 'Arial', sans-serif;
  4748. font-weight:400;
  4749. font-style:normal;
  4750. font-size:13px;
  4751. letter-spacing:normal;
  4752. color:#000000;
  4753. vertical-align:none;
  4754. text-align:left;
  4755. text-transform:none;
  4756. background-color:transparent;
  4757. border-color:transparent;
  4758. }
  4759. #u127650_div {
  4760. border-width:0px;
  4761. position:absolute;
  4762. left:0px;
  4763. top:0px;
  4764. width:502px;
  4765. height:25px;
  4766. background:inherit;
  4767. background-color:rgba(255, 255, 255, 1);
  4768. border:none;
  4769. border-radius:0px;
  4770. -moz-box-shadow:none;
  4771. -webkit-box-shadow:none;
  4772. box-shadow:none;
  4773. }
  4774. #u127650 {
  4775. border-width:0px;
  4776. position:absolute;
  4777. left:2672px;
  4778. top:407px;
  4779. width:502px;
  4780. height:25px;
  4781. display:flex;
  4782. }
  4783. #u127650 .text {
  4784. position:absolute;
  4785. align-self:center;
  4786. padding:2px 2px 2px 2px;
  4787. box-sizing:border-box;
  4788. width:100%;
  4789. }
  4790. #u127650_div.disabled {
  4791. border-width:0px;
  4792. position:absolute;
  4793. left:0px;
  4794. top:0px;
  4795. width:502px;
  4796. height:25px;
  4797. background:inherit;
  4798. background-color:rgba(240, 240, 240, 1);
  4799. border:none;
  4800. border-radius:0px;
  4801. -moz-box-shadow:none;
  4802. -webkit-box-shadow:none;
  4803. box-shadow:none;
  4804. }
  4805. #u127650.disabled {
  4806. }
  4807. #u127651_div {
  4808. border-width:0px;
  4809. position:absolute;
  4810. left:0px;
  4811. top:0px;
  4812. width:71px;
  4813. height:30px;
  4814. background:inherit;
  4815. background-color:rgba(255, 255, 255, 0);
  4816. border:none;
  4817. border-top:0px;
  4818. border-right:0px;
  4819. border-bottom:0px;
  4820. border-radius:0px;
  4821. border-top-left-radius:0px;
  4822. border-bottom-left-radius:0px;
  4823. -moz-box-shadow:none;
  4824. -webkit-box-shadow:none;
  4825. box-shadow:none;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:14px;
  4830. color:#7F7F7F;
  4831. }
  4832. #u127651 {
  4833. border-width:0px;
  4834. position:absolute;
  4835. left:2576px;
  4836. top:449px;
  4837. width:71px;
  4838. height:30px;
  4839. display:flex;
  4840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4841. font-weight:400;
  4842. font-style:normal;
  4843. font-size:14px;
  4844. color:#7F7F7F;
  4845. }
  4846. #u127651 .text {
  4847. position:absolute;
  4848. align-self:center;
  4849. padding:5px 0px 5px 0px;
  4850. box-sizing:border-box;
  4851. width:100%;
  4852. }
  4853. #u127651_text {
  4854. border-width:0px;
  4855. white-space:nowrap;
  4856. text-transform:none;
  4857. }
  4858. #u127652_div {
  4859. border-width:0px;
  4860. position:absolute;
  4861. left:0px;
  4862. top:0px;
  4863. width:40px;
  4864. height:40px;
  4865. background:inherit;
  4866. background-color:rgba(255, 255, 255, 0);
  4867. border:none;
  4868. border-top:0px;
  4869. border-right:0px;
  4870. border-bottom:0px;
  4871. border-radius:0px;
  4872. border-top-left-radius:0px;
  4873. border-bottom-left-radius:0px;
  4874. -moz-box-shadow:none;
  4875. -webkit-box-shadow:none;
  4876. box-shadow:none;
  4877. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4878. font-weight:500;
  4879. font-style:normal;
  4880. font-size:18px;
  4881. text-align:center;
  4882. }
  4883. #u127652 {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:3239px;
  4887. top:50px;
  4888. width:40px;
  4889. height:40px;
  4890. display:flex;
  4891. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4892. font-weight:500;
  4893. font-style:normal;
  4894. font-size:18px;
  4895. text-align:center;
  4896. }
  4897. #u127652 .text {
  4898. position:absolute;
  4899. align-self:center;
  4900. padding:5px 10px 5px 0px;
  4901. box-sizing:border-box;
  4902. width:100%;
  4903. }
  4904. #u127652_text {
  4905. border-width:0px;
  4906. word-wrap:break-word;
  4907. text-transform:none;
  4908. }
  4909. #u127653_div {
  4910. border-width:0px;
  4911. position:absolute;
  4912. left:0px;
  4913. top:0px;
  4914. width:106px;
  4915. height:30px;
  4916. background:inherit;
  4917. background-color:rgba(255, 255, 255, 0);
  4918. border:none;
  4919. border-top:0px;
  4920. border-right:0px;
  4921. border-bottom:0px;
  4922. border-radius:0px;
  4923. border-top-left-radius:0px;
  4924. border-bottom-left-radius:0px;
  4925. -moz-box-shadow:none;
  4926. -webkit-box-shadow:none;
  4927. box-shadow:none;
  4928. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4929. font-weight:400;
  4930. font-style:normal;
  4931. font-size:14px;
  4932. color:#7F7F7F;
  4933. }
  4934. #u127653 {
  4935. border-width:0px;
  4936. position:absolute;
  4937. left:2540px;
  4938. top:304px;
  4939. width:106px;
  4940. height:30px;
  4941. display:flex;
  4942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4943. font-weight:400;
  4944. font-style:normal;
  4945. font-size:14px;
  4946. color:#7F7F7F;
  4947. }
  4948. #u127653 .text {
  4949. position:absolute;
  4950. align-self:center;
  4951. padding:5px 0px 5px 0px;
  4952. box-sizing:border-box;
  4953. width:100%;
  4954. }
  4955. #u127653_text {
  4956. border-width:0px;
  4957. white-space:nowrap;
  4958. text-transform:none;
  4959. }
  4960. #u127654_div {
  4961. border-width:0px;
  4962. position:absolute;
  4963. left:0px;
  4964. top:0px;
  4965. width:78px;
  4966. height:30px;
  4967. background:inherit;
  4968. background-color:rgba(255, 255, 255, 0);
  4969. border:none;
  4970. border-top:0px;
  4971. border-right:0px;
  4972. border-bottom:0px;
  4973. border-radius:0px;
  4974. border-top-left-radius:0px;
  4975. border-bottom-left-radius:0px;
  4976. -moz-box-shadow:none;
  4977. -webkit-box-shadow:none;
  4978. box-shadow:none;
  4979. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4980. font-weight:400;
  4981. font-style:normal;
  4982. font-size:14px;
  4983. color:#7F7F7F;
  4984. }
  4985. #u127654 {
  4986. border-width:0px;
  4987. position:absolute;
  4988. left:2560px;
  4989. top:618px;
  4990. width:78px;
  4991. height:30px;
  4992. display:flex;
  4993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4994. font-weight:400;
  4995. font-style:normal;
  4996. font-size:14px;
  4997. color:#7F7F7F;
  4998. }
  4999. #u127654 .text {
  5000. position:absolute;
  5001. align-self:center;
  5002. padding:5px 0px 5px 0px;
  5003. box-sizing:border-box;
  5004. width:100%;
  5005. }
  5006. #u127654_text {
  5007. border-width:0px;
  5008. white-space:nowrap;
  5009. text-transform:none;
  5010. }
  5011. #u127655 {
  5012. border-width:0px;
  5013. position:absolute;
  5014. left:0px;
  5015. top:0px;
  5016. width:0px;
  5017. height:0px;
  5018. }
  5019. #u127656_div {
  5020. border-width:0px;
  5021. position:absolute;
  5022. left:0px;
  5023. top:0px;
  5024. width:553px;
  5025. height:40px;
  5026. background:inherit;
  5027. background-color:rgba(255, 255, 255, 1);
  5028. box-sizing:border-box;
  5029. border-width:1px;
  5030. border-style:solid;
  5031. border-color:rgba(215, 215, 215, 1);
  5032. border-radius:4px;
  5033. -moz-box-shadow:none;
  5034. -webkit-box-shadow:none;
  5035. box-shadow:none;
  5036. font-size:11px;
  5037. }
  5038. #u127656 {
  5039. border-width:0px;
  5040. position:absolute;
  5041. left:2646px;
  5042. top:613px;
  5043. width:553px;
  5044. height:40px;
  5045. display:flex;
  5046. font-size:11px;
  5047. }
  5048. #u127656 .text {
  5049. position:absolute;
  5050. align-self:center;
  5051. padding:2px 2px 2px 2px;
  5052. box-sizing:border-box;
  5053. width:100%;
  5054. }
  5055. #u127656_text {
  5056. border-width:0px;
  5057. word-wrap:break-word;
  5058. text-transform:none;
  5059. visibility:hidden;
  5060. }
  5061. #u127657_input {
  5062. position:absolute;
  5063. left:0px;
  5064. top:0px;
  5065. width:534px;
  5066. height:31px;
  5067. padding:2px 2px 2px 2px;
  5068. font-family:'ArialMT', 'Arial', sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. font-size:11px;
  5072. letter-spacing:normal;
  5073. color:#AAAAAA;
  5074. vertical-align:none;
  5075. text-align:left;
  5076. text-transform:none;
  5077. background-color:transparent;
  5078. border-color:transparent;
  5079. }
  5080. #u127657_input.disabled {
  5081. position:absolute;
  5082. left:0px;
  5083. top:0px;
  5084. width:534px;
  5085. height:31px;
  5086. padding:2px 2px 2px 2px;
  5087. font-family:'ArialMT', 'Arial', sans-serif;
  5088. font-weight:400;
  5089. font-style:normal;
  5090. font-size:11px;
  5091. letter-spacing:normal;
  5092. color:#AAAAAA;
  5093. vertical-align:none;
  5094. text-align:left;
  5095. text-transform:none;
  5096. background-color:transparent;
  5097. border-color:transparent;
  5098. }
  5099. #u127657_div {
  5100. border-width:0px;
  5101. position:absolute;
  5102. left:0px;
  5103. top:0px;
  5104. width:534px;
  5105. height:31px;
  5106. background:inherit;
  5107. background-color:rgba(255, 255, 255, 1);
  5108. border:none;
  5109. border-radius:0px;
  5110. -moz-box-shadow:none;
  5111. -webkit-box-shadow:none;
  5112. box-shadow:none;
  5113. font-size:11px;
  5114. color:#AAAAAA;
  5115. }
  5116. #u127657 {
  5117. border-width:0px;
  5118. position:absolute;
  5119. left:2658px;
  5120. top:617px;
  5121. width:534px;
  5122. height:31px;
  5123. display:flex;
  5124. font-size:11px;
  5125. color:#AAAAAA;
  5126. }
  5127. #u127657 .text {
  5128. position:absolute;
  5129. align-self:flex-start;
  5130. padding:2px 2px 2px 2px;
  5131. box-sizing:border-box;
  5132. width:100%;
  5133. }
  5134. #u127657_div.disabled {
  5135. border-width:0px;
  5136. position:absolute;
  5137. left:0px;
  5138. top:0px;
  5139. width:534px;
  5140. height:31px;
  5141. background:inherit;
  5142. background-color:rgba(240, 240, 240, 1);
  5143. border:none;
  5144. border-radius:0px;
  5145. -moz-box-shadow:none;
  5146. -webkit-box-shadow:none;
  5147. box-shadow:none;
  5148. font-size:11px;
  5149. color:#AAAAAA;
  5150. }
  5151. #u127657.disabled {
  5152. }
  5153. .u127657_input_option {
  5154. font-size:11px;
  5155. }
  5156. #u127658_div {
  5157. border-width:0px;
  5158. position:absolute;
  5159. left:0px;
  5160. top:0px;
  5161. width:85px;
  5162. height:30px;
  5163. background:inherit;
  5164. background-color:rgba(255, 255, 255, 0);
  5165. border:none;
  5166. border-top:0px;
  5167. border-right:0px;
  5168. border-bottom:0px;
  5169. border-radius:0px;
  5170. border-top-left-radius:0px;
  5171. border-bottom-left-radius:0px;
  5172. -moz-box-shadow:none;
  5173. -webkit-box-shadow:none;
  5174. box-shadow:none;
  5175. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5176. font-weight:500;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. }
  5180. #u127658 {
  5181. border-width:0px;
  5182. position:absolute;
  5183. left:2526px;
  5184. top:569px;
  5185. width:85px;
  5186. height:30px;
  5187. display:flex;
  5188. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5189. font-weight:500;
  5190. font-style:normal;
  5191. font-size:14px;
  5192. }
  5193. #u127658 .text {
  5194. position:absolute;
  5195. align-self:center;
  5196. padding:5px 0px 5px 0px;
  5197. box-sizing:border-box;
  5198. width:100%;
  5199. }
  5200. #u127658_text {
  5201. border-width:0px;
  5202. white-space:nowrap;
  5203. text-transform:none;
  5204. }
  5205. #u127659_div {
  5206. border-width:0px;
  5207. position:absolute;
  5208. left:0px;
  5209. top:0px;
  5210. width:78px;
  5211. height:30px;
  5212. background:inherit;
  5213. background-color:rgba(255, 255, 255, 0);
  5214. border:none;
  5215. border-top:0px;
  5216. border-right:0px;
  5217. border-bottom:0px;
  5218. border-radius:0px;
  5219. border-top-left-radius:0px;
  5220. border-bottom-left-radius:0px;
  5221. -moz-box-shadow:none;
  5222. -webkit-box-shadow:none;
  5223. box-shadow:none;
  5224. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:14px;
  5228. color:#7F7F7F;
  5229. }
  5230. #u127659 {
  5231. border-width:0px;
  5232. position:absolute;
  5233. left:2560px;
  5234. top:668px;
  5235. width:78px;
  5236. height:30px;
  5237. display:flex;
  5238. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5239. font-weight:400;
  5240. font-style:normal;
  5241. font-size:14px;
  5242. color:#7F7F7F;
  5243. }
  5244. #u127659 .text {
  5245. position:absolute;
  5246. align-self:center;
  5247. padding:5px 0px 5px 0px;
  5248. box-sizing:border-box;
  5249. width:100%;
  5250. }
  5251. #u127659_text {
  5252. border-width:0px;
  5253. white-space:nowrap;
  5254. text-transform:none;
  5255. }
  5256. #u127660 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:0px;
  5260. top:0px;
  5261. width:0px;
  5262. height:0px;
  5263. }
  5264. #u127661_div {
  5265. border-width:0px;
  5266. position:absolute;
  5267. left:0px;
  5268. top:0px;
  5269. width:553px;
  5270. height:40px;
  5271. background:inherit;
  5272. background-color:rgba(255, 255, 255, 1);
  5273. box-sizing:border-box;
  5274. border-width:1px;
  5275. border-style:solid;
  5276. border-color:rgba(215, 215, 215, 1);
  5277. border-radius:4px;
  5278. -moz-box-shadow:none;
  5279. -webkit-box-shadow:none;
  5280. box-shadow:none;
  5281. font-size:11px;
  5282. }
  5283. #u127661 {
  5284. border-width:0px;
  5285. position:absolute;
  5286. left:2646px;
  5287. top:663px;
  5288. width:553px;
  5289. height:40px;
  5290. display:flex;
  5291. font-size:11px;
  5292. }
  5293. #u127661 .text {
  5294. position:absolute;
  5295. align-self:center;
  5296. padding:2px 2px 2px 2px;
  5297. box-sizing:border-box;
  5298. width:100%;
  5299. }
  5300. #u127661_text {
  5301. border-width:0px;
  5302. word-wrap:break-word;
  5303. text-transform:none;
  5304. visibility:hidden;
  5305. }
  5306. #u127662_input {
  5307. position:absolute;
  5308. left:0px;
  5309. top:0px;
  5310. width:534px;
  5311. height:31px;
  5312. padding:2px 2px 2px 2px;
  5313. font-family:'ArialMT', 'Arial', sans-serif;
  5314. font-weight:400;
  5315. font-style:normal;
  5316. font-size:11px;
  5317. letter-spacing:normal;
  5318. color:#AAAAAA;
  5319. vertical-align:none;
  5320. text-align:left;
  5321. text-transform:none;
  5322. background-color:transparent;
  5323. border-color:transparent;
  5324. }
  5325. #u127662_input.disabled {
  5326. position:absolute;
  5327. left:0px;
  5328. top:0px;
  5329. width:534px;
  5330. height:31px;
  5331. padding:2px 2px 2px 2px;
  5332. font-family:'ArialMT', 'Arial', sans-serif;
  5333. font-weight:400;
  5334. font-style:normal;
  5335. font-size:11px;
  5336. letter-spacing:normal;
  5337. color:#AAAAAA;
  5338. vertical-align:none;
  5339. text-align:left;
  5340. text-transform:none;
  5341. background-color:transparent;
  5342. border-color:transparent;
  5343. }
  5344. #u127662_div {
  5345. border-width:0px;
  5346. position:absolute;
  5347. left:0px;
  5348. top:0px;
  5349. width:534px;
  5350. height:31px;
  5351. background:inherit;
  5352. background-color:rgba(255, 255, 255, 1);
  5353. border:none;
  5354. border-radius:0px;
  5355. -moz-box-shadow:none;
  5356. -webkit-box-shadow:none;
  5357. box-shadow:none;
  5358. font-size:11px;
  5359. color:#AAAAAA;
  5360. }
  5361. #u127662 {
  5362. border-width:0px;
  5363. position:absolute;
  5364. left:2658px;
  5365. top:667px;
  5366. width:534px;
  5367. height:31px;
  5368. display:flex;
  5369. font-size:11px;
  5370. color:#AAAAAA;
  5371. }
  5372. #u127662 .text {
  5373. position:absolute;
  5374. align-self:flex-start;
  5375. padding:2px 2px 2px 2px;
  5376. box-sizing:border-box;
  5377. width:100%;
  5378. }
  5379. #u127662_div.disabled {
  5380. border-width:0px;
  5381. position:absolute;
  5382. left:0px;
  5383. top:0px;
  5384. width:534px;
  5385. height:31px;
  5386. background:inherit;
  5387. background-color:rgba(240, 240, 240, 1);
  5388. border:none;
  5389. border-radius:0px;
  5390. -moz-box-shadow:none;
  5391. -webkit-box-shadow:none;
  5392. box-shadow:none;
  5393. font-size:11px;
  5394. color:#AAAAAA;
  5395. }
  5396. #u127662.disabled {
  5397. }
  5398. .u127662_input_option {
  5399. font-size:11px;
  5400. }
  5401. #u127663 {
  5402. border-width:0px;
  5403. position:absolute;
  5404. left:0px;
  5405. top:0px;
  5406. width:0px;
  5407. height:0px;
  5408. }
  5409. #u127664_div {
  5410. border-width:0px;
  5411. position:absolute;
  5412. left:0px;
  5413. top:0px;
  5414. width:553px;
  5415. height:40px;
  5416. background:inherit;
  5417. background-color:rgba(255, 255, 255, 1);
  5418. box-sizing:border-box;
  5419. border-width:1px;
  5420. border-style:solid;
  5421. border-color:rgba(215, 215, 215, 1);
  5422. border-radius:4px;
  5423. -moz-box-shadow:none;
  5424. -webkit-box-shadow:none;
  5425. box-shadow:none;
  5426. font-size:11px;
  5427. }
  5428. #u127664 {
  5429. border-width:0px;
  5430. position:absolute;
  5431. left:2646px;
  5432. top:299px;
  5433. width:553px;
  5434. height:40px;
  5435. display:flex;
  5436. font-size:11px;
  5437. }
  5438. #u127664 .text {
  5439. position:absolute;
  5440. align-self:center;
  5441. padding:2px 2px 2px 2px;
  5442. box-sizing:border-box;
  5443. width:100%;
  5444. }
  5445. #u127664_text {
  5446. border-width:0px;
  5447. word-wrap:break-word;
  5448. text-transform:none;
  5449. visibility:hidden;
  5450. }
  5451. #u127665_input {
  5452. position:absolute;
  5453. left:0px;
  5454. top:0px;
  5455. width:534px;
  5456. height:31px;
  5457. padding:2px 2px 2px 2px;
  5458. font-family:'ArialMT', 'Arial', sans-serif;
  5459. font-weight:400;
  5460. font-style:normal;
  5461. font-size:11px;
  5462. letter-spacing:normal;
  5463. color:#AAAAAA;
  5464. vertical-align:none;
  5465. text-align:left;
  5466. text-transform:none;
  5467. background-color:transparent;
  5468. border-color:transparent;
  5469. }
  5470. #u127665_input.disabled {
  5471. position:absolute;
  5472. left:0px;
  5473. top:0px;
  5474. width:534px;
  5475. height:31px;
  5476. padding:2px 2px 2px 2px;
  5477. font-family:'ArialMT', 'Arial', sans-serif;
  5478. font-weight:400;
  5479. font-style:normal;
  5480. font-size:11px;
  5481. letter-spacing:normal;
  5482. color:#AAAAAA;
  5483. vertical-align:none;
  5484. text-align:left;
  5485. text-transform:none;
  5486. background-color:transparent;
  5487. border-color:transparent;
  5488. }
  5489. #u127665_div {
  5490. border-width:0px;
  5491. position:absolute;
  5492. left:0px;
  5493. top:0px;
  5494. width:534px;
  5495. height:31px;
  5496. background:inherit;
  5497. background-color:rgba(255, 255, 255, 1);
  5498. border:none;
  5499. border-radius:0px;
  5500. -moz-box-shadow:none;
  5501. -webkit-box-shadow:none;
  5502. box-shadow:none;
  5503. font-size:11px;
  5504. color:#AAAAAA;
  5505. }
  5506. #u127665 {
  5507. border-width:0px;
  5508. position:absolute;
  5509. left:2658px;
  5510. top:303px;
  5511. width:534px;
  5512. height:31px;
  5513. display:flex;
  5514. font-size:11px;
  5515. color:#AAAAAA;
  5516. }
  5517. #u127665 .text {
  5518. position:absolute;
  5519. align-self:flex-start;
  5520. padding:2px 2px 2px 2px;
  5521. box-sizing:border-box;
  5522. width:100%;
  5523. }
  5524. #u127665_div.disabled {
  5525. border-width:0px;
  5526. position:absolute;
  5527. left:0px;
  5528. top:0px;
  5529. width:534px;
  5530. height:31px;
  5531. background:inherit;
  5532. background-color:rgba(240, 240, 240, 1);
  5533. border:none;
  5534. border-radius:0px;
  5535. -moz-box-shadow:none;
  5536. -webkit-box-shadow:none;
  5537. box-shadow:none;
  5538. font-size:11px;
  5539. color:#AAAAAA;
  5540. }
  5541. #u127665.disabled {
  5542. }
  5543. .u127665_input_option {
  5544. font-size:11px;
  5545. }
  5546. #u127666_div {
  5547. border-width:0px;
  5548. position:absolute;
  5549. left:0px;
  5550. top:0px;
  5551. width:106px;
  5552. height:30px;
  5553. background:inherit;
  5554. background-color:rgba(255, 255, 255, 0);
  5555. border:none;
  5556. border-top:0px;
  5557. border-right:0px;
  5558. border-bottom:0px;
  5559. border-radius:0px;
  5560. border-top-left-radius:0px;
  5561. border-bottom-left-radius:0px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5566. font-weight:400;
  5567. font-style:normal;
  5568. font-size:14px;
  5569. color:#7F7F7F;
  5570. }
  5571. #u127666 {
  5572. border-width:0px;
  5573. position:absolute;
  5574. left:2540px;
  5575. top:249px;
  5576. width:106px;
  5577. height:30px;
  5578. display:flex;
  5579. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5580. font-weight:400;
  5581. font-style:normal;
  5582. font-size:14px;
  5583. color:#7F7F7F;
  5584. }
  5585. #u127666 .text {
  5586. position:absolute;
  5587. align-self:center;
  5588. padding:5px 0px 5px 0px;
  5589. box-sizing:border-box;
  5590. width:100%;
  5591. }
  5592. #u127666_text {
  5593. border-width:0px;
  5594. white-space:nowrap;
  5595. text-transform:none;
  5596. }
  5597. #u127667 label {
  5598. left:0px;
  5599. width:100%;
  5600. }
  5601. #u127667_img {
  5602. border-width:0px;
  5603. position:absolute;
  5604. left:0px;
  5605. top:4px;
  5606. width:12px;
  5607. height:12px;
  5608. }
  5609. #u127667 {
  5610. border-width:0px;
  5611. position:absolute;
  5612. left:2647px;
  5613. top:254px;
  5614. width:140px;
  5615. height:20px;
  5616. display:flex;
  5617. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5618. font-weight:400;
  5619. font-style:normal;
  5620. font-size:14px;
  5621. }
  5622. #u127667 .text {
  5623. position:absolute;
  5624. align-self:center;
  5625. padding:0px 2px 0px 2px;
  5626. box-sizing:border-box;
  5627. }
  5628. #u127667_img.selected {
  5629. }
  5630. #u127667.selected {
  5631. }
  5632. #u127667_img.disabled {
  5633. }
  5634. #u127667.disabled {
  5635. }
  5636. #u127667_img.selectedDisabled {
  5637. }
  5638. #u127667.selectedDisabled {
  5639. }
  5640. #u127667_text {
  5641. border-width:0px;
  5642. position:absolute;
  5643. left:14px;
  5644. top:0px;
  5645. width:124px;
  5646. word-wrap:break-word;
  5647. text-transform:none;
  5648. }
  5649. #u127667_input {
  5650. border-width:0px;
  5651. position:absolute;
  5652. left:0px;
  5653. top:0px;
  5654. width:0px;
  5655. height:0px;
  5656. opacity:0;
  5657. }
  5658. #u127668 label {
  5659. left:0px;
  5660. width:100%;
  5661. }
  5662. #u127668_img {
  5663. border-width:0px;
  5664. position:absolute;
  5665. left:0px;
  5666. top:4px;
  5667. width:12px;
  5668. height:12px;
  5669. }
  5670. #u127668 {
  5671. border-width:0px;
  5672. position:absolute;
  5673. left:2807px;
  5674. top:254px;
  5675. width:140px;
  5676. height:20px;
  5677. display:flex;
  5678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5679. font-weight:400;
  5680. font-style:normal;
  5681. font-size:14px;
  5682. }
  5683. #u127668 .text {
  5684. position:absolute;
  5685. align-self:center;
  5686. padding:0px 2px 0px 2px;
  5687. box-sizing:border-box;
  5688. }
  5689. #u127668_img.selected {
  5690. }
  5691. #u127668.selected {
  5692. }
  5693. #u127668_img.disabled {
  5694. }
  5695. #u127668.disabled {
  5696. }
  5697. #u127668_img.selectedDisabled {
  5698. }
  5699. #u127668.selectedDisabled {
  5700. }
  5701. #u127668_text {
  5702. border-width:0px;
  5703. position:absolute;
  5704. left:14px;
  5705. top:0px;
  5706. width:124px;
  5707. word-wrap:break-word;
  5708. text-transform:none;
  5709. }
  5710. #u127668_input {
  5711. border-width:0px;
  5712. position:absolute;
  5713. left:0px;
  5714. top:0px;
  5715. width:0px;
  5716. height:0px;
  5717. opacity:0;
  5718. }
  5719. #u127669_div {
  5720. border-width:0px;
  5721. position:absolute;
  5722. left:0px;
  5723. top:0px;
  5724. width:416px;
  5725. height:30px;
  5726. background:inherit;
  5727. background-color:rgba(255, 255, 255, 0);
  5728. border:none;
  5729. border-top:0px;
  5730. border-right:0px;
  5731. border-bottom:0px;
  5732. border-radius:0px;
  5733. border-top-left-radius:0px;
  5734. border-bottom-left-radius:0px;
  5735. -moz-box-shadow:none;
  5736. -webkit-box-shadow:none;
  5737. box-shadow:none;
  5738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5739. font-weight:400;
  5740. font-style:normal;
  5741. font-size:14px;
  5742. color:#D9001B;
  5743. }
  5744. #u127669 {
  5745. border-width:0px;
  5746. position:absolute;
  5747. left:2646px;
  5748. top:580px;
  5749. width:416px;
  5750. height:30px;
  5751. display:flex;
  5752. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5753. font-weight:400;
  5754. font-style:normal;
  5755. font-size:14px;
  5756. color:#D9001B;
  5757. }
  5758. #u127669 .text {
  5759. position:absolute;
  5760. align-self:center;
  5761. padding:5px 0px 5px 0px;
  5762. box-sizing:border-box;
  5763. width:100%;
  5764. }
  5765. #u127669_text {
  5766. border-width:0px;
  5767. white-space:nowrap;
  5768. text-transform:none;
  5769. }
  5770. #u127670 {
  5771. border-width:0px;
  5772. position:absolute;
  5773. left:0px;
  5774. top:0px;
  5775. width:0px;
  5776. height:0px;
  5777. }
  5778. #u127671_div {
  5779. border-width:0px;
  5780. position:absolute;
  5781. left:0px;
  5782. top:0px;
  5783. width:1219px;
  5784. height:60px;
  5785. background:inherit;
  5786. background-color:rgba(242, 242, 242, 1);
  5787. border:none;
  5788. border-radius:6px;
  5789. -moz-box-shadow:none;
  5790. -webkit-box-shadow:none;
  5791. box-shadow:none;
  5792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5793. font-weight:400;
  5794. font-style:normal;
  5795. font-size:18px;
  5796. color:#555555;
  5797. text-align:left;
  5798. line-height:40px;
  5799. }
  5800. #u127671 {
  5801. border-width:0px;
  5802. position:absolute;
  5803. left:350px;
  5804. top:99px;
  5805. width:1219px;
  5806. height:60px;
  5807. display:flex;
  5808. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5809. font-weight:400;
  5810. font-style:normal;
  5811. font-size:18px;
  5812. color:#555555;
  5813. text-align:left;
  5814. line-height:40px;
  5815. }
  5816. #u127671 .text {
  5817. position:absolute;
  5818. align-self:center;
  5819. padding:2px 2px 2px 30px;
  5820. box-sizing:border-box;
  5821. width:100%;
  5822. }
  5823. #u127671_text {
  5824. border-width:0px;
  5825. word-wrap:break-word;
  5826. text-transform:none;
  5827. visibility:hidden;
  5828. }
  5829. #u127672_div {
  5830. border-width:0px;
  5831. position:absolute;
  5832. left:0px;
  5833. top:0px;
  5834. width:235px;
  5835. height:25px;
  5836. background:inherit;
  5837. background-color:rgba(255, 255, 255, 0);
  5838. border:none;
  5839. border-radius:0px;
  5840. -moz-box-shadow:none;
  5841. -webkit-box-shadow:none;
  5842. box-shadow:none;
  5843. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5844. font-style:normal;
  5845. font-size:18px;
  5846. }
  5847. #u127672 {
  5848. border-width:0px;
  5849. position:absolute;
  5850. left:380px;
  5851. top:119px;
  5852. width:235px;
  5853. height:25px;
  5854. display:flex;
  5855. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5856. font-style:normal;
  5857. font-size:18px;
  5858. }
  5859. #u127672 .text {
  5860. position:absolute;
  5861. align-self:flex-start;
  5862. padding:0px 0px 0px 0px;
  5863. box-sizing:border-box;
  5864. width:100%;
  5865. }
  5866. #u127672_text {
  5867. border-width:0px;
  5868. white-space:nowrap;
  5869. text-transform:none;
  5870. }
  5871. #u127673_div {
  5872. border-width:0px;
  5873. position:absolute;
  5874. left:0px;
  5875. top:0px;
  5876. width:289px;
  5877. height:25px;
  5878. background:inherit;
  5879. background-color:rgba(255, 255, 255, 0);
  5880. border:none;
  5881. border-radius:0px;
  5882. -moz-box-shadow:none;
  5883. -webkit-box-shadow:none;
  5884. box-shadow:none;
  5885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5886. font-style:normal;
  5887. font-size:18px;
  5888. }
  5889. #u127673 {
  5890. border-width:0px;
  5891. position:absolute;
  5892. left:916px;
  5893. top:119px;
  5894. width:289px;
  5895. height:25px;
  5896. display:flex;
  5897. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5898. font-style:normal;
  5899. font-size:18px;
  5900. }
  5901. #u127673 .text {
  5902. position:absolute;
  5903. align-self:flex-start;
  5904. padding:0px 0px 0px 0px;
  5905. box-sizing:border-box;
  5906. width:100%;
  5907. }
  5908. #u127673_text {
  5909. border-width:0px;
  5910. white-space:nowrap;
  5911. text-transform:none;
  5912. }
  5913. #u127674_div {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:37px;
  5919. height:25px;
  5920. background:inherit;
  5921. background-color:rgba(255, 255, 255, 0);
  5922. border:none;
  5923. border-radius:0px;
  5924. -moz-box-shadow:none;
  5925. -webkit-box-shadow:none;
  5926. box-shadow:none;
  5927. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5928. font-weight:400;
  5929. font-style:normal;
  5930. font-size:18px;
  5931. color:#1890FF;
  5932. }
  5933. #u127674 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:1514px;
  5937. top:119px;
  5938. width:37px;
  5939. height:25px;
  5940. display:flex;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:18px;
  5945. color:#1890FF;
  5946. }
  5947. #u127674 .text {
  5948. position:absolute;
  5949. align-self:flex-start;
  5950. padding:0px 0px 0px 0px;
  5951. box-sizing:border-box;
  5952. width:100%;
  5953. }
  5954. #u127674_text {
  5955. border-width:0px;
  5956. white-space:nowrap;
  5957. text-transform:none;
  5958. }
  5959. #u127675 {
  5960. border-width:0px;
  5961. position:absolute;
  5962. left:0px;
  5963. top:0px;
  5964. width:0px;
  5965. height:0px;
  5966. }
  5967. #u127676_div {
  5968. border-width:0px;
  5969. position:absolute;
  5970. left:0px;
  5971. top:0px;
  5972. width:140px;
  5973. height:30px;
  5974. background:inherit;
  5975. background-color:rgba(255, 255, 255, 1);
  5976. box-sizing:border-box;
  5977. border-width:1px;
  5978. border-style:solid;
  5979. border-color:rgba(201, 201, 201, 1);
  5980. border-radius:4px;
  5981. -moz-box-shadow:none;
  5982. -webkit-box-shadow:none;
  5983. box-shadow:none;
  5984. font-family:'Microsoft YaHei', sans-serif;
  5985. font-weight:400;
  5986. font-style:normal;
  5987. font-size:14px;
  5988. color:#CCCCCC;
  5989. text-align:left;
  5990. }
  5991. #u127676 {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:500px;
  5995. top:177px;
  5996. width:140px;
  5997. height:30px;
  5998. display:flex;
  5999. font-family:'Microsoft YaHei', sans-serif;
  6000. font-weight:400;
  6001. font-style:normal;
  6002. font-size:14px;
  6003. color:#CCCCCC;
  6004. text-align:left;
  6005. }
  6006. #u127676 .text {
  6007. position:absolute;
  6008. align-self:center;
  6009. padding:2px 8px 2px 8px;
  6010. box-sizing:border-box;
  6011. width:100%;
  6012. }
  6013. #u127676_text {
  6014. border-width:0px;
  6015. word-wrap:break-word;
  6016. text-transform:none;
  6017. visibility:hidden;
  6018. }
  6019. #u127677_input {
  6020. position:absolute;
  6021. left:0px;
  6022. top:0px;
  6023. width:127px;
  6024. height:25px;
  6025. padding:2px 2px 2px 2px;
  6026. font-family:'Microsoft YaHei', sans-serif;
  6027. font-weight:400;
  6028. font-style:normal;
  6029. font-size:10px;
  6030. letter-spacing:normal;
  6031. color:#000000;
  6032. vertical-align:none;
  6033. text-align:left;
  6034. text-transform:none;
  6035. background-color:transparent;
  6036. border-color:transparent;
  6037. }
  6038. #u127677_input.disabled {
  6039. position:absolute;
  6040. left:0px;
  6041. top:0px;
  6042. width:127px;
  6043. height:25px;
  6044. padding:2px 2px 2px 2px;
  6045. font-family:'Microsoft YaHei', sans-serif;
  6046. font-weight:400;
  6047. font-style:normal;
  6048. font-size:10px;
  6049. letter-spacing:normal;
  6050. color:#000000;
  6051. vertical-align:none;
  6052. text-align:left;
  6053. text-transform:none;
  6054. background-color:transparent;
  6055. border-color:transparent;
  6056. }
  6057. #u127677_div {
  6058. border-width:0px;
  6059. position:absolute;
  6060. left:0px;
  6061. top:0px;
  6062. width:127px;
  6063. height:25px;
  6064. background:inherit;
  6065. background-color:rgba(255, 255, 255, 1);
  6066. border:none;
  6067. border-radius:0px;
  6068. -moz-box-shadow:none;
  6069. -webkit-box-shadow:none;
  6070. box-shadow:none;
  6071. font-family:'Microsoft YaHei', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:10px;
  6075. }
  6076. #u127677 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:508px;
  6080. top:178px;
  6081. width:127px;
  6082. height:25px;
  6083. display:flex;
  6084. font-family:'Microsoft YaHei', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:10px;
  6088. }
  6089. #u127677 .text {
  6090. position:absolute;
  6091. align-self:center;
  6092. padding:2px 2px 2px 2px;
  6093. box-sizing:border-box;
  6094. width:100%;
  6095. }
  6096. #u127677_div.disabled {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:0px;
  6100. top:0px;
  6101. width:127px;
  6102. height:25px;
  6103. background:inherit;
  6104. background-color:rgba(240, 240, 240, 1);
  6105. border:none;
  6106. border-radius:0px;
  6107. -moz-box-shadow:none;
  6108. -webkit-box-shadow:none;
  6109. box-shadow:none;
  6110. font-family:'Microsoft YaHei', sans-serif;
  6111. font-weight:400;
  6112. font-style:normal;
  6113. font-size:10px;
  6114. }
  6115. #u127677.disabled {
  6116. }
  6117. #u127678 {
  6118. border-width:0px;
  6119. position:absolute;
  6120. left:0px;
  6121. top:0px;
  6122. width:0px;
  6123. height:0px;
  6124. }
  6125. #u127679_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:200px;
  6131. height:1180px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 1);
  6134. border:none;
  6135. border-radius:0px;
  6136. -moz-box-shadow:none;
  6137. -webkit-box-shadow:none;
  6138. box-shadow:none;
  6139. }
  6140. #u127679 {
  6141. border-width:0px;
  6142. position:absolute;
  6143. left:120px;
  6144. top:50px;
  6145. width:200px;
  6146. height:1180px;
  6147. display:flex;
  6148. }
  6149. #u127679 .text {
  6150. position:absolute;
  6151. align-self:center;
  6152. padding:2px 2px 2px 2px;
  6153. box-sizing:border-box;
  6154. width:100%;
  6155. }
  6156. #u127679_text {
  6157. border-width:0px;
  6158. word-wrap:break-word;
  6159. text-transform:none;
  6160. visibility:hidden;
  6161. }
  6162. #u127680_div {
  6163. border-width:0px;
  6164. position:absolute;
  6165. left:0px;
  6166. top:0px;
  6167. width:200px;
  6168. height:60px;
  6169. background:inherit;
  6170. background-color:rgba(224, 231, 247, 1);
  6171. border:none;
  6172. border-radius:0px;
  6173. -moz-box-shadow:none;
  6174. -webkit-box-shadow:none;
  6175. box-shadow:none;
  6176. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6177. font-weight:500;
  6178. font-style:normal;
  6179. font-size:18px;
  6180. }
  6181. #u127680 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:120px;
  6185. top:50px;
  6186. width:200px;
  6187. height:60px;
  6188. display:flex;
  6189. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6190. font-weight:500;
  6191. font-style:normal;
  6192. font-size:18px;
  6193. }
  6194. #u127680 .text {
  6195. position:absolute;
  6196. align-self:center;
  6197. padding:0px 0px 0px 20px;
  6198. box-sizing:border-box;
  6199. width:100%;
  6200. }
  6201. #u127680_text {
  6202. border-width:0px;
  6203. word-wrap:break-word;
  6204. text-transform:none;
  6205. }
  6206. #u127681_div {
  6207. border-width:0px;
  6208. position:absolute;
  6209. left:0px;
  6210. top:0px;
  6211. width:65px;
  6212. height:22px;
  6213. background:inherit;
  6214. background-color:rgba(255, 255, 255, 0);
  6215. border:none;
  6216. border-radius:0px;
  6217. -moz-box-shadow:none;
  6218. -webkit-box-shadow:none;
  6219. box-shadow:none;
  6220. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6221. font-weight:400;
  6222. font-style:normal;
  6223. font-size:16px;
  6224. }
  6225. #u127681 {
  6226. border-width:0px;
  6227. position:absolute;
  6228. left:146px;
  6229. top:167px;
  6230. width:65px;
  6231. height:22px;
  6232. display:flex;
  6233. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6234. font-weight:400;
  6235. font-style:normal;
  6236. font-size:16px;
  6237. }
  6238. #u127681 .text {
  6239. position:absolute;
  6240. align-self:flex-start;
  6241. padding:0px 0px 0px 0px;
  6242. box-sizing:border-box;
  6243. width:100%;
  6244. }
  6245. #u127681_text {
  6246. border-width:0px;
  6247. white-space:nowrap;
  6248. text-transform:none;
  6249. }
  6250. #u127682_div {
  6251. border-width:0px;
  6252. position:absolute;
  6253. left:0px;
  6254. top:0px;
  6255. width:65px;
  6256. height:22px;
  6257. background:inherit;
  6258. background-color:rgba(255, 255, 255, 0);
  6259. border:none;
  6260. border-radius:0px;
  6261. -moz-box-shadow:none;
  6262. -webkit-box-shadow:none;
  6263. box-shadow:none;
  6264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6265. font-weight:400;
  6266. font-style:normal;
  6267. font-size:16px;
  6268. }
  6269. #u127682 {
  6270. border-width:0px;
  6271. position:absolute;
  6272. left:146px;
  6273. top:209px;
  6274. width:65px;
  6275. height:22px;
  6276. display:flex;
  6277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6278. font-weight:400;
  6279. font-style:normal;
  6280. font-size:16px;
  6281. }
  6282. #u127682 .text {
  6283. position:absolute;
  6284. align-self:flex-start;
  6285. padding:0px 0px 0px 0px;
  6286. box-sizing:border-box;
  6287. width:100%;
  6288. }
  6289. #u127682_text {
  6290. border-width:0px;
  6291. white-space:nowrap;
  6292. text-transform:none;
  6293. }
  6294. #u127683_div {
  6295. border-width:0px;
  6296. position:absolute;
  6297. left:0px;
  6298. top:0px;
  6299. width:49px;
  6300. height:17px;
  6301. background:inherit;
  6302. background-color:rgba(255, 255, 255, 0);
  6303. border:none;
  6304. border-radius:0px;
  6305. -moz-box-shadow:none;
  6306. -webkit-box-shadow:none;
  6307. box-shadow:none;
  6308. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6309. font-weight:400;
  6310. font-style:normal;
  6311. font-size:12px;
  6312. color:#AAAAAA;
  6313. }
  6314. #u127683 {
  6315. border-width:0px;
  6316. position:absolute;
  6317. left:146px;
  6318. top:130px;
  6319. width:49px;
  6320. height:17px;
  6321. display:flex;
  6322. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6323. font-weight:400;
  6324. font-style:normal;
  6325. font-size:12px;
  6326. color:#AAAAAA;
  6327. }
  6328. #u127683 .text {
  6329. position:absolute;
  6330. align-self:flex-start;
  6331. padding:0px 0px 0px 0px;
  6332. box-sizing:border-box;
  6333. width:100%;
  6334. }
  6335. #u127683_text {
  6336. border-width:0px;
  6337. white-space:nowrap;
  6338. text-transform:none;
  6339. }
  6340. #u127684_div {
  6341. border-width:0px;
  6342. position:absolute;
  6343. left:0px;
  6344. top:0px;
  6345. width:49px;
  6346. height:17px;
  6347. background:inherit;
  6348. background-color:rgba(255, 255, 255, 0);
  6349. border:none;
  6350. border-radius:0px;
  6351. -moz-box-shadow:none;
  6352. -webkit-box-shadow:none;
  6353. box-shadow:none;
  6354. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6355. font-weight:400;
  6356. font-style:normal;
  6357. font-size:12px;
  6358. color:#AAAAAA;
  6359. }
  6360. #u127684 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:146px;
  6364. top:585px;
  6365. width:49px;
  6366. height:17px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:12px;
  6372. color:#AAAAAA;
  6373. }
  6374. #u127684 .text {
  6375. position:absolute;
  6376. align-self:flex-start;
  6377. padding:0px 0px 0px 0px;
  6378. box-sizing:border-box;
  6379. width:100%;
  6380. }
  6381. #u127684_text {
  6382. border-width:0px;
  6383. white-space:nowrap;
  6384. text-transform:none;
  6385. }
  6386. #u127685_img {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:201px;
  6392. height:2px;
  6393. }
  6394. #u127685 {
  6395. border-width:0px;
  6396. position:absolute;
  6397. left:120px;
  6398. top:563px;
  6399. width:200px;
  6400. height:1px;
  6401. display:flex;
  6402. }
  6403. #u127685 .text {
  6404. position:absolute;
  6405. align-self:center;
  6406. padding:2px 2px 2px 2px;
  6407. box-sizing:border-box;
  6408. width:100%;
  6409. }
  6410. #u127685_text {
  6411. border-width:0px;
  6412. word-wrap:break-word;
  6413. text-transform:none;
  6414. visibility:hidden;
  6415. }
  6416. #u127686_div {
  6417. border-width:0px;
  6418. position:absolute;
  6419. left:0px;
  6420. top:0px;
  6421. width:65px;
  6422. height:22px;
  6423. background:inherit;
  6424. background-color:rgba(255, 255, 255, 0);
  6425. border:none;
  6426. border-radius:0px;
  6427. -moz-box-shadow:none;
  6428. -webkit-box-shadow:none;
  6429. box-shadow:none;
  6430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6431. font-weight:400;
  6432. font-style:normal;
  6433. font-size:16px;
  6434. }
  6435. #u127686 {
  6436. border-width:0px;
  6437. position:absolute;
  6438. left:146px;
  6439. top:623px;
  6440. width:65px;
  6441. height:22px;
  6442. display:flex;
  6443. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6444. font-weight:400;
  6445. font-style:normal;
  6446. font-size:16px;
  6447. }
  6448. #u127686 .text {
  6449. position:absolute;
  6450. align-self:flex-start;
  6451. padding:0px 0px 0px 0px;
  6452. box-sizing:border-box;
  6453. width:100%;
  6454. }
  6455. #u127686_text {
  6456. border-width:0px;
  6457. white-space:nowrap;
  6458. text-transform:none;
  6459. }
  6460. #u127687_div {
  6461. border-width:0px;
  6462. position:absolute;
  6463. left:0px;
  6464. top:0px;
  6465. width:97px;
  6466. height:22px;
  6467. background:inherit;
  6468. background-color:rgba(255, 255, 255, 0);
  6469. border:none;
  6470. border-radius:0px;
  6471. -moz-box-shadow:none;
  6472. -webkit-box-shadow:none;
  6473. box-shadow:none;
  6474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6475. font-weight:400;
  6476. font-style:normal;
  6477. font-size:16px;
  6478. }
  6479. #u127687 {
  6480. border-width:0px;
  6481. position:absolute;
  6482. left:146px;
  6483. top:665px;
  6484. width:97px;
  6485. height:22px;
  6486. display:flex;
  6487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6488. font-weight:400;
  6489. font-style:normal;
  6490. font-size:16px;
  6491. }
  6492. #u127687 .text {
  6493. position:absolute;
  6494. align-self:flex-start;
  6495. padding:0px 0px 0px 0px;
  6496. box-sizing:border-box;
  6497. width:100%;
  6498. }
  6499. #u127687_text {
  6500. border-width:0px;
  6501. white-space:nowrap;
  6502. text-transform:none;
  6503. }
  6504. #u127688_div {
  6505. border-width:0px;
  6506. position:absolute;
  6507. left:0px;
  6508. top:0px;
  6509. width:97px;
  6510. height:22px;
  6511. background:inherit;
  6512. background-color:rgba(255, 255, 255, 0);
  6513. border:none;
  6514. border-radius:0px;
  6515. -moz-box-shadow:none;
  6516. -webkit-box-shadow:none;
  6517. box-shadow:none;
  6518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6519. font-weight:400;
  6520. font-style:normal;
  6521. font-size:16px;
  6522. }
  6523. #u127688 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:146px;
  6527. top:707px;
  6528. width:97px;
  6529. height:22px;
  6530. display:flex;
  6531. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6532. font-weight:400;
  6533. font-style:normal;
  6534. font-size:16px;
  6535. }
  6536. #u127688 .text {
  6537. position:absolute;
  6538. align-self:flex-start;
  6539. padding:0px 0px 0px 0px;
  6540. box-sizing:border-box;
  6541. width:100%;
  6542. }
  6543. #u127688_text {
  6544. border-width:0px;
  6545. white-space:nowrap;
  6546. text-transform:none;
  6547. }
  6548. #u127689_div {
  6549. border-width:0px;
  6550. position:absolute;
  6551. left:0px;
  6552. top:0px;
  6553. width:97px;
  6554. height:22px;
  6555. background:inherit;
  6556. background-color:rgba(255, 255, 255, 0);
  6557. border:none;
  6558. border-radius:0px;
  6559. -moz-box-shadow:none;
  6560. -webkit-box-shadow:none;
  6561. box-shadow:none;
  6562. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6563. font-weight:400;
  6564. font-style:normal;
  6565. font-size:16px;
  6566. }
  6567. #u127689 {
  6568. border-width:0px;
  6569. position:absolute;
  6570. left:146px;
  6571. top:749px;
  6572. width:97px;
  6573. height:22px;
  6574. display:flex;
  6575. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6576. font-weight:400;
  6577. font-style:normal;
  6578. font-size:16px;
  6579. }
  6580. #u127689 .text {
  6581. position:absolute;
  6582. align-self:flex-start;
  6583. padding:0px 0px 0px 0px;
  6584. box-sizing:border-box;
  6585. width:100%;
  6586. }
  6587. #u127689_text {
  6588. border-width:0px;
  6589. white-space:nowrap;
  6590. text-transform:none;
  6591. }
  6592. #u127690_div {
  6593. border-width:0px;
  6594. position:absolute;
  6595. left:0px;
  6596. top:0px;
  6597. width:97px;
  6598. height:22px;
  6599. background:inherit;
  6600. background-color:rgba(255, 255, 255, 0);
  6601. border:none;
  6602. border-radius:0px;
  6603. -moz-box-shadow:none;
  6604. -webkit-box-shadow:none;
  6605. box-shadow:none;
  6606. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6607. font-weight:400;
  6608. font-style:normal;
  6609. font-size:16px;
  6610. }
  6611. #u127690 {
  6612. border-width:0px;
  6613. position:absolute;
  6614. left:146px;
  6615. top:791px;
  6616. width:97px;
  6617. height:22px;
  6618. display:flex;
  6619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6620. font-weight:400;
  6621. font-style:normal;
  6622. font-size:16px;
  6623. }
  6624. #u127690 .text {
  6625. position:absolute;
  6626. align-self:flex-start;
  6627. padding:0px 0px 0px 0px;
  6628. box-sizing:border-box;
  6629. width:100%;
  6630. }
  6631. #u127690_text {
  6632. border-width:0px;
  6633. white-space:nowrap;
  6634. text-transform:none;
  6635. }
  6636. #u127691_div {
  6637. border-width:0px;
  6638. position:absolute;
  6639. left:0px;
  6640. top:0px;
  6641. width:49px;
  6642. height:17px;
  6643. background:inherit;
  6644. background-color:rgba(255, 255, 255, 0);
  6645. border:none;
  6646. border-radius:0px;
  6647. -moz-box-shadow:none;
  6648. -webkit-box-shadow:none;
  6649. box-shadow:none;
  6650. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6651. font-weight:400;
  6652. font-style:normal;
  6653. font-size:12px;
  6654. color:#AAAAAA;
  6655. }
  6656. #u127691 {
  6657. border-width:0px;
  6658. position:absolute;
  6659. left:146px;
  6660. top:858px;
  6661. width:49px;
  6662. height:17px;
  6663. display:flex;
  6664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6665. font-weight:400;
  6666. font-style:normal;
  6667. font-size:12px;
  6668. color:#AAAAAA;
  6669. }
  6670. #u127691 .text {
  6671. position:absolute;
  6672. align-self:flex-start;
  6673. padding:0px 0px 0px 0px;
  6674. box-sizing:border-box;
  6675. width:100%;
  6676. }
  6677. #u127691_text {
  6678. border-width:0px;
  6679. white-space:nowrap;
  6680. text-transform:none;
  6681. }
  6682. #u127692_img {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:201px;
  6688. height:2px;
  6689. }
  6690. #u127692 {
  6691. border-width:0px;
  6692. position:absolute;
  6693. left:120px;
  6694. top:836px;
  6695. width:200px;
  6696. height:1px;
  6697. display:flex;
  6698. }
  6699. #u127692 .text {
  6700. position:absolute;
  6701. align-self:center;
  6702. padding:2px 2px 2px 2px;
  6703. box-sizing:border-box;
  6704. width:100%;
  6705. }
  6706. #u127692_text {
  6707. border-width:0px;
  6708. word-wrap:break-word;
  6709. text-transform:none;
  6710. visibility:hidden;
  6711. }
  6712. #u127693_div {
  6713. border-width:0px;
  6714. position:absolute;
  6715. left:0px;
  6716. top:0px;
  6717. width:97px;
  6718. height:22px;
  6719. background:inherit;
  6720. background-color:rgba(255, 255, 255, 0);
  6721. border:none;
  6722. border-radius:0px;
  6723. -moz-box-shadow:none;
  6724. -webkit-box-shadow:none;
  6725. box-shadow:none;
  6726. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6727. font-weight:400;
  6728. font-style:normal;
  6729. font-size:16px;
  6730. }
  6731. #u127693 {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:146px;
  6735. top:896px;
  6736. width:97px;
  6737. height:22px;
  6738. display:flex;
  6739. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6740. font-weight:400;
  6741. font-style:normal;
  6742. font-size:16px;
  6743. }
  6744. #u127693 .text {
  6745. position:absolute;
  6746. align-self:flex-start;
  6747. padding:0px 0px 0px 0px;
  6748. box-sizing:border-box;
  6749. width:100%;
  6750. }
  6751. #u127693_text {
  6752. border-width:0px;
  6753. white-space:nowrap;
  6754. text-transform:none;
  6755. }
  6756. #u127694_div {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:0px;
  6760. top:0px;
  6761. width:97px;
  6762. height:22px;
  6763. background:inherit;
  6764. background-color:rgba(255, 255, 255, 0);
  6765. border:none;
  6766. border-radius:0px;
  6767. -moz-box-shadow:none;
  6768. -webkit-box-shadow:none;
  6769. box-shadow:none;
  6770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6771. font-weight:400;
  6772. font-style:normal;
  6773. font-size:16px;
  6774. }
  6775. #u127694 {
  6776. border-width:0px;
  6777. position:absolute;
  6778. left:146px;
  6779. top:938px;
  6780. width:97px;
  6781. height:22px;
  6782. display:flex;
  6783. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6784. font-weight:400;
  6785. font-style:normal;
  6786. font-size:16px;
  6787. }
  6788. #u127694 .text {
  6789. position:absolute;
  6790. align-self:flex-start;
  6791. padding:0px 0px 0px 0px;
  6792. box-sizing:border-box;
  6793. width:100%;
  6794. }
  6795. #u127694_text {
  6796. border-width:0px;
  6797. white-space:nowrap;
  6798. text-transform:none;
  6799. }
  6800. #u127695_div {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:0px;
  6804. top:0px;
  6805. width:65px;
  6806. height:22px;
  6807. background:inherit;
  6808. background-color:rgba(255, 255, 255, 0);
  6809. border:none;
  6810. border-radius:0px;
  6811. -moz-box-shadow:none;
  6812. -webkit-box-shadow:none;
  6813. box-shadow:none;
  6814. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6815. font-weight:400;
  6816. font-style:normal;
  6817. font-size:16px;
  6818. }
  6819. #u127695 {
  6820. border-width:0px;
  6821. position:absolute;
  6822. left:146px;
  6823. top:437px;
  6824. width:65px;
  6825. height:22px;
  6826. display:flex;
  6827. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6828. font-weight:400;
  6829. font-style:normal;
  6830. font-size:16px;
  6831. }
  6832. #u127695 .text {
  6833. position:absolute;
  6834. align-self:flex-start;
  6835. padding:0px 0px 0px 0px;
  6836. box-sizing:border-box;
  6837. width:100%;
  6838. }
  6839. #u127695_text {
  6840. border-width:0px;
  6841. white-space:nowrap;
  6842. text-transform:none;
  6843. }
  6844. #u127696_div {
  6845. border-width:0px;
  6846. position:absolute;
  6847. left:0px;
  6848. top:0px;
  6849. width:49px;
  6850. height:17px;
  6851. background:inherit;
  6852. background-color:rgba(255, 255, 255, 0);
  6853. border:none;
  6854. border-radius:0px;
  6855. -moz-box-shadow:none;
  6856. -webkit-box-shadow:none;
  6857. box-shadow:none;
  6858. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6859. font-weight:400;
  6860. font-style:normal;
  6861. font-size:12px;
  6862. color:#AAAAAA;
  6863. }
  6864. #u127696 {
  6865. border-width:0px;
  6866. position:absolute;
  6867. left:146px;
  6868. top:400px;
  6869. width:49px;
  6870. height:17px;
  6871. display:flex;
  6872. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6873. font-weight:400;
  6874. font-style:normal;
  6875. font-size:12px;
  6876. color:#AAAAAA;
  6877. }
  6878. #u127696 .text {
  6879. position:absolute;
  6880. align-self:flex-start;
  6881. padding:0px 0px 0px 0px;
  6882. box-sizing:border-box;
  6883. width:100%;
  6884. }
  6885. #u127696_text {
  6886. border-width:0px;
  6887. white-space:nowrap;
  6888. text-transform:none;
  6889. }
  6890. #u127697_img {
  6891. border-width:0px;
  6892. position:absolute;
  6893. left:0px;
  6894. top:0px;
  6895. width:201px;
  6896. height:2px;
  6897. }
  6898. #u127697 {
  6899. border-width:0px;
  6900. position:absolute;
  6901. left:120px;
  6902. top:380px;
  6903. width:200px;
  6904. height:1px;
  6905. display:flex;
  6906. }
  6907. #u127697 .text {
  6908. position:absolute;
  6909. align-self:center;
  6910. padding:2px 2px 2px 2px;
  6911. box-sizing:border-box;
  6912. width:100%;
  6913. }
  6914. #u127697_text {
  6915. border-width:0px;
  6916. word-wrap:break-word;
  6917. text-transform:none;
  6918. visibility:hidden;
  6919. }
  6920. #u127698_div {
  6921. border-width:0px;
  6922. position:absolute;
  6923. left:0px;
  6924. top:0px;
  6925. width:65px;
  6926. height:22px;
  6927. background:inherit;
  6928. background-color:rgba(255, 255, 255, 0);
  6929. border:none;
  6930. border-radius:0px;
  6931. -moz-box-shadow:none;
  6932. -webkit-box-shadow:none;
  6933. box-shadow:none;
  6934. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6935. font-weight:400;
  6936. font-style:normal;
  6937. font-size:16px;
  6938. }
  6939. #u127698 {
  6940. border-width:0px;
  6941. position:absolute;
  6942. left:146px;
  6943. top:479px;
  6944. width:65px;
  6945. height:22px;
  6946. display:flex;
  6947. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6948. font-weight:400;
  6949. font-style:normal;
  6950. font-size:16px;
  6951. }
  6952. #u127698 .text {
  6953. position:absolute;
  6954. align-self:flex-start;
  6955. padding:0px 0px 0px 0px;
  6956. box-sizing:border-box;
  6957. width:100%;
  6958. }
  6959. #u127698_text {
  6960. border-width:0px;
  6961. white-space:nowrap;
  6962. text-transform:none;
  6963. }
  6964. #u127699_div {
  6965. border-width:0px;
  6966. position:absolute;
  6967. left:0px;
  6968. top:0px;
  6969. width:65px;
  6970. height:22px;
  6971. background:inherit;
  6972. background-color:rgba(255, 255, 255, 0);
  6973. border:none;
  6974. border-radius:0px;
  6975. -moz-box-shadow:none;
  6976. -webkit-box-shadow:none;
  6977. box-shadow:none;
  6978. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6979. font-weight:400;
  6980. font-style:normal;
  6981. font-size:16px;
  6982. }
  6983. #u127699 {
  6984. border-width:0px;
  6985. position:absolute;
  6986. left:146px;
  6987. top:521px;
  6988. width:65px;
  6989. height:22px;
  6990. display:flex;
  6991. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6992. font-weight:400;
  6993. font-style:normal;
  6994. font-size:16px;
  6995. }
  6996. #u127699 .text {
  6997. position:absolute;
  6998. align-self:flex-start;
  6999. padding:0px 0px 0px 0px;
  7000. box-sizing:border-box;
  7001. width:100%;
  7002. }
  7003. #u127699_text {
  7004. border-width:0px;
  7005. white-space:nowrap;
  7006. text-transform:none;
  7007. }
  7008. #u127700_div {
  7009. border-width:0px;
  7010. position:absolute;
  7011. left:0px;
  7012. top:0px;
  7013. width:65px;
  7014. height:22px;
  7015. background:inherit;
  7016. background-color:rgba(255, 255, 255, 0);
  7017. border:none;
  7018. border-radius:0px;
  7019. -moz-box-shadow:none;
  7020. -webkit-box-shadow:none;
  7021. box-shadow:none;
  7022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7023. font-weight:400;
  7024. font-style:normal;
  7025. font-size:16px;
  7026. }
  7027. #u127700 {
  7028. border-width:0px;
  7029. position:absolute;
  7030. left:146px;
  7031. top:334px;
  7032. width:65px;
  7033. height:22px;
  7034. display:flex;
  7035. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7036. font-weight:400;
  7037. font-style:normal;
  7038. font-size:16px;
  7039. }
  7040. #u127700 .text {
  7041. position:absolute;
  7042. align-self:flex-start;
  7043. padding:0px 0px 0px 0px;
  7044. box-sizing:border-box;
  7045. width:100%;
  7046. }
  7047. #u127700_text {
  7048. border-width:0px;
  7049. white-space:nowrap;
  7050. text-transform:none;
  7051. }
  7052. #u127701_div {
  7053. border-width:0px;
  7054. position:absolute;
  7055. left:0px;
  7056. top:0px;
  7057. width:65px;
  7058. height:22px;
  7059. background:inherit;
  7060. background-color:rgba(255, 255, 255, 0);
  7061. border:none;
  7062. border-radius:0px;
  7063. -moz-box-shadow:none;
  7064. -webkit-box-shadow:none;
  7065. box-shadow:none;
  7066. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7067. font-weight:400;
  7068. font-style:normal;
  7069. font-size:16px;
  7070. }
  7071. #u127701 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:146px;
  7075. top:251px;
  7076. width:65px;
  7077. height:22px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:16px;
  7083. }
  7084. #u127701 .text {
  7085. position:absolute;
  7086. align-self:flex-start;
  7087. padding:0px 0px 0px 0px;
  7088. box-sizing:border-box;
  7089. width:100%;
  7090. }
  7091. #u127701_text {
  7092. border-width:0px;
  7093. white-space:nowrap;
  7094. text-transform:none;
  7095. }
  7096. #u127702_div {
  7097. border-width:0px;
  7098. position:absolute;
  7099. left:0px;
  7100. top:0px;
  7101. width:65px;
  7102. height:22px;
  7103. background:inherit;
  7104. background-color:rgba(255, 255, 255, 0);
  7105. border:none;
  7106. border-radius:0px;
  7107. -moz-box-shadow:none;
  7108. -webkit-box-shadow:none;
  7109. box-shadow:none;
  7110. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7111. font-weight:400;
  7112. font-style:normal;
  7113. font-size:16px;
  7114. }
  7115. #u127702 {
  7116. border-width:0px;
  7117. position:absolute;
  7118. left:146px;
  7119. top:293px;
  7120. width:65px;
  7121. height:22px;
  7122. display:flex;
  7123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7124. font-weight:400;
  7125. font-style:normal;
  7126. font-size:16px;
  7127. }
  7128. #u127702 .text {
  7129. position:absolute;
  7130. align-self:flex-start;
  7131. padding:0px 0px 0px 0px;
  7132. box-sizing:border-box;
  7133. width:100%;
  7134. }
  7135. #u127702_text {
  7136. border-width:0px;
  7137. white-space:nowrap;
  7138. text-transform:none;
  7139. }