styles.css 134 KB

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