styles.css 165 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937793879397940794179427943794479457946794779487949795079517952795379547955795679577958795979607961796279637964796579667967796879697970797179727973797479757976797779787979798079817982798379847985798679877988798979907991799279937994799579967997799879998000800180028003800480058006800780088009801080118012801380148015801680178018801980208021802280238024802580268027802880298030803180328033803480358036803780388039804080418042804380448045804680478048804980508051805280538054805580568057805880598060806180628063806480658066806780688069807080718072807380748075807680778078807980808081808280838084808580868087808880898090809180928093809480958096809780988099810081018102810381048105810681078108810981108111811281138114811581168117811881198120812181228123812481258126812781288129813081318132813381348135813681378138813981408141814281438144814581468147814881498150815181528153815481558156815781588159816081618162816381648165816681678168816981708171817281738174817581768177817881798180818181828183818481858186818781888189819081918192819381948195819681978198819982008201820282038204820582068207820882098210821182128213821482158216821782188219822082218222822382248225822682278228822982308231823282338234823582368237823882398240824182428243824482458246824782488249825082518252825382548255825682578258825982608261826282638264826582668267826882698270827182728273827482758276827782788279828082818282828382848285828682878288828982908291829282938294829582968297829882998300830183028303830483058306830783088309831083118312831383148315831683178318831983208321832283238324832583268327832883298330833183328333833483358336833783388339834083418342834383448345834683478348834983508351835283538354835583568357835883598360836183628363836483658366836783688369837083718372837383748375837683778378837983808381838283838384838583868387838883898390839183928393839483958396839783988399840084018402840384048405840684078408840984108411841284138414841584168417841884198420842184228423842484258426842784288429843084318432843384348435843684378438843984408441844284438444844584468447844884498450845184528453845484558456845784588459846084618462846384648465846684678468846984708471847284738474847584768477847884798480848184828483848484858486848784888489849084918492849384948495849684978498849985008501850285038504850585068507850885098510851185128513851485158516851785188519852085218522852385248525852685278528852985308531853285338534853585368537853885398540854185428543854485458546854785488549855085518552855385548555855685578558855985608561856285638564856585668567856885698570857185728573857485758576857785788579858085818582858385848585858685878588858985908591859285938594859585968597859885998600860186028603860486058606860786088609861086118612861386148615861686178618861986208621862286238624862586268627862886298630863186328633863486358636863786388639864086418642864386448645864686478648864986508651865286538654865586568657865886598660866186628663866486658666866786688669867086718672867386748675867686778678867986808681868286838684868586868687868886898690869186928693869486958696869786988699870087018702870387048705870687078708870987108711871287138714871587168717871887198720872187228723872487258726872787288729873087318732873387348735873687378738873987408741874287438744874587468747874887498750875187528753875487558756875787588759876087618762876387648765876687678768876987708771877287738774877587768777877887798780878187828783878487858786878787888789879087918792879387948795879687978798879988008801880288038804880588068807880888098810881188128813881488158816881788188819882088218822882388248825882688278828882988308831883288338834883588368837883888398840884188428843884488458846884788488849885088518852885388548855885688578858885988608861886288638864886588668867886888698870887188728873887488758876887788788879888088818882888388848885888688878888888988908891889288938894889588968897889888998900890189028903890489058906890789088909891089118912891389148915891689178918891989208921892289238924892589268927892889298930893189328933893489358936893789388939894089418942894389448945894689478948894989508951895289538954895589568957895889598960896189628963896489658966896789688969897089718972897389748975897689778978897989808981898289838984898589868987898889898990899189928993899489958996899789988999900090019002900390049005900690079008900990109011901290139014901590169017901890199020902190229023902490259026902790289029903090319032903390349035903690379038903990409041904290439044904590469047904890499050905190529053905490559056905790589059906090619062906390649065906690679068906990709071907290739074907590769077907890799080908190829083908490859086908790889089909090919092909390949095909690979098909991009101910291039104910591069107910891099110911191129113911491159116911791189119912091219122912391249125912691279128912991309131913291339134913591369137913891399140914191429143914491459146914791489149915091519152915391549155915691579158915991609161916291639164916591669167916891699170917191729173917491759176917791789179918091819182918391849185918691879188918991909191919291939194919591969197919891999200920192029203920492059206920792089209921092119212921392149215921692179218921992209221922292239224922592269227922892299230923192329233923492359236923792389239924092419242924392449245924692479248924992509251925292539254925592569257925892599260926192629263926492659266926792689269927092719272927392749275927692779278927992809281928292839284928592869287928892899290929192929293929492959296929792989299930093019302930393049305930693079308930993109311931293139314931593169317931893199320932193229323932493259326932793289329933093319332933393349335933693379338933993409341934293439344934593469347934893499350935193529353935493559356935793589359936093619362936393649365936693679368936993709371937293739374937593769377937893799380938193829383938493859386938793889389939093919392939393949395939693979398939994009401940294039404940594069407940894099410941194129413941494159416941794189419942094219422942394249425942694279428942994309431943294339434943594369437943894399440944194429443944494459446944794489449945094519452945394549455945694579458945994609461946294639464946594669467946894699470947194729473947494759476947794789479948094819482948394849485948694879488948994909491949294939494
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2101px;
  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. #u27314_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. #u27314 {
  35. border-width:0px;
  36. position:absolute;
  37. left:120px;
  38. top:50px;
  39. width:1480px;
  40. height:1200px;
  41. display:flex;
  42. }
  43. #u27314 .text {
  44. position:absolute;
  45. align-self:center;
  46. padding:2px 2px 2px 2px;
  47. box-sizing:border-box;
  48. width:100%;
  49. }
  50. #u27314_text {
  51. border-width:0px;
  52. word-wrap:break-word;
  53. text-transform:none;
  54. visibility:hidden;
  55. }
  56. #u27315_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. #u27315 {
  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. #u27315 .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. #u27315_text {
  92. border-width:0px;
  93. white-space:nowrap;
  94. text-transform:none;
  95. }
  96. #u27316_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. #u27316 {
  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. #u27316 .text {
  123. position:absolute;
  124. align-self:center;
  125. padding:2px 2px 2px 2px;
  126. box-sizing:border-box;
  127. width:100%;
  128. }
  129. #u27316_text {
  130. border-width:0px;
  131. word-wrap:break-word;
  132. text-transform:none;
  133. visibility:hidden;
  134. }
  135. #u27317 {
  136. border-width:0px;
  137. position:absolute;
  138. left:0px;
  139. top:0px;
  140. width:0px;
  141. height:0px;
  142. }
  143. #u27318_img {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:31px;
  149. height:31px;
  150. }
  151. #u27318 {
  152. border-width:0px;
  153. position:absolute;
  154. left:19px;
  155. top:10px;
  156. width:31px;
  157. height:31px;
  158. display:flex;
  159. }
  160. #u27318 .text {
  161. position:absolute;
  162. align-self:center;
  163. padding:2px 2px 2px 2px;
  164. box-sizing:border-box;
  165. width:100%;
  166. }
  167. #u27318_text {
  168. border-width:0px;
  169. word-wrap:break-word;
  170. text-transform:none;
  171. }
  172. #u27319_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. #u27319 {
  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. #u27319 .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. #u27319_text {
  214. border-width:0px;
  215. white-space:nowrap;
  216. text-transform:none;
  217. }
  218. #u27320_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. #u27320 {
  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. #u27320 .text {
  245. position:absolute;
  246. align-self:center;
  247. padding:2px 2px 2px 2px;
  248. box-sizing:border-box;
  249. width:100%;
  250. }
  251. #u27320_text {
  252. border-width:0px;
  253. word-wrap:break-word;
  254. text-transform:none;
  255. visibility:hidden;
  256. }
  257. #u27321 {
  258. border-width:0px;
  259. position:absolute;
  260. left:0px;
  261. top:0px;
  262. width:0px;
  263. height:0px;
  264. }
  265. #u27322_input {
  266. position:absolute;
  267. left:0px;
  268. top:0px;
  269. width:214px;
  270. height:27px;
  271. padding:2px 2px 2px 2px;
  272. font-family:'ArialMT', 'Arial', sans-serif;
  273. font-weight:400;
  274. font-style:normal;
  275. font-size:14px;
  276. letter-spacing:normal;
  277. color:#FFFFFF;
  278. vertical-align:none;
  279. text-align:left;
  280. text-transform:none;
  281. background-color:transparent;
  282. border-color:transparent;
  283. }
  284. #u27322_input.disabled {
  285. position:absolute;
  286. left:0px;
  287. top:0px;
  288. width:214px;
  289. height:27px;
  290. padding:2px 2px 2px 2px;
  291. font-family:'ArialMT', 'Arial', sans-serif;
  292. font-weight:400;
  293. font-style:normal;
  294. font-size:14px;
  295. letter-spacing:normal;
  296. color:#FFFFFF;
  297. vertical-align:none;
  298. text-align:left;
  299. text-transform:none;
  300. background-color:transparent;
  301. border-color:transparent;
  302. }
  303. #u27322_div {
  304. border-width:0px;
  305. position:absolute;
  306. left:0px;
  307. top:0px;
  308. width:214px;
  309. height:27px;
  310. background:inherit;
  311. background-color:rgba(255, 255, 255, 0);
  312. border:none;
  313. border-radius:0px;
  314. -moz-box-shadow:none;
  315. -webkit-box-shadow:none;
  316. box-shadow:none;
  317. font-size:14px;
  318. color:#FFFFFF;
  319. }
  320. #u27322 {
  321. border-width:0px;
  322. position:absolute;
  323. left:1089px;
  324. top:10px;
  325. width:214px;
  326. height:27px;
  327. display:flex;
  328. font-size:14px;
  329. color:#FFFFFF;
  330. }
  331. #u27322 .text {
  332. position:absolute;
  333. align-self:flex-start;
  334. padding:2px 2px 2px 2px;
  335. box-sizing:border-box;
  336. width:100%;
  337. }
  338. #u27322_div.disabled {
  339. border-width:0px;
  340. position:absolute;
  341. left:0px;
  342. top:0px;
  343. width:214px;
  344. height:27px;
  345. background:inherit;
  346. background-color:rgba(240, 240, 240, 1);
  347. border:none;
  348. border-radius:0px;
  349. -moz-box-shadow:none;
  350. -webkit-box-shadow:none;
  351. box-shadow:none;
  352. font-size:14px;
  353. color:#FFFFFF;
  354. }
  355. #u27322.disabled {
  356. }
  357. .u27322_input_option {
  358. font-size:14px;
  359. }
  360. #u27323_img {
  361. border-width:0px;
  362. position:absolute;
  363. left:0px;
  364. top:0px;
  365. width:22px;
  366. height:22px;
  367. }
  368. #u27323 {
  369. border-width:0px;
  370. position:absolute;
  371. left:1062px;
  372. top:15px;
  373. width:22px;
  374. height:22px;
  375. display:flex;
  376. }
  377. #u27323 .text {
  378. position:absolute;
  379. align-self:center;
  380. padding:2px 2px 2px 2px;
  381. box-sizing:border-box;
  382. width:100%;
  383. }
  384. #u27323_text {
  385. border-width:0px;
  386. word-wrap:break-word;
  387. text-transform:none;
  388. visibility:hidden;
  389. }
  390. #u27324_div {
  391. border-width:0px;
  392. position:absolute;
  393. left:0px;
  394. top:0px;
  395. width:100px;
  396. height:24px;
  397. background:inherit;
  398. background-color:rgba(242, 242, 242, 0.2);
  399. border:none;
  400. border-radius:25px;
  401. -moz-box-shadow:none;
  402. -webkit-box-shadow:none;
  403. box-shadow:none;
  404. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  405. font-weight:400;
  406. font-style:normal;
  407. color:#FFFFFF;
  408. text-align:center;
  409. }
  410. #u27324 {
  411. border-width:0px;
  412. position:absolute;
  413. left:1350px;
  414. top:12px;
  415. width:100px;
  416. height:24px;
  417. display:flex;
  418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  419. font-weight:400;
  420. font-style:normal;
  421. color:#FFFFFF;
  422. text-align:center;
  423. }
  424. #u27324 .text {
  425. position:absolute;
  426. align-self:center;
  427. padding:0px 0px 0px 0px;
  428. box-sizing:border-box;
  429. width:100%;
  430. }
  431. #u27324_text {
  432. border-width:0px;
  433. word-wrap:break-word;
  434. text-transform:none;
  435. }
  436. #u27325_div {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:120px;
  442. height:24px;
  443. background:inherit;
  444. background-color:rgba(242, 242, 242, 0.2);
  445. border:none;
  446. border-radius:25px;
  447. -moz-box-shadow:none;
  448. -webkit-box-shadow:none;
  449. box-shadow:none;
  450. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  451. font-weight:400;
  452. font-style:normal;
  453. color:#FFFFFF;
  454. text-align:center;
  455. }
  456. #u27325 {
  457. border-width:0px;
  458. position:absolute;
  459. left:1460px;
  460. top:12px;
  461. width:120px;
  462. height:24px;
  463. display:flex;
  464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  465. font-weight:400;
  466. font-style:normal;
  467. color:#FFFFFF;
  468. text-align:center;
  469. }
  470. #u27325 .text {
  471. position:absolute;
  472. align-self:center;
  473. padding:0px 0px 0px 0px;
  474. box-sizing:border-box;
  475. width:100%;
  476. }
  477. #u27325_text {
  478. border-width:0px;
  479. word-wrap:break-word;
  480. text-transform:none;
  481. }
  482. #u27326 {
  483. border-width:0px;
  484. position:absolute;
  485. left:0px;
  486. top:0px;
  487. width:0px;
  488. height:0px;
  489. }
  490. #u27327_div {
  491. border-width:0px;
  492. position:absolute;
  493. left:0px;
  494. top:0px;
  495. width:33px;
  496. height:22px;
  497. background:inherit;
  498. background-color:rgba(255, 255, 255, 0);
  499. border:none;
  500. border-radius:0px;
  501. -moz-box-shadow:none;
  502. -webkit-box-shadow:none;
  503. box-shadow:none;
  504. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  505. font-weight:400;
  506. font-style:normal;
  507. font-size:16px;
  508. color:#FFFFFF;
  509. }
  510. #u27327 {
  511. border-width:0px;
  512. position:absolute;
  513. left:39px;
  514. top:71px;
  515. width:33px;
  516. height:22px;
  517. display:flex;
  518. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  519. font-weight:400;
  520. font-style:normal;
  521. font-size:16px;
  522. color:#FFFFFF;
  523. }
  524. #u27327 .text {
  525. position:absolute;
  526. align-self:flex-start;
  527. padding:0px 0px 0px 0px;
  528. box-sizing:border-box;
  529. width:100%;
  530. }
  531. #u27327_text {
  532. border-width:0px;
  533. white-space:nowrap;
  534. text-transform:none;
  535. }
  536. #u27328_img {
  537. border-width:0px;
  538. position:absolute;
  539. left:0px;
  540. top:0px;
  541. width:14px;
  542. height:14px;
  543. }
  544. #u27328 {
  545. border-width:0px;
  546. position:absolute;
  547. left:20px;
  548. top:75px;
  549. width:14px;
  550. height:14px;
  551. display:flex;
  552. }
  553. #u27328 .text {
  554. position:absolute;
  555. align-self:center;
  556. padding:2px 2px 2px 2px;
  557. box-sizing:border-box;
  558. width:100%;
  559. }
  560. #u27328_text {
  561. border-width:0px;
  562. word-wrap:break-word;
  563. text-transform:none;
  564. visibility:hidden;
  565. }
  566. #u27329 {
  567. border-width:0px;
  568. position:absolute;
  569. left:0px;
  570. top:0px;
  571. width:0px;
  572. height:0px;
  573. }
  574. #u27330_div {
  575. border-width:0px;
  576. position:absolute;
  577. left:0px;
  578. top:0px;
  579. width:33px;
  580. height:22px;
  581. background:inherit;
  582. background-color:rgba(255, 255, 255, 0);
  583. border:none;
  584. border-radius:0px;
  585. -moz-box-shadow:none;
  586. -webkit-box-shadow:none;
  587. box-shadow:none;
  588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  589. font-weight:400;
  590. font-style:normal;
  591. font-size:16px;
  592. color:#FFFFFF;
  593. }
  594. #u27330 {
  595. border-width:0px;
  596. position:absolute;
  597. left:39px;
  598. top:147px;
  599. width:33px;
  600. height:22px;
  601. display:flex;
  602. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  603. font-weight:400;
  604. font-style:normal;
  605. font-size:16px;
  606. color:#FFFFFF;
  607. }
  608. #u27330 .text {
  609. position:absolute;
  610. align-self:flex-start;
  611. padding:0px 0px 0px 0px;
  612. box-sizing:border-box;
  613. width:100%;
  614. }
  615. #u27330_text {
  616. border-width:0px;
  617. white-space:nowrap;
  618. text-transform:none;
  619. }
  620. #u27331_img {
  621. border-width:0px;
  622. position:absolute;
  623. left:0px;
  624. top:0px;
  625. width:14px;
  626. height:14px;
  627. }
  628. #u27331 {
  629. border-width:0px;
  630. position:absolute;
  631. left:20px;
  632. top:151px;
  633. width:14px;
  634. height:14px;
  635. display:flex;
  636. }
  637. #u27331 .text {
  638. position:absolute;
  639. align-self:center;
  640. padding:2px 2px 2px 2px;
  641. box-sizing:border-box;
  642. width:100%;
  643. }
  644. #u27331_text {
  645. border-width:0px;
  646. word-wrap:break-word;
  647. text-transform:none;
  648. visibility:hidden;
  649. }
  650. #u27332 {
  651. border-width:0px;
  652. position:absolute;
  653. left:0px;
  654. top:0px;
  655. width:0px;
  656. height:0px;
  657. }
  658. #u27333_div {
  659. border-width:0px;
  660. position:absolute;
  661. left:0px;
  662. top:0px;
  663. width:33px;
  664. height:22px;
  665. background:inherit;
  666. background-color:rgba(255, 255, 255, 0);
  667. border:none;
  668. border-radius:0px;
  669. -moz-box-shadow:none;
  670. -webkit-box-shadow:none;
  671. box-shadow:none;
  672. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  673. font-weight:400;
  674. font-style:normal;
  675. font-size:16px;
  676. color:#FFFFFF;
  677. }
  678. #u27333 {
  679. border-width:0px;
  680. position:absolute;
  681. left:39px;
  682. top:399px;
  683. width:33px;
  684. height:22px;
  685. display:flex;
  686. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  687. font-weight:400;
  688. font-style:normal;
  689. font-size:16px;
  690. color:#FFFFFF;
  691. }
  692. #u27333 .text {
  693. position:absolute;
  694. align-self:flex-start;
  695. padding:0px 0px 0px 0px;
  696. box-sizing:border-box;
  697. width:100%;
  698. }
  699. #u27333_text {
  700. border-width:0px;
  701. white-space:nowrap;
  702. text-transform:none;
  703. }
  704. #u27334_img {
  705. border-width:0px;
  706. position:absolute;
  707. left:0px;
  708. top:0px;
  709. width:14px;
  710. height:14px;
  711. }
  712. #u27334 {
  713. border-width:0px;
  714. position:absolute;
  715. left:20px;
  716. top:403px;
  717. width:14px;
  718. height:14px;
  719. display:flex;
  720. }
  721. #u27334 .text {
  722. position:absolute;
  723. align-self:center;
  724. padding:2px 2px 2px 2px;
  725. box-sizing:border-box;
  726. width:100%;
  727. }
  728. #u27334_text {
  729. border-width:0px;
  730. word-wrap:break-word;
  731. text-transform:none;
  732. visibility:hidden;
  733. }
  734. #u27335 {
  735. border-width:0px;
  736. position:absolute;
  737. left:0px;
  738. top:0px;
  739. width:0px;
  740. height:0px;
  741. }
  742. #u27336_div {
  743. border-width:0px;
  744. position:absolute;
  745. left:0px;
  746. top:0px;
  747. width:49px;
  748. height:22px;
  749. background:inherit;
  750. background-color:rgba(255, 255, 255, 0);
  751. border:none;
  752. border-radius:0px;
  753. -moz-box-shadow:none;
  754. -webkit-box-shadow:none;
  755. box-shadow:none;
  756. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  757. font-weight:400;
  758. font-style:normal;
  759. font-size:16px;
  760. color:#FFFFFF;
  761. }
  762. #u27336 {
  763. border-width:0px;
  764. position:absolute;
  765. left:39px;
  766. top:109px;
  767. width:49px;
  768. height:22px;
  769. display:flex;
  770. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  771. font-weight:400;
  772. font-style:normal;
  773. font-size:16px;
  774. color:#FFFFFF;
  775. }
  776. #u27336 .text {
  777. position:absolute;
  778. align-self:flex-start;
  779. padding:0px 0px 0px 0px;
  780. box-sizing:border-box;
  781. width:100%;
  782. }
  783. #u27336_text {
  784. border-width:0px;
  785. white-space:nowrap;
  786. text-transform:none;
  787. }
  788. #u27337_img {
  789. border-width:0px;
  790. position:absolute;
  791. left:0px;
  792. top:0px;
  793. width:14px;
  794. height:14px;
  795. }
  796. #u27337 {
  797. border-width:0px;
  798. position:absolute;
  799. left:20px;
  800. top:113px;
  801. width:14px;
  802. height:14px;
  803. display:flex;
  804. }
  805. #u27337 .text {
  806. position:absolute;
  807. align-self:center;
  808. padding:2px 2px 2px 2px;
  809. box-sizing:border-box;
  810. width:100%;
  811. }
  812. #u27337_text {
  813. border-width:0px;
  814. word-wrap:break-word;
  815. text-transform:none;
  816. visibility:hidden;
  817. }
  818. #u27338 {
  819. border-width:0px;
  820. position:absolute;
  821. left:0px;
  822. top:0px;
  823. width:0px;
  824. height:0px;
  825. }
  826. #u27339_div {
  827. border-width:0px;
  828. position:absolute;
  829. left:0px;
  830. top:0px;
  831. width:33px;
  832. height:22px;
  833. background:inherit;
  834. background-color:rgba(255, 255, 255, 0);
  835. border:none;
  836. border-radius:0px;
  837. -moz-box-shadow:none;
  838. -webkit-box-shadow:none;
  839. box-shadow:none;
  840. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  841. font-weight:400;
  842. font-style:normal;
  843. font-size:16px;
  844. color:#FFFFFF;
  845. }
  846. #u27339 {
  847. border-width:0px;
  848. position:absolute;
  849. left:39px;
  850. top:441px;
  851. width:33px;
  852. height:22px;
  853. display:flex;
  854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  855. font-weight:400;
  856. font-style:normal;
  857. font-size:16px;
  858. color:#FFFFFF;
  859. }
  860. #u27339 .text {
  861. position:absolute;
  862. align-self:flex-start;
  863. padding:0px 0px 0px 0px;
  864. box-sizing:border-box;
  865. width:100%;
  866. }
  867. #u27339_text {
  868. border-width:0px;
  869. white-space:nowrap;
  870. text-transform:none;
  871. }
  872. #u27340_img {
  873. border-width:0px;
  874. position:absolute;
  875. left:0px;
  876. top:0px;
  877. width:14px;
  878. height:14px;
  879. }
  880. #u27340 {
  881. border-width:0px;
  882. position:absolute;
  883. left:20px;
  884. top:445px;
  885. width:14px;
  886. height:14px;
  887. display:flex;
  888. }
  889. #u27340 .text {
  890. position:absolute;
  891. align-self:center;
  892. padding:2px 2px 2px 2px;
  893. box-sizing:border-box;
  894. width:100%;
  895. }
  896. #u27340_text {
  897. border-width:0px;
  898. word-wrap:break-word;
  899. text-transform:none;
  900. visibility:hidden;
  901. }
  902. #u27341 {
  903. border-width:0px;
  904. position:absolute;
  905. left:0px;
  906. top:0px;
  907. width:0px;
  908. height:0px;
  909. }
  910. #u27342_div {
  911. border-width:0px;
  912. position:absolute;
  913. left:0px;
  914. top:0px;
  915. width:33px;
  916. height:22px;
  917. background:inherit;
  918. background-color:rgba(255, 255, 255, 0);
  919. border:none;
  920. border-radius:0px;
  921. -moz-box-shadow:none;
  922. -webkit-box-shadow:none;
  923. box-shadow:none;
  924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  925. font-weight:400;
  926. font-style:normal;
  927. font-size:16px;
  928. color:#FFFFFF;
  929. }
  930. #u27342 {
  931. border-width:0px;
  932. position:absolute;
  933. left:39px;
  934. top:315px;
  935. width:33px;
  936. height:22px;
  937. display:flex;
  938. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  939. font-weight:400;
  940. font-style:normal;
  941. font-size:16px;
  942. color:#FFFFFF;
  943. }
  944. #u27342 .text {
  945. position:absolute;
  946. align-self:flex-start;
  947. padding:0px 0px 0px 0px;
  948. box-sizing:border-box;
  949. width:100%;
  950. }
  951. #u27342_text {
  952. border-width:0px;
  953. white-space:nowrap;
  954. text-transform:none;
  955. }
  956. #u27343_img {
  957. border-width:0px;
  958. position:absolute;
  959. left:0px;
  960. top:0px;
  961. width:14px;
  962. height:14px;
  963. }
  964. #u27343 {
  965. border-width:0px;
  966. position:absolute;
  967. left:20px;
  968. top:319px;
  969. width:14px;
  970. height:14px;
  971. display:flex;
  972. }
  973. #u27343 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 2px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u27343_text {
  981. border-width:0px;
  982. word-wrap:break-word;
  983. text-transform:none;
  984. visibility:hidden;
  985. }
  986. #u27344 {
  987. border-width:0px;
  988. position:absolute;
  989. left:0px;
  990. top:0px;
  991. width:0px;
  992. height:0px;
  993. }
  994. #u27345_div {
  995. border-width:0px;
  996. position:absolute;
  997. left:0px;
  998. top:0px;
  999. width:33px;
  1000. height:22px;
  1001. background:inherit;
  1002. background-color:rgba(255, 255, 255, 0);
  1003. border:none;
  1004. border-radius:0px;
  1005. -moz-box-shadow:none;
  1006. -webkit-box-shadow:none;
  1007. box-shadow:none;
  1008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1009. font-weight:400;
  1010. font-style:normal;
  1011. font-size:16px;
  1012. color:#FFFFFF;
  1013. }
  1014. #u27345 {
  1015. border-width:0px;
  1016. position:absolute;
  1017. left:39px;
  1018. top:189px;
  1019. width:33px;
  1020. height:22px;
  1021. display:flex;
  1022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1023. font-weight:400;
  1024. font-style:normal;
  1025. font-size:16px;
  1026. color:#FFFFFF;
  1027. }
  1028. #u27345 .text {
  1029. position:absolute;
  1030. align-self:flex-start;
  1031. padding:0px 0px 0px 0px;
  1032. box-sizing:border-box;
  1033. width:100%;
  1034. }
  1035. #u27345_text {
  1036. border-width:0px;
  1037. white-space:nowrap;
  1038. text-transform:none;
  1039. }
  1040. #u27346_img {
  1041. border-width:0px;
  1042. position:absolute;
  1043. left:0px;
  1044. top:0px;
  1045. width:14px;
  1046. height:14px;
  1047. }
  1048. #u27346 {
  1049. border-width:0px;
  1050. position:absolute;
  1051. left:20px;
  1052. top:193px;
  1053. width:14px;
  1054. height:14px;
  1055. display:flex;
  1056. }
  1057. #u27346 .text {
  1058. position:absolute;
  1059. align-self:center;
  1060. padding:2px 2px 2px 2px;
  1061. box-sizing:border-box;
  1062. width:100%;
  1063. }
  1064. #u27346_text {
  1065. border-width:0px;
  1066. word-wrap:break-word;
  1067. text-transform:none;
  1068. visibility:hidden;
  1069. }
  1070. #u27347 {
  1071. border-width:0px;
  1072. position:absolute;
  1073. left:0px;
  1074. top:0px;
  1075. width:0px;
  1076. height:0px;
  1077. }
  1078. #u27348_div {
  1079. border-width:0px;
  1080. position:absolute;
  1081. left:0px;
  1082. top:0px;
  1083. width:33px;
  1084. height:22px;
  1085. background:inherit;
  1086. background-color:rgba(255, 255, 255, 0);
  1087. border:none;
  1088. border-radius:0px;
  1089. -moz-box-shadow:none;
  1090. -webkit-box-shadow:none;
  1091. box-shadow:none;
  1092. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1093. font-weight:400;
  1094. font-style:normal;
  1095. font-size:16px;
  1096. color:#FFFFFF;
  1097. }
  1098. #u27348 {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:39px;
  1102. top:357px;
  1103. width:33px;
  1104. height:22px;
  1105. display:flex;
  1106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1107. font-weight:400;
  1108. font-style:normal;
  1109. font-size:16px;
  1110. color:#FFFFFF;
  1111. }
  1112. #u27348 .text {
  1113. position:absolute;
  1114. align-self:flex-start;
  1115. padding:0px 0px 0px 0px;
  1116. box-sizing:border-box;
  1117. width:100%;
  1118. }
  1119. #u27348_text {
  1120. border-width:0px;
  1121. white-space:nowrap;
  1122. text-transform:none;
  1123. }
  1124. #u27349_img {
  1125. border-width:0px;
  1126. position:absolute;
  1127. left:0px;
  1128. top:0px;
  1129. width:14px;
  1130. height:14px;
  1131. }
  1132. #u27349 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:20px;
  1136. top:361px;
  1137. width:14px;
  1138. height:14px;
  1139. display:flex;
  1140. }
  1141. #u27349 .text {
  1142. position:absolute;
  1143. align-self:center;
  1144. padding:2px 2px 2px 2px;
  1145. box-sizing:border-box;
  1146. width:100%;
  1147. }
  1148. #u27349_text {
  1149. border-width:0px;
  1150. word-wrap:break-word;
  1151. text-transform:none;
  1152. visibility:hidden;
  1153. }
  1154. #u27350 {
  1155. border-width:0px;
  1156. position:absolute;
  1157. left:0px;
  1158. top:0px;
  1159. width:0px;
  1160. height:0px;
  1161. }
  1162. #u27351_div {
  1163. border-width:0px;
  1164. position:absolute;
  1165. left:0px;
  1166. top:0px;
  1167. width:33px;
  1168. height:22px;
  1169. background:inherit;
  1170. background-color:rgba(255, 255, 255, 0);
  1171. border:none;
  1172. border-radius:0px;
  1173. -moz-box-shadow:none;
  1174. -webkit-box-shadow:none;
  1175. box-shadow:none;
  1176. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1177. font-weight:400;
  1178. font-style:normal;
  1179. font-size:16px;
  1180. color:#FFFFFF;
  1181. }
  1182. #u27351 {
  1183. border-width:0px;
  1184. position:absolute;
  1185. left:39px;
  1186. top:483px;
  1187. width:33px;
  1188. height:22px;
  1189. display:flex;
  1190. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1191. font-weight:400;
  1192. font-style:normal;
  1193. font-size:16px;
  1194. color:#FFFFFF;
  1195. }
  1196. #u27351 .text {
  1197. position:absolute;
  1198. align-self:flex-start;
  1199. padding:0px 0px 0px 0px;
  1200. box-sizing:border-box;
  1201. width:100%;
  1202. }
  1203. #u27351_text {
  1204. border-width:0px;
  1205. white-space:nowrap;
  1206. text-transform:none;
  1207. }
  1208. #u27352_img {
  1209. border-width:0px;
  1210. position:absolute;
  1211. left:0px;
  1212. top:0px;
  1213. width:14px;
  1214. height:14px;
  1215. }
  1216. #u27352 {
  1217. border-width:0px;
  1218. position:absolute;
  1219. left:20px;
  1220. top:487px;
  1221. width:14px;
  1222. height:14px;
  1223. display:flex;
  1224. }
  1225. #u27352 .text {
  1226. position:absolute;
  1227. align-self:center;
  1228. padding:2px 2px 2px 2px;
  1229. box-sizing:border-box;
  1230. width:100%;
  1231. }
  1232. #u27352_text {
  1233. border-width:0px;
  1234. word-wrap:break-word;
  1235. text-transform:none;
  1236. visibility:hidden;
  1237. }
  1238. #u27353 {
  1239. border-width:0px;
  1240. position:absolute;
  1241. left:0px;
  1242. top:0px;
  1243. width:0px;
  1244. height:0px;
  1245. }
  1246. #u27354_div {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:0px;
  1250. top:0px;
  1251. width:33px;
  1252. height:22px;
  1253. background:inherit;
  1254. background-color:rgba(255, 255, 255, 0);
  1255. border:none;
  1256. border-radius:0px;
  1257. -moz-box-shadow:none;
  1258. -webkit-box-shadow:none;
  1259. box-shadow:none;
  1260. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1261. font-weight:400;
  1262. font-style:normal;
  1263. font-size:16px;
  1264. color:#FFFFFF;
  1265. }
  1266. #u27354 {
  1267. border-width:0px;
  1268. position:absolute;
  1269. left:39px;
  1270. top:525px;
  1271. width:33px;
  1272. height:22px;
  1273. display:flex;
  1274. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1275. font-weight:400;
  1276. font-style:normal;
  1277. font-size:16px;
  1278. color:#FFFFFF;
  1279. }
  1280. #u27354 .text {
  1281. position:absolute;
  1282. align-self:flex-start;
  1283. padding:0px 0px 0px 0px;
  1284. box-sizing:border-box;
  1285. width:100%;
  1286. }
  1287. #u27354_text {
  1288. border-width:0px;
  1289. white-space:nowrap;
  1290. text-transform:none;
  1291. }
  1292. #u27355_img {
  1293. border-width:0px;
  1294. position:absolute;
  1295. left:0px;
  1296. top:0px;
  1297. width:14px;
  1298. height:14px;
  1299. }
  1300. #u27355 {
  1301. border-width:0px;
  1302. position:absolute;
  1303. left:20px;
  1304. top:529px;
  1305. width:14px;
  1306. height:14px;
  1307. display:flex;
  1308. }
  1309. #u27355 .text {
  1310. position:absolute;
  1311. align-self:center;
  1312. padding:2px 2px 2px 2px;
  1313. box-sizing:border-box;
  1314. width:100%;
  1315. }
  1316. #u27355_text {
  1317. border-width:0px;
  1318. word-wrap:break-word;
  1319. text-transform:none;
  1320. visibility:hidden;
  1321. }
  1322. #u27356_div {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:0px;
  1327. width:29px;
  1328. height:20px;
  1329. background:inherit;
  1330. background-color:rgba(255, 255, 255, 0);
  1331. border:none;
  1332. border-radius:25px;
  1333. -moz-box-shadow:none;
  1334. -webkit-box-shadow:none;
  1335. box-shadow:none;
  1336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1337. font-weight:400;
  1338. font-style:normal;
  1339. color:#FFFFFF;
  1340. }
  1341. #u27356 {
  1342. border-width:0px;
  1343. position:absolute;
  1344. left:52px;
  1345. top:1145px;
  1346. width:29px;
  1347. height:20px;
  1348. display:flex;
  1349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1350. font-weight:400;
  1351. font-style:normal;
  1352. color:#FFFFFF;
  1353. }
  1354. #u27356 .text {
  1355. position:absolute;
  1356. align-self:center;
  1357. padding:0px 0px 0px 0px;
  1358. box-sizing:border-box;
  1359. width:100%;
  1360. }
  1361. #u27356_text {
  1362. border-width:0px;
  1363. white-space:nowrap;
  1364. text-transform:none;
  1365. }
  1366. #u27357_img {
  1367. border-width:0px;
  1368. position:absolute;
  1369. left:0px;
  1370. top:0px;
  1371. width:22px;
  1372. height:22px;
  1373. }
  1374. #u27357 {
  1375. border-width:0px;
  1376. position:absolute;
  1377. left:20px;
  1378. top:1144px;
  1379. width:22px;
  1380. height:22px;
  1381. display:flex;
  1382. }
  1383. #u27357 .text {
  1384. position:absolute;
  1385. align-self:center;
  1386. padding:2px 2px 2px 2px;
  1387. box-sizing:border-box;
  1388. width:100%;
  1389. }
  1390. #u27357_text {
  1391. border-width:0px;
  1392. word-wrap:break-word;
  1393. text-transform:none;
  1394. visibility:hidden;
  1395. }
  1396. #u27358_div {
  1397. border-width:0px;
  1398. position:absolute;
  1399. left:0px;
  1400. top:0px;
  1401. width:29px;
  1402. height:20px;
  1403. background:inherit;
  1404. background-color:rgba(255, 255, 255, 0);
  1405. border:none;
  1406. border-radius:25px;
  1407. -moz-box-shadow:none;
  1408. -webkit-box-shadow:none;
  1409. box-shadow:none;
  1410. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1411. font-weight:400;
  1412. font-style:normal;
  1413. color:#FFFFFF;
  1414. }
  1415. #u27358 {
  1416. border-width:0px;
  1417. position:absolute;
  1418. left:52px;
  1419. top:1187px;
  1420. width:29px;
  1421. height:20px;
  1422. display:flex;
  1423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1424. font-weight:400;
  1425. font-style:normal;
  1426. color:#FFFFFF;
  1427. }
  1428. #u27358 .text {
  1429. position:absolute;
  1430. align-self:center;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u27358_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u27359_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:22px;
  1446. height:22px;
  1447. }
  1448. #u27359 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:1186px;
  1453. width:22px;
  1454. height:22px;
  1455. display:flex;
  1456. }
  1457. #u27359 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u27359_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u27360 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u27361_div {
  1479. border-width:0px;
  1480. position:absolute;
  1481. left:0px;
  1482. top:0px;
  1483. width:33px;
  1484. height:22px;
  1485. background:inherit;
  1486. background-color:rgba(255, 255, 255, 0);
  1487. border:none;
  1488. border-radius:0px;
  1489. -moz-box-shadow:none;
  1490. -webkit-box-shadow:none;
  1491. box-shadow:none;
  1492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1493. font-weight:400;
  1494. font-style:normal;
  1495. font-size:16px;
  1496. color:#FFFFFF;
  1497. }
  1498. #u27361 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:231px;
  1503. width:33px;
  1504. height:22px;
  1505. display:flex;
  1506. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1507. font-weight:400;
  1508. font-style:normal;
  1509. font-size:16px;
  1510. color:#FFFFFF;
  1511. }
  1512. #u27361 .text {
  1513. position:absolute;
  1514. align-self:flex-start;
  1515. padding:0px 0px 0px 0px;
  1516. box-sizing:border-box;
  1517. width:100%;
  1518. }
  1519. #u27361_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u27362_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u27362 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:235px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u27362 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u27362_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u27363 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u27364_div {
  1563. border-width:0px;
  1564. position:absolute;
  1565. left:0px;
  1566. top:0px;
  1567. width:33px;
  1568. height:22px;
  1569. background:inherit;
  1570. background-color:rgba(255, 255, 255, 0);
  1571. border:none;
  1572. border-radius:0px;
  1573. -moz-box-shadow:none;
  1574. -webkit-box-shadow:none;
  1575. box-shadow:none;
  1576. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1577. font-weight:400;
  1578. font-style:normal;
  1579. font-size:16px;
  1580. color:#FFFFFF;
  1581. }
  1582. #u27364 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:273px;
  1587. width:33px;
  1588. height:22px;
  1589. display:flex;
  1590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1591. font-weight:400;
  1592. font-style:normal;
  1593. font-size:16px;
  1594. color:#FFFFFF;
  1595. }
  1596. #u27364 .text {
  1597. position:absolute;
  1598. align-self:flex-start;
  1599. padding:0px 0px 0px 0px;
  1600. box-sizing:border-box;
  1601. width:100%;
  1602. }
  1603. #u27364_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u27365_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u27365 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:277px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u27365 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u27365_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u27366_div {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:1260px;
  1644. height:260px;
  1645. background:inherit;
  1646. background-color:rgba(255, 255, 255, 1);
  1647. border:none;
  1648. border-radius:0px;
  1649. -moz-box-shadow:none;
  1650. -webkit-box-shadow:none;
  1651. box-shadow:none;
  1652. }
  1653. #u27366 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:330px;
  1657. top:50px;
  1658. width:1260px;
  1659. height:260px;
  1660. display:flex;
  1661. }
  1662. #u27366 .text {
  1663. position:absolute;
  1664. align-self:center;
  1665. padding:2px 2px 2px 2px;
  1666. box-sizing:border-box;
  1667. width:100%;
  1668. }
  1669. #u27366_text {
  1670. border-width:0px;
  1671. word-wrap:break-word;
  1672. text-transform:none;
  1673. visibility:hidden;
  1674. }
  1675. #u27367_div {
  1676. border-width:0px;
  1677. position:absolute;
  1678. left:0px;
  1679. top:0px;
  1680. width:1260px;
  1681. height:910px;
  1682. background:inherit;
  1683. background-color:rgba(255, 255, 255, 1);
  1684. border:none;
  1685. border-radius:0px;
  1686. -moz-box-shadow:none;
  1687. -webkit-box-shadow:none;
  1688. box-shadow:none;
  1689. }
  1690. #u27367 {
  1691. border-width:0px;
  1692. position:absolute;
  1693. left:330px;
  1694. top:320px;
  1695. width:1260px;
  1696. height:910px;
  1697. display:flex;
  1698. }
  1699. #u27367 .text {
  1700. position:absolute;
  1701. align-self:center;
  1702. padding:2px 2px 2px 2px;
  1703. box-sizing:border-box;
  1704. width:100%;
  1705. }
  1706. #u27367_text {
  1707. border-width:0px;
  1708. word-wrap:break-word;
  1709. text-transform:none;
  1710. visibility:hidden;
  1711. }
  1712. #u27368_div {
  1713. border-width:0px;
  1714. position:absolute;
  1715. left:0px;
  1716. top:0px;
  1717. width:239px;
  1718. height:50px;
  1719. background:inherit;
  1720. background-color:rgba(224, 231, 247, 0);
  1721. border:none;
  1722. border-radius:0px;
  1723. -moz-box-shadow:none;
  1724. -webkit-box-shadow:none;
  1725. box-shadow:none;
  1726. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1727. font-weight:500;
  1728. font-style:normal;
  1729. font-size:18px;
  1730. }
  1731. #u27368 {
  1732. border-width:0px;
  1733. position:absolute;
  1734. left:350px;
  1735. top:50px;
  1736. width:239px;
  1737. height:50px;
  1738. display:flex;
  1739. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1740. font-weight:500;
  1741. font-style:normal;
  1742. font-size:18px;
  1743. }
  1744. #u27368 .text {
  1745. position:absolute;
  1746. align-self:center;
  1747. padding:0px 0px 0px 0px;
  1748. box-sizing:border-box;
  1749. width:100%;
  1750. }
  1751. #u27368_text {
  1752. border-width:0px;
  1753. white-space:nowrap;
  1754. text-transform:none;
  1755. }
  1756. #u27369 {
  1757. border-width:0px;
  1758. position:absolute;
  1759. left:350px;
  1760. top:583px;
  1761. width:1220px;
  1762. height:190px;
  1763. }
  1764. #u27370_img {
  1765. border-width:0px;
  1766. position:absolute;
  1767. left:0px;
  1768. top:0px;
  1769. width:111px;
  1770. height:38px;
  1771. }
  1772. #u27370 {
  1773. border-width:0px;
  1774. position:absolute;
  1775. left:0px;
  1776. top:0px;
  1777. width:111px;
  1778. height:38px;
  1779. display:flex;
  1780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1781. font-weight:400;
  1782. font-style:normal;
  1783. font-size:14px;
  1784. color:#FFFFFF;
  1785. line-height:30px;
  1786. }
  1787. #u27370 .text {
  1788. position:absolute;
  1789. align-self:center;
  1790. padding:2px 0px 2px 0px;
  1791. box-sizing:border-box;
  1792. width:100%;
  1793. }
  1794. #u27370_text {
  1795. border-width:0px;
  1796. word-wrap:break-word;
  1797. text-transform:none;
  1798. }
  1799. #u27371_img {
  1800. border-width:0px;
  1801. position:absolute;
  1802. left:0px;
  1803. top:0px;
  1804. width:111px;
  1805. height:38px;
  1806. }
  1807. #u27371 {
  1808. border-width:0px;
  1809. position:absolute;
  1810. left:111px;
  1811. top:0px;
  1812. width:111px;
  1813. height:38px;
  1814. display:flex;
  1815. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1816. font-weight:400;
  1817. font-style:normal;
  1818. font-size:14px;
  1819. color:#FFFFFF;
  1820. line-height:30px;
  1821. }
  1822. #u27371 .text {
  1823. position:absolute;
  1824. align-self:center;
  1825. padding:2px 0px 2px 0px;
  1826. box-sizing:border-box;
  1827. width:100%;
  1828. }
  1829. #u27371_text {
  1830. border-width:0px;
  1831. word-wrap:break-word;
  1832. text-transform:none;
  1833. }
  1834. #u27372_img {
  1835. border-width:0px;
  1836. position:absolute;
  1837. left:0px;
  1838. top:0px;
  1839. width:111px;
  1840. height:38px;
  1841. }
  1842. #u27372 {
  1843. border-width:0px;
  1844. position:absolute;
  1845. left:222px;
  1846. top:0px;
  1847. width:111px;
  1848. height:38px;
  1849. display:flex;
  1850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1851. font-weight:400;
  1852. font-style:normal;
  1853. font-size:14px;
  1854. color:#FFFFFF;
  1855. line-height:30px;
  1856. }
  1857. #u27372 .text {
  1858. position:absolute;
  1859. align-self:center;
  1860. padding:2px 0px 2px 0px;
  1861. box-sizing:border-box;
  1862. width:100%;
  1863. }
  1864. #u27372_text {
  1865. border-width:0px;
  1866. word-wrap:break-word;
  1867. text-transform:none;
  1868. }
  1869. #u27373_img {
  1870. border-width:0px;
  1871. position:absolute;
  1872. left:0px;
  1873. top:0px;
  1874. width:111px;
  1875. height:38px;
  1876. }
  1877. #u27373 {
  1878. border-width:0px;
  1879. position:absolute;
  1880. left:333px;
  1881. top:0px;
  1882. width:111px;
  1883. height:38px;
  1884. display:flex;
  1885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1886. font-weight:400;
  1887. font-style:normal;
  1888. font-size:14px;
  1889. color:#FFFFFF;
  1890. line-height:30px;
  1891. }
  1892. #u27373 .text {
  1893. position:absolute;
  1894. align-self:center;
  1895. padding:2px 0px 2px 0px;
  1896. box-sizing:border-box;
  1897. width:100%;
  1898. }
  1899. #u27373_text {
  1900. border-width:0px;
  1901. word-wrap:break-word;
  1902. text-transform:none;
  1903. }
  1904. #u27374_img {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:0px;
  1908. top:0px;
  1909. width:111px;
  1910. height:38px;
  1911. }
  1912. #u27374 {
  1913. border-width:0px;
  1914. position:absolute;
  1915. left:444px;
  1916. top:0px;
  1917. width:111px;
  1918. height:38px;
  1919. display:flex;
  1920. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1921. font-weight:400;
  1922. font-style:normal;
  1923. font-size:14px;
  1924. color:#FFFFFF;
  1925. line-height:30px;
  1926. }
  1927. #u27374 .text {
  1928. position:absolute;
  1929. align-self:center;
  1930. padding:2px 0px 2px 0px;
  1931. box-sizing:border-box;
  1932. width:100%;
  1933. }
  1934. #u27374_text {
  1935. border-width:0px;
  1936. word-wrap:break-word;
  1937. text-transform:none;
  1938. }
  1939. #u27375_img {
  1940. border-width:0px;
  1941. position:absolute;
  1942. left:0px;
  1943. top:0px;
  1944. width:111px;
  1945. height:38px;
  1946. }
  1947. #u27375 {
  1948. border-width:0px;
  1949. position:absolute;
  1950. left:555px;
  1951. top:0px;
  1952. width:111px;
  1953. height:38px;
  1954. display:flex;
  1955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1956. font-weight:400;
  1957. font-style:normal;
  1958. font-size:14px;
  1959. color:#FFFFFF;
  1960. line-height:30px;
  1961. }
  1962. #u27375 .text {
  1963. position:absolute;
  1964. align-self:center;
  1965. padding:2px 0px 2px 0px;
  1966. box-sizing:border-box;
  1967. width:100%;
  1968. }
  1969. #u27375_text {
  1970. border-width:0px;
  1971. word-wrap:break-word;
  1972. text-transform:none;
  1973. }
  1974. #u27376_img {
  1975. border-width:0px;
  1976. position:absolute;
  1977. left:0px;
  1978. top:0px;
  1979. width:111px;
  1980. height:38px;
  1981. }
  1982. #u27376 {
  1983. border-width:0px;
  1984. position:absolute;
  1985. left:666px;
  1986. top:0px;
  1987. width:111px;
  1988. height:38px;
  1989. display:flex;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. font-size:14px;
  1994. color:#FFFFFF;
  1995. line-height:30px;
  1996. }
  1997. #u27376 .text {
  1998. position:absolute;
  1999. align-self:center;
  2000. padding:2px 0px 2px 0px;
  2001. box-sizing:border-box;
  2002. width:100%;
  2003. }
  2004. #u27376_text {
  2005. border-width:0px;
  2006. word-wrap:break-word;
  2007. text-transform:none;
  2008. }
  2009. #u27377_img {
  2010. border-width:0px;
  2011. position:absolute;
  2012. left:0px;
  2013. top:0px;
  2014. width:111px;
  2015. height:38px;
  2016. }
  2017. #u27377 {
  2018. border-width:0px;
  2019. position:absolute;
  2020. left:777px;
  2021. top:0px;
  2022. width:111px;
  2023. height:38px;
  2024. display:flex;
  2025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2026. font-weight:400;
  2027. font-style:normal;
  2028. font-size:14px;
  2029. color:#FFFFFF;
  2030. line-height:30px;
  2031. }
  2032. #u27377 .text {
  2033. position:absolute;
  2034. align-self:center;
  2035. padding:2px 0px 2px 0px;
  2036. box-sizing:border-box;
  2037. width:100%;
  2038. }
  2039. #u27377_text {
  2040. border-width:0px;
  2041. word-wrap:break-word;
  2042. text-transform:none;
  2043. }
  2044. #u27378_img {
  2045. border-width:0px;
  2046. position:absolute;
  2047. left:0px;
  2048. top:0px;
  2049. width:111px;
  2050. height:38px;
  2051. }
  2052. #u27378 {
  2053. border-width:0px;
  2054. position:absolute;
  2055. left:888px;
  2056. top:0px;
  2057. width:111px;
  2058. height:38px;
  2059. display:flex;
  2060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2061. font-weight:400;
  2062. font-style:normal;
  2063. font-size:14px;
  2064. color:#FFFFFF;
  2065. line-height:30px;
  2066. }
  2067. #u27378 .text {
  2068. position:absolute;
  2069. align-self:center;
  2070. padding:2px 0px 2px 0px;
  2071. box-sizing:border-box;
  2072. width:100%;
  2073. }
  2074. #u27378_text {
  2075. border-width:0px;
  2076. word-wrap:break-word;
  2077. text-transform:none;
  2078. }
  2079. #u27379_img {
  2080. border-width:0px;
  2081. position:absolute;
  2082. left:0px;
  2083. top:0px;
  2084. width:221px;
  2085. height:38px;
  2086. }
  2087. #u27379 {
  2088. border-width:0px;
  2089. position:absolute;
  2090. left:999px;
  2091. top:0px;
  2092. width:221px;
  2093. height:38px;
  2094. display:flex;
  2095. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2096. font-weight:400;
  2097. font-style:normal;
  2098. font-size:14px;
  2099. color:#FFFFFF;
  2100. line-height:30px;
  2101. }
  2102. #u27379 .text {
  2103. position:absolute;
  2104. align-self:center;
  2105. padding:2px 0px 2px 0px;
  2106. box-sizing:border-box;
  2107. width:100%;
  2108. }
  2109. #u27379_text {
  2110. border-width:0px;
  2111. word-wrap:break-word;
  2112. text-transform:none;
  2113. }
  2114. #u27380_img {
  2115. border-width:0px;
  2116. position:absolute;
  2117. left:0px;
  2118. top:0px;
  2119. width:111px;
  2120. height:38px;
  2121. }
  2122. #u27380 {
  2123. border-width:0px;
  2124. position:absolute;
  2125. left:0px;
  2126. top:38px;
  2127. width:111px;
  2128. height:38px;
  2129. display:flex;
  2130. font-size:14px;
  2131. line-height:30px;
  2132. }
  2133. #u27380 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:2px 0px 2px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u27380_text {
  2141. border-width:0px;
  2142. word-wrap:break-word;
  2143. text-transform:none;
  2144. visibility:hidden;
  2145. }
  2146. #u27381_img {
  2147. border-width:0px;
  2148. position:absolute;
  2149. left:0px;
  2150. top:0px;
  2151. width:111px;
  2152. height:38px;
  2153. }
  2154. #u27381 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:111px;
  2158. top:38px;
  2159. width:111px;
  2160. height:38px;
  2161. display:flex;
  2162. font-size:14px;
  2163. line-height:30px;
  2164. }
  2165. #u27381 .text {
  2166. position:absolute;
  2167. align-self:center;
  2168. padding:2px 0px 2px 0px;
  2169. box-sizing:border-box;
  2170. width:100%;
  2171. }
  2172. #u27381_text {
  2173. border-width:0px;
  2174. word-wrap:break-word;
  2175. text-transform:none;
  2176. visibility:hidden;
  2177. }
  2178. #u27382_img {
  2179. border-width:0px;
  2180. position:absolute;
  2181. left:0px;
  2182. top:0px;
  2183. width:111px;
  2184. height:38px;
  2185. }
  2186. #u27382 {
  2187. border-width:0px;
  2188. position:absolute;
  2189. left:222px;
  2190. top:38px;
  2191. width:111px;
  2192. height:38px;
  2193. display:flex;
  2194. font-size:14px;
  2195. line-height:30px;
  2196. }
  2197. #u27382 .text {
  2198. position:absolute;
  2199. align-self:center;
  2200. padding:2px 0px 2px 0px;
  2201. box-sizing:border-box;
  2202. width:100%;
  2203. }
  2204. #u27382_text {
  2205. border-width:0px;
  2206. word-wrap:break-word;
  2207. text-transform:none;
  2208. visibility:hidden;
  2209. }
  2210. #u27383_img {
  2211. border-width:0px;
  2212. position:absolute;
  2213. left:0px;
  2214. top:0px;
  2215. width:111px;
  2216. height:38px;
  2217. }
  2218. #u27383 {
  2219. border-width:0px;
  2220. position:absolute;
  2221. left:333px;
  2222. top:38px;
  2223. width:111px;
  2224. height:38px;
  2225. display:flex;
  2226. font-size:14px;
  2227. line-height:30px;
  2228. }
  2229. #u27383 .text {
  2230. position:absolute;
  2231. align-self:center;
  2232. padding:2px 0px 2px 0px;
  2233. box-sizing:border-box;
  2234. width:100%;
  2235. }
  2236. #u27383_text {
  2237. border-width:0px;
  2238. word-wrap:break-word;
  2239. text-transform:none;
  2240. visibility:hidden;
  2241. }
  2242. #u27384_img {
  2243. border-width:0px;
  2244. position:absolute;
  2245. left:0px;
  2246. top:0px;
  2247. width:111px;
  2248. height:38px;
  2249. }
  2250. #u27384 {
  2251. border-width:0px;
  2252. position:absolute;
  2253. left:444px;
  2254. top:38px;
  2255. width:111px;
  2256. height:38px;
  2257. display:flex;
  2258. font-size:14px;
  2259. line-height:30px;
  2260. }
  2261. #u27384 .text {
  2262. position:absolute;
  2263. align-self:center;
  2264. padding:2px 0px 2px 0px;
  2265. box-sizing:border-box;
  2266. width:100%;
  2267. }
  2268. #u27384_text {
  2269. border-width:0px;
  2270. word-wrap:break-word;
  2271. text-transform:none;
  2272. visibility:hidden;
  2273. }
  2274. #u27385_img {
  2275. border-width:0px;
  2276. position:absolute;
  2277. left:0px;
  2278. top:0px;
  2279. width:111px;
  2280. height:38px;
  2281. }
  2282. #u27385 {
  2283. border-width:0px;
  2284. position:absolute;
  2285. left:555px;
  2286. top:38px;
  2287. width:111px;
  2288. height:38px;
  2289. display:flex;
  2290. font-size:14px;
  2291. line-height:30px;
  2292. }
  2293. #u27385 .text {
  2294. position:absolute;
  2295. align-self:center;
  2296. padding:2px 0px 2px 0px;
  2297. box-sizing:border-box;
  2298. width:100%;
  2299. }
  2300. #u27385_text {
  2301. border-width:0px;
  2302. word-wrap:break-word;
  2303. text-transform:none;
  2304. visibility:hidden;
  2305. }
  2306. #u27386_img {
  2307. border-width:0px;
  2308. position:absolute;
  2309. left:0px;
  2310. top:0px;
  2311. width:111px;
  2312. height:38px;
  2313. }
  2314. #u27386 {
  2315. border-width:0px;
  2316. position:absolute;
  2317. left:666px;
  2318. top:38px;
  2319. width:111px;
  2320. height:38px;
  2321. display:flex;
  2322. font-size:14px;
  2323. line-height:30px;
  2324. }
  2325. #u27386 .text {
  2326. position:absolute;
  2327. align-self:center;
  2328. padding:2px 0px 2px 0px;
  2329. box-sizing:border-box;
  2330. width:100%;
  2331. }
  2332. #u27386_text {
  2333. border-width:0px;
  2334. word-wrap:break-word;
  2335. text-transform:none;
  2336. visibility:hidden;
  2337. }
  2338. #u27387_img {
  2339. border-width:0px;
  2340. position:absolute;
  2341. left:0px;
  2342. top:0px;
  2343. width:111px;
  2344. height:38px;
  2345. }
  2346. #u27387 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:777px;
  2350. top:38px;
  2351. width:111px;
  2352. height:38px;
  2353. display:flex;
  2354. font-size:14px;
  2355. line-height:30px;
  2356. }
  2357. #u27387 .text {
  2358. position:absolute;
  2359. align-self:center;
  2360. padding:2px 0px 2px 0px;
  2361. box-sizing:border-box;
  2362. width:100%;
  2363. }
  2364. #u27387_text {
  2365. border-width:0px;
  2366. word-wrap:break-word;
  2367. text-transform:none;
  2368. visibility:hidden;
  2369. }
  2370. #u27388_img {
  2371. border-width:0px;
  2372. position:absolute;
  2373. left:0px;
  2374. top:0px;
  2375. width:111px;
  2376. height:38px;
  2377. }
  2378. #u27388 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:888px;
  2382. top:38px;
  2383. width:111px;
  2384. height:38px;
  2385. display:flex;
  2386. font-size:14px;
  2387. line-height:30px;
  2388. }
  2389. #u27388 .text {
  2390. position:absolute;
  2391. align-self:center;
  2392. padding:2px 0px 2px 0px;
  2393. box-sizing:border-box;
  2394. width:100%;
  2395. }
  2396. #u27388_text {
  2397. border-width:0px;
  2398. word-wrap:break-word;
  2399. text-transform:none;
  2400. visibility:hidden;
  2401. }
  2402. #u27389_img {
  2403. border-width:0px;
  2404. position:absolute;
  2405. left:0px;
  2406. top:0px;
  2407. width:221px;
  2408. height:38px;
  2409. }
  2410. #u27389 {
  2411. border-width:0px;
  2412. position:absolute;
  2413. left:999px;
  2414. top:38px;
  2415. width:221px;
  2416. height:38px;
  2417. display:flex;
  2418. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2419. font-weight:400;
  2420. font-style:normal;
  2421. font-size:14px;
  2422. color:#298FFF;
  2423. line-height:30px;
  2424. }
  2425. #u27389 .text {
  2426. position:absolute;
  2427. align-self:center;
  2428. padding:2px 0px 2px 0px;
  2429. box-sizing:border-box;
  2430. width:100%;
  2431. }
  2432. #u27389_text {
  2433. border-width:0px;
  2434. word-wrap:break-word;
  2435. text-transform:none;
  2436. }
  2437. #u27390_img {
  2438. border-width:0px;
  2439. position:absolute;
  2440. left:0px;
  2441. top:0px;
  2442. width:111px;
  2443. height:38px;
  2444. }
  2445. #u27390 {
  2446. border-width:0px;
  2447. position:absolute;
  2448. left:0px;
  2449. top:76px;
  2450. width:111px;
  2451. height:38px;
  2452. display:flex;
  2453. font-size:14px;
  2454. line-height:30px;
  2455. }
  2456. #u27390 .text {
  2457. position:absolute;
  2458. align-self:center;
  2459. padding:2px 0px 2px 0px;
  2460. box-sizing:border-box;
  2461. width:100%;
  2462. }
  2463. #u27390_text {
  2464. border-width:0px;
  2465. word-wrap:break-word;
  2466. text-transform:none;
  2467. visibility:hidden;
  2468. }
  2469. #u27391_img {
  2470. border-width:0px;
  2471. position:absolute;
  2472. left:0px;
  2473. top:0px;
  2474. width:111px;
  2475. height:38px;
  2476. }
  2477. #u27391 {
  2478. border-width:0px;
  2479. position:absolute;
  2480. left:111px;
  2481. top:76px;
  2482. width:111px;
  2483. height:38px;
  2484. display:flex;
  2485. font-size:14px;
  2486. line-height:30px;
  2487. }
  2488. #u27391 .text {
  2489. position:absolute;
  2490. align-self:center;
  2491. padding:2px 0px 2px 0px;
  2492. box-sizing:border-box;
  2493. width:100%;
  2494. }
  2495. #u27391_text {
  2496. border-width:0px;
  2497. word-wrap:break-word;
  2498. text-transform:none;
  2499. visibility:hidden;
  2500. }
  2501. #u27392_img {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:0px;
  2505. top:0px;
  2506. width:111px;
  2507. height:38px;
  2508. }
  2509. #u27392 {
  2510. border-width:0px;
  2511. position:absolute;
  2512. left:222px;
  2513. top:76px;
  2514. width:111px;
  2515. height:38px;
  2516. display:flex;
  2517. font-size:14px;
  2518. line-height:30px;
  2519. }
  2520. #u27392 .text {
  2521. position:absolute;
  2522. align-self:center;
  2523. padding:2px 0px 2px 0px;
  2524. box-sizing:border-box;
  2525. width:100%;
  2526. }
  2527. #u27392_text {
  2528. border-width:0px;
  2529. word-wrap:break-word;
  2530. text-transform:none;
  2531. visibility:hidden;
  2532. }
  2533. #u27393_img {
  2534. border-width:0px;
  2535. position:absolute;
  2536. left:0px;
  2537. top:0px;
  2538. width:111px;
  2539. height:38px;
  2540. }
  2541. #u27393 {
  2542. border-width:0px;
  2543. position:absolute;
  2544. left:333px;
  2545. top:76px;
  2546. width:111px;
  2547. height:38px;
  2548. display:flex;
  2549. font-size:14px;
  2550. line-height:30px;
  2551. }
  2552. #u27393 .text {
  2553. position:absolute;
  2554. align-self:center;
  2555. padding:2px 0px 2px 0px;
  2556. box-sizing:border-box;
  2557. width:100%;
  2558. }
  2559. #u27393_text {
  2560. border-width:0px;
  2561. word-wrap:break-word;
  2562. text-transform:none;
  2563. visibility:hidden;
  2564. }
  2565. #u27394_img {
  2566. border-width:0px;
  2567. position:absolute;
  2568. left:0px;
  2569. top:0px;
  2570. width:111px;
  2571. height:38px;
  2572. }
  2573. #u27394 {
  2574. border-width:0px;
  2575. position:absolute;
  2576. left:444px;
  2577. top:76px;
  2578. width:111px;
  2579. height:38px;
  2580. display:flex;
  2581. font-size:14px;
  2582. line-height:30px;
  2583. }
  2584. #u27394 .text {
  2585. position:absolute;
  2586. align-self:center;
  2587. padding:2px 0px 2px 0px;
  2588. box-sizing:border-box;
  2589. width:100%;
  2590. }
  2591. #u27394_text {
  2592. border-width:0px;
  2593. word-wrap:break-word;
  2594. text-transform:none;
  2595. visibility:hidden;
  2596. }
  2597. #u27395_img {
  2598. border-width:0px;
  2599. position:absolute;
  2600. left:0px;
  2601. top:0px;
  2602. width:111px;
  2603. height:38px;
  2604. }
  2605. #u27395 {
  2606. border-width:0px;
  2607. position:absolute;
  2608. left:555px;
  2609. top:76px;
  2610. width:111px;
  2611. height:38px;
  2612. display:flex;
  2613. font-size:14px;
  2614. line-height:30px;
  2615. }
  2616. #u27395 .text {
  2617. position:absolute;
  2618. align-self:center;
  2619. padding:2px 0px 2px 0px;
  2620. box-sizing:border-box;
  2621. width:100%;
  2622. }
  2623. #u27395_text {
  2624. border-width:0px;
  2625. word-wrap:break-word;
  2626. text-transform:none;
  2627. visibility:hidden;
  2628. }
  2629. #u27396_img {
  2630. border-width:0px;
  2631. position:absolute;
  2632. left:0px;
  2633. top:0px;
  2634. width:111px;
  2635. height:38px;
  2636. }
  2637. #u27396 {
  2638. border-width:0px;
  2639. position:absolute;
  2640. left:666px;
  2641. top:76px;
  2642. width:111px;
  2643. height:38px;
  2644. display:flex;
  2645. font-size:14px;
  2646. line-height:30px;
  2647. }
  2648. #u27396 .text {
  2649. position:absolute;
  2650. align-self:center;
  2651. padding:2px 0px 2px 0px;
  2652. box-sizing:border-box;
  2653. width:100%;
  2654. }
  2655. #u27396_text {
  2656. border-width:0px;
  2657. word-wrap:break-word;
  2658. text-transform:none;
  2659. visibility:hidden;
  2660. }
  2661. #u27397_img {
  2662. border-width:0px;
  2663. position:absolute;
  2664. left:0px;
  2665. top:0px;
  2666. width:111px;
  2667. height:38px;
  2668. }
  2669. #u27397 {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:777px;
  2673. top:76px;
  2674. width:111px;
  2675. height:38px;
  2676. display:flex;
  2677. font-size:14px;
  2678. line-height:30px;
  2679. }
  2680. #u27397 .text {
  2681. position:absolute;
  2682. align-self:center;
  2683. padding:2px 0px 2px 0px;
  2684. box-sizing:border-box;
  2685. width:100%;
  2686. }
  2687. #u27397_text {
  2688. border-width:0px;
  2689. word-wrap:break-word;
  2690. text-transform:none;
  2691. visibility:hidden;
  2692. }
  2693. #u27398_img {
  2694. border-width:0px;
  2695. position:absolute;
  2696. left:0px;
  2697. top:0px;
  2698. width:111px;
  2699. height:38px;
  2700. }
  2701. #u27398 {
  2702. border-width:0px;
  2703. position:absolute;
  2704. left:888px;
  2705. top:76px;
  2706. width:111px;
  2707. height:38px;
  2708. display:flex;
  2709. font-size:14px;
  2710. line-height:30px;
  2711. }
  2712. #u27398 .text {
  2713. position:absolute;
  2714. align-self:center;
  2715. padding:2px 0px 2px 0px;
  2716. box-sizing:border-box;
  2717. width:100%;
  2718. }
  2719. #u27398_text {
  2720. border-width:0px;
  2721. word-wrap:break-word;
  2722. text-transform:none;
  2723. visibility:hidden;
  2724. }
  2725. #u27399_img {
  2726. border-width:0px;
  2727. position:absolute;
  2728. left:0px;
  2729. top:0px;
  2730. width:221px;
  2731. height:38px;
  2732. }
  2733. #u27399 {
  2734. border-width:0px;
  2735. position:absolute;
  2736. left:999px;
  2737. top:76px;
  2738. width:221px;
  2739. height:38px;
  2740. display:flex;
  2741. font-size:14px;
  2742. line-height:30px;
  2743. }
  2744. #u27399 .text {
  2745. position:absolute;
  2746. align-self:center;
  2747. padding:2px 0px 2px 0px;
  2748. box-sizing:border-box;
  2749. width:100%;
  2750. }
  2751. #u27399_text {
  2752. border-width:0px;
  2753. word-wrap:break-word;
  2754. text-transform:none;
  2755. visibility:hidden;
  2756. }
  2757. #u27400_img {
  2758. border-width:0px;
  2759. position:absolute;
  2760. left:0px;
  2761. top:0px;
  2762. width:111px;
  2763. height:38px;
  2764. }
  2765. #u27400 {
  2766. border-width:0px;
  2767. position:absolute;
  2768. left:0px;
  2769. top:114px;
  2770. width:111px;
  2771. height:38px;
  2772. display:flex;
  2773. font-size:14px;
  2774. line-height:30px;
  2775. }
  2776. #u27400 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 0px 2px 0px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u27400_text {
  2784. border-width:0px;
  2785. word-wrap:break-word;
  2786. text-transform:none;
  2787. visibility:hidden;
  2788. }
  2789. #u27401_img {
  2790. border-width:0px;
  2791. position:absolute;
  2792. left:0px;
  2793. top:0px;
  2794. width:111px;
  2795. height:38px;
  2796. }
  2797. #u27401 {
  2798. border-width:0px;
  2799. position:absolute;
  2800. left:111px;
  2801. top:114px;
  2802. width:111px;
  2803. height:38px;
  2804. display:flex;
  2805. font-size:14px;
  2806. line-height:30px;
  2807. }
  2808. #u27401 .text {
  2809. position:absolute;
  2810. align-self:center;
  2811. padding:2px 0px 2px 0px;
  2812. box-sizing:border-box;
  2813. width:100%;
  2814. }
  2815. #u27401_text {
  2816. border-width:0px;
  2817. word-wrap:break-word;
  2818. text-transform:none;
  2819. visibility:hidden;
  2820. }
  2821. #u27402_img {
  2822. border-width:0px;
  2823. position:absolute;
  2824. left:0px;
  2825. top:0px;
  2826. width:111px;
  2827. height:38px;
  2828. }
  2829. #u27402 {
  2830. border-width:0px;
  2831. position:absolute;
  2832. left:222px;
  2833. top:114px;
  2834. width:111px;
  2835. height:38px;
  2836. display:flex;
  2837. font-size:14px;
  2838. line-height:30px;
  2839. }
  2840. #u27402 .text {
  2841. position:absolute;
  2842. align-self:center;
  2843. padding:2px 0px 2px 0px;
  2844. box-sizing:border-box;
  2845. width:100%;
  2846. }
  2847. #u27402_text {
  2848. border-width:0px;
  2849. word-wrap:break-word;
  2850. text-transform:none;
  2851. visibility:hidden;
  2852. }
  2853. #u27403_img {
  2854. border-width:0px;
  2855. position:absolute;
  2856. left:0px;
  2857. top:0px;
  2858. width:111px;
  2859. height:38px;
  2860. }
  2861. #u27403 {
  2862. border-width:0px;
  2863. position:absolute;
  2864. left:333px;
  2865. top:114px;
  2866. width:111px;
  2867. height:38px;
  2868. display:flex;
  2869. font-size:14px;
  2870. line-height:30px;
  2871. }
  2872. #u27403 .text {
  2873. position:absolute;
  2874. align-self:center;
  2875. padding:2px 0px 2px 0px;
  2876. box-sizing:border-box;
  2877. width:100%;
  2878. }
  2879. #u27403_text {
  2880. border-width:0px;
  2881. word-wrap:break-word;
  2882. text-transform:none;
  2883. visibility:hidden;
  2884. }
  2885. #u27404_img {
  2886. border-width:0px;
  2887. position:absolute;
  2888. left:0px;
  2889. top:0px;
  2890. width:111px;
  2891. height:38px;
  2892. }
  2893. #u27404 {
  2894. border-width:0px;
  2895. position:absolute;
  2896. left:444px;
  2897. top:114px;
  2898. width:111px;
  2899. height:38px;
  2900. display:flex;
  2901. font-size:14px;
  2902. line-height:30px;
  2903. }
  2904. #u27404 .text {
  2905. position:absolute;
  2906. align-self:center;
  2907. padding:2px 0px 2px 0px;
  2908. box-sizing:border-box;
  2909. width:100%;
  2910. }
  2911. #u27404_text {
  2912. border-width:0px;
  2913. word-wrap:break-word;
  2914. text-transform:none;
  2915. visibility:hidden;
  2916. }
  2917. #u27405_img {
  2918. border-width:0px;
  2919. position:absolute;
  2920. left:0px;
  2921. top:0px;
  2922. width:111px;
  2923. height:38px;
  2924. }
  2925. #u27405 {
  2926. border-width:0px;
  2927. position:absolute;
  2928. left:555px;
  2929. top:114px;
  2930. width:111px;
  2931. height:38px;
  2932. display:flex;
  2933. font-size:14px;
  2934. line-height:30px;
  2935. }
  2936. #u27405 .text {
  2937. position:absolute;
  2938. align-self:center;
  2939. padding:2px 0px 2px 0px;
  2940. box-sizing:border-box;
  2941. width:100%;
  2942. }
  2943. #u27405_text {
  2944. border-width:0px;
  2945. word-wrap:break-word;
  2946. text-transform:none;
  2947. visibility:hidden;
  2948. }
  2949. #u27406_img {
  2950. border-width:0px;
  2951. position:absolute;
  2952. left:0px;
  2953. top:0px;
  2954. width:111px;
  2955. height:38px;
  2956. }
  2957. #u27406 {
  2958. border-width:0px;
  2959. position:absolute;
  2960. left:666px;
  2961. top:114px;
  2962. width:111px;
  2963. height:38px;
  2964. display:flex;
  2965. font-size:14px;
  2966. line-height:30px;
  2967. }
  2968. #u27406 .text {
  2969. position:absolute;
  2970. align-self:center;
  2971. padding:2px 0px 2px 0px;
  2972. box-sizing:border-box;
  2973. width:100%;
  2974. }
  2975. #u27406_text {
  2976. border-width:0px;
  2977. word-wrap:break-word;
  2978. text-transform:none;
  2979. visibility:hidden;
  2980. }
  2981. #u27407_img {
  2982. border-width:0px;
  2983. position:absolute;
  2984. left:0px;
  2985. top:0px;
  2986. width:111px;
  2987. height:38px;
  2988. }
  2989. #u27407 {
  2990. border-width:0px;
  2991. position:absolute;
  2992. left:777px;
  2993. top:114px;
  2994. width:111px;
  2995. height:38px;
  2996. display:flex;
  2997. font-size:14px;
  2998. line-height:30px;
  2999. }
  3000. #u27407 .text {
  3001. position:absolute;
  3002. align-self:center;
  3003. padding:2px 0px 2px 0px;
  3004. box-sizing:border-box;
  3005. width:100%;
  3006. }
  3007. #u27407_text {
  3008. border-width:0px;
  3009. word-wrap:break-word;
  3010. text-transform:none;
  3011. visibility:hidden;
  3012. }
  3013. #u27408_img {
  3014. border-width:0px;
  3015. position:absolute;
  3016. left:0px;
  3017. top:0px;
  3018. width:111px;
  3019. height:38px;
  3020. }
  3021. #u27408 {
  3022. border-width:0px;
  3023. position:absolute;
  3024. left:888px;
  3025. top:114px;
  3026. width:111px;
  3027. height:38px;
  3028. display:flex;
  3029. font-size:14px;
  3030. line-height:30px;
  3031. }
  3032. #u27408 .text {
  3033. position:absolute;
  3034. align-self:center;
  3035. padding:2px 0px 2px 0px;
  3036. box-sizing:border-box;
  3037. width:100%;
  3038. }
  3039. #u27408_text {
  3040. border-width:0px;
  3041. word-wrap:break-word;
  3042. text-transform:none;
  3043. visibility:hidden;
  3044. }
  3045. #u27409_img {
  3046. border-width:0px;
  3047. position:absolute;
  3048. left:0px;
  3049. top:0px;
  3050. width:221px;
  3051. height:38px;
  3052. }
  3053. #u27409 {
  3054. border-width:0px;
  3055. position:absolute;
  3056. left:999px;
  3057. top:114px;
  3058. width:221px;
  3059. height:38px;
  3060. display:flex;
  3061. font-size:14px;
  3062. line-height:30px;
  3063. }
  3064. #u27409 .text {
  3065. position:absolute;
  3066. align-self:center;
  3067. padding:2px 0px 2px 0px;
  3068. box-sizing:border-box;
  3069. width:100%;
  3070. }
  3071. #u27409_text {
  3072. border-width:0px;
  3073. word-wrap:break-word;
  3074. text-transform:none;
  3075. visibility:hidden;
  3076. }
  3077. #u27410_img {
  3078. border-width:0px;
  3079. position:absolute;
  3080. left:0px;
  3081. top:0px;
  3082. width:111px;
  3083. height:38px;
  3084. }
  3085. #u27410 {
  3086. border-width:0px;
  3087. position:absolute;
  3088. left:0px;
  3089. top:152px;
  3090. width:111px;
  3091. height:38px;
  3092. display:flex;
  3093. font-size:14px;
  3094. line-height:30px;
  3095. }
  3096. #u27410 .text {
  3097. position:absolute;
  3098. align-self:center;
  3099. padding:2px 0px 2px 0px;
  3100. box-sizing:border-box;
  3101. width:100%;
  3102. }
  3103. #u27410_text {
  3104. border-width:0px;
  3105. word-wrap:break-word;
  3106. text-transform:none;
  3107. visibility:hidden;
  3108. }
  3109. #u27411_img {
  3110. border-width:0px;
  3111. position:absolute;
  3112. left:0px;
  3113. top:0px;
  3114. width:111px;
  3115. height:38px;
  3116. }
  3117. #u27411 {
  3118. border-width:0px;
  3119. position:absolute;
  3120. left:111px;
  3121. top:152px;
  3122. width:111px;
  3123. height:38px;
  3124. display:flex;
  3125. font-size:14px;
  3126. line-height:30px;
  3127. }
  3128. #u27411 .text {
  3129. position:absolute;
  3130. align-self:center;
  3131. padding:2px 0px 2px 0px;
  3132. box-sizing:border-box;
  3133. width:100%;
  3134. }
  3135. #u27411_text {
  3136. border-width:0px;
  3137. word-wrap:break-word;
  3138. text-transform:none;
  3139. visibility:hidden;
  3140. }
  3141. #u27412_img {
  3142. border-width:0px;
  3143. position:absolute;
  3144. left:0px;
  3145. top:0px;
  3146. width:111px;
  3147. height:38px;
  3148. }
  3149. #u27412 {
  3150. border-width:0px;
  3151. position:absolute;
  3152. left:222px;
  3153. top:152px;
  3154. width:111px;
  3155. height:38px;
  3156. display:flex;
  3157. font-size:14px;
  3158. line-height:30px;
  3159. }
  3160. #u27412 .text {
  3161. position:absolute;
  3162. align-self:center;
  3163. padding:2px 0px 2px 0px;
  3164. box-sizing:border-box;
  3165. width:100%;
  3166. }
  3167. #u27412_text {
  3168. border-width:0px;
  3169. word-wrap:break-word;
  3170. text-transform:none;
  3171. visibility:hidden;
  3172. }
  3173. #u27413_img {
  3174. border-width:0px;
  3175. position:absolute;
  3176. left:0px;
  3177. top:0px;
  3178. width:111px;
  3179. height:38px;
  3180. }
  3181. #u27413 {
  3182. border-width:0px;
  3183. position:absolute;
  3184. left:333px;
  3185. top:152px;
  3186. width:111px;
  3187. height:38px;
  3188. display:flex;
  3189. font-size:14px;
  3190. line-height:30px;
  3191. }
  3192. #u27413 .text {
  3193. position:absolute;
  3194. align-self:center;
  3195. padding:2px 0px 2px 0px;
  3196. box-sizing:border-box;
  3197. width:100%;
  3198. }
  3199. #u27413_text {
  3200. border-width:0px;
  3201. word-wrap:break-word;
  3202. text-transform:none;
  3203. visibility:hidden;
  3204. }
  3205. #u27414_img {
  3206. border-width:0px;
  3207. position:absolute;
  3208. left:0px;
  3209. top:0px;
  3210. width:111px;
  3211. height:38px;
  3212. }
  3213. #u27414 {
  3214. border-width:0px;
  3215. position:absolute;
  3216. left:444px;
  3217. top:152px;
  3218. width:111px;
  3219. height:38px;
  3220. display:flex;
  3221. font-size:14px;
  3222. line-height:30px;
  3223. }
  3224. #u27414 .text {
  3225. position:absolute;
  3226. align-self:center;
  3227. padding:2px 0px 2px 0px;
  3228. box-sizing:border-box;
  3229. width:100%;
  3230. }
  3231. #u27414_text {
  3232. border-width:0px;
  3233. word-wrap:break-word;
  3234. text-transform:none;
  3235. visibility:hidden;
  3236. }
  3237. #u27415_img {
  3238. border-width:0px;
  3239. position:absolute;
  3240. left:0px;
  3241. top:0px;
  3242. width:111px;
  3243. height:38px;
  3244. }
  3245. #u27415 {
  3246. border-width:0px;
  3247. position:absolute;
  3248. left:555px;
  3249. top:152px;
  3250. width:111px;
  3251. height:38px;
  3252. display:flex;
  3253. font-size:14px;
  3254. line-height:30px;
  3255. }
  3256. #u27415 .text {
  3257. position:absolute;
  3258. align-self:center;
  3259. padding:2px 0px 2px 0px;
  3260. box-sizing:border-box;
  3261. width:100%;
  3262. }
  3263. #u27415_text {
  3264. border-width:0px;
  3265. word-wrap:break-word;
  3266. text-transform:none;
  3267. visibility:hidden;
  3268. }
  3269. #u27416_img {
  3270. border-width:0px;
  3271. position:absolute;
  3272. left:0px;
  3273. top:0px;
  3274. width:111px;
  3275. height:38px;
  3276. }
  3277. #u27416 {
  3278. border-width:0px;
  3279. position:absolute;
  3280. left:666px;
  3281. top:152px;
  3282. width:111px;
  3283. height:38px;
  3284. display:flex;
  3285. font-size:14px;
  3286. line-height:30px;
  3287. }
  3288. #u27416 .text {
  3289. position:absolute;
  3290. align-self:center;
  3291. padding:2px 0px 2px 0px;
  3292. box-sizing:border-box;
  3293. width:100%;
  3294. }
  3295. #u27416_text {
  3296. border-width:0px;
  3297. word-wrap:break-word;
  3298. text-transform:none;
  3299. visibility:hidden;
  3300. }
  3301. #u27417_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:111px;
  3307. height:38px;
  3308. }
  3309. #u27417 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:777px;
  3313. top:152px;
  3314. width:111px;
  3315. height:38px;
  3316. display:flex;
  3317. font-size:14px;
  3318. line-height:30px;
  3319. }
  3320. #u27417 .text {
  3321. position:absolute;
  3322. align-self:center;
  3323. padding:2px 0px 2px 0px;
  3324. box-sizing:border-box;
  3325. width:100%;
  3326. }
  3327. #u27417_text {
  3328. border-width:0px;
  3329. word-wrap:break-word;
  3330. text-transform:none;
  3331. visibility:hidden;
  3332. }
  3333. #u27418_img {
  3334. border-width:0px;
  3335. position:absolute;
  3336. left:0px;
  3337. top:0px;
  3338. width:111px;
  3339. height:38px;
  3340. }
  3341. #u27418 {
  3342. border-width:0px;
  3343. position:absolute;
  3344. left:888px;
  3345. top:152px;
  3346. width:111px;
  3347. height:38px;
  3348. display:flex;
  3349. font-size:14px;
  3350. line-height:30px;
  3351. }
  3352. #u27418 .text {
  3353. position:absolute;
  3354. align-self:center;
  3355. padding:2px 0px 2px 0px;
  3356. box-sizing:border-box;
  3357. width:100%;
  3358. }
  3359. #u27418_text {
  3360. border-width:0px;
  3361. word-wrap:break-word;
  3362. text-transform:none;
  3363. visibility:hidden;
  3364. }
  3365. #u27419_img {
  3366. border-width:0px;
  3367. position:absolute;
  3368. left:0px;
  3369. top:0px;
  3370. width:221px;
  3371. height:38px;
  3372. }
  3373. #u27419 {
  3374. border-width:0px;
  3375. position:absolute;
  3376. left:999px;
  3377. top:152px;
  3378. width:221px;
  3379. height:38px;
  3380. display:flex;
  3381. font-size:14px;
  3382. line-height:30px;
  3383. }
  3384. #u27419 .text {
  3385. position:absolute;
  3386. align-self:center;
  3387. padding:2px 0px 2px 0px;
  3388. box-sizing:border-box;
  3389. width:100%;
  3390. }
  3391. #u27419_text {
  3392. border-width:0px;
  3393. word-wrap:break-word;
  3394. text-transform:none;
  3395. visibility:hidden;
  3396. }
  3397. #u27420 {
  3398. border-width:0px;
  3399. position:absolute;
  3400. left:0px;
  3401. top:0px;
  3402. width:0px;
  3403. height:0px;
  3404. }
  3405. #u27421_div {
  3406. border-width:0px;
  3407. position:absolute;
  3408. left:0px;
  3409. top:0px;
  3410. width:61px;
  3411. height:32px;
  3412. background:inherit;
  3413. background-color:rgba(24, 144, 255, 1);
  3414. border:none;
  3415. border-radius:4px;
  3416. -moz-box-shadow:none;
  3417. -webkit-box-shadow:none;
  3418. box-shadow:none;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:14px;
  3423. color:#FFFFFF;
  3424. }
  3425. #u27421 {
  3426. border-width:0px;
  3427. position:absolute;
  3428. left:800px;
  3429. top:500px;
  3430. width:61px;
  3431. height:32px;
  3432. display:flex;
  3433. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3434. font-weight:400;
  3435. font-style:normal;
  3436. font-size:14px;
  3437. color:#FFFFFF;
  3438. }
  3439. #u27421 .text {
  3440. position:absolute;
  3441. align-self:center;
  3442. padding:2px 16px 2px 16px;
  3443. box-sizing:border-box;
  3444. width:100%;
  3445. }
  3446. #u27421_text {
  3447. border-width:0px;
  3448. white-space:nowrap;
  3449. text-transform:none;
  3450. }
  3451. #u27422_div {
  3452. border-width:0px;
  3453. position:absolute;
  3454. left:0px;
  3455. top:0px;
  3456. width:61px;
  3457. height:32px;
  3458. background:inherit;
  3459. background-color:rgba(255, 255, 255, 1);
  3460. box-sizing:border-box;
  3461. border-width:1px;
  3462. border-style:solid;
  3463. border-color:rgba(217, 217, 217, 1);
  3464. border-radius:4px;
  3465. -moz-box-shadow:none;
  3466. -webkit-box-shadow:none;
  3467. box-shadow:none;
  3468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3469. font-weight:400;
  3470. font-style:normal;
  3471. font-size:14px;
  3472. color:rgba(0, 0, 0, 0.647058823529412);
  3473. line-height:21px;
  3474. }
  3475. #u27422 {
  3476. border-width:0px;
  3477. position:absolute;
  3478. left:871px;
  3479. top:500px;
  3480. width:61px;
  3481. height:32px;
  3482. display:flex;
  3483. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3484. font-weight:400;
  3485. font-style:normal;
  3486. font-size:14px;
  3487. color:rgba(0, 0, 0, 0.647058823529412);
  3488. line-height:21px;
  3489. }
  3490. #u27422 .text {
  3491. position:absolute;
  3492. align-self:center;
  3493. padding:2px 16px 2px 16px;
  3494. box-sizing:border-box;
  3495. width:100%;
  3496. }
  3497. #u27422_text {
  3498. border-width:0px;
  3499. white-space:nowrap;
  3500. text-transform:none;
  3501. }
  3502. #u27423 {
  3503. border-width:0px;
  3504. position:absolute;
  3505. left:0px;
  3506. top:0px;
  3507. width:0px;
  3508. height:0px;
  3509. }
  3510. #u27424_div {
  3511. border-width:0px;
  3512. position:absolute;
  3513. left:0px;
  3514. top:0px;
  3515. width:140px;
  3516. height:30px;
  3517. background:inherit;
  3518. background-color:rgba(255, 255, 255, 1);
  3519. box-sizing:border-box;
  3520. border-width:1px;
  3521. border-style:solid;
  3522. border-color:rgba(215, 215, 215, 1);
  3523. border-radius:4px;
  3524. -moz-box-shadow:none;
  3525. -webkit-box-shadow:none;
  3526. box-shadow:none;
  3527. font-size:14px;
  3528. }
  3529. #u27424 {
  3530. border-width:0px;
  3531. position:absolute;
  3532. left:350px;
  3533. top:501px;
  3534. width:140px;
  3535. height:30px;
  3536. display:flex;
  3537. font-size:14px;
  3538. }
  3539. #u27424 .text {
  3540. position:absolute;
  3541. align-self:center;
  3542. padding:2px 2px 2px 2px;
  3543. box-sizing:border-box;
  3544. width:100%;
  3545. }
  3546. #u27424_text {
  3547. border-width:0px;
  3548. word-wrap:break-word;
  3549. text-transform:none;
  3550. visibility:hidden;
  3551. }
  3552. #u27425_input {
  3553. position:absolute;
  3554. left:0px;
  3555. top:0px;
  3556. width:134px;
  3557. height:23px;
  3558. padding:2px 2px 2px 2px;
  3559. font-family:'ArialMT', 'Arial', sans-serif;
  3560. font-weight:400;
  3561. font-style:normal;
  3562. font-size:14px;
  3563. letter-spacing:normal;
  3564. color:#AAAAAA;
  3565. vertical-align:none;
  3566. text-align:left;
  3567. text-transform:none;
  3568. background-color:transparent;
  3569. border-color:transparent;
  3570. }
  3571. #u27425_input.disabled {
  3572. position:absolute;
  3573. left:0px;
  3574. top:0px;
  3575. width:134px;
  3576. height:23px;
  3577. padding:2px 2px 2px 2px;
  3578. font-family:'ArialMT', 'Arial', sans-serif;
  3579. font-weight:400;
  3580. font-style:normal;
  3581. font-size:14px;
  3582. letter-spacing:normal;
  3583. color:#AAAAAA;
  3584. vertical-align:none;
  3585. text-align:left;
  3586. text-transform:none;
  3587. background-color:transparent;
  3588. border-color:transparent;
  3589. }
  3590. #u27425_div {
  3591. border-width:0px;
  3592. position:absolute;
  3593. left:0px;
  3594. top:0px;
  3595. width:134px;
  3596. height:23px;
  3597. background:inherit;
  3598. background-color:rgba(255, 255, 255, 1);
  3599. border:none;
  3600. border-radius:0px;
  3601. -moz-box-shadow:none;
  3602. -webkit-box-shadow:none;
  3603. box-shadow:none;
  3604. font-size:14px;
  3605. color:#AAAAAA;
  3606. }
  3607. #u27425 {
  3608. border-width:0px;
  3609. position:absolute;
  3610. left:354px;
  3611. top:503px;
  3612. width:134px;
  3613. height:23px;
  3614. display:flex;
  3615. font-size:14px;
  3616. color:#AAAAAA;
  3617. }
  3618. #u27425 .text {
  3619. position:absolute;
  3620. align-self:flex-start;
  3621. padding:2px 2px 2px 2px;
  3622. box-sizing:border-box;
  3623. width:100%;
  3624. }
  3625. #u27425_div.disabled {
  3626. border-width:0px;
  3627. position:absolute;
  3628. left:0px;
  3629. top:0px;
  3630. width:134px;
  3631. height:23px;
  3632. background:inherit;
  3633. background-color:rgba(240, 240, 240, 1);
  3634. border:none;
  3635. border-radius:0px;
  3636. -moz-box-shadow:none;
  3637. -webkit-box-shadow:none;
  3638. box-shadow:none;
  3639. font-size:14px;
  3640. color:#AAAAAA;
  3641. }
  3642. #u27425.disabled {
  3643. }
  3644. .u27425_input_option {
  3645. font-size:14px;
  3646. }
  3647. #u27426_div {
  3648. border-width:0px;
  3649. position:absolute;
  3650. left:0px;
  3651. top:0px;
  3652. width:1220px;
  3653. height:180px;
  3654. background:inherit;
  3655. background-color:rgba(255, 255, 255, 1);
  3656. box-sizing:border-box;
  3657. border-width:1px;
  3658. border-style:solid;
  3659. border-color:rgba(217, 217, 217, 1);
  3660. border-radius:4px;
  3661. -moz-box-shadow:none;
  3662. -webkit-box-shadow:none;
  3663. box-shadow:none;
  3664. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3665. font-weight:400;
  3666. font-style:normal;
  3667. font-size:14px;
  3668. color:rgba(0, 0, 0, 0.647058823529412);
  3669. line-height:21px;
  3670. }
  3671. #u27426 {
  3672. border-width:0px;
  3673. position:absolute;
  3674. left:350px;
  3675. top:110px;
  3676. width:1220px;
  3677. height:180px;
  3678. display:flex;
  3679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3680. font-weight:400;
  3681. font-style:normal;
  3682. font-size:14px;
  3683. color:rgba(0, 0, 0, 0.647058823529412);
  3684. line-height:21px;
  3685. }
  3686. #u27426 .text {
  3687. position:absolute;
  3688. align-self:center;
  3689. padding:2px 16px 2px 16px;
  3690. box-sizing:border-box;
  3691. width:100%;
  3692. }
  3693. #u27426_text {
  3694. border-width:0px;
  3695. word-wrap:break-word;
  3696. text-transform:none;
  3697. visibility:hidden;
  3698. }
  3699. #u27427 {
  3700. border-width:0px;
  3701. position:absolute;
  3702. left:0px;
  3703. top:0px;
  3704. width:0px;
  3705. height:0px;
  3706. }
  3707. #u27428_div {
  3708. border-width:0px;
  3709. position:absolute;
  3710. left:0px;
  3711. top:0px;
  3712. width:140px;
  3713. height:30px;
  3714. background:inherit;
  3715. background-color:rgba(255, 255, 255, 1);
  3716. box-sizing:border-box;
  3717. border-width:1px;
  3718. border-style:solid;
  3719. border-color:rgba(201, 201, 201, 1);
  3720. border-radius:4px;
  3721. -moz-box-shadow:none;
  3722. -webkit-box-shadow:none;
  3723. box-shadow:none;
  3724. font-family:'Microsoft YaHei', sans-serif;
  3725. font-weight:400;
  3726. font-style:normal;
  3727. font-size:14px;
  3728. color:#CCCCCC;
  3729. text-align:left;
  3730. }
  3731. #u27428 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:500px;
  3735. top:500px;
  3736. width:140px;
  3737. height:30px;
  3738. display:flex;
  3739. font-family:'Microsoft YaHei', sans-serif;
  3740. font-weight:400;
  3741. font-style:normal;
  3742. font-size:14px;
  3743. color:#CCCCCC;
  3744. text-align:left;
  3745. }
  3746. #u27428 .text {
  3747. position:absolute;
  3748. align-self:center;
  3749. padding:2px 8px 2px 8px;
  3750. box-sizing:border-box;
  3751. width:100%;
  3752. }
  3753. #u27428_text {
  3754. border-width:0px;
  3755. word-wrap:break-word;
  3756. text-transform:none;
  3757. visibility:hidden;
  3758. }
  3759. #u27429_input {
  3760. position:absolute;
  3761. left:0px;
  3762. top:0px;
  3763. width:130px;
  3764. height:25px;
  3765. padding:2px 2px 2px 2px;
  3766. font-family:'Microsoft YaHei', sans-serif;
  3767. font-weight:400;
  3768. font-style:normal;
  3769. font-size:13px;
  3770. letter-spacing:normal;
  3771. color:#000000;
  3772. vertical-align:none;
  3773. text-align:left;
  3774. text-transform:none;
  3775. background-color:transparent;
  3776. border-color:transparent;
  3777. }
  3778. #u27429_input.disabled {
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:130px;
  3783. height:25px;
  3784. padding:2px 2px 2px 2px;
  3785. font-family:'Microsoft YaHei', sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:13px;
  3789. letter-spacing:normal;
  3790. color:#000000;
  3791. vertical-align:none;
  3792. text-align:left;
  3793. text-transform:none;
  3794. background-color:transparent;
  3795. border-color:transparent;
  3796. }
  3797. #u27429_div {
  3798. border-width:0px;
  3799. position:absolute;
  3800. left:0px;
  3801. top:0px;
  3802. width:130px;
  3803. height:25px;
  3804. background:inherit;
  3805. background-color:rgba(255, 255, 255, 1);
  3806. border:none;
  3807. border-radius:0px;
  3808. -moz-box-shadow:none;
  3809. -webkit-box-shadow:none;
  3810. box-shadow:none;
  3811. font-family:'Microsoft YaHei', sans-serif;
  3812. font-weight:400;
  3813. font-style:normal;
  3814. }
  3815. #u27429 {
  3816. border-width:0px;
  3817. position:absolute;
  3818. left:505px;
  3819. top:501px;
  3820. width:130px;
  3821. height:25px;
  3822. display:flex;
  3823. font-family:'Microsoft YaHei', sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. }
  3827. #u27429 .text {
  3828. position:absolute;
  3829. align-self:center;
  3830. padding:2px 2px 2px 2px;
  3831. box-sizing:border-box;
  3832. width:100%;
  3833. }
  3834. #u27429_div.disabled {
  3835. border-width:0px;
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:130px;
  3840. height:25px;
  3841. background:inherit;
  3842. background-color:rgba(240, 240, 240, 1);
  3843. border:none;
  3844. border-radius:0px;
  3845. -moz-box-shadow:none;
  3846. -webkit-box-shadow:none;
  3847. box-shadow:none;
  3848. font-family:'Microsoft YaHei', sans-serif;
  3849. font-weight:400;
  3850. font-style:normal;
  3851. }
  3852. #u27429.disabled {
  3853. }
  3854. #u27430 {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:0px;
  3860. height:0px;
  3861. }
  3862. #u27431_div {
  3863. border-width:0px;
  3864. position:absolute;
  3865. left:0px;
  3866. top:0px;
  3867. width:140px;
  3868. height:30px;
  3869. background:inherit;
  3870. background-color:rgba(255, 255, 255, 1);
  3871. box-sizing:border-box;
  3872. border-width:1px;
  3873. border-style:solid;
  3874. border-color:rgba(215, 215, 215, 1);
  3875. border-radius:4px;
  3876. -moz-box-shadow:none;
  3877. -webkit-box-shadow:none;
  3878. box-shadow:none;
  3879. font-size:14px;
  3880. }
  3881. #u27431 {
  3882. border-width:0px;
  3883. position:absolute;
  3884. left:650px;
  3885. top:500px;
  3886. width:140px;
  3887. height:30px;
  3888. display:flex;
  3889. font-size:14px;
  3890. }
  3891. #u27431 .text {
  3892. position:absolute;
  3893. align-self:center;
  3894. padding:2px 2px 2px 2px;
  3895. box-sizing:border-box;
  3896. width:100%;
  3897. }
  3898. #u27431_text {
  3899. border-width:0px;
  3900. word-wrap:break-word;
  3901. text-transform:none;
  3902. visibility:hidden;
  3903. }
  3904. #u27432_input {
  3905. position:absolute;
  3906. left:0px;
  3907. top:0px;
  3908. width:134px;
  3909. height:23px;
  3910. padding:2px 2px 2px 2px;
  3911. font-family:'ArialMT', 'Arial', sans-serif;
  3912. font-weight:400;
  3913. font-style:normal;
  3914. font-size:14px;
  3915. letter-spacing:normal;
  3916. color:#AAAAAA;
  3917. vertical-align:none;
  3918. text-align:left;
  3919. text-transform:none;
  3920. background-color:transparent;
  3921. border-color:transparent;
  3922. }
  3923. #u27432_input.disabled {
  3924. position:absolute;
  3925. left:0px;
  3926. top:0px;
  3927. width:134px;
  3928. height:23px;
  3929. padding:2px 2px 2px 2px;
  3930. font-family:'ArialMT', 'Arial', sans-serif;
  3931. font-weight:400;
  3932. font-style:normal;
  3933. font-size:14px;
  3934. letter-spacing:normal;
  3935. color:#AAAAAA;
  3936. vertical-align:none;
  3937. text-align:left;
  3938. text-transform:none;
  3939. background-color:transparent;
  3940. border-color:transparent;
  3941. }
  3942. #u27432_div {
  3943. border-width:0px;
  3944. position:absolute;
  3945. left:0px;
  3946. top:0px;
  3947. width:134px;
  3948. height:23px;
  3949. background:inherit;
  3950. background-color:rgba(255, 255, 255, 1);
  3951. border:none;
  3952. border-radius:0px;
  3953. -moz-box-shadow:none;
  3954. -webkit-box-shadow:none;
  3955. box-shadow:none;
  3956. font-size:14px;
  3957. color:#AAAAAA;
  3958. }
  3959. #u27432 {
  3960. border-width:0px;
  3961. position:absolute;
  3962. left:654px;
  3963. top:502px;
  3964. width:134px;
  3965. height:23px;
  3966. display:flex;
  3967. font-size:14px;
  3968. color:#AAAAAA;
  3969. }
  3970. #u27432 .text {
  3971. position:absolute;
  3972. align-self:flex-start;
  3973. padding:2px 2px 2px 2px;
  3974. box-sizing:border-box;
  3975. width:100%;
  3976. }
  3977. #u27432_div.disabled {
  3978. border-width:0px;
  3979. position:absolute;
  3980. left:0px;
  3981. top:0px;
  3982. width:134px;
  3983. height:23px;
  3984. background:inherit;
  3985. background-color:rgba(240, 240, 240, 1);
  3986. border:none;
  3987. border-radius:0px;
  3988. -moz-box-shadow:none;
  3989. -webkit-box-shadow:none;
  3990. box-shadow:none;
  3991. font-size:14px;
  3992. color:#AAAAAA;
  3993. }
  3994. #u27432.disabled {
  3995. }
  3996. .u27432_input_option {
  3997. font-size:14px;
  3998. }
  3999. #u27433_div {
  4000. border-width:0px;
  4001. position:absolute;
  4002. left:0px;
  4003. top:0px;
  4004. width:580px;
  4005. height:30px;
  4006. background:inherit;
  4007. background-color:rgba(224, 231, 247, 0);
  4008. border:none;
  4009. border-radius:0px;
  4010. -moz-box-shadow:none;
  4011. -webkit-box-shadow:none;
  4012. box-shadow:none;
  4013. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4014. font-weight:400;
  4015. font-style:normal;
  4016. line-height:30px;
  4017. }
  4018. #u27433 {
  4019. border-width:0px;
  4020. position:absolute;
  4021. left:370px;
  4022. top:120px;
  4023. width:580px;
  4024. height:30px;
  4025. display:flex;
  4026. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4027. font-weight:400;
  4028. font-style:normal;
  4029. line-height:30px;
  4030. }
  4031. #u27433 .text {
  4032. position:absolute;
  4033. align-self:center;
  4034. padding:0px 0px 0px 0px;
  4035. box-sizing:border-box;
  4036. width:100%;
  4037. }
  4038. #u27433_text {
  4039. border-width:0px;
  4040. word-wrap:break-word;
  4041. text-transform:none;
  4042. }
  4043. #u27434_img {
  4044. border-width:0px;
  4045. position:absolute;
  4046. left:0px;
  4047. top:0px;
  4048. width:30px;
  4049. height:30px;
  4050. }
  4051. #u27434 {
  4052. border-width:0px;
  4053. position:absolute;
  4054. left:380px;
  4055. top:160px;
  4056. width:30px;
  4057. height:30px;
  4058. display:flex;
  4059. font-size:18px;
  4060. color:#FFFFFF;
  4061. }
  4062. #u27434 .text {
  4063. position:absolute;
  4064. align-self:center;
  4065. padding:2px 2px 2px 2px;
  4066. box-sizing:border-box;
  4067. width:100%;
  4068. }
  4069. #u27434_text {
  4070. border-width:0px;
  4071. word-wrap:break-word;
  4072. text-transform:none;
  4073. }
  4074. #u27435_div {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:109px;
  4080. height:25px;
  4081. background:inherit;
  4082. background-color:rgba(224, 231, 247, 0);
  4083. border:none;
  4084. border-radius:0px;
  4085. -moz-box-shadow:none;
  4086. -webkit-box-shadow:none;
  4087. box-shadow:none;
  4088. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4089. font-weight:500;
  4090. font-style:normal;
  4091. font-size:18px;
  4092. }
  4093. #u27435 {
  4094. border-width:0px;
  4095. position:absolute;
  4096. left:420px;
  4097. top:163px;
  4098. width:109px;
  4099. height:25px;
  4100. display:flex;
  4101. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4102. font-weight:500;
  4103. font-style:normal;
  4104. font-size:18px;
  4105. }
  4106. #u27435 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:0px 0px 0px 0px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u27435_text {
  4114. border-width:0px;
  4115. white-space:nowrap;
  4116. text-transform:none;
  4117. }
  4118. #u27436 {
  4119. border-width:0px;
  4120. position:absolute;
  4121. left:0px;
  4122. top:0px;
  4123. width:0px;
  4124. height:0px;
  4125. }
  4126. #u27437_div {
  4127. border-width:0px;
  4128. position:absolute;
  4129. left:0px;
  4130. top:0px;
  4131. width:49px;
  4132. height:30px;
  4133. background:inherit;
  4134. background-color:rgba(224, 231, 247, 0);
  4135. border:none;
  4136. border-radius:0px;
  4137. -moz-box-shadow:none;
  4138. -webkit-box-shadow:none;
  4139. box-shadow:none;
  4140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. font-size:12px;
  4144. line-height:30px;
  4145. }
  4146. #u27437 {
  4147. border-width:0px;
  4148. position:absolute;
  4149. left:1238px;
  4150. top:60px;
  4151. width:49px;
  4152. height:30px;
  4153. display:flex;
  4154. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4155. font-weight:400;
  4156. font-style:normal;
  4157. font-size:12px;
  4158. line-height:30px;
  4159. }
  4160. #u27437 .text {
  4161. position:absolute;
  4162. align-self:center;
  4163. padding:0px 0px 0px 0px;
  4164. box-sizing:border-box;
  4165. width:100%;
  4166. }
  4167. #u27437_text {
  4168. border-width:0px;
  4169. white-space:nowrap;
  4170. text-transform:none;
  4171. }
  4172. #u27438_img {
  4173. border-width:0px;
  4174. position:absolute;
  4175. left:0px;
  4176. top:0px;
  4177. width:17px;
  4178. height:17px;
  4179. }
  4180. #u27438 {
  4181. border-width:0px;
  4182. position:absolute;
  4183. left:1216px;
  4184. top:66px;
  4185. width:17px;
  4186. height:17px;
  4187. display:flex;
  4188. font-size:8px;
  4189. color:#FFFFFF;
  4190. }
  4191. #u27438 .text {
  4192. position:absolute;
  4193. align-self:center;
  4194. padding:2px 2px 2px 2px;
  4195. box-sizing:border-box;
  4196. width:100%;
  4197. }
  4198. #u27438_text {
  4199. border-width:0px;
  4200. word-wrap:break-word;
  4201. text-transform:none;
  4202. }
  4203. #u27439 {
  4204. border-width:0px;
  4205. position:absolute;
  4206. left:0px;
  4207. top:0px;
  4208. width:0px;
  4209. height:0px;
  4210. }
  4211. #u27440_div {
  4212. border-width:0px;
  4213. position:absolute;
  4214. left:0px;
  4215. top:0px;
  4216. width:49px;
  4217. height:30px;
  4218. background:inherit;
  4219. background-color:rgba(224, 231, 247, 0);
  4220. border:none;
  4221. border-radius:0px;
  4222. -moz-box-shadow:none;
  4223. -webkit-box-shadow:none;
  4224. box-shadow:none;
  4225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4226. font-weight:400;
  4227. font-style:normal;
  4228. font-size:12px;
  4229. line-height:30px;
  4230. }
  4231. #u27440 {
  4232. border-width:0px;
  4233. position:absolute;
  4234. left:1334px;
  4235. top:60px;
  4236. width:49px;
  4237. height:30px;
  4238. display:flex;
  4239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4240. font-weight:400;
  4241. font-style:normal;
  4242. font-size:12px;
  4243. line-height:30px;
  4244. }
  4245. #u27440 .text {
  4246. position:absolute;
  4247. align-self:center;
  4248. padding:0px 0px 0px 0px;
  4249. box-sizing:border-box;
  4250. width:100%;
  4251. }
  4252. #u27440_text {
  4253. border-width:0px;
  4254. white-space:nowrap;
  4255. text-transform:none;
  4256. }
  4257. #u27441_img {
  4258. border-width:0px;
  4259. position:absolute;
  4260. left:0px;
  4261. top:0px;
  4262. width:17px;
  4263. height:17px;
  4264. }
  4265. #u27441 {
  4266. border-width:0px;
  4267. position:absolute;
  4268. left:1312px;
  4269. top:66px;
  4270. width:17px;
  4271. height:17px;
  4272. display:flex;
  4273. font-size:8px;
  4274. color:#FFFFFF;
  4275. }
  4276. #u27441 .text {
  4277. position:absolute;
  4278. align-self:center;
  4279. padding:2px 2px 2px 2px;
  4280. box-sizing:border-box;
  4281. width:100%;
  4282. }
  4283. #u27441_text {
  4284. border-width:0px;
  4285. word-wrap:break-word;
  4286. text-transform:none;
  4287. }
  4288. #u27442 {
  4289. border-width:0px;
  4290. position:absolute;
  4291. left:0px;
  4292. top:0px;
  4293. width:0px;
  4294. height:0px;
  4295. }
  4296. #u27443_div {
  4297. border-width:0px;
  4298. position:absolute;
  4299. left:0px;
  4300. top:0px;
  4301. width:37px;
  4302. height:30px;
  4303. background:inherit;
  4304. background-color:rgba(224, 231, 247, 0);
  4305. border:none;
  4306. border-radius:0px;
  4307. -moz-box-shadow:none;
  4308. -webkit-box-shadow:none;
  4309. box-shadow:none;
  4310. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4311. font-weight:400;
  4312. font-style:normal;
  4313. font-size:12px;
  4314. line-height:30px;
  4315. }
  4316. #u27443 {
  4317. border-width:0px;
  4318. position:absolute;
  4319. left:1431px;
  4320. top:60px;
  4321. width:37px;
  4322. height:30px;
  4323. display:flex;
  4324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4325. font-weight:400;
  4326. font-style:normal;
  4327. font-size:12px;
  4328. line-height:30px;
  4329. }
  4330. #u27443 .text {
  4331. position:absolute;
  4332. align-self:center;
  4333. padding:0px 0px 0px 0px;
  4334. box-sizing:border-box;
  4335. width:100%;
  4336. }
  4337. #u27443_text {
  4338. border-width:0px;
  4339. white-space:nowrap;
  4340. text-transform:none;
  4341. }
  4342. #u27444_img {
  4343. border-width:0px;
  4344. position:absolute;
  4345. left:0px;
  4346. top:0px;
  4347. width:17px;
  4348. height:17px;
  4349. }
  4350. #u27444 {
  4351. border-width:0px;
  4352. position:absolute;
  4353. left:1409px;
  4354. top:66px;
  4355. width:17px;
  4356. height:17px;
  4357. display:flex;
  4358. font-size:8px;
  4359. color:#FFFFFF;
  4360. }
  4361. #u27444 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u27444_text {
  4369. border-width:0px;
  4370. word-wrap:break-word;
  4371. text-transform:none;
  4372. }
  4373. #u27445 {
  4374. border-width:0px;
  4375. position:absolute;
  4376. left:0px;
  4377. top:0px;
  4378. width:0px;
  4379. height:0px;
  4380. }
  4381. #u27446_div {
  4382. border-width:0px;
  4383. position:absolute;
  4384. left:0px;
  4385. top:0px;
  4386. width:49px;
  4387. height:30px;
  4388. background:inherit;
  4389. background-color:rgba(224, 231, 247, 0);
  4390. border:none;
  4391. border-radius:0px;
  4392. -moz-box-shadow:none;
  4393. -webkit-box-shadow:none;
  4394. box-shadow:none;
  4395. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4396. font-weight:400;
  4397. font-style:normal;
  4398. font-size:12px;
  4399. line-height:30px;
  4400. }
  4401. #u27446 {
  4402. border-width:0px;
  4403. position:absolute;
  4404. left:1513px;
  4405. top:60px;
  4406. width:49px;
  4407. height:30px;
  4408. display:flex;
  4409. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4410. font-weight:400;
  4411. font-style:normal;
  4412. font-size:12px;
  4413. line-height:30px;
  4414. }
  4415. #u27446 .text {
  4416. position:absolute;
  4417. align-self:center;
  4418. padding:0px 0px 0px 0px;
  4419. box-sizing:border-box;
  4420. width:100%;
  4421. }
  4422. #u27446_text {
  4423. border-width:0px;
  4424. white-space:nowrap;
  4425. text-transform:none;
  4426. }
  4427. #u27447_img {
  4428. border-width:0px;
  4429. position:absolute;
  4430. left:0px;
  4431. top:0px;
  4432. width:17px;
  4433. height:17px;
  4434. }
  4435. #u27447 {
  4436. border-width:0px;
  4437. position:absolute;
  4438. left:1491px;
  4439. top:66px;
  4440. width:17px;
  4441. height:17px;
  4442. display:flex;
  4443. font-size:8px;
  4444. color:#FFFFFF;
  4445. }
  4446. #u27447 .text {
  4447. position:absolute;
  4448. align-self:center;
  4449. padding:2px 2px 2px 2px;
  4450. box-sizing:border-box;
  4451. width:100%;
  4452. }
  4453. #u27447_text {
  4454. border-width:0px;
  4455. word-wrap:break-word;
  4456. text-transform:none;
  4457. }
  4458. #u27448_div {
  4459. border-width:0px;
  4460. position:absolute;
  4461. left:0px;
  4462. top:0px;
  4463. width:580px;
  4464. height:30px;
  4465. background:inherit;
  4466. background-color:rgba(224, 231, 247, 0);
  4467. border:none;
  4468. border-radius:0px;
  4469. -moz-box-shadow:none;
  4470. -webkit-box-shadow:none;
  4471. box-shadow:none;
  4472. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4473. font-weight:400;
  4474. font-style:normal;
  4475. line-height:30px;
  4476. }
  4477. #u27448 {
  4478. border-width:0px;
  4479. position:absolute;
  4480. left:350px;
  4481. top:552px;
  4482. width:580px;
  4483. height:30px;
  4484. display:flex;
  4485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4486. font-weight:400;
  4487. font-style:normal;
  4488. line-height:30px;
  4489. }
  4490. #u27448 .text {
  4491. position:absolute;
  4492. align-self:center;
  4493. padding:0px 0px 0px 0px;
  4494. box-sizing:border-box;
  4495. width:100%;
  4496. }
  4497. #u27448_text {
  4498. border-width:0px;
  4499. word-wrap:break-word;
  4500. text-transform:none;
  4501. }
  4502. #u27449_img {
  4503. border-width:0px;
  4504. position:absolute;
  4505. left:0px;
  4506. top:0px;
  4507. width:30px;
  4508. height:30px;
  4509. }
  4510. #u27449 {
  4511. border-width:0px;
  4512. position:absolute;
  4513. left:650px;
  4514. top:160px;
  4515. width:30px;
  4516. height:30px;
  4517. display:flex;
  4518. font-size:18px;
  4519. color:#FFFFFF;
  4520. }
  4521. #u27449 .text {
  4522. position:absolute;
  4523. align-self:center;
  4524. padding:2px 2px 2px 2px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u27449_text {
  4529. border-width:0px;
  4530. word-wrap:break-word;
  4531. text-transform:none;
  4532. }
  4533. #u27450_div {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:157px;
  4539. height:25px;
  4540. background:inherit;
  4541. background-color:rgba(224, 231, 247, 0);
  4542. border:none;
  4543. border-radius:0px;
  4544. -moz-box-shadow:none;
  4545. -webkit-box-shadow:none;
  4546. box-shadow:none;
  4547. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4548. font-weight:500;
  4549. font-style:normal;
  4550. font-size:18px;
  4551. }
  4552. #u27450 {
  4553. border-width:0px;
  4554. position:absolute;
  4555. left:690px;
  4556. top:163px;
  4557. width:157px;
  4558. height:25px;
  4559. display:flex;
  4560. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4561. font-weight:500;
  4562. font-style:normal;
  4563. font-size:18px;
  4564. }
  4565. #u27450 .text {
  4566. position:absolute;
  4567. align-self:center;
  4568. padding:0px 0px 0px 0px;
  4569. box-sizing:border-box;
  4570. width:100%;
  4571. }
  4572. #u27450_text {
  4573. border-width:0px;
  4574. white-space:nowrap;
  4575. text-transform:none;
  4576. }
  4577. #u27451_img {
  4578. border-width:0px;
  4579. position:absolute;
  4580. left:0px;
  4581. top:0px;
  4582. width:30px;
  4583. height:30px;
  4584. }
  4585. #u27451 {
  4586. border-width:0px;
  4587. position:absolute;
  4588. left:965px;
  4589. top:160px;
  4590. width:30px;
  4591. height:30px;
  4592. display:flex;
  4593. font-size:18px;
  4594. color:#FFFFFF;
  4595. }
  4596. #u27451 .text {
  4597. position:absolute;
  4598. align-self:center;
  4599. padding:2px 2px 2px 2px;
  4600. box-sizing:border-box;
  4601. width:100%;
  4602. }
  4603. #u27451_text {
  4604. border-width:0px;
  4605. word-wrap:break-word;
  4606. text-transform:none;
  4607. }
  4608. #u27452_div {
  4609. border-width:0px;
  4610. position:absolute;
  4611. left:0px;
  4612. top:0px;
  4613. width:145px;
  4614. height:25px;
  4615. background:inherit;
  4616. background-color:rgba(224, 231, 247, 0);
  4617. border:none;
  4618. border-radius:0px;
  4619. -moz-box-shadow:none;
  4620. -webkit-box-shadow:none;
  4621. box-shadow:none;
  4622. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4623. font-weight:500;
  4624. font-style:normal;
  4625. font-size:18px;
  4626. }
  4627. #u27452 {
  4628. border-width:0px;
  4629. position:absolute;
  4630. left:1005px;
  4631. top:163px;
  4632. width:145px;
  4633. height:25px;
  4634. display:flex;
  4635. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4636. font-weight:500;
  4637. font-style:normal;
  4638. font-size:18px;
  4639. }
  4640. #u27452 .text {
  4641. position:absolute;
  4642. align-self:center;
  4643. padding:0px 0px 0px 0px;
  4644. box-sizing:border-box;
  4645. width:100%;
  4646. }
  4647. #u27452_text {
  4648. border-width:0px;
  4649. white-space:nowrap;
  4650. text-transform:none;
  4651. }
  4652. #u27453_img {
  4653. border-width:0px;
  4654. position:absolute;
  4655. left:0px;
  4656. top:0px;
  4657. width:30px;
  4658. height:30px;
  4659. }
  4660. #u27453 {
  4661. border-width:0px;
  4662. position:absolute;
  4663. left:1282px;
  4664. top:160px;
  4665. width:30px;
  4666. height:30px;
  4667. display:flex;
  4668. font-size:18px;
  4669. color:#FFFFFF;
  4670. }
  4671. #u27453 .text {
  4672. position:absolute;
  4673. align-self:center;
  4674. padding:2px 2px 2px 2px;
  4675. box-sizing:border-box;
  4676. width:100%;
  4677. }
  4678. #u27453_text {
  4679. border-width:0px;
  4680. word-wrap:break-word;
  4681. text-transform:none;
  4682. }
  4683. #u27454_div {
  4684. border-width:0px;
  4685. position:absolute;
  4686. left:0px;
  4687. top:0px;
  4688. width:73px;
  4689. height:25px;
  4690. background:inherit;
  4691. background-color:rgba(224, 231, 247, 0);
  4692. border:none;
  4693. border-radius:0px;
  4694. -moz-box-shadow:none;
  4695. -webkit-box-shadow:none;
  4696. box-shadow:none;
  4697. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4698. font-weight:500;
  4699. font-style:normal;
  4700. font-size:18px;
  4701. }
  4702. #u27454 {
  4703. border-width:0px;
  4704. position:absolute;
  4705. left:1322px;
  4706. top:163px;
  4707. width:73px;
  4708. height:25px;
  4709. display:flex;
  4710. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4711. font-weight:500;
  4712. font-style:normal;
  4713. font-size:18px;
  4714. }
  4715. #u27454 .text {
  4716. position:absolute;
  4717. align-self:center;
  4718. padding:0px 0px 0px 0px;
  4719. box-sizing:border-box;
  4720. width:100%;
  4721. }
  4722. #u27454_text {
  4723. border-width:0px;
  4724. white-space:nowrap;
  4725. text-transform:none;
  4726. }
  4727. #u27455_div {
  4728. border-width:0px;
  4729. position:absolute;
  4730. left:0px;
  4731. top:0px;
  4732. width:1216px;
  4733. height:110px;
  4734. background:inherit;
  4735. background-color:rgba(255, 255, 255, 1);
  4736. box-sizing:border-box;
  4737. border-width:1px;
  4738. border-style:solid;
  4739. border-color:rgba(217, 217, 217, 1);
  4740. border-radius:4px;
  4741. -moz-box-shadow:none;
  4742. -webkit-box-shadow:none;
  4743. box-shadow:none;
  4744. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4745. font-weight:400;
  4746. font-style:normal;
  4747. font-size:14px;
  4748. color:rgba(0, 0, 0, 0.647058823529412);
  4749. line-height:21px;
  4750. }
  4751. #u27455 {
  4752. border-width:0px;
  4753. position:absolute;
  4754. left:354px;
  4755. top:370px;
  4756. width:1216px;
  4757. height:110px;
  4758. display:flex;
  4759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4760. font-weight:400;
  4761. font-style:normal;
  4762. font-size:14px;
  4763. color:rgba(0, 0, 0, 0.647058823529412);
  4764. line-height:21px;
  4765. }
  4766. #u27455 .text {
  4767. position:absolute;
  4768. align-self:center;
  4769. padding:2px 16px 2px 16px;
  4770. box-sizing:border-box;
  4771. width:100%;
  4772. }
  4773. #u27455_text {
  4774. border-width:0px;
  4775. word-wrap:break-word;
  4776. text-transform:none;
  4777. visibility:hidden;
  4778. }
  4779. #u27456_div {
  4780. border-width:0px;
  4781. position:absolute;
  4782. left:0px;
  4783. top:0px;
  4784. width:93px;
  4785. height:17px;
  4786. background:inherit;
  4787. background-color:rgba(224, 231, 247, 0);
  4788. border:none;
  4789. border-radius:0px;
  4790. -moz-box-shadow:none;
  4791. -webkit-box-shadow:none;
  4792. box-shadow:none;
  4793. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:12px;
  4797. }
  4798. #u27456 {
  4799. border-width:0px;
  4800. position:absolute;
  4801. left:467px;
  4802. top:427px;
  4803. width:93px;
  4804. height:17px;
  4805. display:flex;
  4806. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4807. font-weight:400;
  4808. font-style:normal;
  4809. font-size:12px;
  4810. }
  4811. #u27456 .text {
  4812. position:absolute;
  4813. align-self:center;
  4814. padding:0px 0px 0px 0px;
  4815. box-sizing:border-box;
  4816. width:100%;
  4817. }
  4818. #u27456_text {
  4819. border-width:0px;
  4820. white-space:nowrap;
  4821. text-transform:none;
  4822. }
  4823. #u27457_div {
  4824. border-width:0px;
  4825. position:absolute;
  4826. left:0px;
  4827. top:0px;
  4828. width:580px;
  4829. height:30px;
  4830. background:inherit;
  4831. background-color:rgba(224, 231, 247, 0);
  4832. border:none;
  4833. border-radius:0px;
  4834. -moz-box-shadow:none;
  4835. -webkit-box-shadow:none;
  4836. box-shadow:none;
  4837. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4838. font-weight:400;
  4839. font-style:normal;
  4840. line-height:30px;
  4841. }
  4842. #u27457 {
  4843. border-width:0px;
  4844. position:absolute;
  4845. left:354px;
  4846. top:340px;
  4847. width:580px;
  4848. height:30px;
  4849. display:flex;
  4850. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4851. font-weight:400;
  4852. font-style:normal;
  4853. line-height:30px;
  4854. }
  4855. #u27457 .text {
  4856. position:absolute;
  4857. align-self:center;
  4858. padding:0px 0px 0px 0px;
  4859. box-sizing:border-box;
  4860. width:100%;
  4861. }
  4862. #u27457_text {
  4863. border-width:0px;
  4864. word-wrap:break-word;
  4865. text-transform:none;
  4866. }
  4867. #u27458_img {
  4868. border-width:0px;
  4869. position:absolute;
  4870. left:0px;
  4871. top:0px;
  4872. width:60px;
  4873. height:60px;
  4874. }
  4875. #u27458 {
  4876. border-width:0px;
  4877. position:absolute;
  4878. left:387px;
  4879. top:393px;
  4880. width:60px;
  4881. height:60px;
  4882. display:flex;
  4883. }
  4884. #u27458 .text {
  4885. position:absolute;
  4886. align-self:center;
  4887. padding:2px 2px 2px 2px;
  4888. box-sizing:border-box;
  4889. width:100%;
  4890. }
  4891. #u27458_text {
  4892. border-width:0px;
  4893. word-wrap:break-word;
  4894. text-transform:none;
  4895. }
  4896. #u27459_div {
  4897. border-width:0px;
  4898. position:absolute;
  4899. left:0px;
  4900. top:0px;
  4901. width:60px;
  4902. height:25px;
  4903. background:inherit;
  4904. background-color:rgba(224, 231, 247, 0);
  4905. border:none;
  4906. border-radius:0px;
  4907. -moz-box-shadow:none;
  4908. -webkit-box-shadow:none;
  4909. box-shadow:none;
  4910. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4911. font-weight:500;
  4912. font-style:normal;
  4913. font-size:18px;
  4914. }
  4915. #u27459 {
  4916. border-width:0px;
  4917. position:absolute;
  4918. left:467px;
  4919. top:402px;
  4920. width:60px;
  4921. height:25px;
  4922. display:flex;
  4923. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  4924. font-weight:500;
  4925. font-style:normal;
  4926. font-size:18px;
  4927. }
  4928. #u27459 .text {
  4929. position:absolute;
  4930. align-self:center;
  4931. padding:0px 0px 0px 0px;
  4932. box-sizing:border-box;
  4933. width:100%;
  4934. }
  4935. #u27459_text {
  4936. border-width:0px;
  4937. white-space:nowrap;
  4938. text-transform:none;
  4939. }
  4940. #u27460_img {
  4941. border-width:0px;
  4942. position:absolute;
  4943. left:0px;
  4944. top:0px;
  4945. width:2px;
  4946. height:39px;
  4947. }
  4948. #u27460 {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:621px;
  4952. top:405px;
  4953. width:1px;
  4954. height:38px;
  4955. display:flex;
  4956. }
  4957. #u27460 .text {
  4958. position:absolute;
  4959. align-self:center;
  4960. padding:2px 2px 2px 2px;
  4961. box-sizing:border-box;
  4962. width:100%;
  4963. }
  4964. #u27460_text {
  4965. border-width:0px;
  4966. word-wrap:break-word;
  4967. text-transform:none;
  4968. visibility:hidden;
  4969. }
  4970. #u27461_div {
  4971. border-width:0px;
  4972. position:absolute;
  4973. left:0px;
  4974. top:0px;
  4975. width:81px;
  4976. height:17px;
  4977. background:inherit;
  4978. background-color:rgba(224, 231, 247, 0);
  4979. border:none;
  4980. border-radius:0px;
  4981. -moz-box-shadow:none;
  4982. -webkit-box-shadow:none;
  4983. box-shadow:none;
  4984. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4985. font-weight:400;
  4986. font-style:normal;
  4987. font-size:12px;
  4988. }
  4989. #u27461 {
  4990. border-width:0px;
  4991. position:absolute;
  4992. left:768px;
  4993. top:427px;
  4994. width:81px;
  4995. height:17px;
  4996. display:flex;
  4997. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4998. font-weight:400;
  4999. font-style:normal;
  5000. font-size:12px;
  5001. }
  5002. #u27461 .text {
  5003. position:absolute;
  5004. align-self:center;
  5005. padding:0px 0px 0px 0px;
  5006. box-sizing:border-box;
  5007. width:100%;
  5008. }
  5009. #u27461_text {
  5010. border-width:0px;
  5011. white-space:nowrap;
  5012. text-transform:none;
  5013. }
  5014. #u27462_img {
  5015. border-width:0px;
  5016. position:absolute;
  5017. left:0px;
  5018. top:0px;
  5019. width:60px;
  5020. height:60px;
  5021. }
  5022. #u27462 {
  5023. border-width:0px;
  5024. position:absolute;
  5025. left:688px;
  5026. top:393px;
  5027. width:60px;
  5028. height:60px;
  5029. display:flex;
  5030. }
  5031. #u27462 .text {
  5032. position:absolute;
  5033. align-self:center;
  5034. padding:2px 2px 2px 2px;
  5035. box-sizing:border-box;
  5036. width:100%;
  5037. }
  5038. #u27462_text {
  5039. border-width:0px;
  5040. word-wrap:break-word;
  5041. text-transform:none;
  5042. }
  5043. #u27463_div {
  5044. border-width:0px;
  5045. position:absolute;
  5046. left:0px;
  5047. top:0px;
  5048. width:60px;
  5049. height:25px;
  5050. background:inherit;
  5051. background-color:rgba(224, 231, 247, 0);
  5052. border:none;
  5053. border-radius:0px;
  5054. -moz-box-shadow:none;
  5055. -webkit-box-shadow:none;
  5056. box-shadow:none;
  5057. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5058. font-weight:500;
  5059. font-style:normal;
  5060. font-size:18px;
  5061. }
  5062. #u27463 {
  5063. border-width:0px;
  5064. position:absolute;
  5065. left:768px;
  5066. top:402px;
  5067. width:60px;
  5068. height:25px;
  5069. display:flex;
  5070. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5071. font-weight:500;
  5072. font-style:normal;
  5073. font-size:18px;
  5074. }
  5075. #u27463 .text {
  5076. position:absolute;
  5077. align-self:center;
  5078. padding:0px 0px 0px 0px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u27463_text {
  5083. border-width:0px;
  5084. white-space:nowrap;
  5085. text-transform:none;
  5086. }
  5087. #u27464_div {
  5088. border-width:0px;
  5089. position:absolute;
  5090. left:0px;
  5091. top:0px;
  5092. width:81px;
  5093. height:17px;
  5094. background:inherit;
  5095. background-color:rgba(224, 231, 247, 0);
  5096. border:none;
  5097. border-radius:0px;
  5098. -moz-box-shadow:none;
  5099. -webkit-box-shadow:none;
  5100. box-shadow:none;
  5101. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:12px;
  5105. }
  5106. #u27464 {
  5107. border-width:0px;
  5108. position:absolute;
  5109. left:1023px;
  5110. top:427px;
  5111. width:81px;
  5112. height:17px;
  5113. display:flex;
  5114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5115. font-weight:400;
  5116. font-style:normal;
  5117. font-size:12px;
  5118. }
  5119. #u27464 .text {
  5120. position:absolute;
  5121. align-self:center;
  5122. padding:0px 0px 0px 0px;
  5123. box-sizing:border-box;
  5124. width:100%;
  5125. }
  5126. #u27464_text {
  5127. border-width:0px;
  5128. white-space:nowrap;
  5129. text-transform:none;
  5130. }
  5131. #u27465_img {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:0px;
  5135. top:0px;
  5136. width:60px;
  5137. height:60px;
  5138. }
  5139. #u27465 {
  5140. border-width:0px;
  5141. position:absolute;
  5142. left:943px;
  5143. top:393px;
  5144. width:60px;
  5145. height:60px;
  5146. display:flex;
  5147. }
  5148. #u27465 .text {
  5149. position:absolute;
  5150. align-self:center;
  5151. padding:2px 2px 2px 2px;
  5152. box-sizing:border-box;
  5153. width:100%;
  5154. }
  5155. #u27465_text {
  5156. border-width:0px;
  5157. word-wrap:break-word;
  5158. text-transform:none;
  5159. }
  5160. #u27466_div {
  5161. border-width:0px;
  5162. position:absolute;
  5163. left:0px;
  5164. top:0px;
  5165. width:60px;
  5166. height:25px;
  5167. background:inherit;
  5168. background-color:rgba(224, 231, 247, 0);
  5169. border:none;
  5170. border-radius:0px;
  5171. -moz-box-shadow:none;
  5172. -webkit-box-shadow:none;
  5173. box-shadow:none;
  5174. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5175. font-weight:500;
  5176. font-style:normal;
  5177. font-size:18px;
  5178. }
  5179. #u27466 {
  5180. border-width:0px;
  5181. position:absolute;
  5182. left:1023px;
  5183. top:402px;
  5184. width:60px;
  5185. height:25px;
  5186. display:flex;
  5187. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5188. font-weight:500;
  5189. font-style:normal;
  5190. font-size:18px;
  5191. }
  5192. #u27466 .text {
  5193. position:absolute;
  5194. align-self:center;
  5195. padding:0px 0px 0px 0px;
  5196. box-sizing:border-box;
  5197. width:100%;
  5198. }
  5199. #u27466_text {
  5200. border-width:0px;
  5201. white-space:nowrap;
  5202. text-transform:none;
  5203. }
  5204. #u27467_div {
  5205. border-width:0px;
  5206. position:absolute;
  5207. left:0px;
  5208. top:0px;
  5209. width:81px;
  5210. height:17px;
  5211. background:inherit;
  5212. background-color:rgba(224, 231, 247, 0);
  5213. border:none;
  5214. border-radius:0px;
  5215. -moz-box-shadow:none;
  5216. -webkit-box-shadow:none;
  5217. box-shadow:none;
  5218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5219. font-weight:400;
  5220. font-style:normal;
  5221. font-size:12px;
  5222. }
  5223. #u27467 {
  5224. border-width:0px;
  5225. position:absolute;
  5226. left:1271px;
  5227. top:427px;
  5228. width:81px;
  5229. height:17px;
  5230. display:flex;
  5231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5232. font-weight:400;
  5233. font-style:normal;
  5234. font-size:12px;
  5235. }
  5236. #u27467 .text {
  5237. position:absolute;
  5238. align-self:center;
  5239. padding:0px 0px 0px 0px;
  5240. box-sizing:border-box;
  5241. width:100%;
  5242. }
  5243. #u27467_text {
  5244. border-width:0px;
  5245. white-space:nowrap;
  5246. text-transform:none;
  5247. }
  5248. #u27468_img {
  5249. border-width:0px;
  5250. position:absolute;
  5251. left:0px;
  5252. top:0px;
  5253. width:60px;
  5254. height:60px;
  5255. }
  5256. #u27468 {
  5257. border-width:0px;
  5258. position:absolute;
  5259. left:1191px;
  5260. top:393px;
  5261. width:60px;
  5262. height:60px;
  5263. display:flex;
  5264. }
  5265. #u27468 .text {
  5266. position:absolute;
  5267. align-self:center;
  5268. padding:2px 2px 2px 2px;
  5269. box-sizing:border-box;
  5270. width:100%;
  5271. }
  5272. #u27468_text {
  5273. border-width:0px;
  5274. word-wrap:break-word;
  5275. text-transform:none;
  5276. }
  5277. #u27469_div {
  5278. border-width:0px;
  5279. position:absolute;
  5280. left:0px;
  5281. top:0px;
  5282. width:60px;
  5283. height:25px;
  5284. background:inherit;
  5285. background-color:rgba(224, 231, 247, 0);
  5286. border:none;
  5287. border-radius:0px;
  5288. -moz-box-shadow:none;
  5289. -webkit-box-shadow:none;
  5290. box-shadow:none;
  5291. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5292. font-weight:500;
  5293. font-style:normal;
  5294. font-size:18px;
  5295. }
  5296. #u27469 {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:1271px;
  5300. top:402px;
  5301. width:60px;
  5302. height:25px;
  5303. display:flex;
  5304. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5305. font-weight:500;
  5306. font-style:normal;
  5307. font-size:18px;
  5308. }
  5309. #u27469 .text {
  5310. position:absolute;
  5311. align-self:center;
  5312. padding:0px 0px 0px 0px;
  5313. box-sizing:border-box;
  5314. width:100%;
  5315. }
  5316. #u27469_text {
  5317. border-width:0px;
  5318. white-space:nowrap;
  5319. text-transform:none;
  5320. }
  5321. #u27470_div {
  5322. border-width:0px;
  5323. position:absolute;
  5324. left:0px;
  5325. top:0px;
  5326. width:373px;
  5327. height:90px;
  5328. background:inherit;
  5329. background-color:rgba(255, 255, 255, 0);
  5330. border:none;
  5331. border-radius:0px;
  5332. -moz-box-shadow:none;
  5333. -webkit-box-shadow:none;
  5334. box-shadow:none;
  5335. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5336. font-weight:400;
  5337. font-style:normal;
  5338. font-size:14px;
  5339. color:#D9001B;
  5340. line-height:30px;
  5341. }
  5342. #u27470 {
  5343. border-width:0px;
  5344. position:absolute;
  5345. left:890px;
  5346. top:875px;
  5347. width:373px;
  5348. height:90px;
  5349. display:flex;
  5350. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5351. font-weight:400;
  5352. font-style:normal;
  5353. font-size:14px;
  5354. color:#D9001B;
  5355. line-height:30px;
  5356. }
  5357. #u27470 .text {
  5358. position:absolute;
  5359. align-self:flex-start;
  5360. padding:0px 0px 0px 0px;
  5361. box-sizing:border-box;
  5362. width:100%;
  5363. }
  5364. #u27470_text {
  5365. border-width:0px;
  5366. white-space:nowrap;
  5367. text-transform:none;
  5368. }
  5369. #u27471_div {
  5370. border-width:0px;
  5371. position:absolute;
  5372. left:0px;
  5373. top:0px;
  5374. width:210px;
  5375. height:28px;
  5376. background:inherit;
  5377. background-color:rgba(255, 255, 255, 0);
  5378. border:none;
  5379. border-radius:0px;
  5380. -moz-box-shadow:none;
  5381. -webkit-box-shadow:none;
  5382. box-shadow:none;
  5383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5384. font-weight:400;
  5385. font-style:normal;
  5386. font-size:10px;
  5387. }
  5388. #u27471 {
  5389. border-width:0px;
  5390. position:absolute;
  5391. left:420px;
  5392. top:198px;
  5393. width:210px;
  5394. height:28px;
  5395. display:flex;
  5396. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5397. font-weight:400;
  5398. font-style:normal;
  5399. font-size:10px;
  5400. }
  5401. #u27471 .text {
  5402. position:absolute;
  5403. align-self:flex-start;
  5404. padding:0px 0px 0px 0px;
  5405. box-sizing:border-box;
  5406. width:100%;
  5407. }
  5408. #u27471_text {
  5409. border-width:0px;
  5410. word-wrap:break-word;
  5411. text-transform:none;
  5412. }
  5413. #u27472_div {
  5414. border-width:0px;
  5415. position:absolute;
  5416. left:0px;
  5417. top:0px;
  5418. width:210px;
  5419. height:28px;
  5420. background:inherit;
  5421. background-color:rgba(255, 255, 255, 0);
  5422. border:none;
  5423. border-radius:0px;
  5424. -moz-box-shadow:none;
  5425. -webkit-box-shadow:none;
  5426. box-shadow:none;
  5427. font-size:10px;
  5428. color:#D9001B;
  5429. }
  5430. #u27472 {
  5431. border-width:0px;
  5432. position:absolute;
  5433. left:420px;
  5434. top:236px;
  5435. width:210px;
  5436. height:28px;
  5437. display:flex;
  5438. font-size:10px;
  5439. color:#D9001B;
  5440. }
  5441. #u27472 .text {
  5442. position:absolute;
  5443. align-self:flex-start;
  5444. padding:0px 0px 0px 0px;
  5445. box-sizing:border-box;
  5446. width:100%;
  5447. }
  5448. #u27472_text {
  5449. border-width:0px;
  5450. word-wrap:break-word;
  5451. text-transform:none;
  5452. }
  5453. #u27473_div {
  5454. border-width:0px;
  5455. position:absolute;
  5456. left:0px;
  5457. top:0px;
  5458. width:210px;
  5459. height:28px;
  5460. background:inherit;
  5461. background-color:rgba(255, 255, 255, 0);
  5462. border:none;
  5463. border-radius:0px;
  5464. -moz-box-shadow:none;
  5465. -webkit-box-shadow:none;
  5466. box-shadow:none;
  5467. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5468. font-weight:400;
  5469. font-style:normal;
  5470. font-size:10px;
  5471. }
  5472. #u27473 {
  5473. border-width:0px;
  5474. position:absolute;
  5475. left:690px;
  5476. top:198px;
  5477. width:210px;
  5478. height:28px;
  5479. display:flex;
  5480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5481. font-weight:400;
  5482. font-style:normal;
  5483. font-size:10px;
  5484. }
  5485. #u27473 .text {
  5486. position:absolute;
  5487. align-self:flex-start;
  5488. padding:0px 0px 0px 0px;
  5489. box-sizing:border-box;
  5490. width:100%;
  5491. }
  5492. #u27473_text {
  5493. border-width:0px;
  5494. word-wrap:break-word;
  5495. text-transform:none;
  5496. }
  5497. #u27474_div {
  5498. border-width:0px;
  5499. position:absolute;
  5500. left:0px;
  5501. top:0px;
  5502. width:210px;
  5503. height:28px;
  5504. background:inherit;
  5505. background-color:rgba(255, 255, 255, 0);
  5506. border:none;
  5507. border-radius:0px;
  5508. -moz-box-shadow:none;
  5509. -webkit-box-shadow:none;
  5510. box-shadow:none;
  5511. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5512. font-weight:400;
  5513. font-style:normal;
  5514. font-size:10px;
  5515. }
  5516. #u27474 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:1005px;
  5520. top:198px;
  5521. width:210px;
  5522. height:28px;
  5523. display:flex;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:10px;
  5528. }
  5529. #u27474 .text {
  5530. position:absolute;
  5531. align-self:flex-start;
  5532. padding:0px 0px 0px 0px;
  5533. box-sizing:border-box;
  5534. width:100%;
  5535. }
  5536. #u27474_text {
  5537. border-width:0px;
  5538. word-wrap:break-word;
  5539. text-transform:none;
  5540. }
  5541. #u27475_div {
  5542. border-width:0px;
  5543. position:absolute;
  5544. left:0px;
  5545. top:0px;
  5546. width:228px;
  5547. height:28px;
  5548. background:inherit;
  5549. background-color:rgba(255, 255, 255, 0);
  5550. border:none;
  5551. border-radius:0px;
  5552. -moz-box-shadow:none;
  5553. -webkit-box-shadow:none;
  5554. box-shadow:none;
  5555. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5556. font-weight:400;
  5557. font-style:normal;
  5558. font-size:10px;
  5559. color:#D9001B;
  5560. }
  5561. #u27475 {
  5562. border-width:0px;
  5563. position:absolute;
  5564. left:1005px;
  5565. top:236px;
  5566. width:228px;
  5567. height:28px;
  5568. display:flex;
  5569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5570. font-weight:400;
  5571. font-style:normal;
  5572. font-size:10px;
  5573. color:#D9001B;
  5574. }
  5575. #u27475 .text {
  5576. position:absolute;
  5577. align-self:flex-start;
  5578. padding:0px 0px 0px 0px;
  5579. box-sizing:border-box;
  5580. width:100%;
  5581. }
  5582. #u27475_text {
  5583. border-width:0px;
  5584. word-wrap:break-word;
  5585. text-transform:none;
  5586. }
  5587. #u27476_div {
  5588. border-width:0px;
  5589. position:absolute;
  5590. left:0px;
  5591. top:0px;
  5592. width:210px;
  5593. height:28px;
  5594. background:inherit;
  5595. background-color:rgba(255, 255, 255, 0);
  5596. border:none;
  5597. border-radius:0px;
  5598. -moz-box-shadow:none;
  5599. -webkit-box-shadow:none;
  5600. box-shadow:none;
  5601. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5602. font-weight:400;
  5603. font-style:normal;
  5604. font-size:10px;
  5605. }
  5606. #u27476 {
  5607. border-width:0px;
  5608. position:absolute;
  5609. left:1322px;
  5610. top:198px;
  5611. width:210px;
  5612. height:28px;
  5613. display:flex;
  5614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5615. font-weight:400;
  5616. font-style:normal;
  5617. font-size:10px;
  5618. }
  5619. #u27476 .text {
  5620. position:absolute;
  5621. align-self:flex-start;
  5622. padding:0px 0px 0px 0px;
  5623. box-sizing:border-box;
  5624. width:100%;
  5625. }
  5626. #u27476_text {
  5627. border-width:0px;
  5628. word-wrap:break-word;
  5629. text-transform:none;
  5630. }
  5631. #u27477_div {
  5632. border-width:0px;
  5633. position:absolute;
  5634. left:0px;
  5635. top:0px;
  5636. width:204px;
  5637. height:28px;
  5638. background:inherit;
  5639. background-color:rgba(255, 255, 255, 0);
  5640. border:none;
  5641. border-radius:0px;
  5642. -moz-box-shadow:none;
  5643. -webkit-box-shadow:none;
  5644. box-shadow:none;
  5645. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5646. font-weight:400;
  5647. font-style:normal;
  5648. font-size:10px;
  5649. color:#D9001B;
  5650. }
  5651. #u27477 {
  5652. border-width:0px;
  5653. position:absolute;
  5654. left:1322px;
  5655. top:236px;
  5656. width:204px;
  5657. height:28px;
  5658. display:flex;
  5659. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5660. font-weight:400;
  5661. font-style:normal;
  5662. font-size:10px;
  5663. color:#D9001B;
  5664. }
  5665. #u27477 .text {
  5666. position:absolute;
  5667. align-self:flex-start;
  5668. padding:0px 0px 0px 0px;
  5669. box-sizing:border-box;
  5670. width:100%;
  5671. }
  5672. #u27477_text {
  5673. border-width:0px;
  5674. word-wrap:break-word;
  5675. text-transform:none;
  5676. }
  5677. #u27478 {
  5678. border-width:0px;
  5679. position:absolute;
  5680. left:0px;
  5681. top:0px;
  5682. width:0px;
  5683. height:0px;
  5684. }
  5685. #u27479_div {
  5686. border-width:0px;
  5687. position:absolute;
  5688. left:0px;
  5689. top:0px;
  5690. width:440px;
  5691. height:164px;
  5692. background:inherit;
  5693. background-color:rgba(255, 255, 255, 1);
  5694. border:none;
  5695. border-radius:4px;
  5696. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5697. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5698. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  5699. font-family:'Microsoft YaHei', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. }
  5703. #u27479 {
  5704. border-width:0px;
  5705. position:absolute;
  5706. left:1661px;
  5707. top:66px;
  5708. width:440px;
  5709. height:164px;
  5710. display:flex;
  5711. font-family:'Microsoft YaHei', sans-serif;
  5712. font-weight:400;
  5713. font-style:normal;
  5714. }
  5715. #u27479 .text {
  5716. position:absolute;
  5717. align-self:center;
  5718. padding:2px 2px 2px 2px;
  5719. box-sizing:border-box;
  5720. width:100%;
  5721. }
  5722. #u27479_text {
  5723. border-width:0px;
  5724. word-wrap:break-word;
  5725. text-transform:none;
  5726. visibility:hidden;
  5727. }
  5728. #u27480_div {
  5729. border-width:0px;
  5730. position:absolute;
  5731. left:0px;
  5732. top:0px;
  5733. width:57px;
  5734. height:22px;
  5735. background:inherit;
  5736. background-color:rgba(255, 255, 255, 0);
  5737. border:none;
  5738. border-radius:0px;
  5739. -moz-box-shadow:none;
  5740. -webkit-box-shadow:none;
  5741. box-shadow:none;
  5742. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5743. font-weight:400;
  5744. font-style:normal;
  5745. font-size:14px;
  5746. color:#666666;
  5747. line-height:22px;
  5748. }
  5749. #u27480 {
  5750. border-width:0px;
  5751. position:absolute;
  5752. left:1688px;
  5753. top:137px;
  5754. width:57px;
  5755. height:22px;
  5756. display:flex;
  5757. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5758. font-weight:400;
  5759. font-style:normal;
  5760. font-size:14px;
  5761. color:#666666;
  5762. line-height:22px;
  5763. }
  5764. #u27480 .text {
  5765. position:absolute;
  5766. align-self:flex-start;
  5767. padding:0px 0px 0px 0px;
  5768. box-sizing:border-box;
  5769. width:100%;
  5770. }
  5771. #u27480_text {
  5772. border-width:0px;
  5773. white-space:nowrap;
  5774. text-transform:none;
  5775. }
  5776. #u27481_div {
  5777. border-width:0px;
  5778. position:absolute;
  5779. left:0px;
  5780. top:0px;
  5781. width:73px;
  5782. height:21px;
  5783. background:inherit;
  5784. background-color:rgba(255, 255, 255, 0);
  5785. border:none;
  5786. border-radius:0px;
  5787. -moz-box-shadow:none;
  5788. -webkit-box-shadow:none;
  5789. box-shadow:none;
  5790. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5791. font-weight:650;
  5792. font-style:normal;
  5793. font-size:18px;
  5794. color:#000000;
  5795. line-height:22px;
  5796. }
  5797. #u27481 {
  5798. border-width:0px;
  5799. position:absolute;
  5800. left:1688px;
  5801. top:91px;
  5802. width:73px;
  5803. height:21px;
  5804. display:flex;
  5805. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  5806. font-weight:650;
  5807. font-style:normal;
  5808. font-size:18px;
  5809. color:#000000;
  5810. line-height:22px;
  5811. }
  5812. #u27481 .text {
  5813. position:absolute;
  5814. align-self:flex-start;
  5815. padding:0px 0px 0px 0px;
  5816. box-sizing:border-box;
  5817. width:100%;
  5818. }
  5819. #u27481_text {
  5820. border-width:0px;
  5821. white-space:nowrap;
  5822. text-transform:none;
  5823. }
  5824. #u27482_div {
  5825. border-width:0px;
  5826. position:absolute;
  5827. left:0px;
  5828. top:0px;
  5829. width:61px;
  5830. height:32px;
  5831. background:inherit;
  5832. background-color:rgba(24, 144, 255, 1);
  5833. border:none;
  5834. border-radius:4px;
  5835. -moz-box-shadow:none;
  5836. -webkit-box-shadow:none;
  5837. box-shadow:none;
  5838. font-family:'Microsoft YaHei', sans-serif;
  5839. font-weight:400;
  5840. font-style:normal;
  5841. font-size:14px;
  5842. color:#FFFFFF;
  5843. }
  5844. #u27482 {
  5845. border-width:0px;
  5846. position:absolute;
  5847. left:2020px;
  5848. top:181px;
  5849. width:61px;
  5850. height:32px;
  5851. display:flex;
  5852. font-family:'Microsoft YaHei', sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. font-size:14px;
  5856. color:#FFFFFF;
  5857. }
  5858. #u27482 .text {
  5859. position:absolute;
  5860. align-self:center;
  5861. padding:2px 16px 2px 16px;
  5862. box-sizing:border-box;
  5863. width:100%;
  5864. }
  5865. #u27482_text {
  5866. border-width:0px;
  5867. white-space:nowrap;
  5868. text-transform:none;
  5869. }
  5870. #u27483_div {
  5871. border-width:0px;
  5872. position:absolute;
  5873. left:0px;
  5874. top:0px;
  5875. width:66px;
  5876. height:32px;
  5877. background:inherit;
  5878. background-color:rgba(255, 255, 255, 1);
  5879. box-sizing:border-box;
  5880. border-width:1px;
  5881. border-style:solid;
  5882. border-color:rgba(217, 217, 217, 1);
  5883. border-radius:4px;
  5884. -moz-box-shadow:none;
  5885. -webkit-box-shadow:none;
  5886. box-shadow:none;
  5887. font-family:'Microsoft YaHei', sans-serif;
  5888. font-weight:400;
  5889. font-style:normal;
  5890. font-size:14px;
  5891. color:rgba(0, 0, 0, 0.647058823529412);
  5892. line-height:21px;
  5893. }
  5894. #u27483 {
  5895. border-width:0px;
  5896. position:absolute;
  5897. left:1938px;
  5898. top:181px;
  5899. width:66px;
  5900. height:32px;
  5901. display:flex;
  5902. font-family:'Microsoft YaHei', sans-serif;
  5903. font-weight:400;
  5904. font-style:normal;
  5905. font-size:14px;
  5906. color:rgba(0, 0, 0, 0.647058823529412);
  5907. line-height:21px;
  5908. }
  5909. #u27483 .text {
  5910. position:absolute;
  5911. align-self:center;
  5912. padding:2px 16px 2px 16px;
  5913. box-sizing:border-box;
  5914. width:100%;
  5915. }
  5916. #u27483_text {
  5917. border-width:0px;
  5918. white-space:nowrap;
  5919. text-transform:none;
  5920. }
  5921. #u27484 label {
  5922. left:0px;
  5923. width:100%;
  5924. }
  5925. #u27484_img {
  5926. border-width:0px;
  5927. position:absolute;
  5928. left:0px;
  5929. top:4px;
  5930. width:12px;
  5931. height:12px;
  5932. }
  5933. #u27484 {
  5934. border-width:0px;
  5935. position:absolute;
  5936. left:1763px;
  5937. top:138px;
  5938. width:100px;
  5939. height:20px;
  5940. display:flex;
  5941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5942. font-weight:400;
  5943. font-style:normal;
  5944. font-size:14px;
  5945. }
  5946. #u27484 .text {
  5947. position:absolute;
  5948. align-self:center;
  5949. padding:0px 2px 0px 2px;
  5950. box-sizing:border-box;
  5951. }
  5952. #u27484_img.selected {
  5953. }
  5954. #u27484.selected {
  5955. }
  5956. #u27484_img.disabled {
  5957. }
  5958. #u27484.disabled {
  5959. }
  5960. #u27484_img.selectedDisabled {
  5961. }
  5962. #u27484.selectedDisabled {
  5963. }
  5964. #u27484_text {
  5965. border-width:0px;
  5966. position:absolute;
  5967. left:14px;
  5968. top:0px;
  5969. width:84px;
  5970. word-wrap:break-word;
  5971. text-transform:none;
  5972. }
  5973. #u27484_input {
  5974. border-width:0px;
  5975. position:absolute;
  5976. left:0px;
  5977. top:0px;
  5978. width:0px;
  5979. height:0px;
  5980. opacity:0;
  5981. }
  5982. #u27485 label {
  5983. left:0px;
  5984. width:100%;
  5985. }
  5986. #u27485_img {
  5987. border-width:0px;
  5988. position:absolute;
  5989. left:0px;
  5990. top:4px;
  5991. width:12px;
  5992. height:12px;
  5993. }
  5994. #u27485 {
  5995. border-width:0px;
  5996. position:absolute;
  5997. left:1863px;
  5998. top:138px;
  5999. width:100px;
  6000. height:20px;
  6001. display:flex;
  6002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6003. font-weight:400;
  6004. font-style:normal;
  6005. font-size:14px;
  6006. }
  6007. #u27485 .text {
  6008. position:absolute;
  6009. align-self:center;
  6010. padding:0px 2px 0px 2px;
  6011. box-sizing:border-box;
  6012. }
  6013. #u27485_img.selected {
  6014. }
  6015. #u27485.selected {
  6016. }
  6017. #u27485_img.disabled {
  6018. }
  6019. #u27485.disabled {
  6020. }
  6021. #u27485_img.selectedDisabled {
  6022. }
  6023. #u27485.selectedDisabled {
  6024. }
  6025. #u27485_text {
  6026. border-width:0px;
  6027. position:absolute;
  6028. left:14px;
  6029. top:0px;
  6030. width:84px;
  6031. word-wrap:break-word;
  6032. text-transform:none;
  6033. }
  6034. #u27485_input {
  6035. border-width:0px;
  6036. position:absolute;
  6037. left:0px;
  6038. top:0px;
  6039. width:0px;
  6040. height:0px;
  6041. opacity:0;
  6042. }
  6043. #u27486 {
  6044. border-width:0px;
  6045. position:absolute;
  6046. left:0px;
  6047. top:0px;
  6048. width:0px;
  6049. height:0px;
  6050. }
  6051. #u27487_div {
  6052. border-width:0px;
  6053. position:absolute;
  6054. left:0px;
  6055. top:0px;
  6056. width:440px;
  6057. height:240px;
  6058. background:inherit;
  6059. background-color:rgba(255, 255, 255, 1);
  6060. border:none;
  6061. border-radius:4px;
  6062. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6063. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6064. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6065. font-family:'Microsoft YaHei', sans-serif;
  6066. font-weight:400;
  6067. font-style:normal;
  6068. }
  6069. #u27487 {
  6070. border-width:0px;
  6071. position:absolute;
  6072. left:1661px;
  6073. top:252px;
  6074. width:440px;
  6075. height:240px;
  6076. display:flex;
  6077. font-family:'Microsoft YaHei', sans-serif;
  6078. font-weight:400;
  6079. font-style:normal;
  6080. }
  6081. #u27487 .text {
  6082. position:absolute;
  6083. align-self:center;
  6084. padding:2px 2px 2px 2px;
  6085. box-sizing:border-box;
  6086. width:100%;
  6087. }
  6088. #u27487_text {
  6089. border-width:0px;
  6090. word-wrap:break-word;
  6091. text-transform:none;
  6092. visibility:hidden;
  6093. }
  6094. #u27488_div {
  6095. border-width:0px;
  6096. position:absolute;
  6097. left:0px;
  6098. top:0px;
  6099. width:57px;
  6100. height:22px;
  6101. background:inherit;
  6102. background-color:rgba(255, 255, 255, 0);
  6103. border:none;
  6104. border-radius:0px;
  6105. -moz-box-shadow:none;
  6106. -webkit-box-shadow:none;
  6107. box-shadow:none;
  6108. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6109. font-weight:400;
  6110. font-style:normal;
  6111. font-size:14px;
  6112. color:#666666;
  6113. line-height:22px;
  6114. }
  6115. #u27488 {
  6116. border-width:0px;
  6117. position:absolute;
  6118. left:1688px;
  6119. top:323px;
  6120. width:57px;
  6121. height:22px;
  6122. display:flex;
  6123. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6124. font-weight:400;
  6125. font-style:normal;
  6126. font-size:14px;
  6127. color:#666666;
  6128. line-height:22px;
  6129. }
  6130. #u27488 .text {
  6131. position:absolute;
  6132. align-self:flex-start;
  6133. padding:0px 0px 0px 0px;
  6134. box-sizing:border-box;
  6135. width:100%;
  6136. }
  6137. #u27488_text {
  6138. border-width:0px;
  6139. white-space:nowrap;
  6140. text-transform:none;
  6141. }
  6142. #u27489_div {
  6143. border-width:0px;
  6144. position:absolute;
  6145. left:0px;
  6146. top:0px;
  6147. width:73px;
  6148. height:21px;
  6149. background:inherit;
  6150. background-color:rgba(255, 255, 255, 0);
  6151. border:none;
  6152. border-radius:0px;
  6153. -moz-box-shadow:none;
  6154. -webkit-box-shadow:none;
  6155. box-shadow:none;
  6156. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6157. font-weight:650;
  6158. font-style:normal;
  6159. font-size:18px;
  6160. color:#000000;
  6161. line-height:22px;
  6162. }
  6163. #u27489 {
  6164. border-width:0px;
  6165. position:absolute;
  6166. left:1688px;
  6167. top:277px;
  6168. width:73px;
  6169. height:21px;
  6170. display:flex;
  6171. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6172. font-weight:650;
  6173. font-style:normal;
  6174. font-size:18px;
  6175. color:#000000;
  6176. line-height:22px;
  6177. }
  6178. #u27489 .text {
  6179. position:absolute;
  6180. align-self:flex-start;
  6181. padding:0px 0px 0px 0px;
  6182. box-sizing:border-box;
  6183. width:100%;
  6184. }
  6185. #u27489_text {
  6186. border-width:0px;
  6187. white-space:nowrap;
  6188. text-transform:none;
  6189. }
  6190. #u27490_div {
  6191. border-width:0px;
  6192. position:absolute;
  6193. left:0px;
  6194. top:0px;
  6195. width:61px;
  6196. height:32px;
  6197. background:inherit;
  6198. background-color:rgba(24, 144, 255, 1);
  6199. border:none;
  6200. border-radius:4px;
  6201. -moz-box-shadow:none;
  6202. -webkit-box-shadow:none;
  6203. box-shadow:none;
  6204. font-family:'Microsoft YaHei', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:14px;
  6208. color:#FFFFFF;
  6209. }
  6210. #u27490 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:2020px;
  6214. top:440px;
  6215. width:61px;
  6216. height:32px;
  6217. display:flex;
  6218. font-family:'Microsoft YaHei', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:14px;
  6222. color:#FFFFFF;
  6223. }
  6224. #u27490 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:2px 16px 2px 16px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u27490_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u27491_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:66px;
  6242. height:32px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 1);
  6245. box-sizing:border-box;
  6246. border-width:1px;
  6247. border-style:solid;
  6248. border-color:rgba(217, 217, 217, 1);
  6249. border-radius:4px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'Microsoft YaHei', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:14px;
  6257. color:rgba(0, 0, 0, 0.647058823529412);
  6258. line-height:21px;
  6259. }
  6260. #u27491 {
  6261. border-width:0px;
  6262. position:absolute;
  6263. left:1938px;
  6264. top:440px;
  6265. width:66px;
  6266. height:32px;
  6267. display:flex;
  6268. font-family:'Microsoft YaHei', sans-serif;
  6269. font-weight:400;
  6270. font-style:normal;
  6271. font-size:14px;
  6272. color:rgba(0, 0, 0, 0.647058823529412);
  6273. line-height:21px;
  6274. }
  6275. #u27491 .text {
  6276. position:absolute;
  6277. align-self:center;
  6278. padding:2px 16px 2px 16px;
  6279. box-sizing:border-box;
  6280. width:100%;
  6281. }
  6282. #u27491_text {
  6283. border-width:0px;
  6284. white-space:nowrap;
  6285. text-transform:none;
  6286. }
  6287. #u27492 label {
  6288. left:0px;
  6289. width:100%;
  6290. }
  6291. #u27492_img {
  6292. border-width:0px;
  6293. position:absolute;
  6294. left:0px;
  6295. top:4px;
  6296. width:12px;
  6297. height:12px;
  6298. }
  6299. #u27492 {
  6300. border-width:0px;
  6301. position:absolute;
  6302. left:1763px;
  6303. top:324px;
  6304. width:100px;
  6305. height:20px;
  6306. display:flex;
  6307. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6308. font-weight:400;
  6309. font-style:normal;
  6310. font-size:14px;
  6311. }
  6312. #u27492 .text {
  6313. position:absolute;
  6314. align-self:center;
  6315. padding:0px 2px 0px 2px;
  6316. box-sizing:border-box;
  6317. }
  6318. #u27492_img.selected {
  6319. }
  6320. #u27492.selected {
  6321. }
  6322. #u27492_img.disabled {
  6323. }
  6324. #u27492.disabled {
  6325. }
  6326. #u27492_img.selectedDisabled {
  6327. }
  6328. #u27492.selectedDisabled {
  6329. }
  6330. #u27492_text {
  6331. border-width:0px;
  6332. position:absolute;
  6333. left:14px;
  6334. top:0px;
  6335. width:84px;
  6336. word-wrap:break-word;
  6337. text-transform:none;
  6338. }
  6339. #u27492_input {
  6340. border-width:0px;
  6341. position:absolute;
  6342. left:0px;
  6343. top:0px;
  6344. width:0px;
  6345. height:0px;
  6346. opacity:0;
  6347. }
  6348. #u27493 label {
  6349. left:0px;
  6350. width:100%;
  6351. }
  6352. #u27493_img {
  6353. border-width:0px;
  6354. position:absolute;
  6355. left:0px;
  6356. top:4px;
  6357. width:12px;
  6358. height:12px;
  6359. }
  6360. #u27493 {
  6361. border-width:0px;
  6362. position:absolute;
  6363. left:1863px;
  6364. top:324px;
  6365. width:100px;
  6366. height:20px;
  6367. display:flex;
  6368. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6369. font-weight:400;
  6370. font-style:normal;
  6371. font-size:14px;
  6372. }
  6373. #u27493 .text {
  6374. position:absolute;
  6375. align-self:center;
  6376. padding:0px 2px 0px 2px;
  6377. box-sizing:border-box;
  6378. }
  6379. #u27493_img.selected {
  6380. }
  6381. #u27493.selected {
  6382. }
  6383. #u27493_img.disabled {
  6384. }
  6385. #u27493.disabled {
  6386. }
  6387. #u27493_img.selectedDisabled {
  6388. }
  6389. #u27493.selectedDisabled {
  6390. }
  6391. #u27493_text {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:14px;
  6395. top:0px;
  6396. width:84px;
  6397. word-wrap:break-word;
  6398. text-transform:none;
  6399. }
  6400. #u27493_input {
  6401. border-width:0px;
  6402. position:absolute;
  6403. left:0px;
  6404. top:0px;
  6405. width:0px;
  6406. height:0px;
  6407. opacity:0;
  6408. }
  6409. #u27494_div {
  6410. border-width:0px;
  6411. position:absolute;
  6412. left:0px;
  6413. top:0px;
  6414. width:57px;
  6415. height:22px;
  6416. background:inherit;
  6417. background-color:rgba(255, 255, 255, 0);
  6418. border:none;
  6419. border-radius:0px;
  6420. -moz-box-shadow:none;
  6421. -webkit-box-shadow:none;
  6422. box-shadow:none;
  6423. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6424. font-weight:400;
  6425. font-style:normal;
  6426. font-size:14px;
  6427. color:#666666;
  6428. line-height:22px;
  6429. }
  6430. #u27494 {
  6431. border-width:0px;
  6432. position:absolute;
  6433. left:1688px;
  6434. top:364px;
  6435. width:57px;
  6436. height:22px;
  6437. display:flex;
  6438. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6439. font-weight:400;
  6440. font-style:normal;
  6441. font-size:14px;
  6442. color:#666666;
  6443. line-height:22px;
  6444. }
  6445. #u27494 .text {
  6446. position:absolute;
  6447. align-self:flex-start;
  6448. padding:0px 0px 0px 0px;
  6449. box-sizing:border-box;
  6450. width:100%;
  6451. }
  6452. #u27494_text {
  6453. border-width:0px;
  6454. white-space:nowrap;
  6455. text-transform:none;
  6456. }
  6457. #u27495 label {
  6458. left:0px;
  6459. width:100%;
  6460. }
  6461. #u27495_img {
  6462. border-width:0px;
  6463. position:absolute;
  6464. left:0px;
  6465. top:4px;
  6466. width:12px;
  6467. height:12px;
  6468. }
  6469. #u27495 {
  6470. border-width:0px;
  6471. position:absolute;
  6472. left:1763px;
  6473. top:365px;
  6474. width:100px;
  6475. height:20px;
  6476. display:flex;
  6477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6478. font-weight:400;
  6479. font-style:normal;
  6480. font-size:14px;
  6481. }
  6482. #u27495 .text {
  6483. position:absolute;
  6484. align-self:center;
  6485. padding:0px 2px 0px 2px;
  6486. box-sizing:border-box;
  6487. }
  6488. #u27495_img.selected {
  6489. }
  6490. #u27495.selected {
  6491. }
  6492. #u27495_img.disabled {
  6493. }
  6494. #u27495.disabled {
  6495. }
  6496. #u27495_img.selectedDisabled {
  6497. }
  6498. #u27495.selectedDisabled {
  6499. }
  6500. #u27495_text {
  6501. border-width:0px;
  6502. position:absolute;
  6503. left:14px;
  6504. top:0px;
  6505. width:84px;
  6506. word-wrap:break-word;
  6507. text-transform:none;
  6508. }
  6509. #u27495_input {
  6510. border-width:0px;
  6511. position:absolute;
  6512. left:0px;
  6513. top:0px;
  6514. width:0px;
  6515. height:0px;
  6516. opacity:0;
  6517. }
  6518. #u27496 label {
  6519. left:0px;
  6520. width:100%;
  6521. }
  6522. #u27496_img {
  6523. border-width:0px;
  6524. position:absolute;
  6525. left:0px;
  6526. top:4px;
  6527. width:12px;
  6528. height:12px;
  6529. }
  6530. #u27496 {
  6531. border-width:0px;
  6532. position:absolute;
  6533. left:1863px;
  6534. top:365px;
  6535. width:100px;
  6536. height:20px;
  6537. display:flex;
  6538. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6539. font-weight:400;
  6540. font-style:normal;
  6541. font-size:14px;
  6542. }
  6543. #u27496 .text {
  6544. position:absolute;
  6545. align-self:center;
  6546. padding:0px 2px 0px 2px;
  6547. box-sizing:border-box;
  6548. }
  6549. #u27496_img.selected {
  6550. }
  6551. #u27496.selected {
  6552. }
  6553. #u27496_img.disabled {
  6554. }
  6555. #u27496.disabled {
  6556. }
  6557. #u27496_img.selectedDisabled {
  6558. }
  6559. #u27496.selectedDisabled {
  6560. }
  6561. #u27496_text {
  6562. border-width:0px;
  6563. position:absolute;
  6564. left:14px;
  6565. top:0px;
  6566. width:84px;
  6567. word-wrap:break-word;
  6568. text-transform:none;
  6569. }
  6570. #u27496_input {
  6571. border-width:0px;
  6572. position:absolute;
  6573. left:0px;
  6574. top:0px;
  6575. width:0px;
  6576. height:0px;
  6577. opacity:0;
  6578. }
  6579. #u27497 label {
  6580. left:0px;
  6581. width:100%;
  6582. }
  6583. #u27497_img {
  6584. border-width:0px;
  6585. position:absolute;
  6586. left:0px;
  6587. top:4px;
  6588. width:12px;
  6589. height:12px;
  6590. }
  6591. #u27497 {
  6592. border-width:0px;
  6593. position:absolute;
  6594. left:1963px;
  6595. top:365px;
  6596. width:100px;
  6597. height:20px;
  6598. display:flex;
  6599. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6600. font-weight:400;
  6601. font-style:normal;
  6602. font-size:14px;
  6603. }
  6604. #u27497 .text {
  6605. position:absolute;
  6606. align-self:center;
  6607. padding:0px 2px 0px 2px;
  6608. box-sizing:border-box;
  6609. }
  6610. #u27497_img.selected {
  6611. }
  6612. #u27497.selected {
  6613. }
  6614. #u27497_img.disabled {
  6615. }
  6616. #u27497.disabled {
  6617. }
  6618. #u27497_img.selectedDisabled {
  6619. }
  6620. #u27497.selectedDisabled {
  6621. }
  6622. #u27497_text {
  6623. border-width:0px;
  6624. position:absolute;
  6625. left:14px;
  6626. top:0px;
  6627. width:84px;
  6628. word-wrap:break-word;
  6629. text-transform:none;
  6630. }
  6631. #u27497_input {
  6632. border-width:0px;
  6633. position:absolute;
  6634. left:0px;
  6635. top:0px;
  6636. width:0px;
  6637. height:0px;
  6638. opacity:0;
  6639. }
  6640. #u27498_div {
  6641. border-width:0px;
  6642. position:absolute;
  6643. left:0px;
  6644. top:0px;
  6645. width:385px;
  6646. height:34px;
  6647. background:inherit;
  6648. background-color:rgba(255, 255, 255, 0);
  6649. border:none;
  6650. border-radius:0px;
  6651. -moz-box-shadow:none;
  6652. -webkit-box-shadow:none;
  6653. box-shadow:none;
  6654. font-size:12px;
  6655. color:#1890FF;
  6656. }
  6657. #u27498 {
  6658. border-width:0px;
  6659. position:absolute;
  6660. left:1688px;
  6661. top:396px;
  6662. width:385px;
  6663. height:34px;
  6664. display:flex;
  6665. font-size:12px;
  6666. color:#1890FF;
  6667. }
  6668. #u27498 .text {
  6669. position:absolute;
  6670. align-self:flex-start;
  6671. padding:0px 0px 0px 0px;
  6672. box-sizing:border-box;
  6673. width:100%;
  6674. }
  6675. #u27498_text {
  6676. border-width:0px;
  6677. word-wrap:break-word;
  6678. text-transform:none;
  6679. }
  6680. #u27499 {
  6681. border-width:0px;
  6682. position:absolute;
  6683. left:0px;
  6684. top:0px;
  6685. width:0px;
  6686. height:0px;
  6687. }
  6688. #u27500_div {
  6689. border-width:0px;
  6690. position:absolute;
  6691. left:0px;
  6692. top:0px;
  6693. width:440px;
  6694. height:300px;
  6695. background:inherit;
  6696. background-color:rgba(255, 255, 255, 1);
  6697. border:none;
  6698. border-radius:4px;
  6699. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6700. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6701. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  6702. font-family:'Microsoft YaHei', sans-serif;
  6703. font-weight:400;
  6704. font-style:normal;
  6705. }
  6706. #u27500 {
  6707. border-width:0px;
  6708. position:absolute;
  6709. left:1661px;
  6710. top:531px;
  6711. width:440px;
  6712. height:300px;
  6713. display:flex;
  6714. font-family:'Microsoft YaHei', sans-serif;
  6715. font-weight:400;
  6716. font-style:normal;
  6717. }
  6718. #u27500 .text {
  6719. position:absolute;
  6720. align-self:center;
  6721. padding:2px 2px 2px 2px;
  6722. box-sizing:border-box;
  6723. width:100%;
  6724. }
  6725. #u27500_text {
  6726. border-width:0px;
  6727. word-wrap:break-word;
  6728. text-transform:none;
  6729. visibility:hidden;
  6730. }
  6731. #u27501_div {
  6732. border-width:0px;
  6733. position:absolute;
  6734. left:0px;
  6735. top:0px;
  6736. width:57px;
  6737. height:22px;
  6738. background:inherit;
  6739. background-color:rgba(255, 255, 255, 0);
  6740. border:none;
  6741. border-radius:0px;
  6742. -moz-box-shadow:none;
  6743. -webkit-box-shadow:none;
  6744. box-shadow:none;
  6745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6746. font-weight:400;
  6747. font-style:normal;
  6748. font-size:14px;
  6749. color:#666666;
  6750. line-height:22px;
  6751. }
  6752. #u27501 {
  6753. border-width:0px;
  6754. position:absolute;
  6755. left:1688px;
  6756. top:602px;
  6757. width:57px;
  6758. height:22px;
  6759. display:flex;
  6760. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6761. font-weight:400;
  6762. font-style:normal;
  6763. font-size:14px;
  6764. color:#666666;
  6765. line-height:22px;
  6766. }
  6767. #u27501 .text {
  6768. position:absolute;
  6769. align-self:flex-start;
  6770. padding:0px 0px 0px 0px;
  6771. box-sizing:border-box;
  6772. width:100%;
  6773. }
  6774. #u27501_text {
  6775. border-width:0px;
  6776. white-space:nowrap;
  6777. text-transform:none;
  6778. }
  6779. #u27502_div {
  6780. border-width:0px;
  6781. position:absolute;
  6782. left:0px;
  6783. top:0px;
  6784. width:73px;
  6785. height:21px;
  6786. background:inherit;
  6787. background-color:rgba(255, 255, 255, 0);
  6788. border:none;
  6789. border-radius:0px;
  6790. -moz-box-shadow:none;
  6791. -webkit-box-shadow:none;
  6792. box-shadow:none;
  6793. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6794. font-weight:650;
  6795. font-style:normal;
  6796. font-size:18px;
  6797. color:#000000;
  6798. line-height:22px;
  6799. }
  6800. #u27502 {
  6801. border-width:0px;
  6802. position:absolute;
  6803. left:1688px;
  6804. top:556px;
  6805. width:73px;
  6806. height:21px;
  6807. display:flex;
  6808. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  6809. font-weight:650;
  6810. font-style:normal;
  6811. font-size:18px;
  6812. color:#000000;
  6813. line-height:22px;
  6814. }
  6815. #u27502 .text {
  6816. position:absolute;
  6817. align-self:flex-start;
  6818. padding:0px 0px 0px 0px;
  6819. box-sizing:border-box;
  6820. width:100%;
  6821. }
  6822. #u27502_text {
  6823. border-width:0px;
  6824. white-space:nowrap;
  6825. text-transform:none;
  6826. }
  6827. #u27503_div {
  6828. border-width:0px;
  6829. position:absolute;
  6830. left:0px;
  6831. top:0px;
  6832. width:61px;
  6833. height:32px;
  6834. background:inherit;
  6835. background-color:rgba(24, 144, 255, 1);
  6836. border:none;
  6837. border-radius:4px;
  6838. -moz-box-shadow:none;
  6839. -webkit-box-shadow:none;
  6840. box-shadow:none;
  6841. font-family:'Microsoft YaHei', sans-serif;
  6842. font-weight:400;
  6843. font-style:normal;
  6844. font-size:14px;
  6845. color:#FFFFFF;
  6846. }
  6847. #u27503 {
  6848. border-width:0px;
  6849. position:absolute;
  6850. left:2020px;
  6851. top:788px;
  6852. width:61px;
  6853. height:32px;
  6854. display:flex;
  6855. font-family:'Microsoft YaHei', sans-serif;
  6856. font-weight:400;
  6857. font-style:normal;
  6858. font-size:14px;
  6859. color:#FFFFFF;
  6860. }
  6861. #u27503 .text {
  6862. position:absolute;
  6863. align-self:center;
  6864. padding:2px 16px 2px 16px;
  6865. box-sizing:border-box;
  6866. width:100%;
  6867. }
  6868. #u27503_text {
  6869. border-width:0px;
  6870. white-space:nowrap;
  6871. text-transform:none;
  6872. }
  6873. #u27504_div {
  6874. border-width:0px;
  6875. position:absolute;
  6876. left:0px;
  6877. top:0px;
  6878. width:66px;
  6879. height:32px;
  6880. background:inherit;
  6881. background-color:rgba(255, 255, 255, 1);
  6882. box-sizing:border-box;
  6883. border-width:1px;
  6884. border-style:solid;
  6885. border-color:rgba(217, 217, 217, 1);
  6886. border-radius:4px;
  6887. -moz-box-shadow:none;
  6888. -webkit-box-shadow:none;
  6889. box-shadow:none;
  6890. font-family:'Microsoft YaHei', sans-serif;
  6891. font-weight:400;
  6892. font-style:normal;
  6893. font-size:14px;
  6894. color:rgba(0, 0, 0, 0.647058823529412);
  6895. line-height:21px;
  6896. }
  6897. #u27504 {
  6898. border-width:0px;
  6899. position:absolute;
  6900. left:1938px;
  6901. top:788px;
  6902. width:66px;
  6903. height:32px;
  6904. display:flex;
  6905. font-family:'Microsoft YaHei', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:14px;
  6909. color:rgba(0, 0, 0, 0.647058823529412);
  6910. line-height:21px;
  6911. }
  6912. #u27504 .text {
  6913. position:absolute;
  6914. align-self:center;
  6915. padding:2px 16px 2px 16px;
  6916. box-sizing:border-box;
  6917. width:100%;
  6918. }
  6919. #u27504_text {
  6920. border-width:0px;
  6921. white-space:nowrap;
  6922. text-transform:none;
  6923. }
  6924. #u27505 label {
  6925. left:0px;
  6926. width:100%;
  6927. }
  6928. #u27505_img {
  6929. border-width:0px;
  6930. position:absolute;
  6931. left:0px;
  6932. top:4px;
  6933. width:12px;
  6934. height:12px;
  6935. }
  6936. #u27505 {
  6937. border-width:0px;
  6938. position:absolute;
  6939. left:1763px;
  6940. top:603px;
  6941. width:100px;
  6942. height:20px;
  6943. display:flex;
  6944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6945. font-weight:400;
  6946. font-style:normal;
  6947. font-size:14px;
  6948. }
  6949. #u27505 .text {
  6950. position:absolute;
  6951. align-self:center;
  6952. padding:0px 2px 0px 2px;
  6953. box-sizing:border-box;
  6954. }
  6955. #u27505_img.selected {
  6956. }
  6957. #u27505.selected {
  6958. }
  6959. #u27505_img.disabled {
  6960. }
  6961. #u27505.disabled {
  6962. }
  6963. #u27505_img.selectedDisabled {
  6964. }
  6965. #u27505.selectedDisabled {
  6966. }
  6967. #u27505_text {
  6968. border-width:0px;
  6969. position:absolute;
  6970. left:14px;
  6971. top:0px;
  6972. width:84px;
  6973. word-wrap:break-word;
  6974. text-transform:none;
  6975. }
  6976. #u27505_input {
  6977. border-width:0px;
  6978. position:absolute;
  6979. left:0px;
  6980. top:0px;
  6981. width:0px;
  6982. height:0px;
  6983. opacity:0;
  6984. }
  6985. #u27506 label {
  6986. left:0px;
  6987. width:100%;
  6988. }
  6989. #u27506_img {
  6990. border-width:0px;
  6991. position:absolute;
  6992. left:0px;
  6993. top:4px;
  6994. width:12px;
  6995. height:12px;
  6996. }
  6997. #u27506 {
  6998. border-width:0px;
  6999. position:absolute;
  7000. left:1863px;
  7001. top:603px;
  7002. width:100px;
  7003. height:20px;
  7004. display:flex;
  7005. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7006. font-weight:400;
  7007. font-style:normal;
  7008. font-size:14px;
  7009. }
  7010. #u27506 .text {
  7011. position:absolute;
  7012. align-self:center;
  7013. padding:0px 2px 0px 2px;
  7014. box-sizing:border-box;
  7015. }
  7016. #u27506_img.selected {
  7017. }
  7018. #u27506.selected {
  7019. }
  7020. #u27506_img.disabled {
  7021. }
  7022. #u27506.disabled {
  7023. }
  7024. #u27506_img.selectedDisabled {
  7025. }
  7026. #u27506.selectedDisabled {
  7027. }
  7028. #u27506_text {
  7029. border-width:0px;
  7030. position:absolute;
  7031. left:14px;
  7032. top:0px;
  7033. width:84px;
  7034. word-wrap:break-word;
  7035. text-transform:none;
  7036. }
  7037. #u27506_input {
  7038. border-width:0px;
  7039. position:absolute;
  7040. left:0px;
  7041. top:0px;
  7042. width:0px;
  7043. height:0px;
  7044. opacity:0;
  7045. }
  7046. #u27507_div {
  7047. border-width:0px;
  7048. position:absolute;
  7049. left:0px;
  7050. top:0px;
  7051. width:57px;
  7052. height:22px;
  7053. background:inherit;
  7054. background-color:rgba(255, 255, 255, 0);
  7055. border:none;
  7056. border-radius:0px;
  7057. -moz-box-shadow:none;
  7058. -webkit-box-shadow:none;
  7059. box-shadow:none;
  7060. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7061. font-weight:400;
  7062. font-style:normal;
  7063. font-size:14px;
  7064. color:#666666;
  7065. line-height:22px;
  7066. }
  7067. #u27507 {
  7068. border-width:0px;
  7069. position:absolute;
  7070. left:1688px;
  7071. top:643px;
  7072. width:57px;
  7073. height:22px;
  7074. display:flex;
  7075. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7076. font-weight:400;
  7077. font-style:normal;
  7078. font-size:14px;
  7079. color:#666666;
  7080. line-height:22px;
  7081. }
  7082. #u27507 .text {
  7083. position:absolute;
  7084. align-self:flex-start;
  7085. padding:0px 0px 0px 0px;
  7086. box-sizing:border-box;
  7087. width:100%;
  7088. }
  7089. #u27507_text {
  7090. border-width:0px;
  7091. white-space:nowrap;
  7092. text-transform:none;
  7093. }
  7094. #u27508 label {
  7095. left:0px;
  7096. width:100%;
  7097. }
  7098. #u27508_img {
  7099. border-width:0px;
  7100. position:absolute;
  7101. left:0px;
  7102. top:4px;
  7103. width:12px;
  7104. height:12px;
  7105. }
  7106. #u27508 {
  7107. border-width:0px;
  7108. position:absolute;
  7109. left:1763px;
  7110. top:644px;
  7111. width:100px;
  7112. height:20px;
  7113. display:flex;
  7114. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7115. font-weight:400;
  7116. font-style:normal;
  7117. font-size:14px;
  7118. }
  7119. #u27508 .text {
  7120. position:absolute;
  7121. align-self:center;
  7122. padding:0px 2px 0px 2px;
  7123. box-sizing:border-box;
  7124. }
  7125. #u27508_img.selected {
  7126. }
  7127. #u27508.selected {
  7128. }
  7129. #u27508_img.disabled {
  7130. }
  7131. #u27508.disabled {
  7132. }
  7133. #u27508_img.selectedDisabled {
  7134. }
  7135. #u27508.selectedDisabled {
  7136. }
  7137. #u27508_text {
  7138. border-width:0px;
  7139. position:absolute;
  7140. left:14px;
  7141. top:0px;
  7142. width:84px;
  7143. word-wrap:break-word;
  7144. text-transform:none;
  7145. }
  7146. #u27508_input {
  7147. border-width:0px;
  7148. position:absolute;
  7149. left:0px;
  7150. top:0px;
  7151. width:0px;
  7152. height:0px;
  7153. opacity:0;
  7154. }
  7155. #u27509 label {
  7156. left:0px;
  7157. width:100%;
  7158. }
  7159. #u27509_img {
  7160. border-width:0px;
  7161. position:absolute;
  7162. left:0px;
  7163. top:4px;
  7164. width:12px;
  7165. height:12px;
  7166. }
  7167. #u27509 {
  7168. border-width:0px;
  7169. position:absolute;
  7170. left:1863px;
  7171. top:644px;
  7172. width:100px;
  7173. height:20px;
  7174. display:flex;
  7175. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7176. font-weight:400;
  7177. font-style:normal;
  7178. font-size:14px;
  7179. }
  7180. #u27509 .text {
  7181. position:absolute;
  7182. align-self:center;
  7183. padding:0px 2px 0px 2px;
  7184. box-sizing:border-box;
  7185. }
  7186. #u27509_img.selected {
  7187. }
  7188. #u27509.selected {
  7189. }
  7190. #u27509_img.disabled {
  7191. }
  7192. #u27509.disabled {
  7193. }
  7194. #u27509_img.selectedDisabled {
  7195. }
  7196. #u27509.selectedDisabled {
  7197. }
  7198. #u27509_text {
  7199. border-width:0px;
  7200. position:absolute;
  7201. left:14px;
  7202. top:0px;
  7203. width:84px;
  7204. word-wrap:break-word;
  7205. text-transform:none;
  7206. }
  7207. #u27509_input {
  7208. border-width:0px;
  7209. position:absolute;
  7210. left:0px;
  7211. top:0px;
  7212. width:0px;
  7213. height:0px;
  7214. opacity:0;
  7215. }
  7216. #u27510 label {
  7217. left:0px;
  7218. width:100%;
  7219. }
  7220. #u27510_img {
  7221. border-width:0px;
  7222. position:absolute;
  7223. left:0px;
  7224. top:4px;
  7225. width:12px;
  7226. height:12px;
  7227. }
  7228. #u27510 {
  7229. border-width:0px;
  7230. position:absolute;
  7231. left:1963px;
  7232. top:644px;
  7233. width:100px;
  7234. height:20px;
  7235. display:flex;
  7236. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7237. font-weight:400;
  7238. font-style:normal;
  7239. font-size:14px;
  7240. }
  7241. #u27510 .text {
  7242. position:absolute;
  7243. align-self:center;
  7244. padding:0px 2px 0px 2px;
  7245. box-sizing:border-box;
  7246. }
  7247. #u27510_img.selected {
  7248. }
  7249. #u27510.selected {
  7250. }
  7251. #u27510_img.disabled {
  7252. }
  7253. #u27510.disabled {
  7254. }
  7255. #u27510_img.selectedDisabled {
  7256. }
  7257. #u27510.selectedDisabled {
  7258. }
  7259. #u27510_text {
  7260. border-width:0px;
  7261. position:absolute;
  7262. left:14px;
  7263. top:0px;
  7264. width:84px;
  7265. word-wrap:break-word;
  7266. text-transform:none;
  7267. }
  7268. #u27510_input {
  7269. border-width:0px;
  7270. position:absolute;
  7271. left:0px;
  7272. top:0px;
  7273. width:0px;
  7274. height:0px;
  7275. opacity:0;
  7276. }
  7277. #u27511_div {
  7278. border-width:0px;
  7279. position:absolute;
  7280. left:0px;
  7281. top:0px;
  7282. width:57px;
  7283. height:22px;
  7284. background:inherit;
  7285. background-color:rgba(255, 255, 255, 0);
  7286. border:none;
  7287. border-radius:0px;
  7288. -moz-box-shadow:none;
  7289. -webkit-box-shadow:none;
  7290. box-shadow:none;
  7291. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7292. font-weight:400;
  7293. font-style:normal;
  7294. font-size:14px;
  7295. color:#666666;
  7296. line-height:22px;
  7297. }
  7298. #u27511 {
  7299. border-width:0px;
  7300. position:absolute;
  7301. left:1688px;
  7302. top:684px;
  7303. width:57px;
  7304. height:22px;
  7305. display:flex;
  7306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7307. font-weight:400;
  7308. font-style:normal;
  7309. font-size:14px;
  7310. color:#666666;
  7311. line-height:22px;
  7312. }
  7313. #u27511 .text {
  7314. position:absolute;
  7315. align-self:flex-start;
  7316. padding:0px 0px 0px 0px;
  7317. box-sizing:border-box;
  7318. width:100%;
  7319. }
  7320. #u27511_text {
  7321. border-width:0px;
  7322. white-space:nowrap;
  7323. text-transform:none;
  7324. }
  7325. #u27512 {
  7326. border-width:0px;
  7327. position:absolute;
  7328. left:0px;
  7329. top:0px;
  7330. width:0px;
  7331. height:0px;
  7332. }
  7333. #u27513_div {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:0px;
  7337. top:0px;
  7338. width:280px;
  7339. height:30px;
  7340. background:inherit;
  7341. background-color:rgba(255, 255, 255, 1);
  7342. box-sizing:border-box;
  7343. border-width:1px;
  7344. border-style:solid;
  7345. border-color:rgba(215, 215, 215, 1);
  7346. border-radius:4px;
  7347. -moz-box-shadow:none;
  7348. -webkit-box-shadow:none;
  7349. box-shadow:none;
  7350. font-size:14px;
  7351. }
  7352. #u27513 {
  7353. border-width:0px;
  7354. position:absolute;
  7355. left:1763px;
  7356. top:680px;
  7357. width:280px;
  7358. height:30px;
  7359. display:flex;
  7360. font-size:14px;
  7361. }
  7362. #u27513 .text {
  7363. position:absolute;
  7364. align-self:center;
  7365. padding:2px 2px 2px 2px;
  7366. box-sizing:border-box;
  7367. width:100%;
  7368. }
  7369. #u27513_text {
  7370. border-width:0px;
  7371. word-wrap:break-word;
  7372. text-transform:none;
  7373. visibility:hidden;
  7374. }
  7375. #u27514_input {
  7376. position:absolute;
  7377. left:0px;
  7378. top:0px;
  7379. width:268px;
  7380. height:23px;
  7381. padding:2px 2px 2px 2px;
  7382. font-family:'ArialMT', 'Arial', sans-serif;
  7383. font-weight:400;
  7384. font-style:normal;
  7385. font-size:14px;
  7386. letter-spacing:normal;
  7387. color:#AAAAAA;
  7388. vertical-align:none;
  7389. text-align:left;
  7390. text-transform:none;
  7391. background-color:transparent;
  7392. border-color:transparent;
  7393. }
  7394. #u27514_input.disabled {
  7395. position:absolute;
  7396. left:0px;
  7397. top:0px;
  7398. width:268px;
  7399. height:23px;
  7400. padding:2px 2px 2px 2px;
  7401. font-family:'ArialMT', 'Arial', sans-serif;
  7402. font-weight:400;
  7403. font-style:normal;
  7404. font-size:14px;
  7405. letter-spacing:normal;
  7406. color:#AAAAAA;
  7407. vertical-align:none;
  7408. text-align:left;
  7409. text-transform:none;
  7410. background-color:transparent;
  7411. border-color:transparent;
  7412. }
  7413. #u27514_div {
  7414. border-width:0px;
  7415. position:absolute;
  7416. left:0px;
  7417. top:0px;
  7418. width:268px;
  7419. height:23px;
  7420. background:inherit;
  7421. background-color:rgba(255, 255, 255, 1);
  7422. border:none;
  7423. border-radius:0px;
  7424. -moz-box-shadow:none;
  7425. -webkit-box-shadow:none;
  7426. box-shadow:none;
  7427. font-size:14px;
  7428. color:#AAAAAA;
  7429. }
  7430. #u27514 {
  7431. border-width:0px;
  7432. position:absolute;
  7433. left:1771px;
  7434. top:682px;
  7435. width:268px;
  7436. height:23px;
  7437. display:flex;
  7438. font-size:14px;
  7439. color:#AAAAAA;
  7440. }
  7441. #u27514 .text {
  7442. position:absolute;
  7443. align-self:flex-start;
  7444. padding:2px 2px 2px 2px;
  7445. box-sizing:border-box;
  7446. width:100%;
  7447. }
  7448. #u27514_div.disabled {
  7449. border-width:0px;
  7450. position:absolute;
  7451. left:0px;
  7452. top:0px;
  7453. width:268px;
  7454. height:23px;
  7455. background:inherit;
  7456. background-color:rgba(240, 240, 240, 1);
  7457. border:none;
  7458. border-radius:0px;
  7459. -moz-box-shadow:none;
  7460. -webkit-box-shadow:none;
  7461. box-shadow:none;
  7462. font-size:14px;
  7463. color:#AAAAAA;
  7464. }
  7465. #u27514.disabled {
  7466. }
  7467. .u27514_input_option {
  7468. font-size:14px;
  7469. }
  7470. #u27515_div {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:0px;
  7474. top:0px;
  7475. width:385px;
  7476. height:51px;
  7477. background:inherit;
  7478. background-color:rgba(255, 255, 255, 0);
  7479. border:none;
  7480. border-radius:0px;
  7481. -moz-box-shadow:none;
  7482. -webkit-box-shadow:none;
  7483. box-shadow:none;
  7484. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7485. font-weight:400;
  7486. font-style:normal;
  7487. font-size:12px;
  7488. color:#1890FF;
  7489. }
  7490. #u27515 {
  7491. border-width:0px;
  7492. position:absolute;
  7493. left:1688px;
  7494. top:720px;
  7495. width:385px;
  7496. height:51px;
  7497. display:flex;
  7498. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7499. font-weight:400;
  7500. font-style:normal;
  7501. font-size:12px;
  7502. color:#1890FF;
  7503. }
  7504. #u27515 .text {
  7505. position:absolute;
  7506. align-self:flex-start;
  7507. padding:0px 0px 0px 0px;
  7508. box-sizing:border-box;
  7509. width:100%;
  7510. }
  7511. #u27515_text {
  7512. border-width:0px;
  7513. word-wrap:break-word;
  7514. text-transform:none;
  7515. }
  7516. #u27516 {
  7517. border-width:0px;
  7518. position:absolute;
  7519. left:0px;
  7520. top:0px;
  7521. width:0px;
  7522. height:0px;
  7523. }
  7524. #u27517_div {
  7525. border-width:0px;
  7526. position:absolute;
  7527. left:0px;
  7528. top:0px;
  7529. width:440px;
  7530. height:300px;
  7531. background:inherit;
  7532. background-color:rgba(255, 255, 255, 1);
  7533. border:none;
  7534. border-radius:4px;
  7535. -moz-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7536. -webkit-box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7537. box-shadow:0px 4px 12px rgba(0, 0, 0, 0.447058823529412);
  7538. font-family:'Microsoft YaHei', sans-serif;
  7539. font-weight:400;
  7540. font-style:normal;
  7541. }
  7542. #u27517 {
  7543. border-width:0px;
  7544. position:absolute;
  7545. left:1661px;
  7546. top:857px;
  7547. width:440px;
  7548. height:300px;
  7549. display:flex;
  7550. font-family:'Microsoft YaHei', sans-serif;
  7551. font-weight:400;
  7552. font-style:normal;
  7553. }
  7554. #u27517 .text {
  7555. position:absolute;
  7556. align-self:center;
  7557. padding:2px 2px 2px 2px;
  7558. box-sizing:border-box;
  7559. width:100%;
  7560. }
  7561. #u27517_text {
  7562. border-width:0px;
  7563. word-wrap:break-word;
  7564. text-transform:none;
  7565. visibility:hidden;
  7566. }
  7567. #u27518_div {
  7568. border-width:0px;
  7569. position:absolute;
  7570. left:0px;
  7571. top:0px;
  7572. width:57px;
  7573. height:22px;
  7574. background:inherit;
  7575. background-color:rgba(255, 255, 255, 0);
  7576. border:none;
  7577. border-radius:0px;
  7578. -moz-box-shadow:none;
  7579. -webkit-box-shadow:none;
  7580. box-shadow:none;
  7581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7582. font-weight:400;
  7583. font-style:normal;
  7584. font-size:14px;
  7585. color:#666666;
  7586. line-height:22px;
  7587. }
  7588. #u27518 {
  7589. border-width:0px;
  7590. position:absolute;
  7591. left:1688px;
  7592. top:928px;
  7593. width:57px;
  7594. height:22px;
  7595. display:flex;
  7596. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7597. font-weight:400;
  7598. font-style:normal;
  7599. font-size:14px;
  7600. color:#666666;
  7601. line-height:22px;
  7602. }
  7603. #u27518 .text {
  7604. position:absolute;
  7605. align-self:flex-start;
  7606. padding:0px 0px 0px 0px;
  7607. box-sizing:border-box;
  7608. width:100%;
  7609. }
  7610. #u27518_text {
  7611. border-width:0px;
  7612. white-space:nowrap;
  7613. text-transform:none;
  7614. }
  7615. #u27519_div {
  7616. border-width:0px;
  7617. position:absolute;
  7618. left:0px;
  7619. top:0px;
  7620. width:73px;
  7621. height:21px;
  7622. background:inherit;
  7623. background-color:rgba(255, 255, 255, 0);
  7624. border:none;
  7625. border-radius:0px;
  7626. -moz-box-shadow:none;
  7627. -webkit-box-shadow:none;
  7628. box-shadow:none;
  7629. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7630. font-weight:650;
  7631. font-style:normal;
  7632. font-size:18px;
  7633. color:#000000;
  7634. line-height:22px;
  7635. }
  7636. #u27519 {
  7637. border-width:0px;
  7638. position:absolute;
  7639. left:1688px;
  7640. top:882px;
  7641. width:73px;
  7642. height:21px;
  7643. display:flex;
  7644. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  7645. font-weight:650;
  7646. font-style:normal;
  7647. font-size:18px;
  7648. color:#000000;
  7649. line-height:22px;
  7650. }
  7651. #u27519 .text {
  7652. position:absolute;
  7653. align-self:flex-start;
  7654. padding:0px 0px 0px 0px;
  7655. box-sizing:border-box;
  7656. width:100%;
  7657. }
  7658. #u27519_text {
  7659. border-width:0px;
  7660. white-space:nowrap;
  7661. text-transform:none;
  7662. }
  7663. #u27520_div {
  7664. border-width:0px;
  7665. position:absolute;
  7666. left:0px;
  7667. top:0px;
  7668. width:61px;
  7669. height:32px;
  7670. background:inherit;
  7671. background-color:rgba(24, 144, 255, 1);
  7672. border:none;
  7673. border-radius:4px;
  7674. -moz-box-shadow:none;
  7675. -webkit-box-shadow:none;
  7676. box-shadow:none;
  7677. font-family:'Microsoft YaHei', sans-serif;
  7678. font-weight:400;
  7679. font-style:normal;
  7680. font-size:14px;
  7681. color:#FFFFFF;
  7682. }
  7683. #u27520 {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:2020px;
  7687. top:1114px;
  7688. width:61px;
  7689. height:32px;
  7690. display:flex;
  7691. font-family:'Microsoft YaHei', sans-serif;
  7692. font-weight:400;
  7693. font-style:normal;
  7694. font-size:14px;
  7695. color:#FFFFFF;
  7696. }
  7697. #u27520 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:2px 16px 2px 16px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u27520_text {
  7705. border-width:0px;
  7706. white-space:nowrap;
  7707. text-transform:none;
  7708. }
  7709. #u27521_div {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:66px;
  7715. height:32px;
  7716. background:inherit;
  7717. background-color:rgba(255, 255, 255, 1);
  7718. box-sizing:border-box;
  7719. border-width:1px;
  7720. border-style:solid;
  7721. border-color:rgba(217, 217, 217, 1);
  7722. border-radius:4px;
  7723. -moz-box-shadow:none;
  7724. -webkit-box-shadow:none;
  7725. box-shadow:none;
  7726. font-family:'Microsoft YaHei', sans-serif;
  7727. font-weight:400;
  7728. font-style:normal;
  7729. font-size:14px;
  7730. color:rgba(0, 0, 0, 0.647058823529412);
  7731. line-height:21px;
  7732. }
  7733. #u27521 {
  7734. border-width:0px;
  7735. position:absolute;
  7736. left:1938px;
  7737. top:1114px;
  7738. width:66px;
  7739. height:32px;
  7740. display:flex;
  7741. font-family:'Microsoft YaHei', sans-serif;
  7742. font-weight:400;
  7743. font-style:normal;
  7744. font-size:14px;
  7745. color:rgba(0, 0, 0, 0.647058823529412);
  7746. line-height:21px;
  7747. }
  7748. #u27521 .text {
  7749. position:absolute;
  7750. align-self:center;
  7751. padding:2px 16px 2px 16px;
  7752. box-sizing:border-box;
  7753. width:100%;
  7754. }
  7755. #u27521_text {
  7756. border-width:0px;
  7757. white-space:nowrap;
  7758. text-transform:none;
  7759. }
  7760. #u27522 label {
  7761. left:0px;
  7762. width:100%;
  7763. }
  7764. #u27522_img {
  7765. border-width:0px;
  7766. position:absolute;
  7767. left:0px;
  7768. top:4px;
  7769. width:12px;
  7770. height:12px;
  7771. }
  7772. #u27522 {
  7773. border-width:0px;
  7774. position:absolute;
  7775. left:1763px;
  7776. top:929px;
  7777. width:100px;
  7778. height:20px;
  7779. display:flex;
  7780. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7781. font-weight:400;
  7782. font-style:normal;
  7783. font-size:14px;
  7784. }
  7785. #u27522 .text {
  7786. position:absolute;
  7787. align-self:center;
  7788. padding:0px 2px 0px 2px;
  7789. box-sizing:border-box;
  7790. }
  7791. #u27522_img.selected {
  7792. }
  7793. #u27522.selected {
  7794. }
  7795. #u27522_img.disabled {
  7796. }
  7797. #u27522.disabled {
  7798. }
  7799. #u27522_img.selectedDisabled {
  7800. }
  7801. #u27522.selectedDisabled {
  7802. }
  7803. #u27522_text {
  7804. border-width:0px;
  7805. position:absolute;
  7806. left:14px;
  7807. top:0px;
  7808. width:84px;
  7809. word-wrap:break-word;
  7810. text-transform:none;
  7811. }
  7812. #u27522_input {
  7813. border-width:0px;
  7814. position:absolute;
  7815. left:0px;
  7816. top:0px;
  7817. width:0px;
  7818. height:0px;
  7819. opacity:0;
  7820. }
  7821. #u27523 label {
  7822. left:0px;
  7823. width:100%;
  7824. }
  7825. #u27523_img {
  7826. border-width:0px;
  7827. position:absolute;
  7828. left:0px;
  7829. top:4px;
  7830. width:12px;
  7831. height:12px;
  7832. }
  7833. #u27523 {
  7834. border-width:0px;
  7835. position:absolute;
  7836. left:1863px;
  7837. top:929px;
  7838. width:100px;
  7839. height:20px;
  7840. display:flex;
  7841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7842. font-weight:400;
  7843. font-style:normal;
  7844. font-size:14px;
  7845. }
  7846. #u27523 .text {
  7847. position:absolute;
  7848. align-self:center;
  7849. padding:0px 2px 0px 2px;
  7850. box-sizing:border-box;
  7851. }
  7852. #u27523_img.selected {
  7853. }
  7854. #u27523.selected {
  7855. }
  7856. #u27523_img.disabled {
  7857. }
  7858. #u27523.disabled {
  7859. }
  7860. #u27523_img.selectedDisabled {
  7861. }
  7862. #u27523.selectedDisabled {
  7863. }
  7864. #u27523_text {
  7865. border-width:0px;
  7866. position:absolute;
  7867. left:14px;
  7868. top:0px;
  7869. width:84px;
  7870. word-wrap:break-word;
  7871. text-transform:none;
  7872. }
  7873. #u27523_input {
  7874. border-width:0px;
  7875. position:absolute;
  7876. left:0px;
  7877. top:0px;
  7878. width:0px;
  7879. height:0px;
  7880. opacity:0;
  7881. }
  7882. #u27524_div {
  7883. border-width:0px;
  7884. position:absolute;
  7885. left:0px;
  7886. top:0px;
  7887. width:57px;
  7888. height:22px;
  7889. background:inherit;
  7890. background-color:rgba(255, 255, 255, 0);
  7891. border:none;
  7892. border-radius:0px;
  7893. -moz-box-shadow:none;
  7894. -webkit-box-shadow:none;
  7895. box-shadow:none;
  7896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7897. font-weight:400;
  7898. font-style:normal;
  7899. font-size:14px;
  7900. color:#666666;
  7901. line-height:22px;
  7902. }
  7903. #u27524 {
  7904. border-width:0px;
  7905. position:absolute;
  7906. left:1688px;
  7907. top:969px;
  7908. width:57px;
  7909. height:22px;
  7910. display:flex;
  7911. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7912. font-weight:400;
  7913. font-style:normal;
  7914. font-size:14px;
  7915. color:#666666;
  7916. line-height:22px;
  7917. }
  7918. #u27524 .text {
  7919. position:absolute;
  7920. align-self:flex-start;
  7921. padding:0px 0px 0px 0px;
  7922. box-sizing:border-box;
  7923. width:100%;
  7924. }
  7925. #u27524_text {
  7926. border-width:0px;
  7927. white-space:nowrap;
  7928. text-transform:none;
  7929. }
  7930. #u27525 label {
  7931. left:0px;
  7932. width:100%;
  7933. }
  7934. #u27525_img {
  7935. border-width:0px;
  7936. position:absolute;
  7937. left:0px;
  7938. top:4px;
  7939. width:12px;
  7940. height:12px;
  7941. }
  7942. #u27525 {
  7943. border-width:0px;
  7944. position:absolute;
  7945. left:1763px;
  7946. top:970px;
  7947. width:100px;
  7948. height:20px;
  7949. display:flex;
  7950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7951. font-weight:400;
  7952. font-style:normal;
  7953. font-size:14px;
  7954. }
  7955. #u27525 .text {
  7956. position:absolute;
  7957. align-self:center;
  7958. padding:0px 2px 0px 2px;
  7959. box-sizing:border-box;
  7960. }
  7961. #u27525_img.selected {
  7962. }
  7963. #u27525.selected {
  7964. }
  7965. #u27525_img.disabled {
  7966. }
  7967. #u27525.disabled {
  7968. }
  7969. #u27525_img.selectedDisabled {
  7970. }
  7971. #u27525.selectedDisabled {
  7972. }
  7973. #u27525_text {
  7974. border-width:0px;
  7975. position:absolute;
  7976. left:14px;
  7977. top:0px;
  7978. width:84px;
  7979. word-wrap:break-word;
  7980. text-transform:none;
  7981. }
  7982. #u27525_input {
  7983. border-width:0px;
  7984. position:absolute;
  7985. left:0px;
  7986. top:0px;
  7987. width:0px;
  7988. height:0px;
  7989. opacity:0;
  7990. }
  7991. #u27526 label {
  7992. left:0px;
  7993. width:100%;
  7994. }
  7995. #u27526_img {
  7996. border-width:0px;
  7997. position:absolute;
  7998. left:0px;
  7999. top:4px;
  8000. width:12px;
  8001. height:12px;
  8002. }
  8003. #u27526 {
  8004. border-width:0px;
  8005. position:absolute;
  8006. left:1863px;
  8007. top:970px;
  8008. width:100px;
  8009. height:20px;
  8010. display:flex;
  8011. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8012. font-weight:400;
  8013. font-style:normal;
  8014. font-size:14px;
  8015. }
  8016. #u27526 .text {
  8017. position:absolute;
  8018. align-self:center;
  8019. padding:0px 2px 0px 2px;
  8020. box-sizing:border-box;
  8021. }
  8022. #u27526_img.selected {
  8023. }
  8024. #u27526.selected {
  8025. }
  8026. #u27526_img.disabled {
  8027. }
  8028. #u27526.disabled {
  8029. }
  8030. #u27526_img.selectedDisabled {
  8031. }
  8032. #u27526.selectedDisabled {
  8033. }
  8034. #u27526_text {
  8035. border-width:0px;
  8036. position:absolute;
  8037. left:14px;
  8038. top:0px;
  8039. width:84px;
  8040. word-wrap:break-word;
  8041. text-transform:none;
  8042. }
  8043. #u27526_input {
  8044. border-width:0px;
  8045. position:absolute;
  8046. left:0px;
  8047. top:0px;
  8048. width:0px;
  8049. height:0px;
  8050. opacity:0;
  8051. }
  8052. #u27527 label {
  8053. left:0px;
  8054. width:100%;
  8055. }
  8056. #u27527_img {
  8057. border-width:0px;
  8058. position:absolute;
  8059. left:0px;
  8060. top:4px;
  8061. width:12px;
  8062. height:12px;
  8063. }
  8064. #u27527 {
  8065. border-width:0px;
  8066. position:absolute;
  8067. left:1963px;
  8068. top:970px;
  8069. width:100px;
  8070. height:20px;
  8071. display:flex;
  8072. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8073. font-weight:400;
  8074. font-style:normal;
  8075. font-size:14px;
  8076. }
  8077. #u27527 .text {
  8078. position:absolute;
  8079. align-self:center;
  8080. padding:0px 2px 0px 2px;
  8081. box-sizing:border-box;
  8082. }
  8083. #u27527_img.selected {
  8084. }
  8085. #u27527.selected {
  8086. }
  8087. #u27527_img.disabled {
  8088. }
  8089. #u27527.disabled {
  8090. }
  8091. #u27527_img.selectedDisabled {
  8092. }
  8093. #u27527.selectedDisabled {
  8094. }
  8095. #u27527_text {
  8096. border-width:0px;
  8097. position:absolute;
  8098. left:14px;
  8099. top:0px;
  8100. width:84px;
  8101. word-wrap:break-word;
  8102. text-transform:none;
  8103. }
  8104. #u27527_input {
  8105. border-width:0px;
  8106. position:absolute;
  8107. left:0px;
  8108. top:0px;
  8109. width:0px;
  8110. height:0px;
  8111. opacity:0;
  8112. }
  8113. #u27528_div {
  8114. border-width:0px;
  8115. position:absolute;
  8116. left:0px;
  8117. top:0px;
  8118. width:57px;
  8119. height:22px;
  8120. background:inherit;
  8121. background-color:rgba(255, 255, 255, 0);
  8122. border:none;
  8123. border-radius:0px;
  8124. -moz-box-shadow:none;
  8125. -webkit-box-shadow:none;
  8126. box-shadow:none;
  8127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8128. font-weight:400;
  8129. font-style:normal;
  8130. font-size:14px;
  8131. color:#666666;
  8132. line-height:22px;
  8133. }
  8134. #u27528 {
  8135. border-width:0px;
  8136. position:absolute;
  8137. left:1688px;
  8138. top:1010px;
  8139. width:57px;
  8140. height:22px;
  8141. display:flex;
  8142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8143. font-weight:400;
  8144. font-style:normal;
  8145. font-size:14px;
  8146. color:#666666;
  8147. line-height:22px;
  8148. }
  8149. #u27528 .text {
  8150. position:absolute;
  8151. align-self:flex-start;
  8152. padding:0px 0px 0px 0px;
  8153. box-sizing:border-box;
  8154. width:100%;
  8155. }
  8156. #u27528_text {
  8157. border-width:0px;
  8158. white-space:nowrap;
  8159. text-transform:none;
  8160. }
  8161. #u27529 {
  8162. border-width:0px;
  8163. position:absolute;
  8164. left:0px;
  8165. top:0px;
  8166. width:0px;
  8167. height:0px;
  8168. }
  8169. #u27530_div {
  8170. border-width:0px;
  8171. position:absolute;
  8172. left:0px;
  8173. top:0px;
  8174. width:280px;
  8175. height:30px;
  8176. background:inherit;
  8177. background-color:rgba(255, 255, 255, 1);
  8178. box-sizing:border-box;
  8179. border-width:1px;
  8180. border-style:solid;
  8181. border-color:rgba(215, 215, 215, 1);
  8182. border-radius:4px;
  8183. -moz-box-shadow:none;
  8184. -webkit-box-shadow:none;
  8185. box-shadow:none;
  8186. font-size:14px;
  8187. }
  8188. #u27530 {
  8189. border-width:0px;
  8190. position:absolute;
  8191. left:1763px;
  8192. top:1006px;
  8193. width:280px;
  8194. height:30px;
  8195. display:flex;
  8196. font-size:14px;
  8197. }
  8198. #u27530 .text {
  8199. position:absolute;
  8200. align-self:center;
  8201. padding:2px 2px 2px 2px;
  8202. box-sizing:border-box;
  8203. width:100%;
  8204. }
  8205. #u27530_text {
  8206. border-width:0px;
  8207. word-wrap:break-word;
  8208. text-transform:none;
  8209. visibility:hidden;
  8210. }
  8211. #u27531_input {
  8212. position:absolute;
  8213. left:0px;
  8214. top:0px;
  8215. width:268px;
  8216. height:23px;
  8217. padding:2px 2px 2px 2px;
  8218. font-family:'ArialMT', 'Arial', sans-serif;
  8219. font-weight:400;
  8220. font-style:normal;
  8221. font-size:14px;
  8222. letter-spacing:normal;
  8223. color:#AAAAAA;
  8224. vertical-align:none;
  8225. text-align:left;
  8226. text-transform:none;
  8227. background-color:transparent;
  8228. border-color:transparent;
  8229. }
  8230. #u27531_input.disabled {
  8231. position:absolute;
  8232. left:0px;
  8233. top:0px;
  8234. width:268px;
  8235. height:23px;
  8236. padding:2px 2px 2px 2px;
  8237. font-family:'ArialMT', 'Arial', sans-serif;
  8238. font-weight:400;
  8239. font-style:normal;
  8240. font-size:14px;
  8241. letter-spacing:normal;
  8242. color:#AAAAAA;
  8243. vertical-align:none;
  8244. text-align:left;
  8245. text-transform:none;
  8246. background-color:transparent;
  8247. border-color:transparent;
  8248. }
  8249. #u27531_div {
  8250. border-width:0px;
  8251. position:absolute;
  8252. left:0px;
  8253. top:0px;
  8254. width:268px;
  8255. height:23px;
  8256. background:inherit;
  8257. background-color:rgba(255, 255, 255, 1);
  8258. border:none;
  8259. border-radius:0px;
  8260. -moz-box-shadow:none;
  8261. -webkit-box-shadow:none;
  8262. box-shadow:none;
  8263. font-size:14px;
  8264. color:#AAAAAA;
  8265. }
  8266. #u27531 {
  8267. border-width:0px;
  8268. position:absolute;
  8269. left:1771px;
  8270. top:1008px;
  8271. width:268px;
  8272. height:23px;
  8273. display:flex;
  8274. font-size:14px;
  8275. color:#AAAAAA;
  8276. }
  8277. #u27531 .text {
  8278. position:absolute;
  8279. align-self:flex-start;
  8280. padding:2px 2px 2px 2px;
  8281. box-sizing:border-box;
  8282. width:100%;
  8283. }
  8284. #u27531_div.disabled {
  8285. border-width:0px;
  8286. position:absolute;
  8287. left:0px;
  8288. top:0px;
  8289. width:268px;
  8290. height:23px;
  8291. background:inherit;
  8292. background-color:rgba(240, 240, 240, 1);
  8293. border:none;
  8294. border-radius:0px;
  8295. -moz-box-shadow:none;
  8296. -webkit-box-shadow:none;
  8297. box-shadow:none;
  8298. font-size:14px;
  8299. color:#AAAAAA;
  8300. }
  8301. #u27531.disabled {
  8302. }
  8303. .u27531_input_option {
  8304. font-size:14px;
  8305. }
  8306. #u27532_div {
  8307. border-width:0px;
  8308. position:absolute;
  8309. left:0px;
  8310. top:0px;
  8311. width:385px;
  8312. height:51px;
  8313. background:inherit;
  8314. background-color:rgba(255, 255, 255, 0);
  8315. border:none;
  8316. border-radius:0px;
  8317. -moz-box-shadow:none;
  8318. -webkit-box-shadow:none;
  8319. box-shadow:none;
  8320. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8321. font-weight:400;
  8322. font-style:normal;
  8323. font-size:12px;
  8324. color:#1890FF;
  8325. }
  8326. #u27532 {
  8327. border-width:0px;
  8328. position:absolute;
  8329. left:1688px;
  8330. top:1046px;
  8331. width:385px;
  8332. height:51px;
  8333. display:flex;
  8334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8335. font-weight:400;
  8336. font-style:normal;
  8337. font-size:12px;
  8338. color:#1890FF;
  8339. }
  8340. #u27532 .text {
  8341. position:absolute;
  8342. align-self:flex-start;
  8343. padding:0px 0px 0px 0px;
  8344. box-sizing:border-box;
  8345. width:100%;
  8346. }
  8347. #u27532_text {
  8348. border-width:0px;
  8349. word-wrap:break-word;
  8350. text-transform:none;
  8351. }
  8352. #u27533 {
  8353. border-width:0px;
  8354. position:absolute;
  8355. left:0px;
  8356. top:0px;
  8357. width:0px;
  8358. height:0px;
  8359. }
  8360. #u27534_div {
  8361. border-width:0px;
  8362. position:absolute;
  8363. left:0px;
  8364. top:0px;
  8365. width:200px;
  8366. height:1180px;
  8367. background:inherit;
  8368. background-color:rgba(255, 255, 255, 1);
  8369. border:none;
  8370. border-radius:0px;
  8371. -moz-box-shadow:none;
  8372. -webkit-box-shadow:none;
  8373. box-shadow:none;
  8374. }
  8375. #u27534 {
  8376. border-width:0px;
  8377. position:absolute;
  8378. left:120px;
  8379. top:50px;
  8380. width:200px;
  8381. height:1180px;
  8382. display:flex;
  8383. }
  8384. #u27534 .text {
  8385. position:absolute;
  8386. align-self:center;
  8387. padding:2px 2px 2px 2px;
  8388. box-sizing:border-box;
  8389. width:100%;
  8390. }
  8391. #u27534_text {
  8392. border-width:0px;
  8393. word-wrap:break-word;
  8394. text-transform:none;
  8395. visibility:hidden;
  8396. }
  8397. #u27535_div {
  8398. border-width:0px;
  8399. position:absolute;
  8400. left:0px;
  8401. top:0px;
  8402. width:200px;
  8403. height:60px;
  8404. background:inherit;
  8405. background-color:rgba(224, 231, 247, 1);
  8406. border:none;
  8407. border-radius:0px;
  8408. -moz-box-shadow:none;
  8409. -webkit-box-shadow:none;
  8410. box-shadow:none;
  8411. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8412. font-weight:500;
  8413. font-style:normal;
  8414. font-size:18px;
  8415. }
  8416. #u27535 {
  8417. border-width:0px;
  8418. position:absolute;
  8419. left:120px;
  8420. top:50px;
  8421. width:200px;
  8422. height:60px;
  8423. display:flex;
  8424. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  8425. font-weight:500;
  8426. font-style:normal;
  8427. font-size:18px;
  8428. }
  8429. #u27535 .text {
  8430. position:absolute;
  8431. align-self:center;
  8432. padding:0px 0px 0px 20px;
  8433. box-sizing:border-box;
  8434. width:100%;
  8435. }
  8436. #u27535_text {
  8437. border-width:0px;
  8438. word-wrap:break-word;
  8439. text-transform:none;
  8440. }
  8441. #u27536_div {
  8442. border-width:0px;
  8443. position:absolute;
  8444. left:0px;
  8445. top:0px;
  8446. width:97px;
  8447. height:22px;
  8448. background:inherit;
  8449. background-color:rgba(255, 255, 255, 0);
  8450. border:none;
  8451. border-radius:0px;
  8452. -moz-box-shadow:none;
  8453. -webkit-box-shadow:none;
  8454. box-shadow:none;
  8455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8456. font-weight:400;
  8457. font-style:normal;
  8458. font-size:16px;
  8459. }
  8460. #u27536 {
  8461. border-width:0px;
  8462. position:absolute;
  8463. left:146px;
  8464. top:167px;
  8465. width:97px;
  8466. height:22px;
  8467. display:flex;
  8468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8469. font-weight:400;
  8470. font-style:normal;
  8471. font-size:16px;
  8472. }
  8473. #u27536 .text {
  8474. position:absolute;
  8475. align-self:flex-start;
  8476. padding:0px 0px 0px 0px;
  8477. box-sizing:border-box;
  8478. width:100%;
  8479. }
  8480. #u27536_text {
  8481. border-width:0px;
  8482. white-space:nowrap;
  8483. text-transform:none;
  8484. }
  8485. #u27537_div {
  8486. border-width:0px;
  8487. position:absolute;
  8488. left:0px;
  8489. top:0px;
  8490. width:97px;
  8491. height:22px;
  8492. background:inherit;
  8493. background-color:rgba(255, 255, 255, 0);
  8494. border:none;
  8495. border-radius:0px;
  8496. -moz-box-shadow:none;
  8497. -webkit-box-shadow:none;
  8498. box-shadow:none;
  8499. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8500. font-weight:400;
  8501. font-style:normal;
  8502. font-size:16px;
  8503. }
  8504. #u27537 {
  8505. border-width:0px;
  8506. position:absolute;
  8507. left:146px;
  8508. top:209px;
  8509. width:97px;
  8510. height:22px;
  8511. display:flex;
  8512. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8513. font-weight:400;
  8514. font-style:normal;
  8515. font-size:16px;
  8516. }
  8517. #u27537 .text {
  8518. position:absolute;
  8519. align-self:flex-start;
  8520. padding:0px 0px 0px 0px;
  8521. box-sizing:border-box;
  8522. width:100%;
  8523. }
  8524. #u27537_text {
  8525. border-width:0px;
  8526. white-space:nowrap;
  8527. text-transform:none;
  8528. }
  8529. #u27538_div {
  8530. border-width:0px;
  8531. position:absolute;
  8532. left:0px;
  8533. top:0px;
  8534. width:73px;
  8535. height:17px;
  8536. background:inherit;
  8537. background-color:rgba(255, 255, 255, 0);
  8538. border:none;
  8539. border-radius:0px;
  8540. -moz-box-shadow:none;
  8541. -webkit-box-shadow:none;
  8542. box-shadow:none;
  8543. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8544. font-weight:400;
  8545. font-style:normal;
  8546. font-size:12px;
  8547. color:#AAAAAA;
  8548. }
  8549. #u27538 {
  8550. border-width:0px;
  8551. position:absolute;
  8552. left:146px;
  8553. top:130px;
  8554. width:73px;
  8555. height:17px;
  8556. display:flex;
  8557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8558. font-weight:400;
  8559. font-style:normal;
  8560. font-size:12px;
  8561. color:#AAAAAA;
  8562. }
  8563. #u27538 .text {
  8564. position:absolute;
  8565. align-self:flex-start;
  8566. padding:0px 0px 0px 0px;
  8567. box-sizing:border-box;
  8568. width:100%;
  8569. }
  8570. #u27538_text {
  8571. border-width:0px;
  8572. white-space:nowrap;
  8573. text-transform:none;
  8574. }
  8575. #u27539_div {
  8576. border-width:0px;
  8577. position:absolute;
  8578. left:0px;
  8579. top:0px;
  8580. width:73px;
  8581. height:17px;
  8582. background:inherit;
  8583. background-color:rgba(255, 255, 255, 0);
  8584. border:none;
  8585. border-radius:0px;
  8586. -moz-box-shadow:none;
  8587. -webkit-box-shadow:none;
  8588. box-shadow:none;
  8589. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8590. font-weight:400;
  8591. font-style:normal;
  8592. font-size:12px;
  8593. color:#AAAAAA;
  8594. }
  8595. #u27539 {
  8596. border-width:0px;
  8597. position:absolute;
  8598. left:146px;
  8599. top:397px;
  8600. width:73px;
  8601. height:17px;
  8602. display:flex;
  8603. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8604. font-weight:400;
  8605. font-style:normal;
  8606. font-size:12px;
  8607. color:#AAAAAA;
  8608. }
  8609. #u27539 .text {
  8610. position:absolute;
  8611. align-self:flex-start;
  8612. padding:0px 0px 0px 0px;
  8613. box-sizing:border-box;
  8614. width:100%;
  8615. }
  8616. #u27539_text {
  8617. border-width:0px;
  8618. white-space:nowrap;
  8619. text-transform:none;
  8620. }
  8621. #u27540_img {
  8622. border-width:0px;
  8623. position:absolute;
  8624. left:0px;
  8625. top:0px;
  8626. width:201px;
  8627. height:2px;
  8628. }
  8629. #u27540 {
  8630. border-width:0px;
  8631. position:absolute;
  8632. left:120px;
  8633. top:375px;
  8634. width:200px;
  8635. height:1px;
  8636. display:flex;
  8637. }
  8638. #u27540 .text {
  8639. position:absolute;
  8640. align-self:center;
  8641. padding:2px 2px 2px 2px;
  8642. box-sizing:border-box;
  8643. width:100%;
  8644. }
  8645. #u27540_text {
  8646. border-width:0px;
  8647. word-wrap:break-word;
  8648. text-transform:none;
  8649. visibility:hidden;
  8650. }
  8651. #u27541_div {
  8652. border-width:0px;
  8653. position:absolute;
  8654. left:0px;
  8655. top:0px;
  8656. width:97px;
  8657. height:22px;
  8658. background:inherit;
  8659. background-color:rgba(255, 255, 255, 0);
  8660. border:none;
  8661. border-radius:0px;
  8662. -moz-box-shadow:none;
  8663. -webkit-box-shadow:none;
  8664. box-shadow:none;
  8665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8666. font-weight:400;
  8667. font-style:normal;
  8668. font-size:16px;
  8669. }
  8670. #u27541 {
  8671. border-width:0px;
  8672. position:absolute;
  8673. left:146px;
  8674. top:435px;
  8675. width:97px;
  8676. height:22px;
  8677. display:flex;
  8678. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8679. font-weight:400;
  8680. font-style:normal;
  8681. font-size:16px;
  8682. }
  8683. #u27541 .text {
  8684. position:absolute;
  8685. align-self:flex-start;
  8686. padding:0px 0px 0px 0px;
  8687. box-sizing:border-box;
  8688. width:100%;
  8689. }
  8690. #u27541_text {
  8691. border-width:0px;
  8692. white-space:nowrap;
  8693. text-transform:none;
  8694. }
  8695. #u27542_div {
  8696. border-width:0px;
  8697. position:absolute;
  8698. left:0px;
  8699. top:0px;
  8700. width:97px;
  8701. height:22px;
  8702. background:inherit;
  8703. background-color:rgba(255, 255, 255, 0);
  8704. border:none;
  8705. border-radius:0px;
  8706. -moz-box-shadow:none;
  8707. -webkit-box-shadow:none;
  8708. box-shadow:none;
  8709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8710. font-weight:400;
  8711. font-style:normal;
  8712. font-size:16px;
  8713. }
  8714. #u27542 {
  8715. border-width:0px;
  8716. position:absolute;
  8717. left:146px;
  8718. top:477px;
  8719. width:97px;
  8720. height:22px;
  8721. display:flex;
  8722. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8723. font-weight:400;
  8724. font-style:normal;
  8725. font-size:16px;
  8726. }
  8727. #u27542 .text {
  8728. position:absolute;
  8729. align-self:flex-start;
  8730. padding:0px 0px 0px 0px;
  8731. box-sizing:border-box;
  8732. width:100%;
  8733. }
  8734. #u27542_text {
  8735. border-width:0px;
  8736. white-space:nowrap;
  8737. text-transform:none;
  8738. }
  8739. #u27543_div {
  8740. border-width:0px;
  8741. position:absolute;
  8742. left:0px;
  8743. top:0px;
  8744. width:97px;
  8745. height:22px;
  8746. background:inherit;
  8747. background-color:rgba(255, 255, 255, 0);
  8748. border:none;
  8749. border-radius:0px;
  8750. -moz-box-shadow:none;
  8751. -webkit-box-shadow:none;
  8752. box-shadow:none;
  8753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8754. font-weight:400;
  8755. font-style:normal;
  8756. font-size:16px;
  8757. }
  8758. #u27543 {
  8759. border-width:0px;
  8760. position:absolute;
  8761. left:146px;
  8762. top:251px;
  8763. width:97px;
  8764. height:22px;
  8765. display:flex;
  8766. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8767. font-weight:400;
  8768. font-style:normal;
  8769. font-size:16px;
  8770. }
  8771. #u27543 .text {
  8772. position:absolute;
  8773. align-self:flex-start;
  8774. padding:0px 0px 0px 0px;
  8775. box-sizing:border-box;
  8776. width:100%;
  8777. }
  8778. #u27543_text {
  8779. border-width:0px;
  8780. white-space:nowrap;
  8781. text-transform:none;
  8782. }
  8783. #u27544_div {
  8784. border-width:0px;
  8785. position:absolute;
  8786. left:0px;
  8787. top:0px;
  8788. width:97px;
  8789. height:22px;
  8790. background:inherit;
  8791. background-color:rgba(255, 255, 255, 0);
  8792. border:none;
  8793. border-radius:0px;
  8794. -moz-box-shadow:none;
  8795. -webkit-box-shadow:none;
  8796. box-shadow:none;
  8797. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8798. font-weight:400;
  8799. font-style:normal;
  8800. font-size:16px;
  8801. }
  8802. #u27544 {
  8803. border-width:0px;
  8804. position:absolute;
  8805. left:146px;
  8806. top:293px;
  8807. width:97px;
  8808. height:22px;
  8809. display:flex;
  8810. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8811. font-weight:400;
  8812. font-style:normal;
  8813. font-size:16px;
  8814. }
  8815. #u27544 .text {
  8816. position:absolute;
  8817. align-self:flex-start;
  8818. padding:0px 0px 0px 0px;
  8819. box-sizing:border-box;
  8820. width:100%;
  8821. }
  8822. #u27544_text {
  8823. border-width:0px;
  8824. white-space:nowrap;
  8825. text-transform:none;
  8826. }
  8827. #u27545_div {
  8828. border-width:0px;
  8829. position:absolute;
  8830. left:0px;
  8831. top:0px;
  8832. width:97px;
  8833. height:22px;
  8834. background:inherit;
  8835. background-color:rgba(255, 255, 255, 0);
  8836. border:none;
  8837. border-radius:0px;
  8838. -moz-box-shadow:none;
  8839. -webkit-box-shadow:none;
  8840. box-shadow:none;
  8841. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8842. font-weight:400;
  8843. font-style:normal;
  8844. font-size:16px;
  8845. }
  8846. #u27545 {
  8847. border-width:0px;
  8848. position:absolute;
  8849. left:146px;
  8850. top:519px;
  8851. width:97px;
  8852. height:22px;
  8853. display:flex;
  8854. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8855. font-weight:400;
  8856. font-style:normal;
  8857. font-size:16px;
  8858. }
  8859. #u27545 .text {
  8860. position:absolute;
  8861. align-self:flex-start;
  8862. padding:0px 0px 0px 0px;
  8863. box-sizing:border-box;
  8864. width:100%;
  8865. }
  8866. #u27545_text {
  8867. border-width:0px;
  8868. white-space:nowrap;
  8869. text-transform:none;
  8870. }
  8871. #u27546_div {
  8872. border-width:0px;
  8873. position:absolute;
  8874. left:0px;
  8875. top:0px;
  8876. width:97px;
  8877. height:22px;
  8878. background:inherit;
  8879. background-color:rgba(255, 255, 255, 0);
  8880. border:none;
  8881. border-radius:0px;
  8882. -moz-box-shadow:none;
  8883. -webkit-box-shadow:none;
  8884. box-shadow:none;
  8885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8886. font-weight:400;
  8887. font-style:normal;
  8888. font-size:16px;
  8889. }
  8890. #u27546 {
  8891. border-width:0px;
  8892. position:absolute;
  8893. left:146px;
  8894. top:561px;
  8895. width:97px;
  8896. height:22px;
  8897. display:flex;
  8898. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8899. font-weight:400;
  8900. font-style:normal;
  8901. font-size:16px;
  8902. }
  8903. #u27546 .text {
  8904. position:absolute;
  8905. align-self:flex-start;
  8906. padding:0px 0px 0px 0px;
  8907. box-sizing:border-box;
  8908. width:100%;
  8909. }
  8910. #u27546_text {
  8911. border-width:0px;
  8912. white-space:nowrap;
  8913. text-transform:none;
  8914. }
  8915. #u27547_div {
  8916. border-width:0px;
  8917. position:absolute;
  8918. left:0px;
  8919. top:0px;
  8920. width:122px;
  8921. height:22px;
  8922. background:inherit;
  8923. background-color:rgba(255, 255, 255, 0);
  8924. border:none;
  8925. border-radius:0px;
  8926. -moz-box-shadow:none;
  8927. -webkit-box-shadow:none;
  8928. box-shadow:none;
  8929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8930. font-weight:400;
  8931. font-style:normal;
  8932. font-size:16px;
  8933. }
  8934. #u27547 {
  8935. border-width:0px;
  8936. position:absolute;
  8937. left:146px;
  8938. top:603px;
  8939. width:122px;
  8940. height:22px;
  8941. display:flex;
  8942. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8943. font-weight:400;
  8944. font-style:normal;
  8945. font-size:16px;
  8946. }
  8947. #u27547 .text {
  8948. position:absolute;
  8949. align-self:flex-start;
  8950. padding:0px 0px 0px 0px;
  8951. box-sizing:border-box;
  8952. width:100%;
  8953. }
  8954. #u27547_text {
  8955. border-width:0px;
  8956. white-space:nowrap;
  8957. text-transform:none;
  8958. }
  8959. #u27548_div {
  8960. border-width:0px;
  8961. position:absolute;
  8962. left:0px;
  8963. top:0px;
  8964. width:49px;
  8965. height:17px;
  8966. background:inherit;
  8967. background-color:rgba(255, 255, 255, 0);
  8968. border:none;
  8969. border-radius:0px;
  8970. -moz-box-shadow:none;
  8971. -webkit-box-shadow:none;
  8972. box-shadow:none;
  8973. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8974. font-weight:400;
  8975. font-style:normal;
  8976. font-size:12px;
  8977. color:#AAAAAA;
  8978. }
  8979. #u27548 {
  8980. border-width:0px;
  8981. position:absolute;
  8982. left:146px;
  8983. top:809px;
  8984. width:49px;
  8985. height:17px;
  8986. display:flex;
  8987. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  8988. font-weight:400;
  8989. font-style:normal;
  8990. font-size:12px;
  8991. color:#AAAAAA;
  8992. }
  8993. #u27548 .text {
  8994. position:absolute;
  8995. align-self:flex-start;
  8996. padding:0px 0px 0px 0px;
  8997. box-sizing:border-box;
  8998. width:100%;
  8999. }
  9000. #u27548_text {
  9001. border-width:0px;
  9002. white-space:nowrap;
  9003. text-transform:none;
  9004. }
  9005. #u27549_img {
  9006. border-width:0px;
  9007. position:absolute;
  9008. left:0px;
  9009. top:0px;
  9010. width:201px;
  9011. height:2px;
  9012. }
  9013. #u27549 {
  9014. border-width:0px;
  9015. position:absolute;
  9016. left:120px;
  9017. top:787px;
  9018. width:200px;
  9019. height:1px;
  9020. display:flex;
  9021. }
  9022. #u27549 .text {
  9023. position:absolute;
  9024. align-self:center;
  9025. padding:2px 2px 2px 2px;
  9026. box-sizing:border-box;
  9027. width:100%;
  9028. }
  9029. #u27549_text {
  9030. border-width:0px;
  9031. word-wrap:break-word;
  9032. text-transform:none;
  9033. visibility:hidden;
  9034. }
  9035. #u27550_div {
  9036. border-width:0px;
  9037. position:absolute;
  9038. left:0px;
  9039. top:0px;
  9040. width:97px;
  9041. height:22px;
  9042. background:inherit;
  9043. background-color:rgba(255, 255, 255, 0);
  9044. border:none;
  9045. border-radius:0px;
  9046. -moz-box-shadow:none;
  9047. -webkit-box-shadow:none;
  9048. box-shadow:none;
  9049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9050. font-weight:400;
  9051. font-style:normal;
  9052. font-size:16px;
  9053. }
  9054. #u27550 {
  9055. border-width:0px;
  9056. position:absolute;
  9057. left:146px;
  9058. top:847px;
  9059. width:97px;
  9060. height:22px;
  9061. display:flex;
  9062. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9063. font-weight:400;
  9064. font-style:normal;
  9065. font-size:16px;
  9066. }
  9067. #u27550 .text {
  9068. position:absolute;
  9069. align-self:flex-start;
  9070. padding:0px 0px 0px 0px;
  9071. box-sizing:border-box;
  9072. width:100%;
  9073. }
  9074. #u27550_text {
  9075. border-width:0px;
  9076. white-space:nowrap;
  9077. text-transform:none;
  9078. }
  9079. #u27551_div {
  9080. border-width:0px;
  9081. position:absolute;
  9082. left:0px;
  9083. top:0px;
  9084. width:97px;
  9085. height:22px;
  9086. background:inherit;
  9087. background-color:rgba(255, 255, 255, 0);
  9088. border:none;
  9089. border-radius:0px;
  9090. -moz-box-shadow:none;
  9091. -webkit-box-shadow:none;
  9092. box-shadow:none;
  9093. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9094. font-weight:400;
  9095. font-style:normal;
  9096. font-size:16px;
  9097. }
  9098. #u27551 {
  9099. border-width:0px;
  9100. position:absolute;
  9101. left:146px;
  9102. top:889px;
  9103. width:97px;
  9104. height:22px;
  9105. display:flex;
  9106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9107. font-weight:400;
  9108. font-style:normal;
  9109. font-size:16px;
  9110. }
  9111. #u27551 .text {
  9112. position:absolute;
  9113. align-self:flex-start;
  9114. padding:0px 0px 0px 0px;
  9115. box-sizing:border-box;
  9116. width:100%;
  9117. }
  9118. #u27551_text {
  9119. border-width:0px;
  9120. white-space:nowrap;
  9121. text-transform:none;
  9122. }
  9123. #u27552_div {
  9124. border-width:0px;
  9125. position:absolute;
  9126. left:0px;
  9127. top:0px;
  9128. width:97px;
  9129. height:22px;
  9130. background:inherit;
  9131. background-color:rgba(255, 255, 255, 0);
  9132. border:none;
  9133. border-radius:0px;
  9134. -moz-box-shadow:none;
  9135. -webkit-box-shadow:none;
  9136. box-shadow:none;
  9137. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9138. font-weight:400;
  9139. font-style:normal;
  9140. font-size:16px;
  9141. }
  9142. #u27552 {
  9143. border-width:0px;
  9144. position:absolute;
  9145. left:146px;
  9146. top:335px;
  9147. width:97px;
  9148. height:22px;
  9149. display:flex;
  9150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9151. font-weight:400;
  9152. font-style:normal;
  9153. font-size:16px;
  9154. }
  9155. #u27552 .text {
  9156. position:absolute;
  9157. align-self:flex-start;
  9158. padding:0px 0px 0px 0px;
  9159. box-sizing:border-box;
  9160. width:100%;
  9161. }
  9162. #u27552_text {
  9163. border-width:0px;
  9164. white-space:nowrap;
  9165. text-transform:none;
  9166. }
  9167. #u27553_div {
  9168. border-width:0px;
  9169. position:absolute;
  9170. left:0px;
  9171. top:0px;
  9172. width:97px;
  9173. height:22px;
  9174. background:inherit;
  9175. background-color:rgba(255, 255, 255, 0);
  9176. border:none;
  9177. border-radius:0px;
  9178. -moz-box-shadow:none;
  9179. -webkit-box-shadow:none;
  9180. box-shadow:none;
  9181. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9182. font-weight:400;
  9183. font-style:normal;
  9184. font-size:16px;
  9185. }
  9186. #u27553 {
  9187. border-width:0px;
  9188. position:absolute;
  9189. left:146px;
  9190. top:931px;
  9191. width:97px;
  9192. height:22px;
  9193. display:flex;
  9194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9195. font-weight:400;
  9196. font-style:normal;
  9197. font-size:16px;
  9198. }
  9199. #u27553 .text {
  9200. position:absolute;
  9201. align-self:flex-start;
  9202. padding:0px 0px 0px 0px;
  9203. box-sizing:border-box;
  9204. width:100%;
  9205. }
  9206. #u27553_text {
  9207. border-width:0px;
  9208. white-space:nowrap;
  9209. text-transform:none;
  9210. }
  9211. #u27554_div {
  9212. border-width:0px;
  9213. position:absolute;
  9214. left:0px;
  9215. top:0px;
  9216. width:49px;
  9217. height:17px;
  9218. background:inherit;
  9219. background-color:rgba(255, 255, 255, 0);
  9220. border:none;
  9221. border-radius:0px;
  9222. -moz-box-shadow:none;
  9223. -webkit-box-shadow:none;
  9224. box-shadow:none;
  9225. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9226. font-weight:400;
  9227. font-style:normal;
  9228. font-size:12px;
  9229. color:#AAAAAA;
  9230. }
  9231. #u27554 {
  9232. border-width:0px;
  9233. position:absolute;
  9234. left:146px;
  9235. top:995px;
  9236. width:49px;
  9237. height:17px;
  9238. display:flex;
  9239. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9240. font-weight:400;
  9241. font-style:normal;
  9242. font-size:12px;
  9243. color:#AAAAAA;
  9244. }
  9245. #u27554 .text {
  9246. position:absolute;
  9247. align-self:flex-start;
  9248. padding:0px 0px 0px 0px;
  9249. box-sizing:border-box;
  9250. width:100%;
  9251. }
  9252. #u27554_text {
  9253. border-width:0px;
  9254. white-space:nowrap;
  9255. text-transform:none;
  9256. }
  9257. #u27555_img {
  9258. border-width:0px;
  9259. position:absolute;
  9260. left:0px;
  9261. top:0px;
  9262. width:201px;
  9263. height:2px;
  9264. }
  9265. #u27555 {
  9266. border-width:0px;
  9267. position:absolute;
  9268. left:120px;
  9269. top:973px;
  9270. width:200px;
  9271. height:1px;
  9272. display:flex;
  9273. }
  9274. #u27555 .text {
  9275. position:absolute;
  9276. align-self:center;
  9277. padding:2px 2px 2px 2px;
  9278. box-sizing:border-box;
  9279. width:100%;
  9280. }
  9281. #u27555_text {
  9282. border-width:0px;
  9283. word-wrap:break-word;
  9284. text-transform:none;
  9285. visibility:hidden;
  9286. }
  9287. #u27556_div {
  9288. border-width:0px;
  9289. position:absolute;
  9290. left:0px;
  9291. top:0px;
  9292. width:97px;
  9293. height:22px;
  9294. background:inherit;
  9295. background-color:rgba(255, 255, 255, 0);
  9296. border:none;
  9297. border-radius:0px;
  9298. -moz-box-shadow:none;
  9299. -webkit-box-shadow:none;
  9300. box-shadow:none;
  9301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9302. font-weight:400;
  9303. font-style:normal;
  9304. font-size:16px;
  9305. }
  9306. #u27556 {
  9307. border-width:0px;
  9308. position:absolute;
  9309. left:146px;
  9310. top:1033px;
  9311. width:97px;
  9312. height:22px;
  9313. display:flex;
  9314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9315. font-weight:400;
  9316. font-style:normal;
  9317. font-size:16px;
  9318. }
  9319. #u27556 .text {
  9320. position:absolute;
  9321. align-self:flex-start;
  9322. padding:0px 0px 0px 0px;
  9323. box-sizing:border-box;
  9324. width:100%;
  9325. }
  9326. #u27556_text {
  9327. border-width:0px;
  9328. white-space:nowrap;
  9329. text-transform:none;
  9330. }
  9331. #u27557_div {
  9332. border-width:0px;
  9333. position:absolute;
  9334. left:0px;
  9335. top:0px;
  9336. width:73px;
  9337. height:17px;
  9338. background:inherit;
  9339. background-color:rgba(255, 255, 255, 0);
  9340. border:none;
  9341. border-radius:0px;
  9342. -moz-box-shadow:none;
  9343. -webkit-box-shadow:none;
  9344. box-shadow:none;
  9345. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9346. font-weight:400;
  9347. font-style:normal;
  9348. font-size:12px;
  9349. color:#AAAAAA;
  9350. }
  9351. #u27557 {
  9352. border-width:0px;
  9353. position:absolute;
  9354. left:146px;
  9355. top:667px;
  9356. width:73px;
  9357. height:17px;
  9358. display:flex;
  9359. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9360. font-weight:400;
  9361. font-style:normal;
  9362. font-size:12px;
  9363. color:#AAAAAA;
  9364. }
  9365. #u27557 .text {
  9366. position:absolute;
  9367. align-self:flex-start;
  9368. padding:0px 0px 0px 0px;
  9369. box-sizing:border-box;
  9370. width:100%;
  9371. }
  9372. #u27557_text {
  9373. border-width:0px;
  9374. white-space:nowrap;
  9375. text-transform:none;
  9376. }
  9377. #u27558_img {
  9378. border-width:0px;
  9379. position:absolute;
  9380. left:0px;
  9381. top:0px;
  9382. width:201px;
  9383. height:2px;
  9384. }
  9385. #u27558 {
  9386. border-width:0px;
  9387. position:absolute;
  9388. left:120px;
  9389. top:645px;
  9390. width:200px;
  9391. height:1px;
  9392. display:flex;
  9393. }
  9394. #u27558 .text {
  9395. position:absolute;
  9396. align-self:center;
  9397. padding:2px 2px 2px 2px;
  9398. box-sizing:border-box;
  9399. width:100%;
  9400. }
  9401. #u27558_text {
  9402. border-width:0px;
  9403. word-wrap:break-word;
  9404. text-transform:none;
  9405. visibility:hidden;
  9406. }
  9407. #u27559_div {
  9408. border-width:0px;
  9409. position:absolute;
  9410. left:0px;
  9411. top:0px;
  9412. width:97px;
  9413. height:22px;
  9414. background:inherit;
  9415. background-color:rgba(255, 255, 255, 0);
  9416. border:none;
  9417. border-radius:0px;
  9418. -moz-box-shadow:none;
  9419. -webkit-box-shadow:none;
  9420. box-shadow:none;
  9421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9422. font-weight:400;
  9423. font-style:normal;
  9424. font-size:16px;
  9425. }
  9426. #u27559 {
  9427. border-width:0px;
  9428. position:absolute;
  9429. left:146px;
  9430. top:705px;
  9431. width:97px;
  9432. height:22px;
  9433. display:flex;
  9434. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9435. font-weight:400;
  9436. font-style:normal;
  9437. font-size:16px;
  9438. }
  9439. #u27559 .text {
  9440. position:absolute;
  9441. align-self:flex-start;
  9442. padding:0px 0px 0px 0px;
  9443. box-sizing:border-box;
  9444. width:100%;
  9445. }
  9446. #u27559_text {
  9447. border-width:0px;
  9448. white-space:nowrap;
  9449. text-transform:none;
  9450. }
  9451. #u27560_div {
  9452. border-width:0px;
  9453. position:absolute;
  9454. left:0px;
  9455. top:0px;
  9456. width:97px;
  9457. height:22px;
  9458. background:inherit;
  9459. background-color:rgba(255, 255, 255, 0);
  9460. border:none;
  9461. border-radius:0px;
  9462. -moz-box-shadow:none;
  9463. -webkit-box-shadow:none;
  9464. box-shadow:none;
  9465. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9466. font-weight:400;
  9467. font-style:normal;
  9468. font-size:16px;
  9469. }
  9470. #u27560 {
  9471. border-width:0px;
  9472. position:absolute;
  9473. left:146px;
  9474. top:747px;
  9475. width:97px;
  9476. height:22px;
  9477. display:flex;
  9478. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  9479. font-weight:400;
  9480. font-style:normal;
  9481. font-size:16px;
  9482. }
  9483. #u27560 .text {
  9484. position:absolute;
  9485. align-self:flex-start;
  9486. padding:0px 0px 0px 0px;
  9487. box-sizing:border-box;
  9488. width:100%;
  9489. }
  9490. #u27560_text {
  9491. border-width:0px;
  9492. white-space:nowrap;
  9493. text-transform:none;
  9494. }