styles.css 138 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:2435px;
  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. #u27895 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u27897_div {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:129px;
  33. height:22px;
  34. background:inherit;
  35. background-color:rgba(255, 255, 255, 0);
  36. border:none;
  37. border-radius:0px;
  38. -moz-box-shadow:none;
  39. -webkit-box-shadow:none;
  40. box-shadow:none;
  41. font-size:16px;
  42. color:#FFFFFF;
  43. }
  44. #u27897 {
  45. border-width:0px;
  46. position:absolute;
  47. left:49px;
  48. top:14px;
  49. width:129px;
  50. height:22px;
  51. display:flex;
  52. font-size:16px;
  53. color:#FFFFFF;
  54. }
  55. #u27897 .text {
  56. position:absolute;
  57. align-self:flex-start;
  58. padding:0px 0px 0px 0px;
  59. box-sizing:border-box;
  60. width:100%;
  61. }
  62. #u27897_text {
  63. border-width:0px;
  64. white-space:nowrap;
  65. text-transform:none;
  66. }
  67. #u27898_div {
  68. border-width:0px;
  69. position:absolute;
  70. left:0px;
  71. top:0px;
  72. width:1600px;
  73. height:50px;
  74. background:inherit;
  75. background-color:rgba(30, 42, 68, 1);
  76. border:none;
  77. border-radius:0px;
  78. -moz-box-shadow:none;
  79. -webkit-box-shadow:none;
  80. box-shadow:none;
  81. color:#AFB3B6;
  82. }
  83. #u27898 {
  84. border-width:0px;
  85. position:absolute;
  86. left:0px;
  87. top:0px;
  88. width:1600px;
  89. height:50px;
  90. display:flex;
  91. color:#AFB3B6;
  92. }
  93. #u27898 .text {
  94. position:absolute;
  95. align-self:center;
  96. padding:2px 2px 2px 2px;
  97. box-sizing:border-box;
  98. width:100%;
  99. }
  100. #u27898_text {
  101. border-width:0px;
  102. word-wrap:break-word;
  103. text-transform:none;
  104. visibility:hidden;
  105. }
  106. #u27899 {
  107. border-width:0px;
  108. position:absolute;
  109. left:0px;
  110. top:0px;
  111. width:0px;
  112. height:0px;
  113. }
  114. #u27900_img {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:31px;
  120. height:31px;
  121. }
  122. #u27900 {
  123. border-width:0px;
  124. position:absolute;
  125. left:19px;
  126. top:10px;
  127. width:31px;
  128. height:31px;
  129. display:flex;
  130. }
  131. #u27900 .text {
  132. position:absolute;
  133. align-self:center;
  134. padding:2px 2px 2px 2px;
  135. box-sizing:border-box;
  136. width:100%;
  137. }
  138. #u27900_text {
  139. border-width:0px;
  140. word-wrap:break-word;
  141. text-transform:none;
  142. }
  143. #u27901_div {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:161px;
  149. height:22px;
  150. background:inherit;
  151. background-color:rgba(255, 255, 255, 0);
  152. border:none;
  153. border-radius:0px;
  154. -moz-box-shadow:none;
  155. -webkit-box-shadow:none;
  156. box-shadow:none;
  157. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  158. font-weight:400;
  159. font-style:normal;
  160. font-size:16px;
  161. color:#FFFFFF;
  162. }
  163. #u27901 {
  164. border-width:0px;
  165. position:absolute;
  166. left:62px;
  167. top:14px;
  168. width:161px;
  169. height:22px;
  170. display:flex;
  171. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  172. font-weight:400;
  173. font-style:normal;
  174. font-size:16px;
  175. color:#FFFFFF;
  176. }
  177. #u27901 .text {
  178. position:absolute;
  179. align-self:flex-start;
  180. padding:0px 0px 0px 0px;
  181. box-sizing:border-box;
  182. width:100%;
  183. }
  184. #u27901_text {
  185. border-width:0px;
  186. white-space:nowrap;
  187. text-transform:none;
  188. }
  189. #u27902_div {
  190. border-width:0px;
  191. position:absolute;
  192. left:0px;
  193. top:0px;
  194. width:120px;
  195. height:1200px;
  196. background:inherit;
  197. background-color:rgba(30, 42, 68, 1);
  198. border:none;
  199. border-radius:0px;
  200. -moz-box-shadow:none;
  201. -webkit-box-shadow:none;
  202. box-shadow:none;
  203. color:#AFB3B6;
  204. }
  205. #u27902 {
  206. border-width:0px;
  207. position:absolute;
  208. left:0px;
  209. top:47px;
  210. width:120px;
  211. height:1200px;
  212. display:flex;
  213. color:#AFB3B6;
  214. }
  215. #u27902 .text {
  216. position:absolute;
  217. align-self:center;
  218. padding:2px 2px 2px 2px;
  219. box-sizing:border-box;
  220. width:100%;
  221. }
  222. #u27902_text {
  223. border-width:0px;
  224. word-wrap:break-word;
  225. text-transform:none;
  226. visibility:hidden;
  227. }
  228. #u27903_div {
  229. border-width:0px;
  230. position:absolute;
  231. left:0px;
  232. top:0px;
  233. width:1480px;
  234. height:1200px;
  235. background:inherit;
  236. background-color:rgba(242, 242, 242, 1);
  237. border:none;
  238. border-radius:0px;
  239. -moz-box-shadow:none;
  240. -webkit-box-shadow:none;
  241. box-shadow:none;
  242. }
  243. #u27903 {
  244. border-width:0px;
  245. position:absolute;
  246. left:120px;
  247. top:50px;
  248. width:1480px;
  249. height:1200px;
  250. display:flex;
  251. }
  252. #u27903 .text {
  253. position:absolute;
  254. align-self:center;
  255. padding:2px 2px 2px 2px;
  256. box-sizing:border-box;
  257. width:100%;
  258. }
  259. #u27903_text {
  260. border-width:0px;
  261. word-wrap:break-word;
  262. text-transform:none;
  263. visibility:hidden;
  264. }
  265. #u27904 {
  266. border-width:0px;
  267. position:absolute;
  268. left:0px;
  269. top:0px;
  270. width:0px;
  271. height:0px;
  272. }
  273. #u27905_div {
  274. border-width:0px;
  275. position:absolute;
  276. left:0px;
  277. top:0px;
  278. width:33px;
  279. height:22px;
  280. background:inherit;
  281. background-color:rgba(255, 255, 255, 0);
  282. border:none;
  283. border-radius:0px;
  284. -moz-box-shadow:none;
  285. -webkit-box-shadow:none;
  286. box-shadow:none;
  287. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  288. font-weight:400;
  289. font-style:normal;
  290. font-size:16px;
  291. color:#FFFFFF;
  292. }
  293. #u27905 {
  294. border-width:0px;
  295. position:absolute;
  296. left:39px;
  297. top:67px;
  298. width:33px;
  299. height:22px;
  300. display:flex;
  301. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  302. font-weight:400;
  303. font-style:normal;
  304. font-size:16px;
  305. color:#FFFFFF;
  306. }
  307. #u27905 .text {
  308. position:absolute;
  309. align-self:flex-start;
  310. padding:0px 0px 0px 0px;
  311. box-sizing:border-box;
  312. width:100%;
  313. }
  314. #u27905_text {
  315. border-width:0px;
  316. white-space:nowrap;
  317. text-transform:none;
  318. }
  319. #u27906_img {
  320. border-width:0px;
  321. position:absolute;
  322. left:0px;
  323. top:0px;
  324. width:14px;
  325. height:14px;
  326. }
  327. #u27906 {
  328. border-width:0px;
  329. position:absolute;
  330. left:20px;
  331. top:71px;
  332. width:14px;
  333. height:14px;
  334. display:flex;
  335. }
  336. #u27906 .text {
  337. position:absolute;
  338. align-self:center;
  339. padding:2px 2px 2px 2px;
  340. box-sizing:border-box;
  341. width:100%;
  342. }
  343. #u27906_text {
  344. border-width:0px;
  345. word-wrap:break-word;
  346. text-transform:none;
  347. visibility:hidden;
  348. }
  349. #u27907 {
  350. border-width:0px;
  351. position:absolute;
  352. left:0px;
  353. top:0px;
  354. width:0px;
  355. height:0px;
  356. }
  357. #u27908_div {
  358. border-width:0px;
  359. position:absolute;
  360. left:0px;
  361. top:0px;
  362. width:33px;
  363. height:22px;
  364. background:inherit;
  365. background-color:rgba(255, 255, 255, 0);
  366. border:none;
  367. border-radius:0px;
  368. -moz-box-shadow:none;
  369. -webkit-box-shadow:none;
  370. box-shadow:none;
  371. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  372. font-weight:400;
  373. font-style:normal;
  374. font-size:16px;
  375. color:#FFFFFF;
  376. }
  377. #u27908 {
  378. border-width:0px;
  379. position:absolute;
  380. left:39px;
  381. top:109px;
  382. width:33px;
  383. height:22px;
  384. display:flex;
  385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  386. font-weight:400;
  387. font-style:normal;
  388. font-size:16px;
  389. color:#FFFFFF;
  390. }
  391. #u27908 .text {
  392. position:absolute;
  393. align-self:flex-start;
  394. padding:0px 0px 0px 0px;
  395. box-sizing:border-box;
  396. width:100%;
  397. }
  398. #u27908_text {
  399. border-width:0px;
  400. white-space:nowrap;
  401. text-transform:none;
  402. }
  403. #u27909_img {
  404. border-width:0px;
  405. position:absolute;
  406. left:0px;
  407. top:0px;
  408. width:14px;
  409. height:14px;
  410. }
  411. #u27909 {
  412. border-width:0px;
  413. position:absolute;
  414. left:20px;
  415. top:113px;
  416. width:14px;
  417. height:14px;
  418. display:flex;
  419. }
  420. #u27909 .text {
  421. position:absolute;
  422. align-self:center;
  423. padding:2px 2px 2px 2px;
  424. box-sizing:border-box;
  425. width:100%;
  426. }
  427. #u27909_text {
  428. border-width:0px;
  429. word-wrap:break-word;
  430. text-transform:none;
  431. visibility:hidden;
  432. }
  433. #u27910 {
  434. border-width:0px;
  435. position:absolute;
  436. left:0px;
  437. top:0px;
  438. width:0px;
  439. height:0px;
  440. }
  441. #u27911_div {
  442. border-width:0px;
  443. position:absolute;
  444. left:0px;
  445. top:0px;
  446. width:29px;
  447. height:20px;
  448. background:inherit;
  449. background-color:rgba(255, 255, 255, 0);
  450. border:none;
  451. border-radius:25px;
  452. -moz-box-shadow:none;
  453. -webkit-box-shadow:none;
  454. box-shadow:none;
  455. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  456. font-weight:400;
  457. font-style:normal;
  458. color:#FFFFFF;
  459. }
  460. #u27911 {
  461. border-width:0px;
  462. position:absolute;
  463. left:59px;
  464. top:1141px;
  465. width:29px;
  466. height:20px;
  467. display:flex;
  468. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  469. font-weight:400;
  470. font-style:normal;
  471. color:#FFFFFF;
  472. }
  473. #u27911 .text {
  474. position:absolute;
  475. align-self:center;
  476. padding:0px 0px 0px 0px;
  477. box-sizing:border-box;
  478. width:100%;
  479. }
  480. #u27911_text {
  481. border-width:0px;
  482. white-space:nowrap;
  483. text-transform:none;
  484. }
  485. #u27912_img {
  486. border-width:0px;
  487. position:absolute;
  488. left:0px;
  489. top:0px;
  490. width:22px;
  491. height:22px;
  492. }
  493. #u27912 {
  494. border-width:0px;
  495. position:absolute;
  496. left:27px;
  497. top:1140px;
  498. width:22px;
  499. height:22px;
  500. display:flex;
  501. }
  502. #u27912 .text {
  503. position:absolute;
  504. align-self:center;
  505. padding:2px 2px 2px 2px;
  506. box-sizing:border-box;
  507. width:100%;
  508. }
  509. #u27912_text {
  510. border-width:0px;
  511. word-wrap:break-word;
  512. text-transform:none;
  513. visibility:hidden;
  514. }
  515. #u27913 {
  516. border-width:0px;
  517. position:absolute;
  518. left:0px;
  519. top:0px;
  520. width:0px;
  521. height:0px;
  522. }
  523. #u27914_div {
  524. border-width:0px;
  525. position:absolute;
  526. left:0px;
  527. top:0px;
  528. width:29px;
  529. height:20px;
  530. background:inherit;
  531. background-color:rgba(255, 255, 255, 0);
  532. border:none;
  533. border-radius:25px;
  534. -moz-box-shadow:none;
  535. -webkit-box-shadow:none;
  536. box-shadow:none;
  537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  538. font-weight:400;
  539. font-style:normal;
  540. color:#FFFFFF;
  541. }
  542. #u27914 {
  543. border-width:0px;
  544. position:absolute;
  545. left:59px;
  546. top:1183px;
  547. width:29px;
  548. height:20px;
  549. display:flex;
  550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  551. font-weight:400;
  552. font-style:normal;
  553. color:#FFFFFF;
  554. }
  555. #u27914 .text {
  556. position:absolute;
  557. align-self:center;
  558. padding:0px 0px 0px 0px;
  559. box-sizing:border-box;
  560. width:100%;
  561. }
  562. #u27914_text {
  563. border-width:0px;
  564. white-space:nowrap;
  565. text-transform:none;
  566. }
  567. #u27915_img {
  568. border-width:0px;
  569. position:absolute;
  570. left:0px;
  571. top:0px;
  572. width:22px;
  573. height:22px;
  574. }
  575. #u27915 {
  576. border-width:0px;
  577. position:absolute;
  578. left:27px;
  579. top:1182px;
  580. width:22px;
  581. height:22px;
  582. display:flex;
  583. }
  584. #u27915 .text {
  585. position:absolute;
  586. align-self:center;
  587. padding:2px 2px 2px 2px;
  588. box-sizing:border-box;
  589. width:100%;
  590. }
  591. #u27915_text {
  592. border-width:0px;
  593. word-wrap:break-word;
  594. text-transform:none;
  595. visibility:hidden;
  596. }
  597. #u27916 {
  598. border-width:0px;
  599. position:absolute;
  600. left:0px;
  601. top:0px;
  602. width:0px;
  603. height:0px;
  604. }
  605. #u27917_div {
  606. border-width:0px;
  607. position:absolute;
  608. left:0px;
  609. top:0px;
  610. width:33px;
  611. height:22px;
  612. background:inherit;
  613. background-color:rgba(255, 255, 255, 0);
  614. border:none;
  615. border-radius:0px;
  616. -moz-box-shadow:none;
  617. -webkit-box-shadow:none;
  618. box-shadow:none;
  619. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  620. font-weight:400;
  621. font-style:normal;
  622. font-size:16px;
  623. color:#FFFFFF;
  624. }
  625. #u27917 {
  626. border-width:0px;
  627. position:absolute;
  628. left:39px;
  629. top:277px;
  630. width:33px;
  631. height:22px;
  632. display:flex;
  633. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  634. font-weight:400;
  635. font-style:normal;
  636. font-size:16px;
  637. color:#FFFFFF;
  638. }
  639. #u27917 .text {
  640. position:absolute;
  641. align-self:flex-start;
  642. padding:0px 0px 0px 0px;
  643. box-sizing:border-box;
  644. width:100%;
  645. }
  646. #u27917_text {
  647. border-width:0px;
  648. white-space:nowrap;
  649. text-transform:none;
  650. }
  651. #u27918_img {
  652. border-width:0px;
  653. position:absolute;
  654. left:0px;
  655. top:0px;
  656. width:14px;
  657. height:14px;
  658. }
  659. #u27918 {
  660. border-width:0px;
  661. position:absolute;
  662. left:20px;
  663. top:281px;
  664. width:14px;
  665. height:14px;
  666. display:flex;
  667. }
  668. #u27918 .text {
  669. position:absolute;
  670. align-self:center;
  671. padding:2px 2px 2px 2px;
  672. box-sizing:border-box;
  673. width:100%;
  674. }
  675. #u27918_text {
  676. border-width:0px;
  677. word-wrap:break-word;
  678. text-transform:none;
  679. visibility:hidden;
  680. }
  681. #u27919 {
  682. border-width:0px;
  683. position:absolute;
  684. left:0px;
  685. top:0px;
  686. width:0px;
  687. height:0px;
  688. }
  689. #u27920_div {
  690. border-width:0px;
  691. position:absolute;
  692. left:0px;
  693. top:0px;
  694. width:33px;
  695. height:22px;
  696. background:inherit;
  697. background-color:rgba(255, 255, 255, 0);
  698. border:none;
  699. border-radius:0px;
  700. -moz-box-shadow:none;
  701. -webkit-box-shadow:none;
  702. box-shadow:none;
  703. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  704. font-weight:400;
  705. font-style:normal;
  706. font-size:16px;
  707. color:#FFFFFF;
  708. }
  709. #u27920 {
  710. border-width:0px;
  711. position:absolute;
  712. left:39px;
  713. top:235px;
  714. width:33px;
  715. height:22px;
  716. display:flex;
  717. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  718. font-weight:400;
  719. font-style:normal;
  720. font-size:16px;
  721. color:#FFFFFF;
  722. }
  723. #u27920 .text {
  724. position:absolute;
  725. align-self:flex-start;
  726. padding:0px 0px 0px 0px;
  727. box-sizing:border-box;
  728. width:100%;
  729. }
  730. #u27920_text {
  731. border-width:0px;
  732. white-space:nowrap;
  733. text-transform:none;
  734. }
  735. #u27921_img {
  736. border-width:0px;
  737. position:absolute;
  738. left:0px;
  739. top:0px;
  740. width:14px;
  741. height:14px;
  742. }
  743. #u27921 {
  744. border-width:0px;
  745. position:absolute;
  746. left:20px;
  747. top:239px;
  748. width:14px;
  749. height:14px;
  750. display:flex;
  751. }
  752. #u27921 .text {
  753. position:absolute;
  754. align-self:center;
  755. padding:2px 2px 2px 2px;
  756. box-sizing:border-box;
  757. width:100%;
  758. }
  759. #u27921_text {
  760. border-width:0px;
  761. word-wrap:break-word;
  762. text-transform:none;
  763. visibility:hidden;
  764. }
  765. #u27922 {
  766. border-width:0px;
  767. position:absolute;
  768. left:0px;
  769. top:0px;
  770. width:0px;
  771. height:0px;
  772. }
  773. #u27923_div {
  774. border-width:0px;
  775. position:absolute;
  776. left:0px;
  777. top:0px;
  778. width:33px;
  779. height:22px;
  780. background:inherit;
  781. background-color:rgba(255, 255, 255, 0);
  782. border:none;
  783. border-radius:0px;
  784. -moz-box-shadow:none;
  785. -webkit-box-shadow:none;
  786. box-shadow:none;
  787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  788. font-weight:400;
  789. font-style:normal;
  790. font-size:16px;
  791. color:#FFFFFF;
  792. }
  793. #u27923 {
  794. border-width:0px;
  795. position:absolute;
  796. left:39px;
  797. top:403px;
  798. width:33px;
  799. height:22px;
  800. display:flex;
  801. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  802. font-weight:400;
  803. font-style:normal;
  804. font-size:16px;
  805. color:#FFFFFF;
  806. }
  807. #u27923 .text {
  808. position:absolute;
  809. align-self:flex-start;
  810. padding:0px 0px 0px 0px;
  811. box-sizing:border-box;
  812. width:100%;
  813. }
  814. #u27923_text {
  815. border-width:0px;
  816. white-space:nowrap;
  817. text-transform:none;
  818. }
  819. #u27924_img {
  820. border-width:0px;
  821. position:absolute;
  822. left:0px;
  823. top:0px;
  824. width:14px;
  825. height:14px;
  826. }
  827. #u27924 {
  828. border-width:0px;
  829. position:absolute;
  830. left:20px;
  831. top:407px;
  832. width:14px;
  833. height:14px;
  834. display:flex;
  835. }
  836. #u27924 .text {
  837. position:absolute;
  838. align-self:center;
  839. padding:2px 2px 2px 2px;
  840. box-sizing:border-box;
  841. width:100%;
  842. }
  843. #u27924_text {
  844. border-width:0px;
  845. word-wrap:break-word;
  846. text-transform:none;
  847. visibility:hidden;
  848. }
  849. #u27925 {
  850. border-width:0px;
  851. position:absolute;
  852. left:0px;
  853. top:0px;
  854. width:0px;
  855. height:0px;
  856. }
  857. #u27926_div {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:33px;
  863. height:22px;
  864. background:inherit;
  865. background-color:rgba(255, 255, 255, 0);
  866. border:none;
  867. border-radius:0px;
  868. -moz-box-shadow:none;
  869. -webkit-box-shadow:none;
  870. box-shadow:none;
  871. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  872. font-weight:400;
  873. font-style:normal;
  874. font-size:16px;
  875. color:#FFFFFF;
  876. }
  877. #u27926 {
  878. border-width:0px;
  879. position:absolute;
  880. left:39px;
  881. top:445px;
  882. width:33px;
  883. height:22px;
  884. display:flex;
  885. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  886. font-weight:400;
  887. font-style:normal;
  888. font-size:16px;
  889. color:#FFFFFF;
  890. }
  891. #u27926 .text {
  892. position:absolute;
  893. align-self:flex-start;
  894. padding:0px 0px 0px 0px;
  895. box-sizing:border-box;
  896. width:100%;
  897. }
  898. #u27926_text {
  899. border-width:0px;
  900. white-space:nowrap;
  901. text-transform:none;
  902. }
  903. #u27927_img {
  904. border-width:0px;
  905. position:absolute;
  906. left:0px;
  907. top:0px;
  908. width:14px;
  909. height:14px;
  910. }
  911. #u27927 {
  912. border-width:0px;
  913. position:absolute;
  914. left:20px;
  915. top:449px;
  916. width:14px;
  917. height:14px;
  918. display:flex;
  919. }
  920. #u27927 .text {
  921. position:absolute;
  922. align-self:center;
  923. padding:2px 2px 2px 2px;
  924. box-sizing:border-box;
  925. width:100%;
  926. }
  927. #u27927_text {
  928. border-width:0px;
  929. word-wrap:break-word;
  930. text-transform:none;
  931. visibility:hidden;
  932. }
  933. #u27928 {
  934. border-width:0px;
  935. position:absolute;
  936. left:0px;
  937. top:0px;
  938. width:0px;
  939. height:0px;
  940. }
  941. #u27929_div {
  942. border-width:0px;
  943. position:absolute;
  944. left:0px;
  945. top:0px;
  946. width:33px;
  947. height:22px;
  948. background:inherit;
  949. background-color:rgba(255, 255, 255, 0);
  950. border:none;
  951. border-radius:0px;
  952. -moz-box-shadow:none;
  953. -webkit-box-shadow:none;
  954. box-shadow:none;
  955. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  956. font-weight:400;
  957. font-style:normal;
  958. font-size:16px;
  959. color:#FFFFFF;
  960. }
  961. #u27929 {
  962. border-width:0px;
  963. position:absolute;
  964. left:39px;
  965. top:571px;
  966. width:33px;
  967. height:22px;
  968. display:flex;
  969. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  970. font-weight:400;
  971. font-style:normal;
  972. font-size:16px;
  973. color:#FFFFFF;
  974. }
  975. #u27929 .text {
  976. position:absolute;
  977. align-self:flex-start;
  978. padding:0px 0px 0px 0px;
  979. box-sizing:border-box;
  980. width:100%;
  981. }
  982. #u27929_text {
  983. border-width:0px;
  984. white-space:nowrap;
  985. text-transform:none;
  986. }
  987. #u27930_img {
  988. border-width:0px;
  989. position:absolute;
  990. left:0px;
  991. top:0px;
  992. width:14px;
  993. height:14px;
  994. }
  995. #u27930 {
  996. border-width:0px;
  997. position:absolute;
  998. left:20px;
  999. top:575px;
  1000. width:14px;
  1001. height:14px;
  1002. display:flex;
  1003. }
  1004. #u27930 .text {
  1005. position:absolute;
  1006. align-self:center;
  1007. padding:2px 2px 2px 2px;
  1008. box-sizing:border-box;
  1009. width:100%;
  1010. }
  1011. #u27930_text {
  1012. border-width:0px;
  1013. word-wrap:break-word;
  1014. text-transform:none;
  1015. visibility:hidden;
  1016. }
  1017. #u27931 {
  1018. border-width:0px;
  1019. position:absolute;
  1020. left:0px;
  1021. top:0px;
  1022. width:0px;
  1023. height:0px;
  1024. }
  1025. #u27932_div {
  1026. border-width:0px;
  1027. position:absolute;
  1028. left:0px;
  1029. top:0px;
  1030. width:33px;
  1031. height:22px;
  1032. background:inherit;
  1033. background-color:rgba(255, 255, 255, 0);
  1034. border:none;
  1035. border-radius:0px;
  1036. -moz-box-shadow:none;
  1037. -webkit-box-shadow:none;
  1038. box-shadow:none;
  1039. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1040. font-weight:400;
  1041. font-style:normal;
  1042. font-size:16px;
  1043. color:#FFFFFF;
  1044. }
  1045. #u27932 {
  1046. border-width:0px;
  1047. position:absolute;
  1048. left:39px;
  1049. top:529px;
  1050. width:33px;
  1051. height:22px;
  1052. display:flex;
  1053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1054. font-weight:400;
  1055. font-style:normal;
  1056. font-size:16px;
  1057. color:#FFFFFF;
  1058. }
  1059. #u27932 .text {
  1060. position:absolute;
  1061. align-self:flex-start;
  1062. padding:0px 0px 0px 0px;
  1063. box-sizing:border-box;
  1064. width:100%;
  1065. }
  1066. #u27932_text {
  1067. border-width:0px;
  1068. white-space:nowrap;
  1069. text-transform:none;
  1070. }
  1071. #u27933_img {
  1072. border-width:0px;
  1073. position:absolute;
  1074. left:0px;
  1075. top:0px;
  1076. width:14px;
  1077. height:14px;
  1078. }
  1079. #u27933 {
  1080. border-width:0px;
  1081. position:absolute;
  1082. left:20px;
  1083. top:533px;
  1084. width:14px;
  1085. height:14px;
  1086. display:flex;
  1087. }
  1088. #u27933 .text {
  1089. position:absolute;
  1090. align-self:center;
  1091. padding:2px 2px 2px 2px;
  1092. box-sizing:border-box;
  1093. width:100%;
  1094. }
  1095. #u27933_text {
  1096. border-width:0px;
  1097. word-wrap:break-word;
  1098. text-transform:none;
  1099. visibility:hidden;
  1100. }
  1101. #u27934_input {
  1102. position:absolute;
  1103. left:0px;
  1104. top:0px;
  1105. width:214px;
  1106. height:27px;
  1107. padding:2px 2px 2px 2px;
  1108. font-family:'ArialMT', 'Arial', sans-serif;
  1109. font-weight:400;
  1110. font-style:normal;
  1111. font-size:14px;
  1112. letter-spacing:normal;
  1113. color:#FFFFFF;
  1114. vertical-align:none;
  1115. text-align:left;
  1116. text-transform:none;
  1117. background-color:transparent;
  1118. border-color:transparent;
  1119. }
  1120. #u27934_input.disabled {
  1121. position:absolute;
  1122. left:0px;
  1123. top:0px;
  1124. width:214px;
  1125. height:27px;
  1126. padding:2px 2px 2px 2px;
  1127. font-family:'ArialMT', 'Arial', sans-serif;
  1128. font-weight:400;
  1129. font-style:normal;
  1130. font-size:14px;
  1131. letter-spacing:normal;
  1132. color:#FFFFFF;
  1133. vertical-align:none;
  1134. text-align:left;
  1135. text-transform:none;
  1136. background-color:transparent;
  1137. border-color:transparent;
  1138. }
  1139. #u27934_div {
  1140. border-width:0px;
  1141. position:absolute;
  1142. left:0px;
  1143. top:0px;
  1144. width:214px;
  1145. height:27px;
  1146. background:inherit;
  1147. background-color:rgba(255, 255, 255, 0);
  1148. border:none;
  1149. border-radius:0px;
  1150. -moz-box-shadow:none;
  1151. -webkit-box-shadow:none;
  1152. box-shadow:none;
  1153. font-size:14px;
  1154. color:#FFFFFF;
  1155. }
  1156. #u27934 {
  1157. border-width:0px;
  1158. position:absolute;
  1159. left:1221px;
  1160. top:10px;
  1161. width:214px;
  1162. height:27px;
  1163. display:flex;
  1164. font-size:14px;
  1165. color:#FFFFFF;
  1166. }
  1167. #u27934 .text {
  1168. position:absolute;
  1169. align-self:flex-start;
  1170. padding:2px 2px 2px 2px;
  1171. box-sizing:border-box;
  1172. width:100%;
  1173. }
  1174. #u27934_div.disabled {
  1175. border-width:0px;
  1176. position:absolute;
  1177. left:0px;
  1178. top:0px;
  1179. width:214px;
  1180. height:27px;
  1181. background:inherit;
  1182. background-color:rgba(240, 240, 240, 1);
  1183. border:none;
  1184. border-radius:0px;
  1185. -moz-box-shadow:none;
  1186. -webkit-box-shadow:none;
  1187. box-shadow:none;
  1188. font-size:14px;
  1189. color:#FFFFFF;
  1190. }
  1191. #u27934.disabled {
  1192. }
  1193. .u27934_input_option {
  1194. font-size:14px;
  1195. }
  1196. #u27935_img {
  1197. border-width:0px;
  1198. position:absolute;
  1199. left:0px;
  1200. top:0px;
  1201. width:22px;
  1202. height:22px;
  1203. }
  1204. #u27935 {
  1205. border-width:0px;
  1206. position:absolute;
  1207. left:1194px;
  1208. top:15px;
  1209. width:22px;
  1210. height:22px;
  1211. display:flex;
  1212. }
  1213. #u27935 .text {
  1214. position:absolute;
  1215. align-self:center;
  1216. padding:2px 2px 2px 2px;
  1217. box-sizing:border-box;
  1218. width:100%;
  1219. }
  1220. #u27935_text {
  1221. border-width:0px;
  1222. word-wrap:break-word;
  1223. text-transform:none;
  1224. visibility:hidden;
  1225. }
  1226. #u27936_div {
  1227. border-width:0px;
  1228. position:absolute;
  1229. left:0px;
  1230. top:0px;
  1231. width:100px;
  1232. height:24px;
  1233. background:inherit;
  1234. background-color:rgba(242, 242, 242, 0.2);
  1235. border:none;
  1236. border-radius:25px;
  1237. -moz-box-shadow:none;
  1238. -webkit-box-shadow:none;
  1239. box-shadow:none;
  1240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1241. font-weight:400;
  1242. font-style:normal;
  1243. color:#FFFFFF;
  1244. text-align:center;
  1245. }
  1246. #u27936 {
  1247. border-width:0px;
  1248. position:absolute;
  1249. left:1480px;
  1250. top:12px;
  1251. width:100px;
  1252. height:24px;
  1253. display:flex;
  1254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1255. font-weight:400;
  1256. font-style:normal;
  1257. color:#FFFFFF;
  1258. text-align:center;
  1259. }
  1260. #u27936 .text {
  1261. position:absolute;
  1262. align-self:center;
  1263. padding:0px 0px 0px 0px;
  1264. box-sizing:border-box;
  1265. width:100%;
  1266. }
  1267. #u27936_text {
  1268. border-width:0px;
  1269. word-wrap:break-word;
  1270. text-transform:none;
  1271. }
  1272. #u27937_img {
  1273. border-width:0px;
  1274. position:absolute;
  1275. left:0px;
  1276. top:0px;
  1277. width:2px;
  1278. height:12px;
  1279. }
  1280. #u27937 {
  1281. border-width:0px;
  1282. position:absolute;
  1283. left:1452px;
  1284. top:19px;
  1285. width:1px;
  1286. height:11px;
  1287. display:flex;
  1288. }
  1289. #u27937 .text {
  1290. position:absolute;
  1291. align-self:center;
  1292. padding:2px 2px 2px 2px;
  1293. box-sizing:border-box;
  1294. width:100%;
  1295. }
  1296. #u27937_text {
  1297. border-width:0px;
  1298. word-wrap:break-word;
  1299. text-transform:none;
  1300. visibility:hidden;
  1301. }
  1302. #u27938 {
  1303. border-width:0px;
  1304. position:absolute;
  1305. left:0px;
  1306. top:0px;
  1307. width:0px;
  1308. height:0px;
  1309. }
  1310. #u27939_div {
  1311. border-width:0px;
  1312. position:absolute;
  1313. left:0px;
  1314. top:0px;
  1315. width:33px;
  1316. height:22px;
  1317. background:inherit;
  1318. background-color:rgba(255, 255, 255, 0);
  1319. border:none;
  1320. border-radius:0px;
  1321. -moz-box-shadow:none;
  1322. -webkit-box-shadow:none;
  1323. box-shadow:none;
  1324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1325. font-weight:400;
  1326. font-style:normal;
  1327. font-size:16px;
  1328. color:#FFFFFF;
  1329. }
  1330. #u27939 {
  1331. border-width:0px;
  1332. position:absolute;
  1333. left:39px;
  1334. top:319px;
  1335. width:33px;
  1336. height:22px;
  1337. display:flex;
  1338. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1339. font-weight:400;
  1340. font-style:normal;
  1341. font-size:16px;
  1342. color:#FFFFFF;
  1343. }
  1344. #u27939 .text {
  1345. position:absolute;
  1346. align-self:flex-start;
  1347. padding:0px 0px 0px 0px;
  1348. box-sizing:border-box;
  1349. width:100%;
  1350. }
  1351. #u27939_text {
  1352. border-width:0px;
  1353. white-space:nowrap;
  1354. text-transform:none;
  1355. }
  1356. #u27940_img {
  1357. border-width:0px;
  1358. position:absolute;
  1359. left:0px;
  1360. top:0px;
  1361. width:14px;
  1362. height:14px;
  1363. }
  1364. #u27940 {
  1365. border-width:0px;
  1366. position:absolute;
  1367. left:20px;
  1368. top:323px;
  1369. width:14px;
  1370. height:14px;
  1371. display:flex;
  1372. }
  1373. #u27940 .text {
  1374. position:absolute;
  1375. align-self:center;
  1376. padding:2px 2px 2px 2px;
  1377. box-sizing:border-box;
  1378. width:100%;
  1379. }
  1380. #u27940_text {
  1381. border-width:0px;
  1382. word-wrap:break-word;
  1383. text-transform:none;
  1384. visibility:hidden;
  1385. }
  1386. #u27941 {
  1387. border-width:0px;
  1388. position:absolute;
  1389. left:0px;
  1390. top:0px;
  1391. width:0px;
  1392. height:0px;
  1393. }
  1394. #u27942_div {
  1395. border-width:0px;
  1396. position:absolute;
  1397. left:0px;
  1398. top:0px;
  1399. width:33px;
  1400. height:22px;
  1401. background:inherit;
  1402. background-color:rgba(255, 255, 255, 0);
  1403. border:none;
  1404. border-radius:0px;
  1405. -moz-box-shadow:none;
  1406. -webkit-box-shadow:none;
  1407. box-shadow:none;
  1408. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1409. font-weight:400;
  1410. font-style:normal;
  1411. font-size:16px;
  1412. color:#FFFFFF;
  1413. }
  1414. #u27942 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:39px;
  1418. top:361px;
  1419. width:33px;
  1420. height:22px;
  1421. display:flex;
  1422. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1423. font-weight:400;
  1424. font-style:normal;
  1425. font-size:16px;
  1426. color:#FFFFFF;
  1427. }
  1428. #u27942 .text {
  1429. position:absolute;
  1430. align-self:flex-start;
  1431. padding:0px 0px 0px 0px;
  1432. box-sizing:border-box;
  1433. width:100%;
  1434. }
  1435. #u27942_text {
  1436. border-width:0px;
  1437. white-space:nowrap;
  1438. text-transform:none;
  1439. }
  1440. #u27943_img {
  1441. border-width:0px;
  1442. position:absolute;
  1443. left:0px;
  1444. top:0px;
  1445. width:14px;
  1446. height:14px;
  1447. }
  1448. #u27943 {
  1449. border-width:0px;
  1450. position:absolute;
  1451. left:20px;
  1452. top:365px;
  1453. width:14px;
  1454. height:14px;
  1455. display:flex;
  1456. }
  1457. #u27943 .text {
  1458. position:absolute;
  1459. align-self:center;
  1460. padding:2px 2px 2px 2px;
  1461. box-sizing:border-box;
  1462. width:100%;
  1463. }
  1464. #u27943_text {
  1465. border-width:0px;
  1466. word-wrap:break-word;
  1467. text-transform:none;
  1468. visibility:hidden;
  1469. }
  1470. #u27944 {
  1471. border-width:0px;
  1472. position:absolute;
  1473. left:0px;
  1474. top:0px;
  1475. width:0px;
  1476. height:0px;
  1477. }
  1478. #u27945_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. #u27945 {
  1499. border-width:0px;
  1500. position:absolute;
  1501. left:39px;
  1502. top:151px;
  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. #u27945 .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. #u27945_text {
  1520. border-width:0px;
  1521. white-space:nowrap;
  1522. text-transform:none;
  1523. }
  1524. #u27946_img {
  1525. border-width:0px;
  1526. position:absolute;
  1527. left:0px;
  1528. top:0px;
  1529. width:14px;
  1530. height:14px;
  1531. }
  1532. #u27946 {
  1533. border-width:0px;
  1534. position:absolute;
  1535. left:20px;
  1536. top:155px;
  1537. width:14px;
  1538. height:14px;
  1539. display:flex;
  1540. }
  1541. #u27946 .text {
  1542. position:absolute;
  1543. align-self:center;
  1544. padding:2px 2px 2px 2px;
  1545. box-sizing:border-box;
  1546. width:100%;
  1547. }
  1548. #u27946_text {
  1549. border-width:0px;
  1550. word-wrap:break-word;
  1551. text-transform:none;
  1552. visibility:hidden;
  1553. }
  1554. #u27947 {
  1555. border-width:0px;
  1556. position:absolute;
  1557. left:0px;
  1558. top:0px;
  1559. width:0px;
  1560. height:0px;
  1561. }
  1562. #u27948_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. #u27948 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:39px;
  1586. top:487px;
  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. #u27948 .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. #u27948_text {
  1604. border-width:0px;
  1605. white-space:nowrap;
  1606. text-transform:none;
  1607. }
  1608. #u27949_img {
  1609. border-width:0px;
  1610. position:absolute;
  1611. left:0px;
  1612. top:0px;
  1613. width:14px;
  1614. height:14px;
  1615. }
  1616. #u27949 {
  1617. border-width:0px;
  1618. position:absolute;
  1619. left:20px;
  1620. top:491px;
  1621. width:14px;
  1622. height:14px;
  1623. display:flex;
  1624. }
  1625. #u27949 .text {
  1626. position:absolute;
  1627. align-self:center;
  1628. padding:2px 2px 2px 2px;
  1629. box-sizing:border-box;
  1630. width:100%;
  1631. }
  1632. #u27949_text {
  1633. border-width:0px;
  1634. word-wrap:break-word;
  1635. text-transform:none;
  1636. visibility:hidden;
  1637. }
  1638. #u27950 {
  1639. border-width:0px;
  1640. position:absolute;
  1641. left:0px;
  1642. top:0px;
  1643. width:0px;
  1644. height:0px;
  1645. }
  1646. #u27951_div {
  1647. border-width:0px;
  1648. position:absolute;
  1649. left:0px;
  1650. top:0px;
  1651. width:33px;
  1652. height:22px;
  1653. background:inherit;
  1654. background-color:rgba(255, 255, 255, 0);
  1655. border:none;
  1656. border-radius:0px;
  1657. -moz-box-shadow:none;
  1658. -webkit-box-shadow:none;
  1659. box-shadow:none;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:16px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u27951 {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:39px;
  1670. top:193px;
  1671. width:33px;
  1672. height:22px;
  1673. display:flex;
  1674. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1675. font-weight:400;
  1676. font-style:normal;
  1677. font-size:16px;
  1678. color:#FFFFFF;
  1679. }
  1680. #u27951 .text {
  1681. position:absolute;
  1682. align-self:flex-start;
  1683. padding:0px 0px 0px 0px;
  1684. box-sizing:border-box;
  1685. width:100%;
  1686. }
  1687. #u27951_text {
  1688. border-width:0px;
  1689. white-space:nowrap;
  1690. text-transform:none;
  1691. }
  1692. #u27952_img {
  1693. border-width:0px;
  1694. position:absolute;
  1695. left:0px;
  1696. top:0px;
  1697. width:14px;
  1698. height:14px;
  1699. }
  1700. #u27952 {
  1701. border-width:0px;
  1702. position:absolute;
  1703. left:20px;
  1704. top:197px;
  1705. width:14px;
  1706. height:14px;
  1707. display:flex;
  1708. }
  1709. #u27952 .text {
  1710. position:absolute;
  1711. align-self:center;
  1712. padding:2px 2px 2px 2px;
  1713. box-sizing:border-box;
  1714. width:100%;
  1715. }
  1716. #u27952_text {
  1717. border-width:0px;
  1718. word-wrap:break-word;
  1719. text-transform:none;
  1720. visibility:hidden;
  1721. }
  1722. #u27953 {
  1723. border-width:0px;
  1724. position:absolute;
  1725. left:0px;
  1726. top:0px;
  1727. width:0px;
  1728. height:0px;
  1729. }
  1730. #u27954_div {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:0px;
  1734. top:0px;
  1735. width:200px;
  1736. height:1180px;
  1737. background:inherit;
  1738. background-color:rgba(255, 255, 255, 1);
  1739. border:none;
  1740. border-radius:0px;
  1741. -moz-box-shadow:none;
  1742. -webkit-box-shadow:none;
  1743. box-shadow:none;
  1744. }
  1745. #u27954 {
  1746. border-width:0px;
  1747. position:absolute;
  1748. left:120px;
  1749. top:50px;
  1750. width:200px;
  1751. height:1180px;
  1752. display:flex;
  1753. }
  1754. #u27954 .text {
  1755. position:absolute;
  1756. align-self:center;
  1757. padding:2px 2px 2px 2px;
  1758. box-sizing:border-box;
  1759. width:100%;
  1760. }
  1761. #u27954_text {
  1762. border-width:0px;
  1763. word-wrap:break-word;
  1764. text-transform:none;
  1765. visibility:hidden;
  1766. }
  1767. #u27955_div {
  1768. border-width:0px;
  1769. position:absolute;
  1770. left:0px;
  1771. top:0px;
  1772. width:200px;
  1773. height:60px;
  1774. background:inherit;
  1775. background-color:rgba(224, 231, 247, 1);
  1776. border:none;
  1777. border-radius:0px;
  1778. -moz-box-shadow:none;
  1779. -webkit-box-shadow:none;
  1780. box-shadow:none;
  1781. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1782. font-weight:500;
  1783. font-style:normal;
  1784. font-size:18px;
  1785. }
  1786. #u27955 {
  1787. border-width:0px;
  1788. position:absolute;
  1789. left:120px;
  1790. top:50px;
  1791. width:200px;
  1792. height:60px;
  1793. display:flex;
  1794. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  1795. font-weight:500;
  1796. font-style:normal;
  1797. font-size:18px;
  1798. }
  1799. #u27955 .text {
  1800. position:absolute;
  1801. align-self:center;
  1802. padding:0px 0px 0px 20px;
  1803. box-sizing:border-box;
  1804. width:100%;
  1805. }
  1806. #u27955_text {
  1807. border-width:0px;
  1808. word-wrap:break-word;
  1809. text-transform:none;
  1810. }
  1811. #u27956_div {
  1812. border-width:0px;
  1813. position:absolute;
  1814. left:0px;
  1815. top:0px;
  1816. width:65px;
  1817. height:22px;
  1818. background:inherit;
  1819. background-color:rgba(255, 255, 255, 0);
  1820. border:none;
  1821. border-radius:0px;
  1822. -moz-box-shadow:none;
  1823. -webkit-box-shadow:none;
  1824. box-shadow:none;
  1825. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1826. font-weight:400;
  1827. font-style:normal;
  1828. font-size:16px;
  1829. }
  1830. #u27956 {
  1831. border-width:0px;
  1832. position:absolute;
  1833. left:147px;
  1834. top:130px;
  1835. width:65px;
  1836. height:22px;
  1837. display:flex;
  1838. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1839. font-weight:400;
  1840. font-style:normal;
  1841. font-size:16px;
  1842. }
  1843. #u27956 .text {
  1844. position:absolute;
  1845. align-self:flex-start;
  1846. padding:0px 0px 0px 0px;
  1847. box-sizing:border-box;
  1848. width:100%;
  1849. }
  1850. #u27956_text {
  1851. border-width:0px;
  1852. white-space:nowrap;
  1853. text-transform:none;
  1854. }
  1855. #u27957_div {
  1856. border-width:0px;
  1857. position:absolute;
  1858. left:0px;
  1859. top:0px;
  1860. width:65px;
  1861. height:22px;
  1862. background:inherit;
  1863. background-color:rgba(255, 255, 255, 0);
  1864. border:none;
  1865. border-radius:0px;
  1866. -moz-box-shadow:none;
  1867. -webkit-box-shadow:none;
  1868. box-shadow:none;
  1869. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1870. font-weight:400;
  1871. font-style:normal;
  1872. font-size:16px;
  1873. }
  1874. #u27957 {
  1875. border-width:0px;
  1876. position:absolute;
  1877. left:147px;
  1878. top:229px;
  1879. width:65px;
  1880. height:22px;
  1881. display:flex;
  1882. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1883. font-weight:400;
  1884. font-style:normal;
  1885. font-size:16px;
  1886. }
  1887. #u27957 .text {
  1888. position:absolute;
  1889. align-self:flex-start;
  1890. padding:0px 0px 0px 0px;
  1891. box-sizing:border-box;
  1892. width:100%;
  1893. }
  1894. #u27957_text {
  1895. border-width:0px;
  1896. white-space:nowrap;
  1897. text-transform:none;
  1898. }
  1899. #u27958_div {
  1900. border-width:0px;
  1901. position:absolute;
  1902. left:0px;
  1903. top:0px;
  1904. width:65px;
  1905. height:22px;
  1906. background:inherit;
  1907. background-color:rgba(255, 255, 255, 0);
  1908. border:none;
  1909. border-radius:0px;
  1910. -moz-box-shadow:none;
  1911. -webkit-box-shadow:none;
  1912. box-shadow:none;
  1913. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1914. font-weight:400;
  1915. font-style:normal;
  1916. font-size:16px;
  1917. }
  1918. #u27958 {
  1919. border-width:0px;
  1920. position:absolute;
  1921. left:147px;
  1922. top:271px;
  1923. width:65px;
  1924. height:22px;
  1925. display:flex;
  1926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1927. font-weight:400;
  1928. font-style:normal;
  1929. font-size:16px;
  1930. }
  1931. #u27958 .text {
  1932. position:absolute;
  1933. align-self:flex-start;
  1934. padding:0px 0px 0px 0px;
  1935. box-sizing:border-box;
  1936. width:100%;
  1937. }
  1938. #u27958_text {
  1939. border-width:0px;
  1940. white-space:nowrap;
  1941. text-transform:none;
  1942. }
  1943. #u27959_div {
  1944. border-width:0px;
  1945. position:absolute;
  1946. left:0px;
  1947. top:0px;
  1948. width:65px;
  1949. height:22px;
  1950. background:inherit;
  1951. background-color:rgba(255, 255, 255, 0);
  1952. border:none;
  1953. border-radius:0px;
  1954. -moz-box-shadow:none;
  1955. -webkit-box-shadow:none;
  1956. box-shadow:none;
  1957. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1958. font-weight:400;
  1959. font-style:normal;
  1960. font-size:16px;
  1961. }
  1962. #u27959 {
  1963. border-width:0px;
  1964. position:absolute;
  1965. left:147px;
  1966. top:313px;
  1967. width:65px;
  1968. height:22px;
  1969. display:flex;
  1970. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1971. font-weight:400;
  1972. font-style:normal;
  1973. font-size:16px;
  1974. }
  1975. #u27959 .text {
  1976. position:absolute;
  1977. align-self:flex-start;
  1978. padding:0px 0px 0px 0px;
  1979. box-sizing:border-box;
  1980. width:100%;
  1981. }
  1982. #u27959_text {
  1983. border-width:0px;
  1984. white-space:nowrap;
  1985. text-transform:none;
  1986. }
  1987. #u27960_div {
  1988. border-width:0px;
  1989. position:absolute;
  1990. left:0px;
  1991. top:0px;
  1992. width:65px;
  1993. height:22px;
  1994. background:inherit;
  1995. background-color:rgba(255, 255, 255, 0);
  1996. border:none;
  1997. border-radius:0px;
  1998. -moz-box-shadow:none;
  1999. -webkit-box-shadow:none;
  2000. box-shadow:none;
  2001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2002. font-weight:400;
  2003. font-style:normal;
  2004. font-size:16px;
  2005. }
  2006. #u27960 {
  2007. border-width:0px;
  2008. position:absolute;
  2009. left:147px;
  2010. top:788px;
  2011. width:65px;
  2012. height:22px;
  2013. display:flex;
  2014. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2015. font-weight:400;
  2016. font-style:normal;
  2017. font-size:16px;
  2018. }
  2019. #u27960 .text {
  2020. position:absolute;
  2021. align-self:flex-start;
  2022. padding:0px 0px 0px 0px;
  2023. box-sizing:border-box;
  2024. width:100%;
  2025. }
  2026. #u27960_text {
  2027. border-width:0px;
  2028. white-space:nowrap;
  2029. text-transform:none;
  2030. }
  2031. #u27961_div {
  2032. border-width:0px;
  2033. position:absolute;
  2034. left:0px;
  2035. top:0px;
  2036. width:49px;
  2037. height:17px;
  2038. background:inherit;
  2039. background-color:rgba(255, 255, 255, 0);
  2040. border:none;
  2041. border-radius:0px;
  2042. -moz-box-shadow:none;
  2043. -webkit-box-shadow:none;
  2044. box-shadow:none;
  2045. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2046. font-weight:400;
  2047. font-style:normal;
  2048. font-size:12px;
  2049. color:#AAAAAA;
  2050. }
  2051. #u27961 {
  2052. border-width:0px;
  2053. position:absolute;
  2054. left:147px;
  2055. top:192px;
  2056. width:49px;
  2057. height:17px;
  2058. display:flex;
  2059. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2060. font-weight:400;
  2061. font-style:normal;
  2062. font-size:12px;
  2063. color:#AAAAAA;
  2064. }
  2065. #u27961 .text {
  2066. position:absolute;
  2067. align-self:flex-start;
  2068. padding:0px 0px 0px 0px;
  2069. box-sizing:border-box;
  2070. width:100%;
  2071. }
  2072. #u27961_text {
  2073. border-width:0px;
  2074. white-space:nowrap;
  2075. text-transform:none;
  2076. }
  2077. #u27962_img {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:201px;
  2083. height:2px;
  2084. }
  2085. #u27962 {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:121px;
  2089. top:725px;
  2090. width:200px;
  2091. height:1px;
  2092. display:flex;
  2093. }
  2094. #u27962 .text {
  2095. position:absolute;
  2096. align-self:center;
  2097. padding:2px 2px 2px 2px;
  2098. box-sizing:border-box;
  2099. width:100%;
  2100. }
  2101. #u27962_text {
  2102. border-width:0px;
  2103. word-wrap:break-word;
  2104. text-transform:none;
  2105. visibility:hidden;
  2106. }
  2107. #u27963_div {
  2108. border-width:0px;
  2109. position:absolute;
  2110. left:0px;
  2111. top:0px;
  2112. width:49px;
  2113. height:17px;
  2114. background:inherit;
  2115. background-color:rgba(255, 255, 255, 0);
  2116. border:none;
  2117. border-radius:0px;
  2118. -moz-box-shadow:none;
  2119. -webkit-box-shadow:none;
  2120. box-shadow:none;
  2121. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2122. font-weight:400;
  2123. font-style:normal;
  2124. font-size:12px;
  2125. color:#AAAAAA;
  2126. }
  2127. #u27963 {
  2128. border-width:0px;
  2129. position:absolute;
  2130. left:147px;
  2131. top:746px;
  2132. width:49px;
  2133. height:17px;
  2134. display:flex;
  2135. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2136. font-weight:400;
  2137. font-style:normal;
  2138. font-size:12px;
  2139. color:#AAAAAA;
  2140. }
  2141. #u27963 .text {
  2142. position:absolute;
  2143. align-self:flex-start;
  2144. padding:0px 0px 0px 0px;
  2145. box-sizing:border-box;
  2146. width:100%;
  2147. }
  2148. #u27963_text {
  2149. border-width:0px;
  2150. white-space:nowrap;
  2151. text-transform:none;
  2152. }
  2153. #u27964_img {
  2154. border-width:0px;
  2155. position:absolute;
  2156. left:0px;
  2157. top:0px;
  2158. width:201px;
  2159. height:2px;
  2160. }
  2161. #u27964 {
  2162. border-width:0px;
  2163. position:absolute;
  2164. left:121px;
  2165. top:171px;
  2166. width:200px;
  2167. height:1px;
  2168. display:flex;
  2169. }
  2170. #u27964 .text {
  2171. position:absolute;
  2172. align-self:center;
  2173. padding:2px 2px 2px 2px;
  2174. box-sizing:border-box;
  2175. width:100%;
  2176. }
  2177. #u27964_text {
  2178. border-width:0px;
  2179. word-wrap:break-word;
  2180. text-transform:none;
  2181. visibility:hidden;
  2182. }
  2183. #u27965_div {
  2184. border-width:0px;
  2185. position:absolute;
  2186. left:0px;
  2187. top:0px;
  2188. width:81px;
  2189. height:22px;
  2190. background:inherit;
  2191. background-color:rgba(255, 255, 255, 0);
  2192. border:none;
  2193. border-radius:0px;
  2194. -moz-box-shadow:none;
  2195. -webkit-box-shadow:none;
  2196. box-shadow:none;
  2197. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2198. font-weight:400;
  2199. font-style:normal;
  2200. font-size:16px;
  2201. }
  2202. #u27965 {
  2203. border-width:0px;
  2204. position:absolute;
  2205. left:147px;
  2206. top:355px;
  2207. width:81px;
  2208. height:22px;
  2209. display:flex;
  2210. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2211. font-weight:400;
  2212. font-style:normal;
  2213. font-size:16px;
  2214. }
  2215. #u27965 .text {
  2216. position:absolute;
  2217. align-self:flex-start;
  2218. padding:0px 0px 0px 0px;
  2219. box-sizing:border-box;
  2220. width:100%;
  2221. }
  2222. #u27965_text {
  2223. border-width:0px;
  2224. white-space:nowrap;
  2225. text-transform:none;
  2226. }
  2227. #u27966_div {
  2228. border-width:0px;
  2229. position:absolute;
  2230. left:0px;
  2231. top:0px;
  2232. width:81px;
  2233. height:22px;
  2234. background:inherit;
  2235. background-color:rgba(255, 255, 255, 0);
  2236. border:none;
  2237. border-radius:0px;
  2238. -moz-box-shadow:none;
  2239. -webkit-box-shadow:none;
  2240. box-shadow:none;
  2241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2242. font-weight:400;
  2243. font-style:normal;
  2244. font-size:16px;
  2245. }
  2246. #u27966 {
  2247. border-width:0px;
  2248. position:absolute;
  2249. left:147px;
  2250. top:397px;
  2251. width:81px;
  2252. height:22px;
  2253. display:flex;
  2254. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2255. font-weight:400;
  2256. font-style:normal;
  2257. font-size:16px;
  2258. }
  2259. #u27966 .text {
  2260. position:absolute;
  2261. align-self:flex-start;
  2262. padding:0px 0px 0px 0px;
  2263. box-sizing:border-box;
  2264. width:100%;
  2265. }
  2266. #u27966_text {
  2267. border-width:0px;
  2268. white-space:nowrap;
  2269. text-transform:none;
  2270. }
  2271. #u27967_div {
  2272. border-width:0px;
  2273. position:absolute;
  2274. left:0px;
  2275. top:0px;
  2276. width:81px;
  2277. height:22px;
  2278. background:inherit;
  2279. background-color:rgba(255, 255, 255, 0);
  2280. border:none;
  2281. border-radius:0px;
  2282. -moz-box-shadow:none;
  2283. -webkit-box-shadow:none;
  2284. box-shadow:none;
  2285. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2286. font-weight:400;
  2287. font-style:normal;
  2288. font-size:16px;
  2289. }
  2290. #u27967 {
  2291. border-width:0px;
  2292. position:absolute;
  2293. left:147px;
  2294. top:439px;
  2295. width:81px;
  2296. height:22px;
  2297. display:flex;
  2298. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2299. font-weight:400;
  2300. font-style:normal;
  2301. font-size:16px;
  2302. }
  2303. #u27967 .text {
  2304. position:absolute;
  2305. align-self:flex-start;
  2306. padding:0px 0px 0px 0px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u27967_text {
  2311. border-width:0px;
  2312. white-space:nowrap;
  2313. text-transform:none;
  2314. }
  2315. #u27968_div {
  2316. border-width:0px;
  2317. position:absolute;
  2318. left:0px;
  2319. top:0px;
  2320. width:65px;
  2321. height:22px;
  2322. background:inherit;
  2323. background-color:rgba(255, 255, 255, 0);
  2324. border:none;
  2325. border-radius:0px;
  2326. -moz-box-shadow:none;
  2327. -webkit-box-shadow:none;
  2328. box-shadow:none;
  2329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2330. font-weight:400;
  2331. font-style:normal;
  2332. font-size:16px;
  2333. }
  2334. #u27968 {
  2335. border-width:0px;
  2336. position:absolute;
  2337. left:147px;
  2338. top:830px;
  2339. width:65px;
  2340. height:22px;
  2341. display:flex;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:16px;
  2346. }
  2347. #u27968 .text {
  2348. position:absolute;
  2349. align-self:flex-start;
  2350. padding:0px 0px 0px 0px;
  2351. box-sizing:border-box;
  2352. width:100%;
  2353. }
  2354. #u27968_text {
  2355. border-width:0px;
  2356. white-space:nowrap;
  2357. text-transform:none;
  2358. }
  2359. #u27969_div {
  2360. border-width:0px;
  2361. position:absolute;
  2362. left:0px;
  2363. top:0px;
  2364. width:65px;
  2365. height:22px;
  2366. background:inherit;
  2367. background-color:rgba(255, 255, 255, 0);
  2368. border:none;
  2369. border-radius:0px;
  2370. -moz-box-shadow:none;
  2371. -webkit-box-shadow:none;
  2372. box-shadow:none;
  2373. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2374. font-weight:400;
  2375. font-style:normal;
  2376. font-size:16px;
  2377. }
  2378. #u27969 {
  2379. border-width:0px;
  2380. position:absolute;
  2381. left:146px;
  2382. top:539px;
  2383. width:65px;
  2384. height:22px;
  2385. display:flex;
  2386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2387. font-weight:400;
  2388. font-style:normal;
  2389. font-size:16px;
  2390. }
  2391. #u27969 .text {
  2392. position:absolute;
  2393. align-self:flex-start;
  2394. padding:0px 0px 0px 0px;
  2395. box-sizing:border-box;
  2396. width:100%;
  2397. }
  2398. #u27969_text {
  2399. border-width:0px;
  2400. white-space:nowrap;
  2401. text-transform:none;
  2402. }
  2403. #u27970_div {
  2404. border-width:0px;
  2405. position:absolute;
  2406. left:0px;
  2407. top:0px;
  2408. width:65px;
  2409. height:22px;
  2410. background:inherit;
  2411. background-color:rgba(255, 255, 255, 0);
  2412. border:none;
  2413. border-radius:0px;
  2414. -moz-box-shadow:none;
  2415. -webkit-box-shadow:none;
  2416. box-shadow:none;
  2417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2418. font-weight:400;
  2419. font-style:normal;
  2420. font-size:16px;
  2421. }
  2422. #u27970 {
  2423. border-width:0px;
  2424. position:absolute;
  2425. left:146px;
  2426. top:581px;
  2427. width:65px;
  2428. height:22px;
  2429. display:flex;
  2430. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2431. font-weight:400;
  2432. font-style:normal;
  2433. font-size:16px;
  2434. }
  2435. #u27970 .text {
  2436. position:absolute;
  2437. align-self:flex-start;
  2438. padding:0px 0px 0px 0px;
  2439. box-sizing:border-box;
  2440. width:100%;
  2441. }
  2442. #u27970_text {
  2443. border-width:0px;
  2444. white-space:nowrap;
  2445. text-transform:none;
  2446. }
  2447. #u27971_div {
  2448. border-width:0px;
  2449. position:absolute;
  2450. left:0px;
  2451. top:0px;
  2452. width:49px;
  2453. height:17px;
  2454. background:inherit;
  2455. background-color:rgba(255, 255, 255, 0);
  2456. border:none;
  2457. border-radius:0px;
  2458. -moz-box-shadow:none;
  2459. -webkit-box-shadow:none;
  2460. box-shadow:none;
  2461. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2462. font-weight:400;
  2463. font-style:normal;
  2464. font-size:12px;
  2465. color:#AAAAAA;
  2466. }
  2467. #u27971 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:146px;
  2471. top:502px;
  2472. width:49px;
  2473. height:17px;
  2474. display:flex;
  2475. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2476. font-weight:400;
  2477. font-style:normal;
  2478. font-size:12px;
  2479. color:#AAAAAA;
  2480. }
  2481. #u27971 .text {
  2482. position:absolute;
  2483. align-self:flex-start;
  2484. padding:0px 0px 0px 0px;
  2485. box-sizing:border-box;
  2486. width:100%;
  2487. }
  2488. #u27971_text {
  2489. border-width:0px;
  2490. white-space:nowrap;
  2491. text-transform:none;
  2492. }
  2493. #u27972_img {
  2494. border-width:0px;
  2495. position:absolute;
  2496. left:0px;
  2497. top:0px;
  2498. width:201px;
  2499. height:2px;
  2500. }
  2501. #u27972 {
  2502. border-width:0px;
  2503. position:absolute;
  2504. left:120px;
  2505. top:481px;
  2506. width:200px;
  2507. height:1px;
  2508. display:flex;
  2509. }
  2510. #u27972 .text {
  2511. position:absolute;
  2512. align-self:center;
  2513. padding:2px 2px 2px 2px;
  2514. box-sizing:border-box;
  2515. width:100%;
  2516. }
  2517. #u27972_text {
  2518. border-width:0px;
  2519. word-wrap:break-word;
  2520. text-transform:none;
  2521. visibility:hidden;
  2522. }
  2523. #u27973_div {
  2524. border-width:0px;
  2525. position:absolute;
  2526. left:0px;
  2527. top:0px;
  2528. width:65px;
  2529. height:22px;
  2530. background:inherit;
  2531. background-color:rgba(255, 255, 255, 0);
  2532. border:none;
  2533. border-radius:0px;
  2534. -moz-box-shadow:none;
  2535. -webkit-box-shadow:none;
  2536. box-shadow:none;
  2537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2538. font-weight:400;
  2539. font-style:normal;
  2540. font-size:16px;
  2541. }
  2542. #u27973 {
  2543. border-width:0px;
  2544. position:absolute;
  2545. left:146px;
  2546. top:681px;
  2547. width:65px;
  2548. height:22px;
  2549. display:flex;
  2550. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2551. font-weight:400;
  2552. font-style:normal;
  2553. font-size:16px;
  2554. }
  2555. #u27973 .text {
  2556. position:absolute;
  2557. align-self:flex-start;
  2558. padding:0px 0px 0px 0px;
  2559. box-sizing:border-box;
  2560. width:100%;
  2561. }
  2562. #u27973_text {
  2563. border-width:0px;
  2564. white-space:nowrap;
  2565. text-transform:none;
  2566. }
  2567. #u27974_div {
  2568. border-width:0px;
  2569. position:absolute;
  2570. left:0px;
  2571. top:0px;
  2572. width:49px;
  2573. height:17px;
  2574. background:inherit;
  2575. background-color:rgba(255, 255, 255, 0);
  2576. border:none;
  2577. border-radius:0px;
  2578. -moz-box-shadow:none;
  2579. -webkit-box-shadow:none;
  2580. box-shadow:none;
  2581. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2582. font-weight:400;
  2583. font-style:normal;
  2584. font-size:12px;
  2585. color:#AAAAAA;
  2586. }
  2587. #u27974 {
  2588. border-width:0px;
  2589. position:absolute;
  2590. left:146px;
  2591. top:644px;
  2592. width:49px;
  2593. height:17px;
  2594. display:flex;
  2595. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2596. font-weight:400;
  2597. font-style:normal;
  2598. font-size:12px;
  2599. color:#AAAAAA;
  2600. }
  2601. #u27974 .text {
  2602. position:absolute;
  2603. align-self:flex-start;
  2604. padding:0px 0px 0px 0px;
  2605. box-sizing:border-box;
  2606. width:100%;
  2607. }
  2608. #u27974_text {
  2609. border-width:0px;
  2610. white-space:nowrap;
  2611. text-transform:none;
  2612. }
  2613. #u27975_img {
  2614. border-width:0px;
  2615. position:absolute;
  2616. left:0px;
  2617. top:0px;
  2618. width:201px;
  2619. height:2px;
  2620. }
  2621. #u27975 {
  2622. border-width:0px;
  2623. position:absolute;
  2624. left:120px;
  2625. top:623px;
  2626. width:200px;
  2627. height:1px;
  2628. display:flex;
  2629. }
  2630. #u27975 .text {
  2631. position:absolute;
  2632. align-self:center;
  2633. padding:2px 2px 2px 2px;
  2634. box-sizing:border-box;
  2635. width:100%;
  2636. }
  2637. #u27975_text {
  2638. border-width:0px;
  2639. word-wrap:break-word;
  2640. text-transform:none;
  2641. visibility:hidden;
  2642. }
  2643. #u27976_div {
  2644. border-width:0px;
  2645. position:absolute;
  2646. left:0px;
  2647. top:0px;
  2648. width:65px;
  2649. height:22px;
  2650. background:inherit;
  2651. background-color:rgba(255, 255, 255, 0);
  2652. border:none;
  2653. border-radius:0px;
  2654. -moz-box-shadow:none;
  2655. -webkit-box-shadow:none;
  2656. box-shadow:none;
  2657. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2658. font-weight:400;
  2659. font-style:normal;
  2660. font-size:16px;
  2661. }
  2662. #u27976 {
  2663. border-width:0px;
  2664. position:absolute;
  2665. left:147px;
  2666. top:930px;
  2667. width:65px;
  2668. height:22px;
  2669. display:flex;
  2670. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2671. font-weight:400;
  2672. font-style:normal;
  2673. font-size:16px;
  2674. }
  2675. #u27976 .text {
  2676. position:absolute;
  2677. align-self:flex-start;
  2678. padding:0px 0px 0px 0px;
  2679. box-sizing:border-box;
  2680. width:100%;
  2681. }
  2682. #u27976_text {
  2683. border-width:0px;
  2684. white-space:nowrap;
  2685. text-transform:none;
  2686. }
  2687. #u27977_img {
  2688. border-width:0px;
  2689. position:absolute;
  2690. left:0px;
  2691. top:0px;
  2692. width:201px;
  2693. height:2px;
  2694. }
  2695. #u27977 {
  2696. border-width:0px;
  2697. position:absolute;
  2698. left:121px;
  2699. top:872px;
  2700. width:200px;
  2701. height:1px;
  2702. display:flex;
  2703. }
  2704. #u27977 .text {
  2705. position:absolute;
  2706. align-self:center;
  2707. padding:2px 2px 2px 2px;
  2708. box-sizing:border-box;
  2709. width:100%;
  2710. }
  2711. #u27977_text {
  2712. border-width:0px;
  2713. word-wrap:break-word;
  2714. text-transform:none;
  2715. visibility:hidden;
  2716. }
  2717. #u27978_div {
  2718. border-width:0px;
  2719. position:absolute;
  2720. left:0px;
  2721. top:0px;
  2722. width:49px;
  2723. height:17px;
  2724. background:inherit;
  2725. background-color:rgba(255, 255, 255, 0);
  2726. border:none;
  2727. border-radius:0px;
  2728. -moz-box-shadow:none;
  2729. -webkit-box-shadow:none;
  2730. box-shadow:none;
  2731. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2732. font-weight:400;
  2733. font-style:normal;
  2734. font-size:12px;
  2735. color:#AAAAAA;
  2736. }
  2737. #u27978 {
  2738. border-width:0px;
  2739. position:absolute;
  2740. left:147px;
  2741. top:893px;
  2742. width:49px;
  2743. height:17px;
  2744. display:flex;
  2745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2746. font-weight:400;
  2747. font-style:normal;
  2748. font-size:12px;
  2749. color:#AAAAAA;
  2750. }
  2751. #u27978 .text {
  2752. position:absolute;
  2753. align-self:flex-start;
  2754. padding:0px 0px 0px 0px;
  2755. box-sizing:border-box;
  2756. width:100%;
  2757. }
  2758. #u27978_text {
  2759. border-width:0px;
  2760. white-space:nowrap;
  2761. text-transform:none;
  2762. }
  2763. #u27979_div {
  2764. border-width:0px;
  2765. position:absolute;
  2766. left:0px;
  2767. top:0px;
  2768. width:1259px;
  2769. height:1180px;
  2770. background:inherit;
  2771. background-color:rgba(255, 255, 255, 1);
  2772. border:none;
  2773. border-radius:0px;
  2774. -moz-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2775. -webkit-box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2776. box-shadow:0px 0px 3px rgba(127, 127, 127, 0.349019607843137);
  2777. }
  2778. #u27979 {
  2779. border-width:0px;
  2780. position:absolute;
  2781. left:330px;
  2782. top:50px;
  2783. width:1259px;
  2784. height:1180px;
  2785. display:flex;
  2786. }
  2787. #u27979 .text {
  2788. position:absolute;
  2789. align-self:center;
  2790. padding:2px 2px 2px 2px;
  2791. box-sizing:border-box;
  2792. width:100%;
  2793. }
  2794. #u27979_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u27980_div {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:0px;
  2804. top:0px;
  2805. width:73px;
  2806. height:50px;
  2807. background:inherit;
  2808. background-color:rgba(255, 255, 255, 0);
  2809. border:none;
  2810. border-left:0px;
  2811. border-top:0px;
  2812. border-right:0px;
  2813. border-radius:0px;
  2814. border-bottom-right-radius:0px;
  2815. border-bottom-left-radius:0px;
  2816. -moz-box-shadow:none;
  2817. -webkit-box-shadow:none;
  2818. box-shadow:none;
  2819. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2820. font-weight:500;
  2821. font-style:normal;
  2822. font-size:18px;
  2823. }
  2824. #u27980 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:350px;
  2828. top:50px;
  2829. width:73px;
  2830. height:50px;
  2831. display:flex;
  2832. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  2833. font-weight:500;
  2834. font-style:normal;
  2835. font-size:18px;
  2836. }
  2837. #u27980 .text {
  2838. position:absolute;
  2839. align-self:center;
  2840. padding:0px 0px 0px 0px;
  2841. box-sizing:border-box;
  2842. width:100%;
  2843. }
  2844. #u27980_text {
  2845. border-width:0px;
  2846. white-space:nowrap;
  2847. text-transform:none;
  2848. }
  2849. #u27981_div {
  2850. border-width:0px;
  2851. position:absolute;
  2852. left:0px;
  2853. top:0px;
  2854. width:59px;
  2855. height:30px;
  2856. background:inherit;
  2857. background-color:rgba(41, 143, 255, 1);
  2858. border:none;
  2859. border-radius:4px;
  2860. -moz-box-shadow:none;
  2861. -webkit-box-shadow:none;
  2862. box-shadow:none;
  2863. font-family:'Microsoft YaHei', sans-serif;
  2864. font-weight:400;
  2865. font-style:normal;
  2866. font-size:14px;
  2867. color:#FFFFFF;
  2868. }
  2869. #u27981 {
  2870. border-width:0px;
  2871. position:absolute;
  2872. left:810px;
  2873. top:100px;
  2874. width:59px;
  2875. height:30px;
  2876. display:flex;
  2877. font-family:'Microsoft YaHei', sans-serif;
  2878. font-weight:400;
  2879. font-style:normal;
  2880. font-size:14px;
  2881. color:#FFFFFF;
  2882. }
  2883. #u27981 .text {
  2884. position:absolute;
  2885. align-self:center;
  2886. padding:5px 15px 5px 15px;
  2887. box-sizing:border-box;
  2888. width:100%;
  2889. }
  2890. #u27981_text {
  2891. border-width:0px;
  2892. white-space:nowrap;
  2893. text-transform:none;
  2894. }
  2895. #u27982_div {
  2896. border-width:0px;
  2897. position:absolute;
  2898. left:0px;
  2899. top:0px;
  2900. width:55px;
  2901. height:30px;
  2902. background:inherit;
  2903. background-color:rgba(255, 255, 255, 1);
  2904. box-sizing:border-box;
  2905. border-width:1px;
  2906. border-style:solid;
  2907. border-color:rgba(170, 170, 170, 1);
  2908. border-radius:4px;
  2909. -moz-box-shadow:none;
  2910. -webkit-box-shadow:none;
  2911. box-shadow:none;
  2912. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2913. font-weight:400;
  2914. font-style:normal;
  2915. font-size:12px;
  2916. color:#555555;
  2917. }
  2918. #u27982 {
  2919. border-width:0px;
  2920. position:absolute;
  2921. left:879px;
  2922. top:100px;
  2923. width:55px;
  2924. height:30px;
  2925. display:flex;
  2926. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2927. font-weight:400;
  2928. font-style:normal;
  2929. font-size:12px;
  2930. color:#555555;
  2931. }
  2932. #u27982 .text {
  2933. position:absolute;
  2934. align-self:center;
  2935. padding:5px 15px 5px 15px;
  2936. box-sizing:border-box;
  2937. width:100%;
  2938. }
  2939. #u27982_text {
  2940. border-width:0px;
  2941. white-space:nowrap;
  2942. text-transform:none;
  2943. }
  2944. #u27983 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:0px;
  2949. width:0px;
  2950. height:0px;
  2951. }
  2952. #u27984_div {
  2953. border-width:0px;
  2954. position:absolute;
  2955. left:0px;
  2956. top:0px;
  2957. width:140px;
  2958. height:30px;
  2959. background:inherit;
  2960. background-color:rgba(255, 255, 255, 1);
  2961. box-sizing:border-box;
  2962. border-width:1px;
  2963. border-style:solid;
  2964. border-color:rgba(201, 201, 201, 1);
  2965. border-radius:4px;
  2966. -moz-box-shadow:none;
  2967. -webkit-box-shadow:none;
  2968. box-shadow:none;
  2969. font-family:'Microsoft YaHei', sans-serif;
  2970. font-weight:400;
  2971. font-style:normal;
  2972. font-size:14px;
  2973. color:#CCCCCC;
  2974. text-align:left;
  2975. }
  2976. #u27984 {
  2977. border-width:0px;
  2978. position:absolute;
  2979. left:350px;
  2980. top:100px;
  2981. width:140px;
  2982. height:30px;
  2983. display:flex;
  2984. font-family:'Microsoft YaHei', sans-serif;
  2985. font-weight:400;
  2986. font-style:normal;
  2987. font-size:14px;
  2988. color:#CCCCCC;
  2989. text-align:left;
  2990. }
  2991. #u27984 .text {
  2992. position:absolute;
  2993. align-self:center;
  2994. padding:2px 8px 2px 8px;
  2995. box-sizing:border-box;
  2996. width:100%;
  2997. }
  2998. #u27984_text {
  2999. border-width:0px;
  3000. word-wrap:break-word;
  3001. text-transform:none;
  3002. visibility:hidden;
  3003. }
  3004. #u27985_input {
  3005. position:absolute;
  3006. left:0px;
  3007. top:0px;
  3008. width:127px;
  3009. height:25px;
  3010. padding:2px 2px 2px 2px;
  3011. font-family:'Microsoft YaHei', sans-serif;
  3012. font-weight:400;
  3013. font-style:normal;
  3014. font-size:10px;
  3015. letter-spacing:normal;
  3016. color:#000000;
  3017. vertical-align:none;
  3018. text-align:left;
  3019. text-transform:none;
  3020. background-color:transparent;
  3021. border-color:transparent;
  3022. }
  3023. #u27985_input.disabled {
  3024. position:absolute;
  3025. left:0px;
  3026. top:0px;
  3027. width:127px;
  3028. height:25px;
  3029. padding:2px 2px 2px 2px;
  3030. font-family:'Microsoft YaHei', sans-serif;
  3031. font-weight:400;
  3032. font-style:normal;
  3033. font-size:10px;
  3034. letter-spacing:normal;
  3035. color:#000000;
  3036. vertical-align:none;
  3037. text-align:left;
  3038. text-transform:none;
  3039. background-color:transparent;
  3040. border-color:transparent;
  3041. }
  3042. #u27985_div {
  3043. border-width:0px;
  3044. position:absolute;
  3045. left:0px;
  3046. top:0px;
  3047. width:127px;
  3048. height:25px;
  3049. background:inherit;
  3050. background-color:rgba(255, 255, 255, 1);
  3051. border:none;
  3052. border-radius:0px;
  3053. -moz-box-shadow:none;
  3054. -webkit-box-shadow:none;
  3055. box-shadow:none;
  3056. font-family:'Microsoft YaHei', sans-serif;
  3057. font-weight:400;
  3058. font-style:normal;
  3059. font-size:10px;
  3060. }
  3061. #u27985 {
  3062. border-width:0px;
  3063. position:absolute;
  3064. left:358px;
  3065. top:101px;
  3066. width:127px;
  3067. height:25px;
  3068. display:flex;
  3069. font-family:'Microsoft YaHei', sans-serif;
  3070. font-weight:400;
  3071. font-style:normal;
  3072. font-size:10px;
  3073. }
  3074. #u27985 .text {
  3075. position:absolute;
  3076. align-self:center;
  3077. padding:2px 2px 2px 2px;
  3078. box-sizing:border-box;
  3079. width:100%;
  3080. }
  3081. #u27985_div.disabled {
  3082. border-width:0px;
  3083. position:absolute;
  3084. left:0px;
  3085. top:0px;
  3086. width:127px;
  3087. height:25px;
  3088. background:inherit;
  3089. background-color:rgba(240, 240, 240, 1);
  3090. border:none;
  3091. border-radius:0px;
  3092. -moz-box-shadow:none;
  3093. -webkit-box-shadow:none;
  3094. box-shadow:none;
  3095. font-family:'Microsoft YaHei', sans-serif;
  3096. font-weight:400;
  3097. font-style:normal;
  3098. font-size:10px;
  3099. }
  3100. #u27985.disabled {
  3101. }
  3102. #u27986 {
  3103. border-width:0px;
  3104. position:absolute;
  3105. left:0px;
  3106. top:0px;
  3107. width:0px;
  3108. height:0px;
  3109. }
  3110. #u27987_div {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:140px;
  3116. height:30px;
  3117. background:inherit;
  3118. background-color:rgba(255, 255, 255, 1);
  3119. box-sizing:border-box;
  3120. border-width:1px;
  3121. border-style:solid;
  3122. border-color:rgba(215, 215, 215, 1);
  3123. border-radius:4px;
  3124. -moz-box-shadow:none;
  3125. -webkit-box-shadow:none;
  3126. box-shadow:none;
  3127. font-size:11px;
  3128. }
  3129. #u27987 {
  3130. border-width:0px;
  3131. position:absolute;
  3132. left:500px;
  3133. top:100px;
  3134. width:140px;
  3135. height:30px;
  3136. display:flex;
  3137. font-size:11px;
  3138. }
  3139. #u27987 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 2px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u27987_text {
  3147. border-width:0px;
  3148. word-wrap:break-word;
  3149. text-transform:none;
  3150. visibility:hidden;
  3151. }
  3152. #u27988_input {
  3153. position:absolute;
  3154. left:0px;
  3155. top:0px;
  3156. width:120px;
  3157. height:23px;
  3158. padding:2px 2px 2px 2px;
  3159. font-family:'ArialMT', 'Arial', sans-serif;
  3160. font-weight:400;
  3161. font-style:normal;
  3162. font-size:11px;
  3163. letter-spacing:normal;
  3164. color:#AAAAAA;
  3165. vertical-align:none;
  3166. text-align:left;
  3167. text-transform:none;
  3168. background-color:transparent;
  3169. border-color:transparent;
  3170. }
  3171. #u27988_input.disabled {
  3172. position:absolute;
  3173. left:0px;
  3174. top:0px;
  3175. width:120px;
  3176. height:23px;
  3177. padding:2px 2px 2px 2px;
  3178. font-family:'ArialMT', 'Arial', sans-serif;
  3179. font-weight:400;
  3180. font-style:normal;
  3181. font-size:11px;
  3182. letter-spacing:normal;
  3183. color:#AAAAAA;
  3184. vertical-align:none;
  3185. text-align:left;
  3186. text-transform:none;
  3187. background-color:transparent;
  3188. border-color:transparent;
  3189. }
  3190. #u27988_div {
  3191. border-width:0px;
  3192. position:absolute;
  3193. left:0px;
  3194. top:0px;
  3195. width:120px;
  3196. height:23px;
  3197. background:inherit;
  3198. background-color:rgba(255, 255, 255, 1);
  3199. border:none;
  3200. border-radius:0px;
  3201. -moz-box-shadow:none;
  3202. -webkit-box-shadow:none;
  3203. box-shadow:none;
  3204. font-size:11px;
  3205. color:#AAAAAA;
  3206. }
  3207. #u27988 {
  3208. border-width:0px;
  3209. position:absolute;
  3210. left:507px;
  3211. top:102px;
  3212. width:120px;
  3213. height:23px;
  3214. display:flex;
  3215. font-size:11px;
  3216. color:#AAAAAA;
  3217. }
  3218. #u27988 .text {
  3219. position:absolute;
  3220. align-self:flex-start;
  3221. padding:2px 2px 2px 2px;
  3222. box-sizing:border-box;
  3223. width:100%;
  3224. }
  3225. #u27988_div.disabled {
  3226. border-width:0px;
  3227. position:absolute;
  3228. left:0px;
  3229. top:0px;
  3230. width:120px;
  3231. height:23px;
  3232. background:inherit;
  3233. background-color:rgba(240, 240, 240, 1);
  3234. border:none;
  3235. border-radius:0px;
  3236. -moz-box-shadow:none;
  3237. -webkit-box-shadow:none;
  3238. box-shadow:none;
  3239. font-size:11px;
  3240. color:#AAAAAA;
  3241. }
  3242. #u27988.disabled {
  3243. }
  3244. .u27988_input_option {
  3245. font-size:11px;
  3246. }
  3247. #u27989_div {
  3248. border-width:0px;
  3249. position:absolute;
  3250. left:0px;
  3251. top:0px;
  3252. width:80px;
  3253. height:30px;
  3254. background:inherit;
  3255. background-color:rgba(24, 144, 255, 1);
  3256. border:none;
  3257. border-radius:4px;
  3258. -moz-box-shadow:none;
  3259. -webkit-box-shadow:none;
  3260. box-shadow:none;
  3261. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3262. font-weight:400;
  3263. font-style:normal;
  3264. font-size:14px;
  3265. color:#FFFFFF;
  3266. }
  3267. #u27989 {
  3268. border-width:0px;
  3269. position:absolute;
  3270. left:350px;
  3271. top:150px;
  3272. width:80px;
  3273. height:30px;
  3274. display:flex;
  3275. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3276. font-weight:400;
  3277. font-style:normal;
  3278. font-size:14px;
  3279. color:#FFFFFF;
  3280. }
  3281. #u27989 .text {
  3282. position:absolute;
  3283. align-self:center;
  3284. padding:2px 2px 2px 2px;
  3285. box-sizing:border-box;
  3286. width:100%;
  3287. }
  3288. #u27989_text {
  3289. border-width:0px;
  3290. word-wrap:break-word;
  3291. text-transform:none;
  3292. }
  3293. #u27990 {
  3294. border-width:0px;
  3295. position:absolute;
  3296. left:350px;
  3297. top:188px;
  3298. width:1219px;
  3299. height:546px;
  3300. }
  3301. #u27991_img {
  3302. border-width:0px;
  3303. position:absolute;
  3304. left:0px;
  3305. top:0px;
  3306. width:65px;
  3307. height:38px;
  3308. }
  3309. #u27991 {
  3310. border-width:0px;
  3311. position:absolute;
  3312. left:0px;
  3313. top:0px;
  3314. width:65px;
  3315. height:38px;
  3316. display:flex;
  3317. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3318. font-weight:400;
  3319. font-style:normal;
  3320. font-size:12px;
  3321. color:#FFFFFF;
  3322. }
  3323. #u27991 .text {
  3324. position:absolute;
  3325. align-self:center;
  3326. padding:2px 2px 2px 0px;
  3327. box-sizing:border-box;
  3328. width:100%;
  3329. }
  3330. #u27991_text {
  3331. border-width:0px;
  3332. word-wrap:break-word;
  3333. text-transform:none;
  3334. }
  3335. #u27992_img {
  3336. border-width:0px;
  3337. position:absolute;
  3338. left:0px;
  3339. top:0px;
  3340. width:264px;
  3341. height:38px;
  3342. }
  3343. #u27992 {
  3344. border-width:0px;
  3345. position:absolute;
  3346. left:65px;
  3347. top:0px;
  3348. width:264px;
  3349. height:38px;
  3350. display:flex;
  3351. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3352. font-weight:400;
  3353. font-style:normal;
  3354. font-size:12px;
  3355. color:#FFFFFF;
  3356. }
  3357. #u27992 .text {
  3358. position:absolute;
  3359. align-self:center;
  3360. padding:2px 2px 2px 0px;
  3361. box-sizing:border-box;
  3362. width:100%;
  3363. }
  3364. #u27992_text {
  3365. border-width:0px;
  3366. word-wrap:break-word;
  3367. text-transform:none;
  3368. }
  3369. #u27993_img {
  3370. border-width:0px;
  3371. position:absolute;
  3372. left:0px;
  3373. top:0px;
  3374. width:295px;
  3375. height:38px;
  3376. }
  3377. #u27993 {
  3378. border-width:0px;
  3379. position:absolute;
  3380. left:329px;
  3381. top:0px;
  3382. width:295px;
  3383. height:38px;
  3384. display:flex;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#FFFFFF;
  3390. }
  3391. #u27993 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u27993_text {
  3399. border-width:0px;
  3400. word-wrap:break-word;
  3401. text-transform:none;
  3402. }
  3403. #u27994_img {
  3404. border-width:0px;
  3405. position:absolute;
  3406. left:0px;
  3407. top:0px;
  3408. width:203px;
  3409. height:38px;
  3410. }
  3411. #u27994 {
  3412. border-width:0px;
  3413. position:absolute;
  3414. left:624px;
  3415. top:0px;
  3416. width:203px;
  3417. height:38px;
  3418. display:flex;
  3419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3420. font-weight:400;
  3421. font-style:normal;
  3422. font-size:12px;
  3423. color:#D9001B;
  3424. }
  3425. #u27994 .text {
  3426. position:absolute;
  3427. align-self:center;
  3428. padding:2px 2px 2px 0px;
  3429. box-sizing:border-box;
  3430. width:100%;
  3431. }
  3432. #u27994_text {
  3433. border-width:0px;
  3434. word-wrap:break-word;
  3435. text-transform:none;
  3436. }
  3437. #u27995_img {
  3438. border-width:0px;
  3439. position:absolute;
  3440. left:0px;
  3441. top:0px;
  3442. width:247px;
  3443. height:38px;
  3444. }
  3445. #u27995 {
  3446. border-width:0px;
  3447. position:absolute;
  3448. left:827px;
  3449. top:0px;
  3450. width:247px;
  3451. height:38px;
  3452. display:flex;
  3453. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3454. font-weight:400;
  3455. font-style:normal;
  3456. font-size:12px;
  3457. color:#FFFFFF;
  3458. }
  3459. #u27995 .text {
  3460. position:absolute;
  3461. align-self:center;
  3462. padding:2px 2px 2px 0px;
  3463. box-sizing:border-box;
  3464. width:100%;
  3465. }
  3466. #u27995_text {
  3467. border-width:0px;
  3468. word-wrap:break-word;
  3469. text-transform:none;
  3470. }
  3471. #u27996_img {
  3472. border-width:0px;
  3473. position:absolute;
  3474. left:0px;
  3475. top:0px;
  3476. width:145px;
  3477. height:38px;
  3478. }
  3479. #u27996 {
  3480. border-width:0px;
  3481. position:absolute;
  3482. left:1074px;
  3483. top:0px;
  3484. width:145px;
  3485. height:38px;
  3486. display:flex;
  3487. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3488. font-weight:400;
  3489. font-style:normal;
  3490. font-size:12px;
  3491. color:#FFFFFF;
  3492. }
  3493. #u27996 .text {
  3494. position:absolute;
  3495. align-self:center;
  3496. padding:2px 2px 2px 0px;
  3497. box-sizing:border-box;
  3498. width:100%;
  3499. }
  3500. #u27996_text {
  3501. border-width:0px;
  3502. word-wrap:break-word;
  3503. text-transform:none;
  3504. }
  3505. #u27997_img {
  3506. border-width:0px;
  3507. position:absolute;
  3508. left:0px;
  3509. top:0px;
  3510. width:65px;
  3511. height:38px;
  3512. }
  3513. #u27997 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:0px;
  3517. top:38px;
  3518. width:65px;
  3519. height:38px;
  3520. display:flex;
  3521. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3522. font-weight:400;
  3523. font-style:normal;
  3524. font-size:12px;
  3525. color:#333333;
  3526. }
  3527. #u27997 .text {
  3528. position:absolute;
  3529. align-self:center;
  3530. padding:2px 2px 2px 0px;
  3531. box-sizing:border-box;
  3532. width:100%;
  3533. }
  3534. #u27997_text {
  3535. border-width:0px;
  3536. word-wrap:break-word;
  3537. text-transform:none;
  3538. visibility:hidden;
  3539. }
  3540. #u27998_img {
  3541. border-width:0px;
  3542. position:absolute;
  3543. left:0px;
  3544. top:0px;
  3545. width:264px;
  3546. height:38px;
  3547. }
  3548. #u27998 {
  3549. border-width:0px;
  3550. position:absolute;
  3551. left:65px;
  3552. top:38px;
  3553. width:264px;
  3554. height:38px;
  3555. display:flex;
  3556. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3557. font-weight:400;
  3558. font-style:normal;
  3559. font-size:12px;
  3560. color:#333333;
  3561. }
  3562. #u27998 .text {
  3563. position:absolute;
  3564. align-self:center;
  3565. padding:2px 2px 2px 0px;
  3566. box-sizing:border-box;
  3567. width:100%;
  3568. }
  3569. #u27998_text {
  3570. border-width:0px;
  3571. word-wrap:break-word;
  3572. text-transform:none;
  3573. }
  3574. #u27999_img {
  3575. border-width:0px;
  3576. position:absolute;
  3577. left:0px;
  3578. top:0px;
  3579. width:295px;
  3580. height:38px;
  3581. }
  3582. #u27999 {
  3583. border-width:0px;
  3584. position:absolute;
  3585. left:329px;
  3586. top:38px;
  3587. width:295px;
  3588. height:38px;
  3589. display:flex;
  3590. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:12px;
  3594. color:#333333;
  3595. }
  3596. #u27999 .text {
  3597. position:absolute;
  3598. align-self:center;
  3599. padding:2px 2px 2px 0px;
  3600. box-sizing:border-box;
  3601. width:100%;
  3602. }
  3603. #u27999_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. }
  3608. #u28000_img {
  3609. border-width:0px;
  3610. position:absolute;
  3611. left:0px;
  3612. top:0px;
  3613. width:203px;
  3614. height:38px;
  3615. }
  3616. #u28000 {
  3617. border-width:0px;
  3618. position:absolute;
  3619. left:624px;
  3620. top:38px;
  3621. width:203px;
  3622. height:38px;
  3623. display:flex;
  3624. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3625. font-weight:400;
  3626. font-style:normal;
  3627. font-size:12px;
  3628. color:#333333;
  3629. }
  3630. #u28000 .text {
  3631. position:absolute;
  3632. align-self:center;
  3633. padding:2px 2px 2px 0px;
  3634. box-sizing:border-box;
  3635. width:100%;
  3636. }
  3637. #u28000_text {
  3638. border-width:0px;
  3639. word-wrap:break-word;
  3640. text-transform:none;
  3641. }
  3642. #u28001_img {
  3643. border-width:0px;
  3644. position:absolute;
  3645. left:0px;
  3646. top:0px;
  3647. width:247px;
  3648. height:38px;
  3649. }
  3650. #u28001 {
  3651. border-width:0px;
  3652. position:absolute;
  3653. left:827px;
  3654. top:38px;
  3655. width:247px;
  3656. height:38px;
  3657. display:flex;
  3658. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3659. font-weight:400;
  3660. font-style:normal;
  3661. font-size:12px;
  3662. color:#333333;
  3663. }
  3664. #u28001 .text {
  3665. position:absolute;
  3666. align-self:center;
  3667. padding:2px 2px 2px 0px;
  3668. box-sizing:border-box;
  3669. width:100%;
  3670. }
  3671. #u28001_text {
  3672. border-width:0px;
  3673. word-wrap:break-word;
  3674. text-transform:none;
  3675. visibility:hidden;
  3676. }
  3677. #u28002_img {
  3678. border-width:0px;
  3679. position:absolute;
  3680. left:0px;
  3681. top:0px;
  3682. width:145px;
  3683. height:38px;
  3684. }
  3685. #u28002 {
  3686. border-width:0px;
  3687. position:absolute;
  3688. left:1074px;
  3689. top:38px;
  3690. width:145px;
  3691. height:38px;
  3692. display:flex;
  3693. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3694. font-weight:400;
  3695. font-style:normal;
  3696. font-size:12px;
  3697. color:#298FFF;
  3698. }
  3699. #u28002 .text {
  3700. position:absolute;
  3701. align-self:center;
  3702. padding:2px 2px 2px 0px;
  3703. box-sizing:border-box;
  3704. width:100%;
  3705. }
  3706. #u28002_text {
  3707. border-width:0px;
  3708. word-wrap:break-word;
  3709. text-transform:none;
  3710. }
  3711. #u28003_img {
  3712. border-width:0px;
  3713. position:absolute;
  3714. left:0px;
  3715. top:0px;
  3716. width:65px;
  3717. height:38px;
  3718. }
  3719. #u28003 {
  3720. border-width:0px;
  3721. position:absolute;
  3722. left:0px;
  3723. top:76px;
  3724. width:65px;
  3725. height:38px;
  3726. display:flex;
  3727. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3728. font-weight:400;
  3729. font-style:normal;
  3730. font-size:12px;
  3731. color:#333333;
  3732. }
  3733. #u28003 .text {
  3734. position:absolute;
  3735. align-self:center;
  3736. padding:2px 2px 2px 0px;
  3737. box-sizing:border-box;
  3738. width:100%;
  3739. }
  3740. #u28003_text {
  3741. border-width:0px;
  3742. word-wrap:break-word;
  3743. text-transform:none;
  3744. visibility:hidden;
  3745. }
  3746. #u28004_img {
  3747. border-width:0px;
  3748. position:absolute;
  3749. left:0px;
  3750. top:0px;
  3751. width:264px;
  3752. height:38px;
  3753. }
  3754. #u28004 {
  3755. border-width:0px;
  3756. position:absolute;
  3757. left:65px;
  3758. top:76px;
  3759. width:264px;
  3760. height:38px;
  3761. display:flex;
  3762. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3763. font-weight:400;
  3764. font-style:normal;
  3765. font-size:12px;
  3766. color:#333333;
  3767. }
  3768. #u28004 .text {
  3769. position:absolute;
  3770. align-self:center;
  3771. padding:2px 2px 2px 0px;
  3772. box-sizing:border-box;
  3773. width:100%;
  3774. }
  3775. #u28004_text {
  3776. border-width:0px;
  3777. word-wrap:break-word;
  3778. text-transform:none;
  3779. }
  3780. #u28005_img {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:0px;
  3784. top:0px;
  3785. width:295px;
  3786. height:38px;
  3787. }
  3788. #u28005 {
  3789. border-width:0px;
  3790. position:absolute;
  3791. left:329px;
  3792. top:76px;
  3793. width:295px;
  3794. height:38px;
  3795. display:flex;
  3796. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3797. font-weight:400;
  3798. font-style:normal;
  3799. font-size:12px;
  3800. color:#333333;
  3801. }
  3802. #u28005 .text {
  3803. position:absolute;
  3804. align-self:center;
  3805. padding:2px 2px 2px 0px;
  3806. box-sizing:border-box;
  3807. width:100%;
  3808. }
  3809. #u28005_text {
  3810. border-width:0px;
  3811. word-wrap:break-word;
  3812. text-transform:none;
  3813. }
  3814. #u28006_img {
  3815. border-width:0px;
  3816. position:absolute;
  3817. left:0px;
  3818. top:0px;
  3819. width:203px;
  3820. height:38px;
  3821. }
  3822. #u28006 {
  3823. border-width:0px;
  3824. position:absolute;
  3825. left:624px;
  3826. top:76px;
  3827. width:203px;
  3828. height:38px;
  3829. display:flex;
  3830. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3831. font-weight:400;
  3832. font-style:normal;
  3833. font-size:12px;
  3834. color:#333333;
  3835. }
  3836. #u28006 .text {
  3837. position:absolute;
  3838. align-self:center;
  3839. padding:2px 2px 2px 0px;
  3840. box-sizing:border-box;
  3841. width:100%;
  3842. }
  3843. #u28006_text {
  3844. border-width:0px;
  3845. word-wrap:break-word;
  3846. text-transform:none;
  3847. }
  3848. #u28007_img {
  3849. border-width:0px;
  3850. position:absolute;
  3851. left:0px;
  3852. top:0px;
  3853. width:247px;
  3854. height:38px;
  3855. }
  3856. #u28007 {
  3857. border-width:0px;
  3858. position:absolute;
  3859. left:827px;
  3860. top:76px;
  3861. width:247px;
  3862. height:38px;
  3863. display:flex;
  3864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3865. font-weight:400;
  3866. font-style:normal;
  3867. font-size:12px;
  3868. color:#333333;
  3869. }
  3870. #u28007 .text {
  3871. position:absolute;
  3872. align-self:center;
  3873. padding:2px 2px 2px 0px;
  3874. box-sizing:border-box;
  3875. width:100%;
  3876. }
  3877. #u28007_text {
  3878. border-width:0px;
  3879. word-wrap:break-word;
  3880. text-transform:none;
  3881. visibility:hidden;
  3882. }
  3883. #u28008_img {
  3884. border-width:0px;
  3885. position:absolute;
  3886. left:0px;
  3887. top:0px;
  3888. width:145px;
  3889. height:38px;
  3890. }
  3891. #u28008 {
  3892. border-width:0px;
  3893. position:absolute;
  3894. left:1074px;
  3895. top:76px;
  3896. width:145px;
  3897. height:38px;
  3898. display:flex;
  3899. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3900. font-weight:400;
  3901. font-style:normal;
  3902. font-size:12px;
  3903. color:#298FFF;
  3904. }
  3905. #u28008 .text {
  3906. position:absolute;
  3907. align-self:center;
  3908. padding:2px 2px 2px 0px;
  3909. box-sizing:border-box;
  3910. width:100%;
  3911. }
  3912. #u28008_text {
  3913. border-width:0px;
  3914. word-wrap:break-word;
  3915. text-transform:none;
  3916. }
  3917. #u28009_img {
  3918. border-width:0px;
  3919. position:absolute;
  3920. left:0px;
  3921. top:0px;
  3922. width:65px;
  3923. height:38px;
  3924. }
  3925. #u28009 {
  3926. border-width:0px;
  3927. position:absolute;
  3928. left:0px;
  3929. top:114px;
  3930. width:65px;
  3931. height:38px;
  3932. display:flex;
  3933. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  3934. font-weight:400;
  3935. font-style:normal;
  3936. font-size:12px;
  3937. color:#333333;
  3938. }
  3939. #u28009 .text {
  3940. position:absolute;
  3941. align-self:center;
  3942. padding:2px 2px 2px 0px;
  3943. box-sizing:border-box;
  3944. width:100%;
  3945. }
  3946. #u28009_text {
  3947. border-width:0px;
  3948. word-wrap:break-word;
  3949. text-transform:none;
  3950. visibility:hidden;
  3951. }
  3952. #u28010_img {
  3953. border-width:0px;
  3954. position:absolute;
  3955. left:0px;
  3956. top:0px;
  3957. width:264px;
  3958. height:38px;
  3959. }
  3960. #u28010 {
  3961. border-width:0px;
  3962. position:absolute;
  3963. left:65px;
  3964. top:114px;
  3965. width:264px;
  3966. height:38px;
  3967. display:flex;
  3968. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3969. font-weight:400;
  3970. font-style:normal;
  3971. font-size:12px;
  3972. color:#333333;
  3973. }
  3974. #u28010 .text {
  3975. position:absolute;
  3976. align-self:center;
  3977. padding:2px 2px 2px 0px;
  3978. box-sizing:border-box;
  3979. width:100%;
  3980. }
  3981. #u28010_text {
  3982. border-width:0px;
  3983. word-wrap:break-word;
  3984. text-transform:none;
  3985. }
  3986. #u28011_img {
  3987. border-width:0px;
  3988. position:absolute;
  3989. left:0px;
  3990. top:0px;
  3991. width:295px;
  3992. height:38px;
  3993. }
  3994. #u28011 {
  3995. border-width:0px;
  3996. position:absolute;
  3997. left:329px;
  3998. top:114px;
  3999. width:295px;
  4000. height:38px;
  4001. display:flex;
  4002. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4003. font-weight:400;
  4004. font-style:normal;
  4005. font-size:12px;
  4006. color:#333333;
  4007. }
  4008. #u28011 .text {
  4009. position:absolute;
  4010. align-self:center;
  4011. padding:2px 2px 2px 0px;
  4012. box-sizing:border-box;
  4013. width:100%;
  4014. }
  4015. #u28011_text {
  4016. border-width:0px;
  4017. word-wrap:break-word;
  4018. text-transform:none;
  4019. }
  4020. #u28012_img {
  4021. border-width:0px;
  4022. position:absolute;
  4023. left:0px;
  4024. top:0px;
  4025. width:203px;
  4026. height:38px;
  4027. }
  4028. #u28012 {
  4029. border-width:0px;
  4030. position:absolute;
  4031. left:624px;
  4032. top:114px;
  4033. width:203px;
  4034. height:38px;
  4035. display:flex;
  4036. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4037. font-weight:400;
  4038. font-style:normal;
  4039. font-size:12px;
  4040. color:#333333;
  4041. }
  4042. #u28012 .text {
  4043. position:absolute;
  4044. align-self:center;
  4045. padding:2px 2px 2px 0px;
  4046. box-sizing:border-box;
  4047. width:100%;
  4048. }
  4049. #u28012_text {
  4050. border-width:0px;
  4051. word-wrap:break-word;
  4052. text-transform:none;
  4053. }
  4054. #u28013_img {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:0px;
  4058. top:0px;
  4059. width:247px;
  4060. height:38px;
  4061. }
  4062. #u28013 {
  4063. border-width:0px;
  4064. position:absolute;
  4065. left:827px;
  4066. top:114px;
  4067. width:247px;
  4068. height:38px;
  4069. display:flex;
  4070. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4071. font-weight:400;
  4072. font-style:normal;
  4073. font-size:12px;
  4074. color:#333333;
  4075. }
  4076. #u28013 .text {
  4077. position:absolute;
  4078. align-self:center;
  4079. padding:2px 2px 2px 0px;
  4080. box-sizing:border-box;
  4081. width:100%;
  4082. }
  4083. #u28013_text {
  4084. border-width:0px;
  4085. word-wrap:break-word;
  4086. text-transform:none;
  4087. visibility:hidden;
  4088. }
  4089. #u28014_img {
  4090. border-width:0px;
  4091. position:absolute;
  4092. left:0px;
  4093. top:0px;
  4094. width:145px;
  4095. height:38px;
  4096. }
  4097. #u28014 {
  4098. border-width:0px;
  4099. position:absolute;
  4100. left:1074px;
  4101. top:114px;
  4102. width:145px;
  4103. height:38px;
  4104. display:flex;
  4105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4106. font-weight:400;
  4107. font-style:normal;
  4108. font-size:12px;
  4109. color:#298FFF;
  4110. }
  4111. #u28014 .text {
  4112. position:absolute;
  4113. align-self:center;
  4114. padding:2px 2px 2px 0px;
  4115. box-sizing:border-box;
  4116. width:100%;
  4117. }
  4118. #u28014_text {
  4119. border-width:0px;
  4120. word-wrap:break-word;
  4121. text-transform:none;
  4122. }
  4123. #u28015_img {
  4124. border-width:0px;
  4125. position:absolute;
  4126. left:0px;
  4127. top:0px;
  4128. width:65px;
  4129. height:38px;
  4130. }
  4131. #u28015 {
  4132. border-width:0px;
  4133. position:absolute;
  4134. left:0px;
  4135. top:152px;
  4136. width:65px;
  4137. height:38px;
  4138. display:flex;
  4139. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4140. font-weight:400;
  4141. font-style:normal;
  4142. font-size:12px;
  4143. color:#333333;
  4144. }
  4145. #u28015 .text {
  4146. position:absolute;
  4147. align-self:center;
  4148. padding:2px 2px 2px 0px;
  4149. box-sizing:border-box;
  4150. width:100%;
  4151. }
  4152. #u28015_text {
  4153. border-width:0px;
  4154. word-wrap:break-word;
  4155. text-transform:none;
  4156. visibility:hidden;
  4157. }
  4158. #u28016_img {
  4159. border-width:0px;
  4160. position:absolute;
  4161. left:0px;
  4162. top:0px;
  4163. width:264px;
  4164. height:38px;
  4165. }
  4166. #u28016 {
  4167. border-width:0px;
  4168. position:absolute;
  4169. left:65px;
  4170. top:152px;
  4171. width:264px;
  4172. height:38px;
  4173. display:flex;
  4174. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4175. font-weight:400;
  4176. font-style:normal;
  4177. font-size:12px;
  4178. color:#333333;
  4179. }
  4180. #u28016 .text {
  4181. position:absolute;
  4182. align-self:center;
  4183. padding:2px 2px 2px 0px;
  4184. box-sizing:border-box;
  4185. width:100%;
  4186. }
  4187. #u28016_text {
  4188. border-width:0px;
  4189. word-wrap:break-word;
  4190. text-transform:none;
  4191. }
  4192. #u28017_img {
  4193. border-width:0px;
  4194. position:absolute;
  4195. left:0px;
  4196. top:0px;
  4197. width:295px;
  4198. height:38px;
  4199. }
  4200. #u28017 {
  4201. border-width:0px;
  4202. position:absolute;
  4203. left:329px;
  4204. top:152px;
  4205. width:295px;
  4206. height:38px;
  4207. display:flex;
  4208. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4209. font-weight:400;
  4210. font-style:normal;
  4211. font-size:12px;
  4212. color:#333333;
  4213. }
  4214. #u28017 .text {
  4215. position:absolute;
  4216. align-self:center;
  4217. padding:2px 2px 2px 0px;
  4218. box-sizing:border-box;
  4219. width:100%;
  4220. }
  4221. #u28017_text {
  4222. border-width:0px;
  4223. word-wrap:break-word;
  4224. text-transform:none;
  4225. }
  4226. #u28018_img {
  4227. border-width:0px;
  4228. position:absolute;
  4229. left:0px;
  4230. top:0px;
  4231. width:203px;
  4232. height:38px;
  4233. }
  4234. #u28018 {
  4235. border-width:0px;
  4236. position:absolute;
  4237. left:624px;
  4238. top:152px;
  4239. width:203px;
  4240. height:38px;
  4241. display:flex;
  4242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4243. font-weight:400;
  4244. font-style:normal;
  4245. font-size:12px;
  4246. color:#333333;
  4247. }
  4248. #u28018 .text {
  4249. position:absolute;
  4250. align-self:center;
  4251. padding:2px 2px 2px 0px;
  4252. box-sizing:border-box;
  4253. width:100%;
  4254. }
  4255. #u28018_text {
  4256. border-width:0px;
  4257. word-wrap:break-word;
  4258. text-transform:none;
  4259. }
  4260. #u28019_img {
  4261. border-width:0px;
  4262. position:absolute;
  4263. left:0px;
  4264. top:0px;
  4265. width:247px;
  4266. height:38px;
  4267. }
  4268. #u28019 {
  4269. border-width:0px;
  4270. position:absolute;
  4271. left:827px;
  4272. top:152px;
  4273. width:247px;
  4274. height:38px;
  4275. display:flex;
  4276. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4277. font-weight:400;
  4278. font-style:normal;
  4279. font-size:12px;
  4280. color:#333333;
  4281. }
  4282. #u28019 .text {
  4283. position:absolute;
  4284. align-self:center;
  4285. padding:2px 2px 2px 0px;
  4286. box-sizing:border-box;
  4287. width:100%;
  4288. }
  4289. #u28019_text {
  4290. border-width:0px;
  4291. word-wrap:break-word;
  4292. text-transform:none;
  4293. visibility:hidden;
  4294. }
  4295. #u28020_img {
  4296. border-width:0px;
  4297. position:absolute;
  4298. left:0px;
  4299. top:0px;
  4300. width:145px;
  4301. height:38px;
  4302. }
  4303. #u28020 {
  4304. border-width:0px;
  4305. position:absolute;
  4306. left:1074px;
  4307. top:152px;
  4308. width:145px;
  4309. height:38px;
  4310. display:flex;
  4311. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4312. font-weight:400;
  4313. font-style:normal;
  4314. font-size:12px;
  4315. color:#298FFF;
  4316. }
  4317. #u28020 .text {
  4318. position:absolute;
  4319. align-self:center;
  4320. padding:2px 2px 2px 0px;
  4321. box-sizing:border-box;
  4322. width:100%;
  4323. }
  4324. #u28020_text {
  4325. border-width:0px;
  4326. word-wrap:break-word;
  4327. text-transform:none;
  4328. }
  4329. #u28021_img {
  4330. border-width:0px;
  4331. position:absolute;
  4332. left:0px;
  4333. top:0px;
  4334. width:65px;
  4335. height:37px;
  4336. }
  4337. #u28021 {
  4338. border-width:0px;
  4339. position:absolute;
  4340. left:0px;
  4341. top:190px;
  4342. width:65px;
  4343. height:37px;
  4344. display:flex;
  4345. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4346. font-weight:400;
  4347. font-style:normal;
  4348. font-size:12px;
  4349. color:#333333;
  4350. }
  4351. #u28021 .text {
  4352. position:absolute;
  4353. align-self:center;
  4354. padding:2px 2px 2px 0px;
  4355. box-sizing:border-box;
  4356. width:100%;
  4357. }
  4358. #u28021_text {
  4359. border-width:0px;
  4360. word-wrap:break-word;
  4361. text-transform:none;
  4362. visibility:hidden;
  4363. }
  4364. #u28022_img {
  4365. border-width:0px;
  4366. position:absolute;
  4367. left:0px;
  4368. top:0px;
  4369. width:264px;
  4370. height:37px;
  4371. }
  4372. #u28022 {
  4373. border-width:0px;
  4374. position:absolute;
  4375. left:65px;
  4376. top:190px;
  4377. width:264px;
  4378. height:37px;
  4379. display:flex;
  4380. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4381. font-weight:400;
  4382. font-style:normal;
  4383. font-size:12px;
  4384. color:#333333;
  4385. }
  4386. #u28022 .text {
  4387. position:absolute;
  4388. align-self:center;
  4389. padding:2px 2px 2px 0px;
  4390. box-sizing:border-box;
  4391. width:100%;
  4392. }
  4393. #u28022_text {
  4394. border-width:0px;
  4395. word-wrap:break-word;
  4396. text-transform:none;
  4397. }
  4398. #u28023_img {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:0px;
  4403. width:295px;
  4404. height:37px;
  4405. }
  4406. #u28023 {
  4407. border-width:0px;
  4408. position:absolute;
  4409. left:329px;
  4410. top:190px;
  4411. width:295px;
  4412. height:37px;
  4413. display:flex;
  4414. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4415. font-weight:400;
  4416. font-style:normal;
  4417. font-size:12px;
  4418. color:#333333;
  4419. }
  4420. #u28023 .text {
  4421. position:absolute;
  4422. align-self:center;
  4423. padding:2px 2px 2px 0px;
  4424. box-sizing:border-box;
  4425. width:100%;
  4426. }
  4427. #u28023_text {
  4428. border-width:0px;
  4429. word-wrap:break-word;
  4430. text-transform:none;
  4431. }
  4432. #u28024_img {
  4433. border-width:0px;
  4434. position:absolute;
  4435. left:0px;
  4436. top:0px;
  4437. width:203px;
  4438. height:37px;
  4439. }
  4440. #u28024 {
  4441. border-width:0px;
  4442. position:absolute;
  4443. left:624px;
  4444. top:190px;
  4445. width:203px;
  4446. height:37px;
  4447. display:flex;
  4448. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4449. font-weight:400;
  4450. font-style:normal;
  4451. font-size:12px;
  4452. color:#333333;
  4453. }
  4454. #u28024 .text {
  4455. position:absolute;
  4456. align-self:center;
  4457. padding:2px 2px 2px 0px;
  4458. box-sizing:border-box;
  4459. width:100%;
  4460. }
  4461. #u28024_text {
  4462. border-width:0px;
  4463. word-wrap:break-word;
  4464. text-transform:none;
  4465. }
  4466. #u28025_img {
  4467. border-width:0px;
  4468. position:absolute;
  4469. left:0px;
  4470. top:0px;
  4471. width:247px;
  4472. height:37px;
  4473. }
  4474. #u28025 {
  4475. border-width:0px;
  4476. position:absolute;
  4477. left:827px;
  4478. top:190px;
  4479. width:247px;
  4480. height:37px;
  4481. display:flex;
  4482. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4483. font-weight:400;
  4484. font-style:normal;
  4485. font-size:12px;
  4486. color:#333333;
  4487. }
  4488. #u28025 .text {
  4489. position:absolute;
  4490. align-self:center;
  4491. padding:2px 2px 2px 0px;
  4492. box-sizing:border-box;
  4493. width:100%;
  4494. }
  4495. #u28025_text {
  4496. border-width:0px;
  4497. word-wrap:break-word;
  4498. text-transform:none;
  4499. visibility:hidden;
  4500. }
  4501. #u28026_img {
  4502. border-width:0px;
  4503. position:absolute;
  4504. left:0px;
  4505. top:0px;
  4506. width:145px;
  4507. height:37px;
  4508. }
  4509. #u28026 {
  4510. border-width:0px;
  4511. position:absolute;
  4512. left:1074px;
  4513. top:190px;
  4514. width:145px;
  4515. height:37px;
  4516. display:flex;
  4517. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4518. font-weight:400;
  4519. font-style:normal;
  4520. font-size:12px;
  4521. color:#298FFF;
  4522. }
  4523. #u28026 .text {
  4524. position:absolute;
  4525. align-self:center;
  4526. padding:2px 2px 2px 0px;
  4527. box-sizing:border-box;
  4528. width:100%;
  4529. }
  4530. #u28026_text {
  4531. border-width:0px;
  4532. word-wrap:break-word;
  4533. text-transform:none;
  4534. }
  4535. #u28027_img {
  4536. border-width:0px;
  4537. position:absolute;
  4538. left:0px;
  4539. top:0px;
  4540. width:65px;
  4541. height:39px;
  4542. }
  4543. #u28027 {
  4544. border-width:0px;
  4545. position:absolute;
  4546. left:0px;
  4547. top:227px;
  4548. width:65px;
  4549. height:39px;
  4550. display:flex;
  4551. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4552. font-weight:400;
  4553. font-style:normal;
  4554. font-size:12px;
  4555. color:#333333;
  4556. }
  4557. #u28027 .text {
  4558. position:absolute;
  4559. align-self:center;
  4560. padding:2px 2px 2px 0px;
  4561. box-sizing:border-box;
  4562. width:100%;
  4563. }
  4564. #u28027_text {
  4565. border-width:0px;
  4566. word-wrap:break-word;
  4567. text-transform:none;
  4568. visibility:hidden;
  4569. }
  4570. #u28028_img {
  4571. border-width:0px;
  4572. position:absolute;
  4573. left:0px;
  4574. top:0px;
  4575. width:264px;
  4576. height:39px;
  4577. }
  4578. #u28028 {
  4579. border-width:0px;
  4580. position:absolute;
  4581. left:65px;
  4582. top:227px;
  4583. width:264px;
  4584. height:39px;
  4585. display:flex;
  4586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4587. font-weight:400;
  4588. font-style:normal;
  4589. font-size:12px;
  4590. color:#333333;
  4591. }
  4592. #u28028 .text {
  4593. position:absolute;
  4594. align-self:center;
  4595. padding:2px 2px 2px 0px;
  4596. box-sizing:border-box;
  4597. width:100%;
  4598. }
  4599. #u28028_text {
  4600. border-width:0px;
  4601. word-wrap:break-word;
  4602. text-transform:none;
  4603. }
  4604. #u28029_img {
  4605. border-width:0px;
  4606. position:absolute;
  4607. left:0px;
  4608. top:0px;
  4609. width:295px;
  4610. height:39px;
  4611. }
  4612. #u28029 {
  4613. border-width:0px;
  4614. position:absolute;
  4615. left:329px;
  4616. top:227px;
  4617. width:295px;
  4618. height:39px;
  4619. display:flex;
  4620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4621. font-weight:400;
  4622. font-style:normal;
  4623. font-size:12px;
  4624. color:#333333;
  4625. }
  4626. #u28029 .text {
  4627. position:absolute;
  4628. align-self:center;
  4629. padding:2px 2px 2px 0px;
  4630. box-sizing:border-box;
  4631. width:100%;
  4632. }
  4633. #u28029_text {
  4634. border-width:0px;
  4635. word-wrap:break-word;
  4636. text-transform:none;
  4637. }
  4638. #u28030_img {
  4639. border-width:0px;
  4640. position:absolute;
  4641. left:0px;
  4642. top:0px;
  4643. width:203px;
  4644. height:39px;
  4645. }
  4646. #u28030 {
  4647. border-width:0px;
  4648. position:absolute;
  4649. left:624px;
  4650. top:227px;
  4651. width:203px;
  4652. height:39px;
  4653. display:flex;
  4654. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4655. font-weight:400;
  4656. font-style:normal;
  4657. font-size:12px;
  4658. color:#333333;
  4659. }
  4660. #u28030 .text {
  4661. position:absolute;
  4662. align-self:center;
  4663. padding:2px 2px 2px 0px;
  4664. box-sizing:border-box;
  4665. width:100%;
  4666. }
  4667. #u28030_text {
  4668. border-width:0px;
  4669. word-wrap:break-word;
  4670. text-transform:none;
  4671. }
  4672. #u28031_img {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:0px;
  4676. top:0px;
  4677. width:247px;
  4678. height:39px;
  4679. }
  4680. #u28031 {
  4681. border-width:0px;
  4682. position:absolute;
  4683. left:827px;
  4684. top:227px;
  4685. width:247px;
  4686. height:39px;
  4687. display:flex;
  4688. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4689. font-weight:400;
  4690. font-style:normal;
  4691. font-size:12px;
  4692. color:#333333;
  4693. }
  4694. #u28031 .text {
  4695. position:absolute;
  4696. align-self:center;
  4697. padding:2px 2px 2px 0px;
  4698. box-sizing:border-box;
  4699. width:100%;
  4700. }
  4701. #u28031_text {
  4702. border-width:0px;
  4703. word-wrap:break-word;
  4704. text-transform:none;
  4705. visibility:hidden;
  4706. }
  4707. #u28032_img {
  4708. border-width:0px;
  4709. position:absolute;
  4710. left:0px;
  4711. top:0px;
  4712. width:145px;
  4713. height:39px;
  4714. }
  4715. #u28032 {
  4716. border-width:0px;
  4717. position:absolute;
  4718. left:1074px;
  4719. top:227px;
  4720. width:145px;
  4721. height:39px;
  4722. display:flex;
  4723. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4724. font-weight:400;
  4725. font-style:normal;
  4726. font-size:12px;
  4727. color:#298FFF;
  4728. }
  4729. #u28032 .text {
  4730. position:absolute;
  4731. align-self:center;
  4732. padding:2px 2px 2px 0px;
  4733. box-sizing:border-box;
  4734. width:100%;
  4735. }
  4736. #u28032_text {
  4737. border-width:0px;
  4738. word-wrap:break-word;
  4739. text-transform:none;
  4740. }
  4741. #u28033_img {
  4742. border-width:0px;
  4743. position:absolute;
  4744. left:0px;
  4745. top:0px;
  4746. width:65px;
  4747. height:35px;
  4748. }
  4749. #u28033 {
  4750. border-width:0px;
  4751. position:absolute;
  4752. left:0px;
  4753. top:266px;
  4754. width:65px;
  4755. height:35px;
  4756. display:flex;
  4757. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4758. font-weight:400;
  4759. font-style:normal;
  4760. font-size:12px;
  4761. color:#333333;
  4762. }
  4763. #u28033 .text {
  4764. position:absolute;
  4765. align-self:center;
  4766. padding:2px 2px 2px 0px;
  4767. box-sizing:border-box;
  4768. width:100%;
  4769. }
  4770. #u28033_text {
  4771. border-width:0px;
  4772. word-wrap:break-word;
  4773. text-transform:none;
  4774. visibility:hidden;
  4775. }
  4776. #u28034_img {
  4777. border-width:0px;
  4778. position:absolute;
  4779. left:0px;
  4780. top:0px;
  4781. width:264px;
  4782. height:35px;
  4783. }
  4784. #u28034 {
  4785. border-width:0px;
  4786. position:absolute;
  4787. left:65px;
  4788. top:266px;
  4789. width:264px;
  4790. height:35px;
  4791. display:flex;
  4792. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4793. font-weight:400;
  4794. font-style:normal;
  4795. font-size:12px;
  4796. color:#333333;
  4797. }
  4798. #u28034 .text {
  4799. position:absolute;
  4800. align-self:center;
  4801. padding:2px 2px 2px 0px;
  4802. box-sizing:border-box;
  4803. width:100%;
  4804. }
  4805. #u28034_text {
  4806. border-width:0px;
  4807. word-wrap:break-word;
  4808. text-transform:none;
  4809. }
  4810. #u28035_img {
  4811. border-width:0px;
  4812. position:absolute;
  4813. left:0px;
  4814. top:0px;
  4815. width:295px;
  4816. height:35px;
  4817. }
  4818. #u28035 {
  4819. border-width:0px;
  4820. position:absolute;
  4821. left:329px;
  4822. top:266px;
  4823. width:295px;
  4824. height:35px;
  4825. display:flex;
  4826. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4827. font-weight:400;
  4828. font-style:normal;
  4829. font-size:12px;
  4830. color:#333333;
  4831. }
  4832. #u28035 .text {
  4833. position:absolute;
  4834. align-self:center;
  4835. padding:2px 2px 2px 0px;
  4836. box-sizing:border-box;
  4837. width:100%;
  4838. }
  4839. #u28035_text {
  4840. border-width:0px;
  4841. word-wrap:break-word;
  4842. text-transform:none;
  4843. }
  4844. #u28036_img {
  4845. border-width:0px;
  4846. position:absolute;
  4847. left:0px;
  4848. top:0px;
  4849. width:203px;
  4850. height:35px;
  4851. }
  4852. #u28036 {
  4853. border-width:0px;
  4854. position:absolute;
  4855. left:624px;
  4856. top:266px;
  4857. width:203px;
  4858. height:35px;
  4859. display:flex;
  4860. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4861. font-weight:400;
  4862. font-style:normal;
  4863. font-size:12px;
  4864. color:#333333;
  4865. }
  4866. #u28036 .text {
  4867. position:absolute;
  4868. align-self:center;
  4869. padding:2px 2px 2px 0px;
  4870. box-sizing:border-box;
  4871. width:100%;
  4872. }
  4873. #u28036_text {
  4874. border-width:0px;
  4875. word-wrap:break-word;
  4876. text-transform:none;
  4877. }
  4878. #u28037_img {
  4879. border-width:0px;
  4880. position:absolute;
  4881. left:0px;
  4882. top:0px;
  4883. width:247px;
  4884. height:35px;
  4885. }
  4886. #u28037 {
  4887. border-width:0px;
  4888. position:absolute;
  4889. left:827px;
  4890. top:266px;
  4891. width:247px;
  4892. height:35px;
  4893. display:flex;
  4894. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4895. font-weight:400;
  4896. font-style:normal;
  4897. font-size:12px;
  4898. color:#333333;
  4899. }
  4900. #u28037 .text {
  4901. position:absolute;
  4902. align-self:center;
  4903. padding:2px 2px 2px 0px;
  4904. box-sizing:border-box;
  4905. width:100%;
  4906. }
  4907. #u28037_text {
  4908. border-width:0px;
  4909. word-wrap:break-word;
  4910. text-transform:none;
  4911. visibility:hidden;
  4912. }
  4913. #u28038_img {
  4914. border-width:0px;
  4915. position:absolute;
  4916. left:0px;
  4917. top:0px;
  4918. width:145px;
  4919. height:35px;
  4920. }
  4921. #u28038 {
  4922. border-width:0px;
  4923. position:absolute;
  4924. left:1074px;
  4925. top:266px;
  4926. width:145px;
  4927. height:35px;
  4928. display:flex;
  4929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4930. font-weight:400;
  4931. font-style:normal;
  4932. font-size:12px;
  4933. color:#298FFF;
  4934. }
  4935. #u28038 .text {
  4936. position:absolute;
  4937. align-self:center;
  4938. padding:2px 2px 2px 0px;
  4939. box-sizing:border-box;
  4940. width:100%;
  4941. }
  4942. #u28038_text {
  4943. border-width:0px;
  4944. word-wrap:break-word;
  4945. text-transform:none;
  4946. visibility:hidden;
  4947. }
  4948. #u28039_img {
  4949. border-width:0px;
  4950. position:absolute;
  4951. left:0px;
  4952. top:0px;
  4953. width:65px;
  4954. height:35px;
  4955. }
  4956. #u28039 {
  4957. border-width:0px;
  4958. position:absolute;
  4959. left:0px;
  4960. top:301px;
  4961. width:65px;
  4962. height:35px;
  4963. display:flex;
  4964. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  4965. font-weight:400;
  4966. font-style:normal;
  4967. font-size:12px;
  4968. color:#333333;
  4969. }
  4970. #u28039 .text {
  4971. position:absolute;
  4972. align-self:center;
  4973. padding:2px 2px 2px 0px;
  4974. box-sizing:border-box;
  4975. width:100%;
  4976. }
  4977. #u28039_text {
  4978. border-width:0px;
  4979. word-wrap:break-word;
  4980. text-transform:none;
  4981. visibility:hidden;
  4982. }
  4983. #u28040_img {
  4984. border-width:0px;
  4985. position:absolute;
  4986. left:0px;
  4987. top:0px;
  4988. width:264px;
  4989. height:35px;
  4990. }
  4991. #u28040 {
  4992. border-width:0px;
  4993. position:absolute;
  4994. left:65px;
  4995. top:301px;
  4996. width:264px;
  4997. height:35px;
  4998. display:flex;
  4999. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5000. font-weight:400;
  5001. font-style:normal;
  5002. font-size:12px;
  5003. color:#333333;
  5004. }
  5005. #u28040 .text {
  5006. position:absolute;
  5007. align-self:center;
  5008. padding:2px 2px 2px 0px;
  5009. box-sizing:border-box;
  5010. width:100%;
  5011. }
  5012. #u28040_text {
  5013. border-width:0px;
  5014. word-wrap:break-word;
  5015. text-transform:none;
  5016. visibility:hidden;
  5017. }
  5018. #u28041_img {
  5019. border-width:0px;
  5020. position:absolute;
  5021. left:0px;
  5022. top:0px;
  5023. width:295px;
  5024. height:35px;
  5025. }
  5026. #u28041 {
  5027. border-width:0px;
  5028. position:absolute;
  5029. left:329px;
  5030. top:301px;
  5031. width:295px;
  5032. height:35px;
  5033. display:flex;
  5034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5035. font-weight:400;
  5036. font-style:normal;
  5037. font-size:12px;
  5038. color:#333333;
  5039. }
  5040. #u28041 .text {
  5041. position:absolute;
  5042. align-self:center;
  5043. padding:2px 2px 2px 0px;
  5044. box-sizing:border-box;
  5045. width:100%;
  5046. }
  5047. #u28041_text {
  5048. border-width:0px;
  5049. word-wrap:break-word;
  5050. text-transform:none;
  5051. visibility:hidden;
  5052. }
  5053. #u28042_img {
  5054. border-width:0px;
  5055. position:absolute;
  5056. left:0px;
  5057. top:0px;
  5058. width:203px;
  5059. height:35px;
  5060. }
  5061. #u28042 {
  5062. border-width:0px;
  5063. position:absolute;
  5064. left:624px;
  5065. top:301px;
  5066. width:203px;
  5067. height:35px;
  5068. display:flex;
  5069. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5070. font-weight:400;
  5071. font-style:normal;
  5072. font-size:12px;
  5073. color:#333333;
  5074. }
  5075. #u28042 .text {
  5076. position:absolute;
  5077. align-self:center;
  5078. padding:2px 2px 2px 0px;
  5079. box-sizing:border-box;
  5080. width:100%;
  5081. }
  5082. #u28042_text {
  5083. border-width:0px;
  5084. word-wrap:break-word;
  5085. text-transform:none;
  5086. visibility:hidden;
  5087. }
  5088. #u28043_img {
  5089. border-width:0px;
  5090. position:absolute;
  5091. left:0px;
  5092. top:0px;
  5093. width:247px;
  5094. height:35px;
  5095. }
  5096. #u28043 {
  5097. border-width:0px;
  5098. position:absolute;
  5099. left:827px;
  5100. top:301px;
  5101. width:247px;
  5102. height:35px;
  5103. display:flex;
  5104. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5105. font-weight:400;
  5106. font-style:normal;
  5107. font-size:12px;
  5108. color:#333333;
  5109. }
  5110. #u28043 .text {
  5111. position:absolute;
  5112. align-self:center;
  5113. padding:2px 2px 2px 0px;
  5114. box-sizing:border-box;
  5115. width:100%;
  5116. }
  5117. #u28043_text {
  5118. border-width:0px;
  5119. word-wrap:break-word;
  5120. text-transform:none;
  5121. visibility:hidden;
  5122. }
  5123. #u28044_img {
  5124. border-width:0px;
  5125. position:absolute;
  5126. left:0px;
  5127. top:0px;
  5128. width:145px;
  5129. height:35px;
  5130. }
  5131. #u28044 {
  5132. border-width:0px;
  5133. position:absolute;
  5134. left:1074px;
  5135. top:301px;
  5136. width:145px;
  5137. height:35px;
  5138. display:flex;
  5139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5140. font-weight:400;
  5141. font-style:normal;
  5142. font-size:12px;
  5143. color:#298FFF;
  5144. }
  5145. #u28044 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 0px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u28044_text {
  5153. border-width:0px;
  5154. word-wrap:break-word;
  5155. text-transform:none;
  5156. visibility:hidden;
  5157. }
  5158. #u28045_img {
  5159. border-width:0px;
  5160. position:absolute;
  5161. left:0px;
  5162. top:0px;
  5163. width:65px;
  5164. height:35px;
  5165. }
  5166. #u28045 {
  5167. border-width:0px;
  5168. position:absolute;
  5169. left:0px;
  5170. top:336px;
  5171. width:65px;
  5172. height:35px;
  5173. display:flex;
  5174. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5175. font-weight:400;
  5176. font-style:normal;
  5177. font-size:12px;
  5178. color:#333333;
  5179. }
  5180. #u28045 .text {
  5181. position:absolute;
  5182. align-self:center;
  5183. padding:2px 2px 2px 0px;
  5184. box-sizing:border-box;
  5185. width:100%;
  5186. }
  5187. #u28045_text {
  5188. border-width:0px;
  5189. word-wrap:break-word;
  5190. text-transform:none;
  5191. visibility:hidden;
  5192. }
  5193. #u28046_img {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:264px;
  5199. height:35px;
  5200. }
  5201. #u28046 {
  5202. border-width:0px;
  5203. position:absolute;
  5204. left:65px;
  5205. top:336px;
  5206. width:264px;
  5207. height:35px;
  5208. display:flex;
  5209. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:12px;
  5213. color:#333333;
  5214. }
  5215. #u28046 .text {
  5216. position:absolute;
  5217. align-self:center;
  5218. padding:2px 2px 2px 0px;
  5219. box-sizing:border-box;
  5220. width:100%;
  5221. }
  5222. #u28046_text {
  5223. border-width:0px;
  5224. word-wrap:break-word;
  5225. text-transform:none;
  5226. visibility:hidden;
  5227. }
  5228. #u28047_img {
  5229. border-width:0px;
  5230. position:absolute;
  5231. left:0px;
  5232. top:0px;
  5233. width:295px;
  5234. height:35px;
  5235. }
  5236. #u28047 {
  5237. border-width:0px;
  5238. position:absolute;
  5239. left:329px;
  5240. top:336px;
  5241. width:295px;
  5242. height:35px;
  5243. display:flex;
  5244. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5245. font-weight:400;
  5246. font-style:normal;
  5247. font-size:12px;
  5248. color:#333333;
  5249. }
  5250. #u28047 .text {
  5251. position:absolute;
  5252. align-self:center;
  5253. padding:2px 2px 2px 0px;
  5254. box-sizing:border-box;
  5255. width:100%;
  5256. }
  5257. #u28047_text {
  5258. border-width:0px;
  5259. word-wrap:break-word;
  5260. text-transform:none;
  5261. visibility:hidden;
  5262. }
  5263. #u28048_img {
  5264. border-width:0px;
  5265. position:absolute;
  5266. left:0px;
  5267. top:0px;
  5268. width:203px;
  5269. height:35px;
  5270. }
  5271. #u28048 {
  5272. border-width:0px;
  5273. position:absolute;
  5274. left:624px;
  5275. top:336px;
  5276. width:203px;
  5277. height:35px;
  5278. display:flex;
  5279. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5280. font-weight:400;
  5281. font-style:normal;
  5282. font-size:12px;
  5283. color:#333333;
  5284. }
  5285. #u28048 .text {
  5286. position:absolute;
  5287. align-self:center;
  5288. padding:2px 2px 2px 0px;
  5289. box-sizing:border-box;
  5290. width:100%;
  5291. }
  5292. #u28048_text {
  5293. border-width:0px;
  5294. word-wrap:break-word;
  5295. text-transform:none;
  5296. visibility:hidden;
  5297. }
  5298. #u28049_img {
  5299. border-width:0px;
  5300. position:absolute;
  5301. left:0px;
  5302. top:0px;
  5303. width:247px;
  5304. height:35px;
  5305. }
  5306. #u28049 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:827px;
  5310. top:336px;
  5311. width:247px;
  5312. height:35px;
  5313. display:flex;
  5314. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5315. font-weight:400;
  5316. font-style:normal;
  5317. font-size:12px;
  5318. color:#333333;
  5319. }
  5320. #u28049 .text {
  5321. position:absolute;
  5322. align-self:center;
  5323. padding:2px 2px 2px 0px;
  5324. box-sizing:border-box;
  5325. width:100%;
  5326. }
  5327. #u28049_text {
  5328. border-width:0px;
  5329. word-wrap:break-word;
  5330. text-transform:none;
  5331. visibility:hidden;
  5332. }
  5333. #u28050_img {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:145px;
  5339. height:35px;
  5340. }
  5341. #u28050 {
  5342. border-width:0px;
  5343. position:absolute;
  5344. left:1074px;
  5345. top:336px;
  5346. width:145px;
  5347. height:35px;
  5348. display:flex;
  5349. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:12px;
  5353. color:#606266;
  5354. }
  5355. #u28050 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 0px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u28050_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u28051_img {
  5369. border-width:0px;
  5370. position:absolute;
  5371. left:0px;
  5372. top:0px;
  5373. width:65px;
  5374. height:35px;
  5375. }
  5376. #u28051 {
  5377. border-width:0px;
  5378. position:absolute;
  5379. left:0px;
  5380. top:371px;
  5381. width:65px;
  5382. height:35px;
  5383. display:flex;
  5384. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5385. font-weight:400;
  5386. font-style:normal;
  5387. font-size:12px;
  5388. color:#333333;
  5389. }
  5390. #u28051 .text {
  5391. position:absolute;
  5392. align-self:center;
  5393. padding:2px 2px 2px 0px;
  5394. box-sizing:border-box;
  5395. width:100%;
  5396. }
  5397. #u28051_text {
  5398. border-width:0px;
  5399. word-wrap:break-word;
  5400. text-transform:none;
  5401. visibility:hidden;
  5402. }
  5403. #u28052_img {
  5404. border-width:0px;
  5405. position:absolute;
  5406. left:0px;
  5407. top:0px;
  5408. width:264px;
  5409. height:35px;
  5410. }
  5411. #u28052 {
  5412. border-width:0px;
  5413. position:absolute;
  5414. left:65px;
  5415. top:371px;
  5416. width:264px;
  5417. height:35px;
  5418. display:flex;
  5419. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5420. font-weight:400;
  5421. font-style:normal;
  5422. font-size:12px;
  5423. color:#333333;
  5424. }
  5425. #u28052 .text {
  5426. position:absolute;
  5427. align-self:center;
  5428. padding:2px 2px 2px 0px;
  5429. box-sizing:border-box;
  5430. width:100%;
  5431. }
  5432. #u28052_text {
  5433. border-width:0px;
  5434. word-wrap:break-word;
  5435. text-transform:none;
  5436. visibility:hidden;
  5437. }
  5438. #u28053_img {
  5439. border-width:0px;
  5440. position:absolute;
  5441. left:0px;
  5442. top:0px;
  5443. width:295px;
  5444. height:35px;
  5445. }
  5446. #u28053 {
  5447. border-width:0px;
  5448. position:absolute;
  5449. left:329px;
  5450. top:371px;
  5451. width:295px;
  5452. height:35px;
  5453. display:flex;
  5454. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5455. font-weight:400;
  5456. font-style:normal;
  5457. font-size:12px;
  5458. color:#333333;
  5459. }
  5460. #u28053 .text {
  5461. position:absolute;
  5462. align-self:center;
  5463. padding:2px 2px 2px 0px;
  5464. box-sizing:border-box;
  5465. width:100%;
  5466. }
  5467. #u28053_text {
  5468. border-width:0px;
  5469. word-wrap:break-word;
  5470. text-transform:none;
  5471. visibility:hidden;
  5472. }
  5473. #u28054_img {
  5474. border-width:0px;
  5475. position:absolute;
  5476. left:0px;
  5477. top:0px;
  5478. width:203px;
  5479. height:35px;
  5480. }
  5481. #u28054 {
  5482. border-width:0px;
  5483. position:absolute;
  5484. left:624px;
  5485. top:371px;
  5486. width:203px;
  5487. height:35px;
  5488. display:flex;
  5489. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5490. font-weight:400;
  5491. font-style:normal;
  5492. font-size:12px;
  5493. color:#333333;
  5494. }
  5495. #u28054 .text {
  5496. position:absolute;
  5497. align-self:center;
  5498. padding:2px 2px 2px 0px;
  5499. box-sizing:border-box;
  5500. width:100%;
  5501. }
  5502. #u28054_text {
  5503. border-width:0px;
  5504. word-wrap:break-word;
  5505. text-transform:none;
  5506. visibility:hidden;
  5507. }
  5508. #u28055_img {
  5509. border-width:0px;
  5510. position:absolute;
  5511. left:0px;
  5512. top:0px;
  5513. width:247px;
  5514. height:35px;
  5515. }
  5516. #u28055 {
  5517. border-width:0px;
  5518. position:absolute;
  5519. left:827px;
  5520. top:371px;
  5521. width:247px;
  5522. height:35px;
  5523. display:flex;
  5524. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5525. font-weight:400;
  5526. font-style:normal;
  5527. font-size:12px;
  5528. color:#333333;
  5529. }
  5530. #u28055 .text {
  5531. position:absolute;
  5532. align-self:center;
  5533. padding:2px 2px 2px 0px;
  5534. box-sizing:border-box;
  5535. width:100%;
  5536. }
  5537. #u28055_text {
  5538. border-width:0px;
  5539. word-wrap:break-word;
  5540. text-transform:none;
  5541. visibility:hidden;
  5542. }
  5543. #u28056_img {
  5544. border-width:0px;
  5545. position:absolute;
  5546. left:0px;
  5547. top:0px;
  5548. width:145px;
  5549. height:35px;
  5550. }
  5551. #u28056 {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:1074px;
  5555. top:371px;
  5556. width:145px;
  5557. height:35px;
  5558. display:flex;
  5559. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5560. font-weight:400;
  5561. font-style:normal;
  5562. font-size:12px;
  5563. color:#606266;
  5564. }
  5565. #u28056 .text {
  5566. position:absolute;
  5567. align-self:center;
  5568. padding:2px 2px 2px 0px;
  5569. box-sizing:border-box;
  5570. width:100%;
  5571. }
  5572. #u28056_text {
  5573. border-width:0px;
  5574. word-wrap:break-word;
  5575. text-transform:none;
  5576. visibility:hidden;
  5577. }
  5578. #u28057_img {
  5579. border-width:0px;
  5580. position:absolute;
  5581. left:0px;
  5582. top:0px;
  5583. width:65px;
  5584. height:35px;
  5585. }
  5586. #u28057 {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:406px;
  5591. width:65px;
  5592. height:35px;
  5593. display:flex;
  5594. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5595. font-weight:400;
  5596. font-style:normal;
  5597. font-size:12px;
  5598. color:#333333;
  5599. }
  5600. #u28057 .text {
  5601. position:absolute;
  5602. align-self:center;
  5603. padding:2px 2px 2px 0px;
  5604. box-sizing:border-box;
  5605. width:100%;
  5606. }
  5607. #u28057_text {
  5608. border-width:0px;
  5609. word-wrap:break-word;
  5610. text-transform:none;
  5611. visibility:hidden;
  5612. }
  5613. #u28058_img {
  5614. border-width:0px;
  5615. position:absolute;
  5616. left:0px;
  5617. top:0px;
  5618. width:264px;
  5619. height:35px;
  5620. }
  5621. #u28058 {
  5622. border-width:0px;
  5623. position:absolute;
  5624. left:65px;
  5625. top:406px;
  5626. width:264px;
  5627. height:35px;
  5628. display:flex;
  5629. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5630. font-weight:400;
  5631. font-style:normal;
  5632. font-size:12px;
  5633. color:#333333;
  5634. }
  5635. #u28058 .text {
  5636. position:absolute;
  5637. align-self:center;
  5638. padding:2px 2px 2px 0px;
  5639. box-sizing:border-box;
  5640. width:100%;
  5641. }
  5642. #u28058_text {
  5643. border-width:0px;
  5644. word-wrap:break-word;
  5645. text-transform:none;
  5646. visibility:hidden;
  5647. }
  5648. #u28059_img {
  5649. border-width:0px;
  5650. position:absolute;
  5651. left:0px;
  5652. top:0px;
  5653. width:295px;
  5654. height:35px;
  5655. }
  5656. #u28059 {
  5657. border-width:0px;
  5658. position:absolute;
  5659. left:329px;
  5660. top:406px;
  5661. width:295px;
  5662. height:35px;
  5663. display:flex;
  5664. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5665. font-weight:400;
  5666. font-style:normal;
  5667. font-size:12px;
  5668. color:#333333;
  5669. }
  5670. #u28059 .text {
  5671. position:absolute;
  5672. align-self:center;
  5673. padding:2px 2px 2px 0px;
  5674. box-sizing:border-box;
  5675. width:100%;
  5676. }
  5677. #u28059_text {
  5678. border-width:0px;
  5679. word-wrap:break-word;
  5680. text-transform:none;
  5681. visibility:hidden;
  5682. }
  5683. #u28060_img {
  5684. border-width:0px;
  5685. position:absolute;
  5686. left:0px;
  5687. top:0px;
  5688. width:203px;
  5689. height:35px;
  5690. }
  5691. #u28060 {
  5692. border-width:0px;
  5693. position:absolute;
  5694. left:624px;
  5695. top:406px;
  5696. width:203px;
  5697. height:35px;
  5698. display:flex;
  5699. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5700. font-weight:400;
  5701. font-style:normal;
  5702. font-size:12px;
  5703. color:#333333;
  5704. }
  5705. #u28060 .text {
  5706. position:absolute;
  5707. align-self:center;
  5708. padding:2px 2px 2px 0px;
  5709. box-sizing:border-box;
  5710. width:100%;
  5711. }
  5712. #u28060_text {
  5713. border-width:0px;
  5714. word-wrap:break-word;
  5715. text-transform:none;
  5716. visibility:hidden;
  5717. }
  5718. #u28061_img {
  5719. border-width:0px;
  5720. position:absolute;
  5721. left:0px;
  5722. top:0px;
  5723. width:247px;
  5724. height:35px;
  5725. }
  5726. #u28061 {
  5727. border-width:0px;
  5728. position:absolute;
  5729. left:827px;
  5730. top:406px;
  5731. width:247px;
  5732. height:35px;
  5733. display:flex;
  5734. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5735. font-weight:400;
  5736. font-style:normal;
  5737. font-size:12px;
  5738. color:#333333;
  5739. }
  5740. #u28061 .text {
  5741. position:absolute;
  5742. align-self:center;
  5743. padding:2px 2px 2px 0px;
  5744. box-sizing:border-box;
  5745. width:100%;
  5746. }
  5747. #u28061_text {
  5748. border-width:0px;
  5749. word-wrap:break-word;
  5750. text-transform:none;
  5751. visibility:hidden;
  5752. }
  5753. #u28062_img {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:145px;
  5759. height:35px;
  5760. }
  5761. #u28062 {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:1074px;
  5765. top:406px;
  5766. width:145px;
  5767. height:35px;
  5768. display:flex;
  5769. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5770. font-weight:400;
  5771. font-style:normal;
  5772. font-size:12px;
  5773. color:#606266;
  5774. }
  5775. #u28062 .text {
  5776. position:absolute;
  5777. align-self:center;
  5778. padding:2px 2px 2px 0px;
  5779. box-sizing:border-box;
  5780. width:100%;
  5781. }
  5782. #u28062_text {
  5783. border-width:0px;
  5784. word-wrap:break-word;
  5785. text-transform:none;
  5786. visibility:hidden;
  5787. }
  5788. #u28063_img {
  5789. border-width:0px;
  5790. position:absolute;
  5791. left:0px;
  5792. top:0px;
  5793. width:65px;
  5794. height:35px;
  5795. }
  5796. #u28063 {
  5797. border-width:0px;
  5798. position:absolute;
  5799. left:0px;
  5800. top:441px;
  5801. width:65px;
  5802. height:35px;
  5803. display:flex;
  5804. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5805. font-weight:400;
  5806. font-style:normal;
  5807. font-size:12px;
  5808. color:#333333;
  5809. }
  5810. #u28063 .text {
  5811. position:absolute;
  5812. align-self:center;
  5813. padding:2px 2px 2px 0px;
  5814. box-sizing:border-box;
  5815. width:100%;
  5816. }
  5817. #u28063_text {
  5818. border-width:0px;
  5819. word-wrap:break-word;
  5820. text-transform:none;
  5821. visibility:hidden;
  5822. }
  5823. #u28064_img {
  5824. border-width:0px;
  5825. position:absolute;
  5826. left:0px;
  5827. top:0px;
  5828. width:264px;
  5829. height:35px;
  5830. }
  5831. #u28064 {
  5832. border-width:0px;
  5833. position:absolute;
  5834. left:65px;
  5835. top:441px;
  5836. width:264px;
  5837. height:35px;
  5838. display:flex;
  5839. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5840. font-weight:400;
  5841. font-style:normal;
  5842. font-size:12px;
  5843. color:#333333;
  5844. }
  5845. #u28064 .text {
  5846. position:absolute;
  5847. align-self:center;
  5848. padding:2px 2px 2px 0px;
  5849. box-sizing:border-box;
  5850. width:100%;
  5851. }
  5852. #u28064_text {
  5853. border-width:0px;
  5854. word-wrap:break-word;
  5855. text-transform:none;
  5856. visibility:hidden;
  5857. }
  5858. #u28065_img {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:0px;
  5862. top:0px;
  5863. width:295px;
  5864. height:35px;
  5865. }
  5866. #u28065 {
  5867. border-width:0px;
  5868. position:absolute;
  5869. left:329px;
  5870. top:441px;
  5871. width:295px;
  5872. height:35px;
  5873. display:flex;
  5874. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5875. font-weight:400;
  5876. font-style:normal;
  5877. font-size:12px;
  5878. color:#333333;
  5879. }
  5880. #u28065 .text {
  5881. position:absolute;
  5882. align-self:center;
  5883. padding:2px 2px 2px 0px;
  5884. box-sizing:border-box;
  5885. width:100%;
  5886. }
  5887. #u28065_text {
  5888. border-width:0px;
  5889. word-wrap:break-word;
  5890. text-transform:none;
  5891. visibility:hidden;
  5892. }
  5893. #u28066_img {
  5894. border-width:0px;
  5895. position:absolute;
  5896. left:0px;
  5897. top:0px;
  5898. width:203px;
  5899. height:35px;
  5900. }
  5901. #u28066 {
  5902. border-width:0px;
  5903. position:absolute;
  5904. left:624px;
  5905. top:441px;
  5906. width:203px;
  5907. height:35px;
  5908. display:flex;
  5909. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5910. font-weight:400;
  5911. font-style:normal;
  5912. font-size:12px;
  5913. color:#333333;
  5914. }
  5915. #u28066 .text {
  5916. position:absolute;
  5917. align-self:center;
  5918. padding:2px 2px 2px 0px;
  5919. box-sizing:border-box;
  5920. width:100%;
  5921. }
  5922. #u28066_text {
  5923. border-width:0px;
  5924. word-wrap:break-word;
  5925. text-transform:none;
  5926. visibility:hidden;
  5927. }
  5928. #u28067_img {
  5929. border-width:0px;
  5930. position:absolute;
  5931. left:0px;
  5932. top:0px;
  5933. width:247px;
  5934. height:35px;
  5935. }
  5936. #u28067 {
  5937. border-width:0px;
  5938. position:absolute;
  5939. left:827px;
  5940. top:441px;
  5941. width:247px;
  5942. height:35px;
  5943. display:flex;
  5944. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5945. font-weight:400;
  5946. font-style:normal;
  5947. font-size:12px;
  5948. color:#333333;
  5949. }
  5950. #u28067 .text {
  5951. position:absolute;
  5952. align-self:center;
  5953. padding:2px 2px 2px 0px;
  5954. box-sizing:border-box;
  5955. width:100%;
  5956. }
  5957. #u28067_text {
  5958. border-width:0px;
  5959. word-wrap:break-word;
  5960. text-transform:none;
  5961. visibility:hidden;
  5962. }
  5963. #u28068_img {
  5964. border-width:0px;
  5965. position:absolute;
  5966. left:0px;
  5967. top:0px;
  5968. width:145px;
  5969. height:35px;
  5970. }
  5971. #u28068 {
  5972. border-width:0px;
  5973. position:absolute;
  5974. left:1074px;
  5975. top:441px;
  5976. width:145px;
  5977. height:35px;
  5978. display:flex;
  5979. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  5980. font-weight:400;
  5981. font-style:normal;
  5982. font-size:12px;
  5983. color:#606266;
  5984. }
  5985. #u28068 .text {
  5986. position:absolute;
  5987. align-self:center;
  5988. padding:2px 2px 2px 0px;
  5989. box-sizing:border-box;
  5990. width:100%;
  5991. }
  5992. #u28068_text {
  5993. border-width:0px;
  5994. word-wrap:break-word;
  5995. text-transform:none;
  5996. visibility:hidden;
  5997. }
  5998. #u28069_img {
  5999. border-width:0px;
  6000. position:absolute;
  6001. left:0px;
  6002. top:0px;
  6003. width:65px;
  6004. height:35px;
  6005. }
  6006. #u28069 {
  6007. border-width:0px;
  6008. position:absolute;
  6009. left:0px;
  6010. top:476px;
  6011. width:65px;
  6012. height:35px;
  6013. display:flex;
  6014. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6015. font-weight:400;
  6016. font-style:normal;
  6017. font-size:12px;
  6018. color:#333333;
  6019. }
  6020. #u28069 .text {
  6021. position:absolute;
  6022. align-self:center;
  6023. padding:2px 2px 2px 0px;
  6024. box-sizing:border-box;
  6025. width:100%;
  6026. }
  6027. #u28069_text {
  6028. border-width:0px;
  6029. word-wrap:break-word;
  6030. text-transform:none;
  6031. visibility:hidden;
  6032. }
  6033. #u28070_img {
  6034. border-width:0px;
  6035. position:absolute;
  6036. left:0px;
  6037. top:0px;
  6038. width:264px;
  6039. height:35px;
  6040. }
  6041. #u28070 {
  6042. border-width:0px;
  6043. position:absolute;
  6044. left:65px;
  6045. top:476px;
  6046. width:264px;
  6047. height:35px;
  6048. display:flex;
  6049. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6050. font-weight:400;
  6051. font-style:normal;
  6052. font-size:12px;
  6053. color:#333333;
  6054. }
  6055. #u28070 .text {
  6056. position:absolute;
  6057. align-self:center;
  6058. padding:2px 2px 2px 0px;
  6059. box-sizing:border-box;
  6060. width:100%;
  6061. }
  6062. #u28070_text {
  6063. border-width:0px;
  6064. word-wrap:break-word;
  6065. text-transform:none;
  6066. visibility:hidden;
  6067. }
  6068. #u28071_img {
  6069. border-width:0px;
  6070. position:absolute;
  6071. left:0px;
  6072. top:0px;
  6073. width:295px;
  6074. height:35px;
  6075. }
  6076. #u28071 {
  6077. border-width:0px;
  6078. position:absolute;
  6079. left:329px;
  6080. top:476px;
  6081. width:295px;
  6082. height:35px;
  6083. display:flex;
  6084. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6085. font-weight:400;
  6086. font-style:normal;
  6087. font-size:12px;
  6088. color:#333333;
  6089. }
  6090. #u28071 .text {
  6091. position:absolute;
  6092. align-self:center;
  6093. padding:2px 2px 2px 0px;
  6094. box-sizing:border-box;
  6095. width:100%;
  6096. }
  6097. #u28071_text {
  6098. border-width:0px;
  6099. word-wrap:break-word;
  6100. text-transform:none;
  6101. visibility:hidden;
  6102. }
  6103. #u28072_img {
  6104. border-width:0px;
  6105. position:absolute;
  6106. left:0px;
  6107. top:0px;
  6108. width:203px;
  6109. height:35px;
  6110. }
  6111. #u28072 {
  6112. border-width:0px;
  6113. position:absolute;
  6114. left:624px;
  6115. top:476px;
  6116. width:203px;
  6117. height:35px;
  6118. display:flex;
  6119. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6120. font-weight:400;
  6121. font-style:normal;
  6122. font-size:12px;
  6123. color:#333333;
  6124. }
  6125. #u28072 .text {
  6126. position:absolute;
  6127. align-self:center;
  6128. padding:2px 2px 2px 0px;
  6129. box-sizing:border-box;
  6130. width:100%;
  6131. }
  6132. #u28072_text {
  6133. border-width:0px;
  6134. word-wrap:break-word;
  6135. text-transform:none;
  6136. visibility:hidden;
  6137. }
  6138. #u28073_img {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:247px;
  6144. height:35px;
  6145. }
  6146. #u28073 {
  6147. border-width:0px;
  6148. position:absolute;
  6149. left:827px;
  6150. top:476px;
  6151. width:247px;
  6152. height:35px;
  6153. display:flex;
  6154. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6155. font-weight:400;
  6156. font-style:normal;
  6157. font-size:12px;
  6158. color:#333333;
  6159. }
  6160. #u28073 .text {
  6161. position:absolute;
  6162. align-self:center;
  6163. padding:2px 2px 2px 0px;
  6164. box-sizing:border-box;
  6165. width:100%;
  6166. }
  6167. #u28073_text {
  6168. border-width:0px;
  6169. word-wrap:break-word;
  6170. text-transform:none;
  6171. visibility:hidden;
  6172. }
  6173. #u28074_img {
  6174. border-width:0px;
  6175. position:absolute;
  6176. left:0px;
  6177. top:0px;
  6178. width:145px;
  6179. height:35px;
  6180. }
  6181. #u28074 {
  6182. border-width:0px;
  6183. position:absolute;
  6184. left:1074px;
  6185. top:476px;
  6186. width:145px;
  6187. height:35px;
  6188. display:flex;
  6189. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6190. font-weight:400;
  6191. font-style:normal;
  6192. font-size:12px;
  6193. color:#606266;
  6194. }
  6195. #u28074 .text {
  6196. position:absolute;
  6197. align-self:center;
  6198. padding:2px 2px 2px 0px;
  6199. box-sizing:border-box;
  6200. width:100%;
  6201. }
  6202. #u28074_text {
  6203. border-width:0px;
  6204. word-wrap:break-word;
  6205. text-transform:none;
  6206. visibility:hidden;
  6207. }
  6208. #u28075_img {
  6209. border-width:0px;
  6210. position:absolute;
  6211. left:0px;
  6212. top:0px;
  6213. width:65px;
  6214. height:35px;
  6215. }
  6216. #u28075 {
  6217. border-width:0px;
  6218. position:absolute;
  6219. left:0px;
  6220. top:511px;
  6221. width:65px;
  6222. height:35px;
  6223. display:flex;
  6224. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6225. font-weight:400;
  6226. font-style:normal;
  6227. font-size:12px;
  6228. color:#333333;
  6229. }
  6230. #u28075 .text {
  6231. position:absolute;
  6232. align-self:center;
  6233. padding:2px 2px 2px 0px;
  6234. box-sizing:border-box;
  6235. width:100%;
  6236. }
  6237. #u28075_text {
  6238. border-width:0px;
  6239. word-wrap:break-word;
  6240. text-transform:none;
  6241. visibility:hidden;
  6242. }
  6243. #u28076_img {
  6244. border-width:0px;
  6245. position:absolute;
  6246. left:0px;
  6247. top:0px;
  6248. width:264px;
  6249. height:35px;
  6250. }
  6251. #u28076 {
  6252. border-width:0px;
  6253. position:absolute;
  6254. left:65px;
  6255. top:511px;
  6256. width:264px;
  6257. height:35px;
  6258. display:flex;
  6259. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:12px;
  6263. color:#333333;
  6264. }
  6265. #u28076 .text {
  6266. position:absolute;
  6267. align-self:center;
  6268. padding:2px 2px 2px 0px;
  6269. box-sizing:border-box;
  6270. width:100%;
  6271. }
  6272. #u28076_text {
  6273. border-width:0px;
  6274. word-wrap:break-word;
  6275. text-transform:none;
  6276. visibility:hidden;
  6277. }
  6278. #u28077_img {
  6279. border-width:0px;
  6280. position:absolute;
  6281. left:0px;
  6282. top:0px;
  6283. width:295px;
  6284. height:35px;
  6285. }
  6286. #u28077 {
  6287. border-width:0px;
  6288. position:absolute;
  6289. left:329px;
  6290. top:511px;
  6291. width:295px;
  6292. height:35px;
  6293. display:flex;
  6294. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6295. font-weight:400;
  6296. font-style:normal;
  6297. font-size:12px;
  6298. color:#333333;
  6299. }
  6300. #u28077 .text {
  6301. position:absolute;
  6302. align-self:center;
  6303. padding:2px 2px 2px 0px;
  6304. box-sizing:border-box;
  6305. width:100%;
  6306. }
  6307. #u28077_text {
  6308. border-width:0px;
  6309. word-wrap:break-word;
  6310. text-transform:none;
  6311. visibility:hidden;
  6312. }
  6313. #u28078_img {
  6314. border-width:0px;
  6315. position:absolute;
  6316. left:0px;
  6317. top:0px;
  6318. width:203px;
  6319. height:35px;
  6320. }
  6321. #u28078 {
  6322. border-width:0px;
  6323. position:absolute;
  6324. left:624px;
  6325. top:511px;
  6326. width:203px;
  6327. height:35px;
  6328. display:flex;
  6329. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6330. font-weight:400;
  6331. font-style:normal;
  6332. font-size:12px;
  6333. color:#333333;
  6334. }
  6335. #u28078 .text {
  6336. position:absolute;
  6337. align-self:center;
  6338. padding:2px 2px 2px 0px;
  6339. box-sizing:border-box;
  6340. width:100%;
  6341. }
  6342. #u28078_text {
  6343. border-width:0px;
  6344. word-wrap:break-word;
  6345. text-transform:none;
  6346. visibility:hidden;
  6347. }
  6348. #u28079_img {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:247px;
  6354. height:35px;
  6355. }
  6356. #u28079 {
  6357. border-width:0px;
  6358. position:absolute;
  6359. left:827px;
  6360. top:511px;
  6361. width:247px;
  6362. height:35px;
  6363. display:flex;
  6364. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6365. font-weight:400;
  6366. font-style:normal;
  6367. font-size:12px;
  6368. color:#333333;
  6369. }
  6370. #u28079 .text {
  6371. position:absolute;
  6372. align-self:center;
  6373. padding:2px 2px 2px 0px;
  6374. box-sizing:border-box;
  6375. width:100%;
  6376. }
  6377. #u28079_text {
  6378. border-width:0px;
  6379. word-wrap:break-word;
  6380. text-transform:none;
  6381. visibility:hidden;
  6382. }
  6383. #u28080_img {
  6384. border-width:0px;
  6385. position:absolute;
  6386. left:0px;
  6387. top:0px;
  6388. width:145px;
  6389. height:35px;
  6390. }
  6391. #u28080 {
  6392. border-width:0px;
  6393. position:absolute;
  6394. left:1074px;
  6395. top:511px;
  6396. width:145px;
  6397. height:35px;
  6398. display:flex;
  6399. font-family:'MicrosoftSansSerif', 'Microsoft Sans Serif', sans-serif;
  6400. font-weight:400;
  6401. font-style:normal;
  6402. font-size:12px;
  6403. color:#606266;
  6404. }
  6405. #u28080 .text {
  6406. position:absolute;
  6407. align-self:center;
  6408. padding:2px 2px 2px 0px;
  6409. box-sizing:border-box;
  6410. width:100%;
  6411. }
  6412. #u28080_text {
  6413. border-width:0px;
  6414. word-wrap:break-word;
  6415. text-transform:none;
  6416. visibility:hidden;
  6417. }
  6418. #u28081 {
  6419. border-width:0px;
  6420. position:absolute;
  6421. left:0px;
  6422. top:0px;
  6423. width:0px;
  6424. height:0px;
  6425. }
  6426. #u28082_div {
  6427. border-width:0px;
  6428. position:absolute;
  6429. left:0px;
  6430. top:0px;
  6431. width:140px;
  6432. height:30px;
  6433. background:inherit;
  6434. background-color:rgba(255, 255, 255, 1);
  6435. box-sizing:border-box;
  6436. border-width:1px;
  6437. border-style:solid;
  6438. border-color:rgba(215, 215, 215, 1);
  6439. border-radius:4px;
  6440. -moz-box-shadow:none;
  6441. -webkit-box-shadow:none;
  6442. box-shadow:none;
  6443. font-size:11px;
  6444. }
  6445. #u28082 {
  6446. border-width:0px;
  6447. position:absolute;
  6448. left:650px;
  6449. top:100px;
  6450. width:140px;
  6451. height:30px;
  6452. display:flex;
  6453. font-size:11px;
  6454. }
  6455. #u28082 .text {
  6456. position:absolute;
  6457. align-self:center;
  6458. padding:2px 2px 2px 2px;
  6459. box-sizing:border-box;
  6460. width:100%;
  6461. }
  6462. #u28082_text {
  6463. border-width:0px;
  6464. word-wrap:break-word;
  6465. text-transform:none;
  6466. visibility:hidden;
  6467. }
  6468. #u28083_input {
  6469. position:absolute;
  6470. left:0px;
  6471. top:0px;
  6472. width:120px;
  6473. height:23px;
  6474. padding:2px 2px 2px 2px;
  6475. font-family:'ArialMT', 'Arial', sans-serif;
  6476. font-weight:400;
  6477. font-style:normal;
  6478. font-size:11px;
  6479. letter-spacing:normal;
  6480. color:#AAAAAA;
  6481. vertical-align:none;
  6482. text-align:left;
  6483. text-transform:none;
  6484. background-color:transparent;
  6485. border-color:transparent;
  6486. }
  6487. #u28083_input.disabled {
  6488. position:absolute;
  6489. left:0px;
  6490. top:0px;
  6491. width:120px;
  6492. height:23px;
  6493. padding:2px 2px 2px 2px;
  6494. font-family:'ArialMT', 'Arial', sans-serif;
  6495. font-weight:400;
  6496. font-style:normal;
  6497. font-size:11px;
  6498. letter-spacing:normal;
  6499. color:#AAAAAA;
  6500. vertical-align:none;
  6501. text-align:left;
  6502. text-transform:none;
  6503. background-color:transparent;
  6504. border-color:transparent;
  6505. }
  6506. #u28083_div {
  6507. border-width:0px;
  6508. position:absolute;
  6509. left:0px;
  6510. top:0px;
  6511. width:120px;
  6512. height:23px;
  6513. background:inherit;
  6514. background-color:rgba(255, 255, 255, 1);
  6515. border:none;
  6516. border-radius:0px;
  6517. -moz-box-shadow:none;
  6518. -webkit-box-shadow:none;
  6519. box-shadow:none;
  6520. font-size:11px;
  6521. color:#AAAAAA;
  6522. }
  6523. #u28083 {
  6524. border-width:0px;
  6525. position:absolute;
  6526. left:657px;
  6527. top:102px;
  6528. width:120px;
  6529. height:23px;
  6530. display:flex;
  6531. font-size:11px;
  6532. color:#AAAAAA;
  6533. }
  6534. #u28083 .text {
  6535. position:absolute;
  6536. align-self:flex-start;
  6537. padding:2px 2px 2px 2px;
  6538. box-sizing:border-box;
  6539. width:100%;
  6540. }
  6541. #u28083_div.disabled {
  6542. border-width:0px;
  6543. position:absolute;
  6544. left:0px;
  6545. top:0px;
  6546. width:120px;
  6547. height:23px;
  6548. background:inherit;
  6549. background-color:rgba(240, 240, 240, 1);
  6550. border:none;
  6551. border-radius:0px;
  6552. -moz-box-shadow:none;
  6553. -webkit-box-shadow:none;
  6554. box-shadow:none;
  6555. font-size:11px;
  6556. color:#AAAAAA;
  6557. }
  6558. #u28083.disabled {
  6559. }
  6560. .u28083_input_option {
  6561. font-size:11px;
  6562. }
  6563. #u28084 {
  6564. border-width:0px;
  6565. position:absolute;
  6566. left:0px;
  6567. top:0px;
  6568. width:0px;
  6569. height:0px;
  6570. }
  6571. #u28085_div {
  6572. border-width:0px;
  6573. position:absolute;
  6574. left:0px;
  6575. top:0px;
  6576. width:800px;
  6577. height:1200px;
  6578. background:inherit;
  6579. background-color:rgba(255, 255, 255, 1);
  6580. box-sizing:border-box;
  6581. border-width:1px;
  6582. border-style:solid;
  6583. border-color:rgba(215, 215, 215, 1);
  6584. border-radius:0px;
  6585. -moz-box-shadow:none;
  6586. -webkit-box-shadow:none;
  6587. box-shadow:none;
  6588. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6589. font-weight:400;
  6590. font-style:normal;
  6591. font-size:14px;
  6592. color:#AAAAAA;
  6593. text-align:center;
  6594. line-height:30px;
  6595. }
  6596. #u28085 {
  6597. border-width:0px;
  6598. position:absolute;
  6599. left:1635px;
  6600. top:40px;
  6601. width:800px;
  6602. height:1200px;
  6603. display:flex;
  6604. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6605. font-weight:400;
  6606. font-style:normal;
  6607. font-size:14px;
  6608. color:#AAAAAA;
  6609. text-align:center;
  6610. line-height:30px;
  6611. }
  6612. #u28085 .text {
  6613. position:absolute;
  6614. align-self:center;
  6615. padding:5px 10px 5px 10px;
  6616. box-sizing:border-box;
  6617. width:100%;
  6618. }
  6619. #u28085_text {
  6620. border-width:0px;
  6621. word-wrap:break-word;
  6622. text-transform:none;
  6623. visibility:hidden;
  6624. }
  6625. #u28086_div {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:0px;
  6629. top:0px;
  6630. width:119px;
  6631. height:35px;
  6632. background:inherit;
  6633. background-color:rgba(255, 255, 255, 0);
  6634. border:none;
  6635. border-top:0px;
  6636. border-right:0px;
  6637. border-bottom:0px;
  6638. border-radius:0px;
  6639. border-top-left-radius:0px;
  6640. border-bottom-left-radius:0px;
  6641. -moz-box-shadow:none;
  6642. -webkit-box-shadow:none;
  6643. box-shadow:none;
  6644. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6645. font-weight:500;
  6646. font-style:normal;
  6647. font-size:18px;
  6648. }
  6649. #u28086 {
  6650. border-width:0px;
  6651. position:absolute;
  6652. left:1655px;
  6653. top:58px;
  6654. width:119px;
  6655. height:35px;
  6656. display:flex;
  6657. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6658. font-weight:500;
  6659. font-style:normal;
  6660. font-size:18px;
  6661. }
  6662. #u28086 .text {
  6663. position:absolute;
  6664. align-self:center;
  6665. padding:5px 10px 5px 0px;
  6666. box-sizing:border-box;
  6667. width:100%;
  6668. }
  6669. #u28086_text {
  6670. border-width:0px;
  6671. white-space:nowrap;
  6672. text-transform:none;
  6673. }
  6674. #u28087 {
  6675. border-width:0px;
  6676. position:absolute;
  6677. left:0px;
  6678. top:0px;
  6679. width:0px;
  6680. height:0px;
  6681. }
  6682. #u28088_div {
  6683. border-width:0px;
  6684. position:absolute;
  6685. left:0px;
  6686. top:0px;
  6687. width:800px;
  6688. height:60px;
  6689. background:inherit;
  6690. background-color:rgba(255, 255, 255, 1);
  6691. box-sizing:border-box;
  6692. border-width:1px;
  6693. border-style:solid;
  6694. border-color:rgba(215, 215, 215, 1);
  6695. border-radius:0px;
  6696. -moz-box-shadow:none;
  6697. -webkit-box-shadow:none;
  6698. box-shadow:none;
  6699. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6700. font-weight:400;
  6701. font-style:normal;
  6702. font-size:14px;
  6703. color:#AAAAAA;
  6704. text-align:center;
  6705. line-height:30px;
  6706. }
  6707. #u28088 {
  6708. border-width:0px;
  6709. position:absolute;
  6710. left:1635px;
  6711. top:1180px;
  6712. width:800px;
  6713. height:60px;
  6714. display:flex;
  6715. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6716. font-weight:400;
  6717. font-style:normal;
  6718. font-size:14px;
  6719. color:#AAAAAA;
  6720. text-align:center;
  6721. line-height:30px;
  6722. }
  6723. #u28088 .text {
  6724. position:absolute;
  6725. align-self:center;
  6726. padding:5px 10px 5px 10px;
  6727. box-sizing:border-box;
  6728. width:100%;
  6729. }
  6730. #u28088_text {
  6731. border-width:0px;
  6732. word-wrap:break-word;
  6733. text-transform:none;
  6734. visibility:hidden;
  6735. }
  6736. #u28089_div {
  6737. border-width:0px;
  6738. position:absolute;
  6739. left:0px;
  6740. top:0px;
  6741. width:80px;
  6742. height:30px;
  6743. background:inherit;
  6744. background-color:rgba(24, 144, 255, 1);
  6745. border:none;
  6746. border-radius:4px;
  6747. -moz-box-shadow:none;
  6748. -webkit-box-shadow:none;
  6749. box-shadow:none;
  6750. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6751. font-weight:400;
  6752. font-style:normal;
  6753. font-size:14px;
  6754. color:#FFFFFF;
  6755. }
  6756. #u28089 {
  6757. border-width:0px;
  6758. position:absolute;
  6759. left:2315px;
  6760. top:1195px;
  6761. width:80px;
  6762. height:30px;
  6763. display:flex;
  6764. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6765. font-weight:400;
  6766. font-style:normal;
  6767. font-size:14px;
  6768. color:#FFFFFF;
  6769. }
  6770. #u28089 .text {
  6771. position:absolute;
  6772. align-self:center;
  6773. padding:2px 2px 2px 2px;
  6774. box-sizing:border-box;
  6775. width:100%;
  6776. }
  6777. #u28089_text {
  6778. border-width:0px;
  6779. word-wrap:break-word;
  6780. text-transform:none;
  6781. }
  6782. #u28090_div {
  6783. border-width:0px;
  6784. position:absolute;
  6785. left:0px;
  6786. top:0px;
  6787. width:79px;
  6788. height:30px;
  6789. background:inherit;
  6790. background-color:rgba(255, 255, 255, 1);
  6791. box-sizing:border-box;
  6792. border-width:1px;
  6793. border-style:solid;
  6794. border-color:rgba(170, 170, 170, 1);
  6795. border-radius:4px;
  6796. -moz-box-shadow:none;
  6797. -webkit-box-shadow:none;
  6798. box-shadow:none;
  6799. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6800. font-weight:400;
  6801. font-style:normal;
  6802. font-size:14px;
  6803. }
  6804. #u28090 {
  6805. border-width:0px;
  6806. position:absolute;
  6807. left:2216px;
  6808. top:1195px;
  6809. width:79px;
  6810. height:30px;
  6811. display:flex;
  6812. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6813. font-weight:400;
  6814. font-style:normal;
  6815. font-size:14px;
  6816. }
  6817. #u28090 .text {
  6818. position:absolute;
  6819. align-self:center;
  6820. padding:2px 2px 2px 2px;
  6821. box-sizing:border-box;
  6822. width:100%;
  6823. }
  6824. #u28090_text {
  6825. border-width:0px;
  6826. word-wrap:break-word;
  6827. text-transform:none;
  6828. }
  6829. #u28091 {
  6830. border-width:0px;
  6831. position:absolute;
  6832. left:0px;
  6833. top:0px;
  6834. width:0px;
  6835. height:0px;
  6836. }
  6837. #u28092_div {
  6838. border-width:0px;
  6839. position:absolute;
  6840. left:0px;
  6841. top:0px;
  6842. width:619px;
  6843. height:80px;
  6844. background:inherit;
  6845. background-color:rgba(255, 255, 255, 1);
  6846. box-sizing:border-box;
  6847. border-width:1px;
  6848. border-style:solid;
  6849. border-color:rgba(201, 201, 201, 1);
  6850. border-radius:4px;
  6851. -moz-box-shadow:none;
  6852. -webkit-box-shadow:none;
  6853. box-shadow:none;
  6854. font-family:'Microsoft YaHei', sans-serif;
  6855. font-weight:400;
  6856. font-style:normal;
  6857. font-size:14px;
  6858. color:#CCCCCC;
  6859. text-align:left;
  6860. }
  6861. #u28092 {
  6862. border-width:0px;
  6863. position:absolute;
  6864. left:1765px;
  6865. top:305px;
  6866. width:619px;
  6867. height:80px;
  6868. display:flex;
  6869. font-family:'Microsoft YaHei', sans-serif;
  6870. font-weight:400;
  6871. font-style:normal;
  6872. font-size:14px;
  6873. color:#CCCCCC;
  6874. text-align:left;
  6875. }
  6876. #u28092 .text {
  6877. position:absolute;
  6878. align-self:center;
  6879. padding:2px 8px 2px 8px;
  6880. box-sizing:border-box;
  6881. width:100%;
  6882. }
  6883. #u28092_text {
  6884. border-width:0px;
  6885. word-wrap:break-word;
  6886. text-transform:none;
  6887. visibility:hidden;
  6888. }
  6889. #u28093_input {
  6890. position:absolute;
  6891. left:0px;
  6892. top:0px;
  6893. width:588px;
  6894. height:38px;
  6895. padding:2px 2px 2px 2px;
  6896. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6897. font-weight:400;
  6898. font-style:normal;
  6899. font-size:14px;
  6900. letter-spacing:normal;
  6901. color:#000000;
  6902. vertical-align:none;
  6903. text-align:left;
  6904. text-transform:none;
  6905. background-color:transparent;
  6906. border-color:transparent;
  6907. }
  6908. #u28093_input.disabled {
  6909. position:absolute;
  6910. left:0px;
  6911. top:0px;
  6912. width:588px;
  6913. height:38px;
  6914. padding:2px 2px 2px 2px;
  6915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6916. font-weight:400;
  6917. font-style:normal;
  6918. font-size:14px;
  6919. letter-spacing:normal;
  6920. color:#000000;
  6921. vertical-align:none;
  6922. text-align:left;
  6923. text-transform:none;
  6924. background-color:transparent;
  6925. border-color:transparent;
  6926. }
  6927. #u28093_div {
  6928. border-width:0px;
  6929. position:absolute;
  6930. left:0px;
  6931. top:0px;
  6932. width:588px;
  6933. height:38px;
  6934. background:inherit;
  6935. background-color:rgba(255, 255, 255, 1);
  6936. border:none;
  6937. border-radius:0px;
  6938. -moz-box-shadow:none;
  6939. -webkit-box-shadow:none;
  6940. box-shadow:none;
  6941. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6942. font-weight:400;
  6943. font-style:normal;
  6944. font-size:14px;
  6945. }
  6946. #u28093 {
  6947. border-width:0px;
  6948. position:absolute;
  6949. left:1782px;
  6950. top:306px;
  6951. width:588px;
  6952. height:38px;
  6953. display:flex;
  6954. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6955. font-weight:400;
  6956. font-style:normal;
  6957. font-size:14px;
  6958. }
  6959. #u28093 .text {
  6960. position:absolute;
  6961. align-self:center;
  6962. padding:2px 2px 2px 2px;
  6963. box-sizing:border-box;
  6964. width:100%;
  6965. }
  6966. #u28093_div.disabled {
  6967. border-width:0px;
  6968. position:absolute;
  6969. left:0px;
  6970. top:0px;
  6971. width:588px;
  6972. height:38px;
  6973. background:inherit;
  6974. background-color:rgba(240, 240, 240, 1);
  6975. border:none;
  6976. border-radius:0px;
  6977. -moz-box-shadow:none;
  6978. -webkit-box-shadow:none;
  6979. box-shadow:none;
  6980. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6981. font-weight:400;
  6982. font-style:normal;
  6983. font-size:14px;
  6984. }
  6985. #u28093.disabled {
  6986. }
  6987. #u28094_div {
  6988. border-width:0px;
  6989. position:absolute;
  6990. left:0px;
  6991. top:0px;
  6992. width:88px;
  6993. height:40px;
  6994. background:inherit;
  6995. background-color:rgba(255, 255, 255, 0);
  6996. border:none;
  6997. border-top:0px;
  6998. border-right:0px;
  6999. border-bottom:0px;
  7000. border-radius:0px;
  7001. border-top-left-radius:0px;
  7002. border-bottom-left-radius:0px;
  7003. -moz-box-shadow:none;
  7004. -webkit-box-shadow:none;
  7005. box-shadow:none;
  7006. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7007. font-weight:400;
  7008. font-style:normal;
  7009. font-size:14px;
  7010. color:#7F7F7F;
  7011. text-align:right;
  7012. }
  7013. #u28094 {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:1686px;
  7017. top:165px;
  7018. width:88px;
  7019. height:40px;
  7020. display:flex;
  7021. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7022. font-weight:400;
  7023. font-style:normal;
  7024. font-size:14px;
  7025. color:#7F7F7F;
  7026. text-align:right;
  7027. }
  7028. #u28094 .text {
  7029. position:absolute;
  7030. align-self:center;
  7031. padding:5px 10px 5px 0px;
  7032. box-sizing:border-box;
  7033. width:100%;
  7034. }
  7035. #u28094_text {
  7036. border-width:0px;
  7037. white-space:nowrap;
  7038. text-transform:none;
  7039. }
  7040. #u28095 {
  7041. border-width:0px;
  7042. position:absolute;
  7043. left:0px;
  7044. top:0px;
  7045. width:0px;
  7046. height:0px;
  7047. }
  7048. #u28096_div {
  7049. border-width:0px;
  7050. position:absolute;
  7051. left:0px;
  7052. top:0px;
  7053. width:619px;
  7054. height:40px;
  7055. background:inherit;
  7056. background-color:rgba(255, 255, 255, 1);
  7057. box-sizing:border-box;
  7058. border-width:1px;
  7059. border-style:solid;
  7060. border-color:rgba(201, 201, 201, 1);
  7061. border-radius:4px;
  7062. -moz-box-shadow:none;
  7063. -webkit-box-shadow:none;
  7064. box-shadow:none;
  7065. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7066. font-weight:400;
  7067. font-style:normal;
  7068. font-size:14px;
  7069. text-align:right;
  7070. }
  7071. #u28096 {
  7072. border-width:0px;
  7073. position:absolute;
  7074. left:1765px;
  7075. top:165px;
  7076. width:619px;
  7077. height:40px;
  7078. display:flex;
  7079. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7080. font-weight:400;
  7081. font-style:normal;
  7082. font-size:14px;
  7083. text-align:right;
  7084. }
  7085. #u28096 .text {
  7086. position:absolute;
  7087. align-self:center;
  7088. padding:2px 10px 2px 8px;
  7089. box-sizing:border-box;
  7090. width:100%;
  7091. }
  7092. #u28096_text {
  7093. border-width:0px;
  7094. word-wrap:break-word;
  7095. text-transform:none;
  7096. visibility:hidden;
  7097. }
  7098. #u28097_input {
  7099. position:absolute;
  7100. left:0px;
  7101. top:0px;
  7102. width:528px;
  7103. height:38px;
  7104. padding:2px 2px 2px 2px;
  7105. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7106. font-weight:400;
  7107. font-style:normal;
  7108. font-size:14px;
  7109. letter-spacing:normal;
  7110. color:#000000;
  7111. vertical-align:none;
  7112. text-align:left;
  7113. text-transform:none;
  7114. background-color:transparent;
  7115. border-color:transparent;
  7116. }
  7117. #u28097_input.disabled {
  7118. position:absolute;
  7119. left:0px;
  7120. top:0px;
  7121. width:528px;
  7122. height:38px;
  7123. padding:2px 2px 2px 2px;
  7124. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7125. font-weight:400;
  7126. font-style:normal;
  7127. font-size:14px;
  7128. letter-spacing:normal;
  7129. color:#000000;
  7130. vertical-align:none;
  7131. text-align:left;
  7132. text-transform:none;
  7133. background-color:transparent;
  7134. border-color:transparent;
  7135. }
  7136. #u28097_div {
  7137. border-width:0px;
  7138. position:absolute;
  7139. left:0px;
  7140. top:0px;
  7141. width:528px;
  7142. height:38px;
  7143. background:inherit;
  7144. background-color:rgba(255, 255, 255, 1);
  7145. border:none;
  7146. border-radius:0px;
  7147. -moz-box-shadow:none;
  7148. -webkit-box-shadow:none;
  7149. box-shadow:none;
  7150. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7151. font-weight:400;
  7152. font-style:normal;
  7153. font-size:14px;
  7154. }
  7155. #u28097 {
  7156. border-width:0px;
  7157. position:absolute;
  7158. left:1782px;
  7159. top:166px;
  7160. width:528px;
  7161. height:38px;
  7162. display:flex;
  7163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7164. font-weight:400;
  7165. font-style:normal;
  7166. font-size:14px;
  7167. }
  7168. #u28097 .text {
  7169. position:absolute;
  7170. align-self:center;
  7171. padding:2px 2px 2px 2px;
  7172. box-sizing:border-box;
  7173. width:100%;
  7174. }
  7175. #u28097_div.disabled {
  7176. border-width:0px;
  7177. position:absolute;
  7178. left:0px;
  7179. top:0px;
  7180. width:528px;
  7181. height:38px;
  7182. background:inherit;
  7183. background-color:rgba(240, 240, 240, 1);
  7184. border:none;
  7185. border-radius:0px;
  7186. -moz-box-shadow:none;
  7187. -webkit-box-shadow:none;
  7188. box-shadow:none;
  7189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7190. font-weight:400;
  7191. font-style:normal;
  7192. font-size:14px;
  7193. }
  7194. #u28097.disabled {
  7195. }
  7196. #u28098_div {
  7197. border-width:0px;
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:53px;
  7202. height:40px;
  7203. background:inherit;
  7204. background-color:rgba(255, 255, 255, 0);
  7205. border:none;
  7206. border-top:0px;
  7207. border-right:0px;
  7208. border-bottom:0px;
  7209. border-radius:0px;
  7210. border-top-left-radius:0px;
  7211. border-bottom-left-radius:0px;
  7212. -moz-box-shadow:none;
  7213. -webkit-box-shadow:none;
  7214. box-shadow:none;
  7215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7216. font-weight:400;
  7217. font-style:normal;
  7218. font-size:14px;
  7219. color:#7F7F7F;
  7220. text-align:right;
  7221. }
  7222. #u28098 {
  7223. border-width:0px;
  7224. position:absolute;
  7225. left:1721px;
  7226. top:305px;
  7227. width:53px;
  7228. height:40px;
  7229. display:flex;
  7230. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7231. font-weight:400;
  7232. font-style:normal;
  7233. font-size:14px;
  7234. color:#7F7F7F;
  7235. text-align:right;
  7236. }
  7237. #u28098 .text {
  7238. position:absolute;
  7239. align-self:center;
  7240. padding:5px 10px 5px 0px;
  7241. box-sizing:border-box;
  7242. width:100%;
  7243. }
  7244. #u28098_text {
  7245. border-width:0px;
  7246. white-space:nowrap;
  7247. text-transform:none;
  7248. }
  7249. #u28099_div {
  7250. border-width:0px;
  7251. position:absolute;
  7252. left:0px;
  7253. top:0px;
  7254. width:88px;
  7255. height:40px;
  7256. background:inherit;
  7257. background-color:rgba(255, 255, 255, 0);
  7258. border:none;
  7259. border-top:0px;
  7260. border-right:0px;
  7261. border-bottom:0px;
  7262. border-radius:0px;
  7263. border-top-left-radius:0px;
  7264. border-bottom-left-radius:0px;
  7265. -moz-box-shadow:none;
  7266. -webkit-box-shadow:none;
  7267. box-shadow:none;
  7268. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7269. font-weight:400;
  7270. font-style:normal;
  7271. font-size:14px;
  7272. color:#7F7F7F;
  7273. text-align:right;
  7274. }
  7275. #u28099 {
  7276. border-width:0px;
  7277. position:absolute;
  7278. left:1686px;
  7279. top:215px;
  7280. width:88px;
  7281. height:40px;
  7282. display:flex;
  7283. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7284. font-weight:400;
  7285. font-style:normal;
  7286. font-size:14px;
  7287. color:#7F7F7F;
  7288. text-align:right;
  7289. }
  7290. #u28099 .text {
  7291. position:absolute;
  7292. align-self:center;
  7293. padding:5px 10px 5px 0px;
  7294. box-sizing:border-box;
  7295. width:100%;
  7296. }
  7297. #u28099_text {
  7298. border-width:0px;
  7299. white-space:nowrap;
  7300. text-transform:none;
  7301. }
  7302. #u28100 {
  7303. border-width:0px;
  7304. position:absolute;
  7305. left:0px;
  7306. top:0px;
  7307. width:0px;
  7308. height:0px;
  7309. }
  7310. #u28101_div {
  7311. border-width:0px;
  7312. position:absolute;
  7313. left:0px;
  7314. top:0px;
  7315. width:619px;
  7316. height:40px;
  7317. background:inherit;
  7318. background-color:rgba(242, 242, 242, 1);
  7319. box-sizing:border-box;
  7320. border-width:1px;
  7321. border-style:solid;
  7322. border-color:rgba(201, 201, 201, 1);
  7323. border-radius:4px;
  7324. -moz-box-shadow:none;
  7325. -webkit-box-shadow:none;
  7326. box-shadow:none;
  7327. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7328. font-weight:400;
  7329. font-style:normal;
  7330. font-size:14px;
  7331. text-align:right;
  7332. }
  7333. #u28101 {
  7334. border-width:0px;
  7335. position:absolute;
  7336. left:1765px;
  7337. top:215px;
  7338. width:619px;
  7339. height:40px;
  7340. display:flex;
  7341. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7342. font-weight:400;
  7343. font-style:normal;
  7344. font-size:14px;
  7345. text-align:right;
  7346. }
  7347. #u28101 .text {
  7348. position:absolute;
  7349. align-self:center;
  7350. padding:2px 10px 2px 8px;
  7351. box-sizing:border-box;
  7352. width:100%;
  7353. }
  7354. #u28101_text {
  7355. border-width:0px;
  7356. word-wrap:break-word;
  7357. text-transform:none;
  7358. visibility:hidden;
  7359. }
  7360. #u28102_input {
  7361. position:absolute;
  7362. left:0px;
  7363. top:0px;
  7364. width:528px;
  7365. height:38px;
  7366. padding:2px 2px 2px 2px;
  7367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:14px;
  7371. letter-spacing:normal;
  7372. color:#000000;
  7373. vertical-align:none;
  7374. text-align:left;
  7375. text-transform:none;
  7376. background-color:transparent;
  7377. border-color:transparent;
  7378. }
  7379. #u28102_input.disabled {
  7380. position:absolute;
  7381. left:0px;
  7382. top:0px;
  7383. width:528px;
  7384. height:38px;
  7385. padding:2px 2px 2px 2px;
  7386. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7387. font-weight:400;
  7388. font-style:normal;
  7389. font-size:14px;
  7390. letter-spacing:normal;
  7391. color:#000000;
  7392. vertical-align:none;
  7393. text-align:left;
  7394. text-transform:none;
  7395. background-color:transparent;
  7396. border-color:transparent;
  7397. }
  7398. #u28102_div {
  7399. border-width:0px;
  7400. position:absolute;
  7401. left:0px;
  7402. top:0px;
  7403. width:528px;
  7404. height:38px;
  7405. background:inherit;
  7406. background-color:rgba(242, 242, 242, 1);
  7407. border:none;
  7408. border-radius:0px;
  7409. -moz-box-shadow:none;
  7410. -webkit-box-shadow:none;
  7411. box-shadow:none;
  7412. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7413. font-weight:400;
  7414. font-style:normal;
  7415. font-size:14px;
  7416. }
  7417. #u28102 {
  7418. border-width:0px;
  7419. position:absolute;
  7420. left:1782px;
  7421. top:216px;
  7422. width:528px;
  7423. height:38px;
  7424. display:flex;
  7425. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7426. font-weight:400;
  7427. font-style:normal;
  7428. font-size:14px;
  7429. }
  7430. #u28102 .text {
  7431. position:absolute;
  7432. align-self:center;
  7433. padding:2px 2px 2px 2px;
  7434. box-sizing:border-box;
  7435. width:100%;
  7436. }
  7437. #u28102_div.disabled {
  7438. border-width:0px;
  7439. position:absolute;
  7440. left:0px;
  7441. top:0px;
  7442. width:528px;
  7443. height:38px;
  7444. background:inherit;
  7445. background-color:rgba(240, 240, 240, 1);
  7446. border:none;
  7447. border-radius:0px;
  7448. -moz-box-shadow:none;
  7449. -webkit-box-shadow:none;
  7450. box-shadow:none;
  7451. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7452. font-weight:400;
  7453. font-style:normal;
  7454. font-size:14px;
  7455. }
  7456. #u28102.disabled {
  7457. }
  7458. #u28103_div {
  7459. border-width:0px;
  7460. position:absolute;
  7461. left:0px;
  7462. top:0px;
  7463. width:88px;
  7464. height:40px;
  7465. background:inherit;
  7466. background-color:rgba(255, 255, 255, 0);
  7467. border:none;
  7468. border-top:0px;
  7469. border-right:0px;
  7470. border-bottom:0px;
  7471. border-radius:0px;
  7472. border-top-left-radius:0px;
  7473. border-bottom-left-radius:0px;
  7474. -moz-box-shadow:none;
  7475. -webkit-box-shadow:none;
  7476. box-shadow:none;
  7477. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7478. font-weight:400;
  7479. font-style:normal;
  7480. font-size:14px;
  7481. color:#7F7F7F;
  7482. text-align:right;
  7483. }
  7484. #u28103 {
  7485. border-width:0px;
  7486. position:absolute;
  7487. left:1687px;
  7488. top:110px;
  7489. width:88px;
  7490. height:40px;
  7491. display:flex;
  7492. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7493. font-weight:400;
  7494. font-style:normal;
  7495. font-size:14px;
  7496. color:#7F7F7F;
  7497. text-align:right;
  7498. }
  7499. #u28103 .text {
  7500. position:absolute;
  7501. align-self:center;
  7502. padding:5px 10px 5px 0px;
  7503. box-sizing:border-box;
  7504. width:100%;
  7505. }
  7506. #u28103_text {
  7507. border-width:0px;
  7508. white-space:nowrap;
  7509. text-transform:none;
  7510. }
  7511. #u28104 {
  7512. border-width:0px;
  7513. position:absolute;
  7514. left:0px;
  7515. top:0px;
  7516. width:0px;
  7517. height:0px;
  7518. }
  7519. #u28105_div {
  7520. border-width:0px;
  7521. position:absolute;
  7522. left:0px;
  7523. top:0px;
  7524. width:619px;
  7525. height:40px;
  7526. background:inherit;
  7527. background-color:rgba(255, 255, 255, 1);
  7528. box-sizing:border-box;
  7529. border-width:1px;
  7530. border-style:solid;
  7531. border-color:rgba(215, 215, 215, 1);
  7532. border-radius:4px;
  7533. -moz-box-shadow:none;
  7534. -webkit-box-shadow:none;
  7535. box-shadow:none;
  7536. font-size:14px;
  7537. }
  7538. #u28105 {
  7539. border-width:0px;
  7540. position:absolute;
  7541. left:1765px;
  7542. top:110px;
  7543. width:619px;
  7544. height:40px;
  7545. display:flex;
  7546. font-size:14px;
  7547. }
  7548. #u28105 .text {
  7549. position:absolute;
  7550. align-self:center;
  7551. padding:2px 2px 2px 2px;
  7552. box-sizing:border-box;
  7553. width:100%;
  7554. }
  7555. #u28105_text {
  7556. border-width:0px;
  7557. word-wrap:break-word;
  7558. text-transform:none;
  7559. visibility:hidden;
  7560. }
  7561. #u28106_input {
  7562. position:absolute;
  7563. left:0px;
  7564. top:0px;
  7565. width:594px;
  7566. height:31px;
  7567. padding:2px 2px 2px 2px;
  7568. font-family:'ArialMT', 'Arial', sans-serif;
  7569. font-weight:400;
  7570. font-style:normal;
  7571. font-size:14px;
  7572. letter-spacing:normal;
  7573. color:#AAAAAA;
  7574. vertical-align:none;
  7575. text-align:left;
  7576. text-transform:none;
  7577. background-color:transparent;
  7578. border-color:transparent;
  7579. }
  7580. #u28106_input.disabled {
  7581. position:absolute;
  7582. left:0px;
  7583. top:0px;
  7584. width:594px;
  7585. height:31px;
  7586. padding:2px 2px 2px 2px;
  7587. font-family:'ArialMT', 'Arial', sans-serif;
  7588. font-weight:400;
  7589. font-style:normal;
  7590. font-size:14px;
  7591. letter-spacing:normal;
  7592. color:#AAAAAA;
  7593. vertical-align:none;
  7594. text-align:left;
  7595. text-transform:none;
  7596. background-color:transparent;
  7597. border-color:transparent;
  7598. }
  7599. #u28106_div {
  7600. border-width:0px;
  7601. position:absolute;
  7602. left:0px;
  7603. top:0px;
  7604. width:594px;
  7605. height:31px;
  7606. background:inherit;
  7607. background-color:rgba(255, 255, 255, 1);
  7608. border:none;
  7609. border-radius:0px;
  7610. -moz-box-shadow:none;
  7611. -webkit-box-shadow:none;
  7612. box-shadow:none;
  7613. font-size:14px;
  7614. color:#AAAAAA;
  7615. }
  7616. #u28106 {
  7617. border-width:0px;
  7618. position:absolute;
  7619. left:1782px;
  7620. top:113px;
  7621. width:594px;
  7622. height:31px;
  7623. display:flex;
  7624. font-size:14px;
  7625. color:#AAAAAA;
  7626. }
  7627. #u28106 .text {
  7628. position:absolute;
  7629. align-self:flex-start;
  7630. padding:2px 2px 2px 2px;
  7631. box-sizing:border-box;
  7632. width:100%;
  7633. }
  7634. #u28106_div.disabled {
  7635. border-width:0px;
  7636. position:absolute;
  7637. left:0px;
  7638. top:0px;
  7639. width:594px;
  7640. height:31px;
  7641. background:inherit;
  7642. background-color:rgba(240, 240, 240, 1);
  7643. border:none;
  7644. border-radius:0px;
  7645. -moz-box-shadow:none;
  7646. -webkit-box-shadow:none;
  7647. box-shadow:none;
  7648. font-size:14px;
  7649. color:#AAAAAA;
  7650. }
  7651. #u28106.disabled {
  7652. }
  7653. .u28106_input_option {
  7654. font-size:14px;
  7655. }
  7656. #u28107_div {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:0px;
  7660. top:0px;
  7661. width:95px;
  7662. height:40px;
  7663. background:inherit;
  7664. background-color:rgba(255, 255, 255, 0);
  7665. border:none;
  7666. border-top:0px;
  7667. border-right:0px;
  7668. border-bottom:0px;
  7669. border-radius:0px;
  7670. border-top-left-radius:0px;
  7671. border-bottom-left-radius:0px;
  7672. -moz-box-shadow:none;
  7673. -webkit-box-shadow:none;
  7674. box-shadow:none;
  7675. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7676. font-weight:400;
  7677. font-style:normal;
  7678. font-size:14px;
  7679. color:#7F7F7F;
  7680. text-align:right;
  7681. }
  7682. #u28107 {
  7683. border-width:0px;
  7684. position:absolute;
  7685. left:1680px;
  7686. top:265px;
  7687. width:95px;
  7688. height:40px;
  7689. display:flex;
  7690. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7691. font-weight:400;
  7692. font-style:normal;
  7693. font-size:14px;
  7694. color:#7F7F7F;
  7695. text-align:right;
  7696. }
  7697. #u28107 .text {
  7698. position:absolute;
  7699. align-self:center;
  7700. padding:5px 10px 5px 0px;
  7701. box-sizing:border-box;
  7702. width:100%;
  7703. }
  7704. #u28107_text {
  7705. border-width:0px;
  7706. white-space:nowrap;
  7707. text-transform:none;
  7708. }
  7709. #u28108 {
  7710. border-width:0px;
  7711. position:absolute;
  7712. left:0px;
  7713. top:0px;
  7714. width:0px;
  7715. height:0px;
  7716. }
  7717. #u28109_div {
  7718. border-width:0px;
  7719. position:absolute;
  7720. left:0px;
  7721. top:0px;
  7722. width:619px;
  7723. height:40px;
  7724. background:inherit;
  7725. background-color:rgba(255, 255, 255, 1);
  7726. box-sizing:border-box;
  7727. border-width:1px;
  7728. border-style:solid;
  7729. border-color:rgba(215, 215, 215, 1);
  7730. border-radius:4px;
  7731. -moz-box-shadow:none;
  7732. -webkit-box-shadow:none;
  7733. box-shadow:none;
  7734. font-size:14px;
  7735. }
  7736. #u28109 {
  7737. border-width:0px;
  7738. position:absolute;
  7739. left:1765px;
  7740. top:265px;
  7741. width:619px;
  7742. height:40px;
  7743. display:flex;
  7744. font-size:14px;
  7745. }
  7746. #u28109 .text {
  7747. position:absolute;
  7748. align-self:center;
  7749. padding:2px 2px 2px 2px;
  7750. box-sizing:border-box;
  7751. width:100%;
  7752. }
  7753. #u28109_text {
  7754. border-width:0px;
  7755. word-wrap:break-word;
  7756. text-transform:none;
  7757. visibility:hidden;
  7758. }
  7759. #u28110_input {
  7760. position:absolute;
  7761. left:0px;
  7762. top:0px;
  7763. width:594px;
  7764. height:31px;
  7765. padding:2px 2px 2px 2px;
  7766. font-family:'ArialMT', 'Arial', sans-serif;
  7767. font-weight:400;
  7768. font-style:normal;
  7769. font-size:14px;
  7770. letter-spacing:normal;
  7771. color:#AAAAAA;
  7772. vertical-align:none;
  7773. text-align:left;
  7774. text-transform:none;
  7775. background-color:transparent;
  7776. border-color:transparent;
  7777. }
  7778. #u28110_input.disabled {
  7779. position:absolute;
  7780. left:0px;
  7781. top:0px;
  7782. width:594px;
  7783. height:31px;
  7784. padding:2px 2px 2px 2px;
  7785. font-family:'ArialMT', 'Arial', sans-serif;
  7786. font-weight:400;
  7787. font-style:normal;
  7788. font-size:14px;
  7789. letter-spacing:normal;
  7790. color:#AAAAAA;
  7791. vertical-align:none;
  7792. text-align:left;
  7793. text-transform:none;
  7794. background-color:transparent;
  7795. border-color:transparent;
  7796. }
  7797. #u28110_div {
  7798. border-width:0px;
  7799. position:absolute;
  7800. left:0px;
  7801. top:0px;
  7802. width:594px;
  7803. height:31px;
  7804. background:inherit;
  7805. background-color:rgba(255, 255, 255, 1);
  7806. border:none;
  7807. border-radius:0px;
  7808. -moz-box-shadow:none;
  7809. -webkit-box-shadow:none;
  7810. box-shadow:none;
  7811. font-size:14px;
  7812. color:#AAAAAA;
  7813. }
  7814. #u28110 {
  7815. border-width:0px;
  7816. position:absolute;
  7817. left:1782px;
  7818. top:268px;
  7819. width:594px;
  7820. height:31px;
  7821. display:flex;
  7822. font-size:14px;
  7823. color:#AAAAAA;
  7824. }
  7825. #u28110 .text {
  7826. position:absolute;
  7827. align-self:flex-start;
  7828. padding:2px 2px 2px 2px;
  7829. box-sizing:border-box;
  7830. width:100%;
  7831. }
  7832. #u28110_div.disabled {
  7833. border-width:0px;
  7834. position:absolute;
  7835. left:0px;
  7836. top:0px;
  7837. width:594px;
  7838. height:31px;
  7839. background:inherit;
  7840. background-color:rgba(240, 240, 240, 1);
  7841. border:none;
  7842. border-radius:0px;
  7843. -moz-box-shadow:none;
  7844. -webkit-box-shadow:none;
  7845. box-shadow:none;
  7846. font-size:14px;
  7847. color:#AAAAAA;
  7848. }
  7849. #u28110.disabled {
  7850. }
  7851. .u28110_input_option {
  7852. font-size:14px;
  7853. }