styles.css 108 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:0px;
  6. width:1600px;
  7. margin-left:auto;
  8. margin-right:auto;
  9. text-align:left;
  10. }
  11. .form_sketch {
  12. border-color:transparent;
  13. background-color:transparent;
  14. }
  15. #base {
  16. position:absolute;
  17. z-index:0;
  18. }
  19. #u29867 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:0px;
  25. height:0px;
  26. }
  27. #u29869 {
  28. border-width:0px;
  29. position:absolute;
  30. left:0px;
  31. top:0px;
  32. width:0px;
  33. height:0px;
  34. }
  35. #u29870_div {
  36. border-width:0px;
  37. position:absolute;
  38. left:0px;
  39. top:0px;
  40. width:129px;
  41. height:22px;
  42. background:inherit;
  43. background-color:rgba(255, 255, 255, 0);
  44. border:none;
  45. border-radius:0px;
  46. -moz-box-shadow:none;
  47. -webkit-box-shadow:none;
  48. box-shadow:none;
  49. font-size:16px;
  50. color:#FFFFFF;
  51. }
  52. #u29870 {
  53. border-width:0px;
  54. position:absolute;
  55. left:49px;
  56. top:14px;
  57. width:129px;
  58. height:22px;
  59. display:flex;
  60. font-size:16px;
  61. color:#FFFFFF;
  62. }
  63. #u29870 .text {
  64. position:absolute;
  65. align-self:flex-start;
  66. padding:0px 0px 0px 0px;
  67. box-sizing:border-box;
  68. width:100%;
  69. }
  70. #u29870_text {
  71. border-width:0px;
  72. white-space:nowrap;
  73. text-transform:none;
  74. }
  75. #u29871_div {
  76. border-width:0px;
  77. position:absolute;
  78. left:0px;
  79. top:0px;
  80. width:1600px;
  81. height:50px;
  82. background:inherit;
  83. background-color:rgba(30, 42, 68, 1);
  84. border:none;
  85. border-radius:0px;
  86. -moz-box-shadow:none;
  87. -webkit-box-shadow:none;
  88. box-shadow:none;
  89. color:#AFB3B6;
  90. }
  91. #u29871 {
  92. border-width:0px;
  93. position:absolute;
  94. left:0px;
  95. top:0px;
  96. width:1600px;
  97. height:50px;
  98. display:flex;
  99. color:#AFB3B6;
  100. }
  101. #u29871 .text {
  102. position:absolute;
  103. align-self:center;
  104. padding:2px 2px 2px 2px;
  105. box-sizing:border-box;
  106. width:100%;
  107. }
  108. #u29871_text {
  109. border-width:0px;
  110. word-wrap:break-word;
  111. text-transform:none;
  112. visibility:hidden;
  113. }
  114. #u29872 {
  115. border-width:0px;
  116. position:absolute;
  117. left:0px;
  118. top:0px;
  119. width:0px;
  120. height:0px;
  121. }
  122. #u29873_img {
  123. border-width:0px;
  124. position:absolute;
  125. left:0px;
  126. top:0px;
  127. width:31px;
  128. height:31px;
  129. }
  130. #u29873 {
  131. border-width:0px;
  132. position:absolute;
  133. left:19px;
  134. top:10px;
  135. width:31px;
  136. height:31px;
  137. display:flex;
  138. }
  139. #u29873 .text {
  140. position:absolute;
  141. align-self:center;
  142. padding:2px 2px 2px 2px;
  143. box-sizing:border-box;
  144. width:100%;
  145. }
  146. #u29873_text {
  147. border-width:0px;
  148. word-wrap:break-word;
  149. text-transform:none;
  150. }
  151. #u29874_div {
  152. border-width:0px;
  153. position:absolute;
  154. left:0px;
  155. top:0px;
  156. width:129px;
  157. height:22px;
  158. background:inherit;
  159. background-color:rgba(255, 255, 255, 0);
  160. border:none;
  161. border-radius:0px;
  162. -moz-box-shadow:none;
  163. -webkit-box-shadow:none;
  164. box-shadow:none;
  165. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  166. font-weight:400;
  167. font-style:normal;
  168. font-size:16px;
  169. color:#FFFFFF;
  170. }
  171. #u29874 {
  172. border-width:0px;
  173. position:absolute;
  174. left:62px;
  175. top:14px;
  176. width:129px;
  177. height:22px;
  178. display:flex;
  179. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  180. font-weight:400;
  181. font-style:normal;
  182. font-size:16px;
  183. color:#FFFFFF;
  184. }
  185. #u29874 .text {
  186. position:absolute;
  187. align-self:flex-start;
  188. padding:0px 0px 0px 0px;
  189. box-sizing:border-box;
  190. width:100%;
  191. }
  192. #u29874_text {
  193. border-width:0px;
  194. white-space:nowrap;
  195. text-transform:none;
  196. }
  197. #u29875_div {
  198. border-width:0px;
  199. position:absolute;
  200. left:0px;
  201. top:0px;
  202. width:200px;
  203. height:1200px;
  204. background:inherit;
  205. background-color:rgba(30, 42, 68, 1);
  206. border:none;
  207. border-radius:0px;
  208. -moz-box-shadow:none;
  209. -webkit-box-shadow:none;
  210. box-shadow:none;
  211. color:#AFB3B6;
  212. }
  213. #u29875 {
  214. border-width:0px;
  215. position:absolute;
  216. left:0px;
  217. top:47px;
  218. width:200px;
  219. height:1200px;
  220. display:flex;
  221. color:#AFB3B6;
  222. }
  223. #u29875 .text {
  224. position:absolute;
  225. align-self:center;
  226. padding:2px 2px 2px 2px;
  227. box-sizing:border-box;
  228. width:100%;
  229. }
  230. #u29875_text {
  231. border-width:0px;
  232. word-wrap:break-word;
  233. text-transform:none;
  234. visibility:hidden;
  235. }
  236. #u29876_img {
  237. border-width:0px;
  238. position:absolute;
  239. left:0px;
  240. top:0px;
  241. width:15px;
  242. height:15px;
  243. }
  244. #u29876 {
  245. border-width:0px;
  246. position:absolute;
  247. left:1523px;
  248. top:18px;
  249. width:15px;
  250. height:15px;
  251. display:flex;
  252. }
  253. #u29876 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u29876_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u29877_img {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:15px;
  272. height:15px;
  273. }
  274. #u29877 {
  275. border-width:0px;
  276. position:absolute;
  277. left:1493px;
  278. top:18px;
  279. width:15px;
  280. height:15px;
  281. display:flex;
  282. }
  283. #u29877 .text {
  284. position:absolute;
  285. align-self:center;
  286. padding:2px 2px 2px 2px;
  287. box-sizing:border-box;
  288. width:100%;
  289. }
  290. #u29877_text {
  291. border-width:0px;
  292. word-wrap:break-word;
  293. text-transform:none;
  294. visibility:hidden;
  295. }
  296. #u29878 {
  297. border-width:0px;
  298. position:absolute;
  299. left:0px;
  300. top:0px;
  301. width:0px;
  302. height:0px;
  303. }
  304. #u29879_img {
  305. border-width:0px;
  306. position:absolute;
  307. left:0px;
  308. top:0px;
  309. width:14px;
  310. height:14px;
  311. }
  312. #u29879 {
  313. border-width:0px;
  314. position:absolute;
  315. left:1553px;
  316. top:18px;
  317. width:14px;
  318. height:14px;
  319. display:flex;
  320. }
  321. #u29879 .text {
  322. position:absolute;
  323. align-self:center;
  324. padding:2px 2px 2px 2px;
  325. box-sizing:border-box;
  326. width:100%;
  327. }
  328. #u29879_text {
  329. border-width:0px;
  330. word-wrap:break-word;
  331. text-transform:none;
  332. visibility:hidden;
  333. }
  334. #u29880_img {
  335. border-width:0px;
  336. position:absolute;
  337. left:0px;
  338. top:0px;
  339. width:8px;
  340. height:5px;
  341. }
  342. #u29880 {
  343. border-width:0px;
  344. position:absolute;
  345. left:1572px;
  346. top:23px;
  347. width:8px;
  348. height:5px;
  349. display:flex;
  350. }
  351. #u29880 .text {
  352. position:absolute;
  353. align-self:center;
  354. padding:2px 2px 2px 2px;
  355. box-sizing:border-box;
  356. width:100%;
  357. }
  358. #u29880_text {
  359. border-width:0px;
  360. word-wrap:break-word;
  361. text-transform:none;
  362. visibility:hidden;
  363. }
  364. #u29881_div {
  365. border-width:0px;
  366. position:absolute;
  367. left:0px;
  368. top:0px;
  369. width:1402px;
  370. height:1200px;
  371. background:inherit;
  372. background-color:rgba(242, 242, 242, 1);
  373. border:none;
  374. border-radius:0px;
  375. -moz-box-shadow:none;
  376. -webkit-box-shadow:none;
  377. box-shadow:none;
  378. }
  379. #u29881 {
  380. border-width:0px;
  381. position:absolute;
  382. left:198px;
  383. top:47px;
  384. width:1402px;
  385. height:1200px;
  386. display:flex;
  387. }
  388. #u29881 .text {
  389. position:absolute;
  390. align-self:center;
  391. padding:2px 2px 2px 2px;
  392. box-sizing:border-box;
  393. width:100%;
  394. }
  395. #u29881_text {
  396. border-width:0px;
  397. word-wrap:break-word;
  398. text-transform:none;
  399. visibility:hidden;
  400. }
  401. #u29882 {
  402. border-width:0px;
  403. position:absolute;
  404. left:35px;
  405. top:81px;
  406. width:118px;
  407. height:220px;
  408. }
  409. #u29882_children {
  410. border-width:0px;
  411. position:absolute;
  412. left:0px;
  413. top:0px;
  414. width:0px;
  415. height:0px;
  416. }
  417. #u29883 {
  418. border-width:0px;
  419. position:absolute;
  420. left:0px;
  421. top:0px;
  422. width:98px;
  423. height:20px;
  424. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  425. font-weight:400;
  426. font-style:normal;
  427. font-size:14px;
  428. color:#FFFFFF;
  429. }
  430. #u29884_div {
  431. border-width:0px;
  432. position:absolute;
  433. left:0px;
  434. top:0px;
  435. width:76px;
  436. height:20px;
  437. background:inherit;
  438. background-color:rgba(255, 255, 255, 0);
  439. border:none;
  440. border-radius:0px;
  441. -moz-box-shadow:none;
  442. -webkit-box-shadow:none;
  443. box-shadow:none;
  444. }
  445. #u29884 {
  446. border-width:0px;
  447. position:absolute;
  448. left:22px;
  449. top:0px;
  450. width:76px;
  451. height:20px;
  452. display:flex;
  453. }
  454. #u29884 .text {
  455. position:absolute;
  456. align-self:center;
  457. padding:2px 2px 2px 3px;
  458. box-sizing:border-box;
  459. width:100%;
  460. }
  461. #u29884_text {
  462. border-width:0px;
  463. white-space:nowrap;
  464. text-transform:none;
  465. }
  466. #u29885 {
  467. border-width:0px;
  468. position:absolute;
  469. left:0px;
  470. top:20px;
  471. width:84px;
  472. height:20px;
  473. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  474. font-weight:400;
  475. font-style:normal;
  476. font-size:14px;
  477. color:#FFFFFF;
  478. }
  479. #u29886_img {
  480. border-width:0px;
  481. position:absolute;
  482. left:0px;
  483. top:0px;
  484. width:9px;
  485. height:9px;
  486. }
  487. #u29886 {
  488. border-width:0px;
  489. position:absolute;
  490. left:6px;
  491. top:6px;
  492. width:9px;
  493. height:9px;
  494. display:flex;
  495. }
  496. #u29886 .text {
  497. position:absolute;
  498. align-self:center;
  499. padding:2px 2px 2px 2px;
  500. box-sizing:border-box;
  501. width:100%;
  502. }
  503. #u29886_img.selected {
  504. }
  505. #u29886.selected {
  506. }
  507. #u29886_text {
  508. border-width:0px;
  509. word-wrap:break-word;
  510. text-transform:none;
  511. visibility:hidden;
  512. }
  513. #u29887_div {
  514. border-width:0px;
  515. position:absolute;
  516. left:0px;
  517. top:0px;
  518. width:62px;
  519. height:20px;
  520. background:inherit;
  521. background-color:rgba(255, 255, 255, 0);
  522. border:none;
  523. border-radius:0px;
  524. -moz-box-shadow:none;
  525. -webkit-box-shadow:none;
  526. box-shadow:none;
  527. }
  528. #u29887 {
  529. border-width:0px;
  530. position:absolute;
  531. left:22px;
  532. top:0px;
  533. width:62px;
  534. height:20px;
  535. display:flex;
  536. }
  537. #u29887 .text {
  538. position:absolute;
  539. align-self:center;
  540. padding:2px 2px 2px 3px;
  541. box-sizing:border-box;
  542. width:100%;
  543. }
  544. #u29887_text {
  545. border-width:0px;
  546. white-space:nowrap;
  547. text-transform:none;
  548. }
  549. #u29885_children {
  550. border-width:0px;
  551. position:absolute;
  552. left:0px;
  553. top:0px;
  554. width:0px;
  555. height:0px;
  556. }
  557. #u29888 {
  558. border-width:0px;
  559. position:absolute;
  560. left:20px;
  561. top:20px;
  562. width:98px;
  563. height:20px;
  564. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  565. font-weight:400;
  566. font-style:normal;
  567. font-size:14px;
  568. color:#FFFFFF;
  569. }
  570. #u29889_div {
  571. border-width:0px;
  572. position:absolute;
  573. left:0px;
  574. top:0px;
  575. width:76px;
  576. height:20px;
  577. background:inherit;
  578. background-color:rgba(255, 255, 255, 0);
  579. border:none;
  580. border-radius:0px;
  581. -moz-box-shadow:none;
  582. -webkit-box-shadow:none;
  583. box-shadow:none;
  584. }
  585. #u29889 {
  586. border-width:0px;
  587. position:absolute;
  588. left:22px;
  589. top:0px;
  590. width:76px;
  591. height:20px;
  592. display:flex;
  593. }
  594. #u29889 .text {
  595. position:absolute;
  596. align-self:center;
  597. padding:2px 2px 2px 3px;
  598. box-sizing:border-box;
  599. width:100%;
  600. }
  601. #u29889_text {
  602. border-width:0px;
  603. white-space:nowrap;
  604. text-transform:none;
  605. }
  606. #u29890 {
  607. border-width:0px;
  608. position:absolute;
  609. left:20px;
  610. top:40px;
  611. width:98px;
  612. height:20px;
  613. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  614. font-weight:400;
  615. font-style:normal;
  616. font-size:14px;
  617. color:#FFFFFF;
  618. }
  619. #u29891_div {
  620. border-width:0px;
  621. position:absolute;
  622. left:0px;
  623. top:0px;
  624. width:76px;
  625. height:20px;
  626. background:inherit;
  627. background-color:rgba(255, 255, 255, 0);
  628. border:none;
  629. border-radius:0px;
  630. -moz-box-shadow:none;
  631. -webkit-box-shadow:none;
  632. box-shadow:none;
  633. }
  634. #u29891 {
  635. border-width:0px;
  636. position:absolute;
  637. left:22px;
  638. top:0px;
  639. width:76px;
  640. height:20px;
  641. display:flex;
  642. }
  643. #u29891 .text {
  644. position:absolute;
  645. align-self:center;
  646. padding:2px 2px 2px 3px;
  647. box-sizing:border-box;
  648. width:100%;
  649. }
  650. #u29891_text {
  651. border-width:0px;
  652. white-space:nowrap;
  653. text-transform:none;
  654. }
  655. #u29892 {
  656. border-width:0px;
  657. position:absolute;
  658. left:0px;
  659. top:80px;
  660. width:84px;
  661. height:20px;
  662. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  663. font-weight:400;
  664. font-style:normal;
  665. font-size:14px;
  666. color:#FFFFFF;
  667. }
  668. #u29893_img {
  669. border-width:0px;
  670. position:absolute;
  671. left:0px;
  672. top:0px;
  673. width:9px;
  674. height:9px;
  675. }
  676. #u29893 {
  677. border-width:0px;
  678. position:absolute;
  679. left:6px;
  680. top:6px;
  681. width:9px;
  682. height:9px;
  683. display:flex;
  684. }
  685. #u29893 .text {
  686. position:absolute;
  687. align-self:center;
  688. padding:2px 2px 2px 2px;
  689. box-sizing:border-box;
  690. width:100%;
  691. }
  692. #u29893_img.selected {
  693. }
  694. #u29893.selected {
  695. }
  696. #u29893_text {
  697. border-width:0px;
  698. word-wrap:break-word;
  699. text-transform:none;
  700. visibility:hidden;
  701. }
  702. #u29894_div {
  703. border-width:0px;
  704. position:absolute;
  705. left:0px;
  706. top:0px;
  707. width:62px;
  708. height:20px;
  709. background:inherit;
  710. background-color:rgba(255, 255, 255, 0);
  711. border:none;
  712. border-radius:0px;
  713. -moz-box-shadow:none;
  714. -webkit-box-shadow:none;
  715. box-shadow:none;
  716. }
  717. #u29894 {
  718. border-width:0px;
  719. position:absolute;
  720. left:22px;
  721. top:0px;
  722. width:62px;
  723. height:20px;
  724. display:flex;
  725. }
  726. #u29894 .text {
  727. position:absolute;
  728. align-self:center;
  729. padding:2px 2px 2px 3px;
  730. box-sizing:border-box;
  731. width:100%;
  732. }
  733. #u29894_text {
  734. border-width:0px;
  735. white-space:nowrap;
  736. text-transform:none;
  737. }
  738. #u29892_children {
  739. border-width:0px;
  740. position:absolute;
  741. left:0px;
  742. top:0px;
  743. width:0px;
  744. height:0px;
  745. }
  746. #u29895 {
  747. border-width:0px;
  748. position:absolute;
  749. left:20px;
  750. top:20px;
  751. width:98px;
  752. height:20px;
  753. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  754. font-weight:400;
  755. font-style:normal;
  756. font-size:14px;
  757. color:#FFFFFF;
  758. }
  759. #u29896_div {
  760. border-width:0px;
  761. position:absolute;
  762. left:0px;
  763. top:0px;
  764. width:76px;
  765. height:20px;
  766. background:inherit;
  767. background-color:rgba(255, 255, 255, 0);
  768. border:none;
  769. border-radius:0px;
  770. -moz-box-shadow:none;
  771. -webkit-box-shadow:none;
  772. box-shadow:none;
  773. }
  774. #u29896 {
  775. border-width:0px;
  776. position:absolute;
  777. left:22px;
  778. top:0px;
  779. width:76px;
  780. height:20px;
  781. display:flex;
  782. }
  783. #u29896 .text {
  784. position:absolute;
  785. align-self:center;
  786. padding:2px 2px 2px 3px;
  787. box-sizing:border-box;
  788. width:100%;
  789. }
  790. #u29896_text {
  791. border-width:0px;
  792. white-space:nowrap;
  793. text-transform:none;
  794. }
  795. #u29897 {
  796. border-width:0px;
  797. position:absolute;
  798. left:20px;
  799. top:40px;
  800. width:98px;
  801. height:20px;
  802. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  803. font-weight:400;
  804. font-style:normal;
  805. font-size:14px;
  806. color:#FFFFFF;
  807. }
  808. #u29898_div {
  809. border-width:0px;
  810. position:absolute;
  811. left:0px;
  812. top:0px;
  813. width:76px;
  814. height:20px;
  815. background:inherit;
  816. background-color:rgba(255, 255, 255, 0);
  817. border:none;
  818. border-radius:0px;
  819. -moz-box-shadow:none;
  820. -webkit-box-shadow:none;
  821. box-shadow:none;
  822. }
  823. #u29898 {
  824. border-width:0px;
  825. position:absolute;
  826. left:22px;
  827. top:0px;
  828. width:76px;
  829. height:20px;
  830. display:flex;
  831. }
  832. #u29898 .text {
  833. position:absolute;
  834. align-self:center;
  835. padding:2px 2px 2px 3px;
  836. box-sizing:border-box;
  837. width:100%;
  838. }
  839. #u29898_text {
  840. border-width:0px;
  841. white-space:nowrap;
  842. text-transform:none;
  843. }
  844. #u29899 {
  845. border-width:0px;
  846. position:absolute;
  847. left:0px;
  848. top:140px;
  849. width:84px;
  850. height:20px;
  851. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  852. font-weight:400;
  853. font-style:normal;
  854. font-size:14px;
  855. color:#FFFFFF;
  856. }
  857. #u29900_img {
  858. border-width:0px;
  859. position:absolute;
  860. left:0px;
  861. top:0px;
  862. width:9px;
  863. height:9px;
  864. }
  865. #u29900 {
  866. border-width:0px;
  867. position:absolute;
  868. left:6px;
  869. top:6px;
  870. width:9px;
  871. height:9px;
  872. display:flex;
  873. }
  874. #u29900 .text {
  875. position:absolute;
  876. align-self:center;
  877. padding:2px 2px 2px 2px;
  878. box-sizing:border-box;
  879. width:100%;
  880. }
  881. #u29900_img.selected {
  882. }
  883. #u29900.selected {
  884. }
  885. #u29900_text {
  886. border-width:0px;
  887. word-wrap:break-word;
  888. text-transform:none;
  889. visibility:hidden;
  890. }
  891. #u29901_div {
  892. border-width:0px;
  893. position:absolute;
  894. left:0px;
  895. top:0px;
  896. width:62px;
  897. height:20px;
  898. background:inherit;
  899. background-color:rgba(255, 255, 255, 0);
  900. border:none;
  901. border-radius:0px;
  902. -moz-box-shadow:none;
  903. -webkit-box-shadow:none;
  904. box-shadow:none;
  905. }
  906. #u29901 {
  907. border-width:0px;
  908. position:absolute;
  909. left:22px;
  910. top:0px;
  911. width:62px;
  912. height:20px;
  913. display:flex;
  914. }
  915. #u29901 .text {
  916. position:absolute;
  917. align-self:center;
  918. padding:2px 2px 2px 3px;
  919. box-sizing:border-box;
  920. width:100%;
  921. }
  922. #u29901_text {
  923. border-width:0px;
  924. white-space:nowrap;
  925. text-transform:none;
  926. }
  927. #u29899_children {
  928. border-width:0px;
  929. position:absolute;
  930. left:0px;
  931. top:0px;
  932. width:0px;
  933. height:0px;
  934. visibility:hidden;
  935. }
  936. #u29902 {
  937. border-width:0px;
  938. position:absolute;
  939. left:20px;
  940. top:20px;
  941. width:84px;
  942. height:20px;
  943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  944. font-weight:400;
  945. font-style:normal;
  946. font-size:14px;
  947. color:#FFFFFF;
  948. }
  949. #u29903_div {
  950. border-width:0px;
  951. position:absolute;
  952. left:0px;
  953. top:0px;
  954. width:62px;
  955. height:20px;
  956. background:inherit;
  957. background-color:rgba(255, 255, 255, 0);
  958. border:none;
  959. border-radius:0px;
  960. -moz-box-shadow:none;
  961. -webkit-box-shadow:none;
  962. box-shadow:none;
  963. }
  964. #u29903 {
  965. border-width:0px;
  966. position:absolute;
  967. left:22px;
  968. top:0px;
  969. width:62px;
  970. height:20px;
  971. display:flex;
  972. }
  973. #u29903 .text {
  974. position:absolute;
  975. align-self:center;
  976. padding:2px 2px 2px 3px;
  977. box-sizing:border-box;
  978. width:100%;
  979. }
  980. #u29903_text {
  981. border-width:0px;
  982. white-space:nowrap;
  983. text-transform:none;
  984. }
  985. #u29904 {
  986. border-width:0px;
  987. position:absolute;
  988. left:20px;
  989. top:40px;
  990. width:84px;
  991. height:20px;
  992. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  993. font-weight:400;
  994. font-style:normal;
  995. font-size:14px;
  996. color:#FFFFFF;
  997. }
  998. #u29905_div {
  999. border-width:0px;
  1000. position:absolute;
  1001. left:0px;
  1002. top:0px;
  1003. width:62px;
  1004. height:20px;
  1005. background:inherit;
  1006. background-color:rgba(255, 255, 255, 0);
  1007. border:none;
  1008. border-radius:0px;
  1009. -moz-box-shadow:none;
  1010. -webkit-box-shadow:none;
  1011. box-shadow:none;
  1012. }
  1013. #u29905 {
  1014. border-width:0px;
  1015. position:absolute;
  1016. left:22px;
  1017. top:0px;
  1018. width:62px;
  1019. height:20px;
  1020. display:flex;
  1021. }
  1022. #u29905 .text {
  1023. position:absolute;
  1024. align-self:center;
  1025. padding:2px 2px 2px 3px;
  1026. box-sizing:border-box;
  1027. width:100%;
  1028. }
  1029. #u29905_text {
  1030. border-width:0px;
  1031. white-space:nowrap;
  1032. text-transform:none;
  1033. }
  1034. #u29906 {
  1035. border-width:0px;
  1036. position:absolute;
  1037. left:20px;
  1038. top:60px;
  1039. width:84px;
  1040. height:20px;
  1041. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1042. font-weight:400;
  1043. font-style:normal;
  1044. font-size:14px;
  1045. color:#FFFFFF;
  1046. }
  1047. #u29907_div {
  1048. border-width:0px;
  1049. position:absolute;
  1050. left:0px;
  1051. top:0px;
  1052. width:62px;
  1053. height:20px;
  1054. background:inherit;
  1055. background-color:rgba(255, 255, 255, 0);
  1056. border:none;
  1057. border-radius:0px;
  1058. -moz-box-shadow:none;
  1059. -webkit-box-shadow:none;
  1060. box-shadow:none;
  1061. }
  1062. #u29907 {
  1063. border-width:0px;
  1064. position:absolute;
  1065. left:22px;
  1066. top:0px;
  1067. width:62px;
  1068. height:20px;
  1069. display:flex;
  1070. }
  1071. #u29907 .text {
  1072. position:absolute;
  1073. align-self:center;
  1074. padding:2px 2px 2px 3px;
  1075. box-sizing:border-box;
  1076. width:100%;
  1077. }
  1078. #u29907_text {
  1079. border-width:0px;
  1080. white-space:nowrap;
  1081. text-transform:none;
  1082. }
  1083. #u29908 {
  1084. border-width:0px;
  1085. position:absolute;
  1086. left:20px;
  1087. top:80px;
  1088. width:84px;
  1089. height:20px;
  1090. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1091. font-weight:400;
  1092. font-style:normal;
  1093. font-size:14px;
  1094. color:#FFFFFF;
  1095. }
  1096. #u29909_div {
  1097. border-width:0px;
  1098. position:absolute;
  1099. left:0px;
  1100. top:0px;
  1101. width:62px;
  1102. height:20px;
  1103. background:inherit;
  1104. background-color:rgba(255, 255, 255, 0);
  1105. border:none;
  1106. border-radius:0px;
  1107. -moz-box-shadow:none;
  1108. -webkit-box-shadow:none;
  1109. box-shadow:none;
  1110. }
  1111. #u29909 {
  1112. border-width:0px;
  1113. position:absolute;
  1114. left:22px;
  1115. top:0px;
  1116. width:62px;
  1117. height:20px;
  1118. display:flex;
  1119. }
  1120. #u29909 .text {
  1121. position:absolute;
  1122. align-self:center;
  1123. padding:2px 2px 2px 3px;
  1124. box-sizing:border-box;
  1125. width:100%;
  1126. }
  1127. #u29909_text {
  1128. border-width:0px;
  1129. white-space:nowrap;
  1130. text-transform:none;
  1131. }
  1132. #u29910 {
  1133. border-width:0px;
  1134. position:absolute;
  1135. left:0px;
  1136. top:160px;
  1137. width:98px;
  1138. height:20px;
  1139. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1140. font-weight:400;
  1141. font-style:normal;
  1142. font-size:14px;
  1143. color:#FFFFFF;
  1144. }
  1145. #u29911_img {
  1146. border-width:0px;
  1147. position:absolute;
  1148. left:0px;
  1149. top:0px;
  1150. width:9px;
  1151. height:9px;
  1152. }
  1153. #u29911 {
  1154. border-width:0px;
  1155. position:absolute;
  1156. left:6px;
  1157. top:6px;
  1158. width:9px;
  1159. height:9px;
  1160. display:flex;
  1161. }
  1162. #u29911 .text {
  1163. position:absolute;
  1164. align-self:center;
  1165. padding:2px 2px 2px 2px;
  1166. box-sizing:border-box;
  1167. width:100%;
  1168. }
  1169. #u29911_img.selected {
  1170. }
  1171. #u29911.selected {
  1172. }
  1173. #u29911_text {
  1174. border-width:0px;
  1175. word-wrap:break-word;
  1176. text-transform:none;
  1177. visibility:hidden;
  1178. }
  1179. #u29912_div {
  1180. border-width:0px;
  1181. position:absolute;
  1182. left:0px;
  1183. top:0px;
  1184. width:76px;
  1185. height:20px;
  1186. background:inherit;
  1187. background-color:rgba(255, 255, 255, 0);
  1188. border:none;
  1189. border-radius:0px;
  1190. -moz-box-shadow:none;
  1191. -webkit-box-shadow:none;
  1192. box-shadow:none;
  1193. }
  1194. #u29912 {
  1195. border-width:0px;
  1196. position:absolute;
  1197. left:22px;
  1198. top:0px;
  1199. width:76px;
  1200. height:20px;
  1201. display:flex;
  1202. }
  1203. #u29912 .text {
  1204. position:absolute;
  1205. align-self:center;
  1206. padding:2px 2px 2px 3px;
  1207. box-sizing:border-box;
  1208. width:100%;
  1209. }
  1210. #u29912_text {
  1211. border-width:0px;
  1212. white-space:nowrap;
  1213. text-transform:none;
  1214. }
  1215. #u29910_children {
  1216. border-width:0px;
  1217. position:absolute;
  1218. left:0px;
  1219. top:0px;
  1220. width:0px;
  1221. height:0px;
  1222. visibility:hidden;
  1223. }
  1224. #u29913 {
  1225. border-width:0px;
  1226. position:absolute;
  1227. left:20px;
  1228. top:20px;
  1229. width:98px;
  1230. height:20px;
  1231. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1232. font-weight:400;
  1233. font-style:normal;
  1234. font-size:14px;
  1235. color:#FFFFFF;
  1236. }
  1237. #u29914_div {
  1238. border-width:0px;
  1239. position:absolute;
  1240. left:0px;
  1241. top:0px;
  1242. width:76px;
  1243. height:20px;
  1244. background:inherit;
  1245. background-color:rgba(255, 255, 255, 0);
  1246. border:none;
  1247. border-radius:0px;
  1248. -moz-box-shadow:none;
  1249. -webkit-box-shadow:none;
  1250. box-shadow:none;
  1251. }
  1252. #u29914 {
  1253. border-width:0px;
  1254. position:absolute;
  1255. left:22px;
  1256. top:0px;
  1257. width:76px;
  1258. height:20px;
  1259. display:flex;
  1260. }
  1261. #u29914 .text {
  1262. position:absolute;
  1263. align-self:center;
  1264. padding:2px 2px 2px 3px;
  1265. box-sizing:border-box;
  1266. width:100%;
  1267. }
  1268. #u29914_text {
  1269. border-width:0px;
  1270. white-space:nowrap;
  1271. text-transform:none;
  1272. }
  1273. #u29915 {
  1274. border-width:0px;
  1275. position:absolute;
  1276. left:20px;
  1277. top:40px;
  1278. width:98px;
  1279. height:20px;
  1280. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1281. font-weight:400;
  1282. font-style:normal;
  1283. font-size:14px;
  1284. color:#FFFFFF;
  1285. }
  1286. #u29916_div {
  1287. border-width:0px;
  1288. position:absolute;
  1289. left:0px;
  1290. top:0px;
  1291. width:76px;
  1292. height:20px;
  1293. background:inherit;
  1294. background-color:rgba(255, 255, 255, 0);
  1295. border:none;
  1296. border-radius:0px;
  1297. -moz-box-shadow:none;
  1298. -webkit-box-shadow:none;
  1299. box-shadow:none;
  1300. }
  1301. #u29916 {
  1302. border-width:0px;
  1303. position:absolute;
  1304. left:22px;
  1305. top:0px;
  1306. width:76px;
  1307. height:20px;
  1308. display:flex;
  1309. }
  1310. #u29916 .text {
  1311. position:absolute;
  1312. align-self:center;
  1313. padding:2px 2px 2px 3px;
  1314. box-sizing:border-box;
  1315. width:100%;
  1316. }
  1317. #u29916_text {
  1318. border-width:0px;
  1319. white-space:nowrap;
  1320. text-transform:none;
  1321. }
  1322. #u29917 {
  1323. border-width:0px;
  1324. position:absolute;
  1325. left:0px;
  1326. top:180px;
  1327. width:84px;
  1328. height:20px;
  1329. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1330. font-weight:400;
  1331. font-style:normal;
  1332. font-size:14px;
  1333. color:#FFFFFF;
  1334. }
  1335. #u29918_img {
  1336. border-width:0px;
  1337. position:absolute;
  1338. left:0px;
  1339. top:0px;
  1340. width:9px;
  1341. height:9px;
  1342. }
  1343. #u29918 {
  1344. border-width:0px;
  1345. position:absolute;
  1346. left:6px;
  1347. top:6px;
  1348. width:9px;
  1349. height:9px;
  1350. display:flex;
  1351. }
  1352. #u29918 .text {
  1353. position:absolute;
  1354. align-self:center;
  1355. padding:2px 2px 2px 2px;
  1356. box-sizing:border-box;
  1357. width:100%;
  1358. }
  1359. #u29918_img.selected {
  1360. }
  1361. #u29918.selected {
  1362. }
  1363. #u29918_text {
  1364. border-width:0px;
  1365. word-wrap:break-word;
  1366. text-transform:none;
  1367. visibility:hidden;
  1368. }
  1369. #u29919_div {
  1370. border-width:0px;
  1371. position:absolute;
  1372. left:0px;
  1373. top:0px;
  1374. width:62px;
  1375. height:20px;
  1376. background:inherit;
  1377. background-color:rgba(255, 255, 255, 0);
  1378. border:none;
  1379. border-radius:0px;
  1380. -moz-box-shadow:none;
  1381. -webkit-box-shadow:none;
  1382. box-shadow:none;
  1383. }
  1384. #u29919 {
  1385. border-width:0px;
  1386. position:absolute;
  1387. left:22px;
  1388. top:0px;
  1389. width:62px;
  1390. height:20px;
  1391. display:flex;
  1392. }
  1393. #u29919 .text {
  1394. position:absolute;
  1395. align-self:center;
  1396. padding:2px 2px 2px 3px;
  1397. box-sizing:border-box;
  1398. width:100%;
  1399. }
  1400. #u29919_text {
  1401. border-width:0px;
  1402. white-space:nowrap;
  1403. text-transform:none;
  1404. }
  1405. #u29917_children {
  1406. border-width:0px;
  1407. position:absolute;
  1408. left:0px;
  1409. top:0px;
  1410. width:0px;
  1411. height:0px;
  1412. visibility:hidden;
  1413. }
  1414. #u29920 {
  1415. border-width:0px;
  1416. position:absolute;
  1417. left:20px;
  1418. top:20px;
  1419. width:98px;
  1420. height:20px;
  1421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1422. font-weight:400;
  1423. font-style:normal;
  1424. font-size:14px;
  1425. color:#FFFFFF;
  1426. }
  1427. #u29921_div {
  1428. border-width:0px;
  1429. position:absolute;
  1430. left:0px;
  1431. top:0px;
  1432. width:76px;
  1433. height:20px;
  1434. background:inherit;
  1435. background-color:rgba(255, 255, 255, 0);
  1436. border:none;
  1437. border-radius:0px;
  1438. -moz-box-shadow:none;
  1439. -webkit-box-shadow:none;
  1440. box-shadow:none;
  1441. }
  1442. #u29921 {
  1443. border-width:0px;
  1444. position:absolute;
  1445. left:22px;
  1446. top:0px;
  1447. width:76px;
  1448. height:20px;
  1449. display:flex;
  1450. }
  1451. #u29921 .text {
  1452. position:absolute;
  1453. align-self:center;
  1454. padding:2px 2px 2px 3px;
  1455. box-sizing:border-box;
  1456. width:100%;
  1457. }
  1458. #u29921_text {
  1459. border-width:0px;
  1460. white-space:nowrap;
  1461. text-transform:none;
  1462. }
  1463. #u29922 {
  1464. border-width:0px;
  1465. position:absolute;
  1466. left:20px;
  1467. top:40px;
  1468. width:84px;
  1469. height:20px;
  1470. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1471. font-weight:400;
  1472. font-style:normal;
  1473. font-size:14px;
  1474. color:#FFFFFF;
  1475. }
  1476. #u29923_div {
  1477. border-width:0px;
  1478. position:absolute;
  1479. left:0px;
  1480. top:0px;
  1481. width:62px;
  1482. height:20px;
  1483. background:inherit;
  1484. background-color:rgba(255, 255, 255, 0);
  1485. border:none;
  1486. border-radius:0px;
  1487. -moz-box-shadow:none;
  1488. -webkit-box-shadow:none;
  1489. box-shadow:none;
  1490. }
  1491. #u29923 {
  1492. border-width:0px;
  1493. position:absolute;
  1494. left:22px;
  1495. top:0px;
  1496. width:62px;
  1497. height:20px;
  1498. display:flex;
  1499. }
  1500. #u29923 .text {
  1501. position:absolute;
  1502. align-self:center;
  1503. padding:2px 2px 2px 3px;
  1504. box-sizing:border-box;
  1505. width:100%;
  1506. }
  1507. #u29923_text {
  1508. border-width:0px;
  1509. white-space:nowrap;
  1510. text-transform:none;
  1511. }
  1512. #u29924 {
  1513. border-width:0px;
  1514. position:absolute;
  1515. left:0px;
  1516. top:200px;
  1517. width:84px;
  1518. height:20px;
  1519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1520. font-weight:400;
  1521. font-style:normal;
  1522. font-size:14px;
  1523. color:#FFFFFF;
  1524. }
  1525. #u29925_img {
  1526. border-width:0px;
  1527. position:absolute;
  1528. left:0px;
  1529. top:0px;
  1530. width:9px;
  1531. height:9px;
  1532. }
  1533. #u29925 {
  1534. border-width:0px;
  1535. position:absolute;
  1536. left:6px;
  1537. top:6px;
  1538. width:9px;
  1539. height:9px;
  1540. display:flex;
  1541. }
  1542. #u29925 .text {
  1543. position:absolute;
  1544. align-self:center;
  1545. padding:2px 2px 2px 2px;
  1546. box-sizing:border-box;
  1547. width:100%;
  1548. }
  1549. #u29925_img.selected {
  1550. }
  1551. #u29925.selected {
  1552. }
  1553. #u29925_text {
  1554. border-width:0px;
  1555. word-wrap:break-word;
  1556. text-transform:none;
  1557. visibility:hidden;
  1558. }
  1559. #u29926_div {
  1560. border-width:0px;
  1561. position:absolute;
  1562. left:0px;
  1563. top:0px;
  1564. width:62px;
  1565. height:20px;
  1566. background:inherit;
  1567. background-color:rgba(255, 255, 255, 0);
  1568. border:none;
  1569. border-radius:0px;
  1570. -moz-box-shadow:none;
  1571. -webkit-box-shadow:none;
  1572. box-shadow:none;
  1573. }
  1574. #u29926 {
  1575. border-width:0px;
  1576. position:absolute;
  1577. left:22px;
  1578. top:0px;
  1579. width:62px;
  1580. height:20px;
  1581. display:flex;
  1582. }
  1583. #u29926 .text {
  1584. position:absolute;
  1585. align-self:center;
  1586. padding:2px 2px 2px 3px;
  1587. box-sizing:border-box;
  1588. width:100%;
  1589. }
  1590. #u29926_text {
  1591. border-width:0px;
  1592. white-space:nowrap;
  1593. text-transform:none;
  1594. }
  1595. #u29924_children {
  1596. border-width:0px;
  1597. position:absolute;
  1598. left:0px;
  1599. top:0px;
  1600. width:0px;
  1601. height:0px;
  1602. visibility:hidden;
  1603. }
  1604. #u29927 {
  1605. border-width:0px;
  1606. position:absolute;
  1607. left:20px;
  1608. top:20px;
  1609. width:84px;
  1610. height:20px;
  1611. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1612. font-weight:400;
  1613. font-style:normal;
  1614. font-size:14px;
  1615. color:#FFFFFF;
  1616. }
  1617. #u29928_div {
  1618. border-width:0px;
  1619. position:absolute;
  1620. left:0px;
  1621. top:0px;
  1622. width:62px;
  1623. height:20px;
  1624. background:inherit;
  1625. background-color:rgba(255, 255, 255, 0);
  1626. border:none;
  1627. border-radius:0px;
  1628. -moz-box-shadow:none;
  1629. -webkit-box-shadow:none;
  1630. box-shadow:none;
  1631. }
  1632. #u29928 {
  1633. border-width:0px;
  1634. position:absolute;
  1635. left:22px;
  1636. top:0px;
  1637. width:62px;
  1638. height:20px;
  1639. display:flex;
  1640. }
  1641. #u29928 .text {
  1642. position:absolute;
  1643. align-self:center;
  1644. padding:2px 2px 2px 3px;
  1645. box-sizing:border-box;
  1646. width:100%;
  1647. }
  1648. #u29928_text {
  1649. border-width:0px;
  1650. white-space:nowrap;
  1651. text-transform:none;
  1652. }
  1653. #u29929 {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:20px;
  1657. top:40px;
  1658. width:84px;
  1659. height:20px;
  1660. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1661. font-weight:400;
  1662. font-style:normal;
  1663. font-size:14px;
  1664. color:#FFFFFF;
  1665. }
  1666. #u29930_div {
  1667. border-width:0px;
  1668. position:absolute;
  1669. left:0px;
  1670. top:0px;
  1671. width:62px;
  1672. height:20px;
  1673. background:inherit;
  1674. background-color:rgba(255, 255, 255, 0);
  1675. border:none;
  1676. border-radius:0px;
  1677. -moz-box-shadow:none;
  1678. -webkit-box-shadow:none;
  1679. box-shadow:none;
  1680. }
  1681. #u29930 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:22px;
  1685. top:0px;
  1686. width:62px;
  1687. height:20px;
  1688. display:flex;
  1689. }
  1690. #u29930 .text {
  1691. position:absolute;
  1692. align-self:center;
  1693. padding:2px 2px 2px 3px;
  1694. box-sizing:border-box;
  1695. width:100%;
  1696. }
  1697. #u29930_text {
  1698. border-width:0px;
  1699. white-space:nowrap;
  1700. text-transform:none;
  1701. }
  1702. #u29931 {
  1703. border-width:0px;
  1704. position:absolute;
  1705. left:20px;
  1706. top:60px;
  1707. width:84px;
  1708. height:20px;
  1709. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1710. font-weight:400;
  1711. font-style:normal;
  1712. font-size:14px;
  1713. color:#FFFFFF;
  1714. }
  1715. #u29932_div {
  1716. border-width:0px;
  1717. position:absolute;
  1718. left:0px;
  1719. top:0px;
  1720. width:62px;
  1721. height:20px;
  1722. background:inherit;
  1723. background-color:rgba(255, 255, 255, 0);
  1724. border:none;
  1725. border-radius:0px;
  1726. -moz-box-shadow:none;
  1727. -webkit-box-shadow:none;
  1728. box-shadow:none;
  1729. }
  1730. #u29932 {
  1731. border-width:0px;
  1732. position:absolute;
  1733. left:22px;
  1734. top:0px;
  1735. width:62px;
  1736. height:20px;
  1737. display:flex;
  1738. }
  1739. #u29932 .text {
  1740. position:absolute;
  1741. align-self:center;
  1742. padding:2px 2px 2px 3px;
  1743. box-sizing:border-box;
  1744. width:100%;
  1745. }
  1746. #u29932_text {
  1747. border-width:0px;
  1748. white-space:nowrap;
  1749. text-transform:none;
  1750. }
  1751. #u29933 {
  1752. border-width:0px;
  1753. position:absolute;
  1754. left:0px;
  1755. top:0px;
  1756. width:0px;
  1757. height:0px;
  1758. }
  1759. #u29934_input {
  1760. position:absolute;
  1761. left:0px;
  1762. top:0px;
  1763. width:141px;
  1764. height:22px;
  1765. padding:2px 2px 2px 2px;
  1766. font-family:'ArialMT', 'Arial', sans-serif;
  1767. font-weight:400;
  1768. font-style:normal;
  1769. font-size:14px;
  1770. letter-spacing:normal;
  1771. color:#FFFFFF;
  1772. vertical-align:none;
  1773. text-align:left;
  1774. text-transform:none;
  1775. background-color:transparent;
  1776. border-color:transparent;
  1777. }
  1778. #u29934_input.disabled {
  1779. position:absolute;
  1780. left:0px;
  1781. top:0px;
  1782. width:141px;
  1783. height:22px;
  1784. padding:2px 2px 2px 2px;
  1785. font-family:'ArialMT', 'Arial', sans-serif;
  1786. font-weight:400;
  1787. font-style:normal;
  1788. font-size:14px;
  1789. letter-spacing:normal;
  1790. color:#FFFFFF;
  1791. vertical-align:none;
  1792. text-align:left;
  1793. text-transform:none;
  1794. background-color:transparent;
  1795. border-color:transparent;
  1796. }
  1797. #u29934_div {
  1798. border-width:0px;
  1799. position:absolute;
  1800. left:0px;
  1801. top:0px;
  1802. width:141px;
  1803. height:22px;
  1804. background:inherit;
  1805. background-color:rgba(255, 255, 255, 0);
  1806. border:none;
  1807. border-radius:0px;
  1808. -moz-box-shadow:none;
  1809. -webkit-box-shadow:none;
  1810. box-shadow:none;
  1811. font-size:14px;
  1812. color:#FFFFFF;
  1813. }
  1814. #u29934 {
  1815. border-width:0px;
  1816. position:absolute;
  1817. left:243px;
  1818. top:14px;
  1819. width:141px;
  1820. height:22px;
  1821. display:flex;
  1822. font-size:14px;
  1823. color:#FFFFFF;
  1824. }
  1825. #u29934 .text {
  1826. position:absolute;
  1827. align-self:flex-start;
  1828. padding:2px 2px 2px 2px;
  1829. box-sizing:border-box;
  1830. width:100%;
  1831. }
  1832. #u29934_div.disabled {
  1833. border-width:0px;
  1834. position:absolute;
  1835. left:0px;
  1836. top:0px;
  1837. width:141px;
  1838. height:22px;
  1839. background:inherit;
  1840. background-color:rgba(240, 240, 240, 1);
  1841. border:none;
  1842. border-radius:0px;
  1843. -moz-box-shadow:none;
  1844. -webkit-box-shadow:none;
  1845. box-shadow:none;
  1846. font-size:14px;
  1847. color:#FFFFFF;
  1848. }
  1849. #u29934.disabled {
  1850. }
  1851. .u29934_input_option {
  1852. font-size:14px;
  1853. }
  1854. #u29935_img {
  1855. border-width:0px;
  1856. position:absolute;
  1857. left:0px;
  1858. top:0px;
  1859. width:22px;
  1860. height:22px;
  1861. }
  1862. #u29935 {
  1863. border-width:0px;
  1864. position:absolute;
  1865. left:216px;
  1866. top:15px;
  1867. width:22px;
  1868. height:22px;
  1869. display:flex;
  1870. }
  1871. #u29935 .text {
  1872. position:absolute;
  1873. align-self:center;
  1874. padding:2px 2px 2px 2px;
  1875. box-sizing:border-box;
  1876. width:100%;
  1877. }
  1878. #u29935_text {
  1879. border-width:0px;
  1880. word-wrap:break-word;
  1881. text-transform:none;
  1882. visibility:hidden;
  1883. }
  1884. #u29936_div {
  1885. border-width:0px;
  1886. position:absolute;
  1887. left:0px;
  1888. top:0px;
  1889. width:136px;
  1890. height:16px;
  1891. background:inherit;
  1892. background-color:rgba(255, 255, 255, 0);
  1893. border:none;
  1894. border-radius:0px;
  1895. -moz-box-shadow:none;
  1896. -webkit-box-shadow:none;
  1897. box-shadow:none;
  1898. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1899. font-weight:200;
  1900. font-style:normal;
  1901. font-size:11px;
  1902. color:#555555;
  1903. }
  1904. #u29936 {
  1905. border-width:0px;
  1906. position:absolute;
  1907. left:208px;
  1908. top:53px;
  1909. width:136px;
  1910. height:16px;
  1911. display:flex;
  1912. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  1913. font-weight:200;
  1914. font-style:normal;
  1915. font-size:11px;
  1916. color:#555555;
  1917. }
  1918. #u29936 .text {
  1919. position:absolute;
  1920. align-self:flex-start;
  1921. padding:0px 0px 0px 0px;
  1922. box-sizing:border-box;
  1923. width:100%;
  1924. }
  1925. #u29936_text {
  1926. border-width:0px;
  1927. white-space:nowrap;
  1928. text-transform:none;
  1929. }
  1930. #u29937_div {
  1931. border-width:0px;
  1932. position:absolute;
  1933. left:0px;
  1934. top:0px;
  1935. width:140px;
  1936. height:24px;
  1937. background:inherit;
  1938. background-color:rgba(242, 242, 242, 0.2);
  1939. border:none;
  1940. border-radius:25px;
  1941. -moz-box-shadow:none;
  1942. -webkit-box-shadow:none;
  1943. box-shadow:none;
  1944. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1945. font-weight:400;
  1946. font-style:normal;
  1947. color:#FFFFFF;
  1948. text-align:center;
  1949. }
  1950. #u29937 {
  1951. border-width:0px;
  1952. position:absolute;
  1953. left:417px;
  1954. top:13px;
  1955. width:140px;
  1956. height:24px;
  1957. display:flex;
  1958. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1959. font-weight:400;
  1960. font-style:normal;
  1961. color:#FFFFFF;
  1962. text-align:center;
  1963. }
  1964. #u29937 .text {
  1965. position:absolute;
  1966. align-self:center;
  1967. padding:0px 0px 0px 0px;
  1968. box-sizing:border-box;
  1969. width:100%;
  1970. }
  1971. #u29937_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u29938_div {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:0px;
  1980. top:0px;
  1981. width:85px;
  1982. height:20px;
  1983. background:inherit;
  1984. background-color:rgba(30, 42, 68, 1);
  1985. border:none;
  1986. border-radius:0px;
  1987. -moz-box-shadow:none;
  1988. -webkit-box-shadow:none;
  1989. box-shadow:none;
  1990. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1991. font-weight:400;
  1992. font-style:normal;
  1993. color:#FFFFFF;
  1994. }
  1995. #u29938 {
  1996. border-width:0px;
  1997. position:absolute;
  1998. left:1374px;
  1999. top:15px;
  2000. width:85px;
  2001. height:20px;
  2002. display:flex;
  2003. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2004. font-weight:400;
  2005. font-style:normal;
  2006. color:#FFFFFF;
  2007. }
  2008. #u29938 .text {
  2009. position:absolute;
  2010. align-self:flex-start;
  2011. padding:0px 0px 0px 0px;
  2012. box-sizing:border-box;
  2013. width:100%;
  2014. }
  2015. #u29938_text {
  2016. border-width:0px;
  2017. white-space:nowrap;
  2018. text-transform:none;
  2019. }
  2020. #u29939_div {
  2021. border-width:0px;
  2022. position:absolute;
  2023. left:0px;
  2024. top:0px;
  2025. width:1381px;
  2026. height:1153px;
  2027. background:inherit;
  2028. background-color:rgba(255, 255, 255, 1);
  2029. border:none;
  2030. border-radius:0px;
  2031. -moz-box-shadow:none;
  2032. -webkit-box-shadow:none;
  2033. box-shadow:none;
  2034. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2035. font-weight:400;
  2036. font-style:normal;
  2037. font-size:12px;
  2038. color:#FFFFFF;
  2039. text-align:left;
  2040. }
  2041. #u29939 {
  2042. border-width:0px;
  2043. position:absolute;
  2044. left:208px;
  2045. top:74px;
  2046. width:1381px;
  2047. height:1153px;
  2048. display:flex;
  2049. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2050. font-weight:400;
  2051. font-style:normal;
  2052. font-size:12px;
  2053. color:#FFFFFF;
  2054. text-align:left;
  2055. }
  2056. #u29939 .text {
  2057. position:absolute;
  2058. align-self:center;
  2059. padding:2px 2px 2px 50px;
  2060. box-sizing:border-box;
  2061. width:100%;
  2062. }
  2063. #u29939_text {
  2064. border-width:0px;
  2065. word-wrap:break-word;
  2066. text-transform:none;
  2067. visibility:hidden;
  2068. }
  2069. #u29940 {
  2070. border-width:0px;
  2071. position:absolute;
  2072. left:0px;
  2073. top:0px;
  2074. width:0px;
  2075. height:0px;
  2076. }
  2077. #u29942 {
  2078. border-width:0px;
  2079. position:absolute;
  2080. left:0px;
  2081. top:0px;
  2082. width:0px;
  2083. height:0px;
  2084. }
  2085. #u29943_div {
  2086. border-width:0px;
  2087. position:absolute;
  2088. left:0px;
  2089. top:0px;
  2090. width:129px;
  2091. height:22px;
  2092. background:inherit;
  2093. background-color:rgba(255, 255, 255, 0);
  2094. border:none;
  2095. border-radius:0px;
  2096. -moz-box-shadow:none;
  2097. -webkit-box-shadow:none;
  2098. box-shadow:none;
  2099. font-size:16px;
  2100. color:#FFFFFF;
  2101. }
  2102. #u29943 {
  2103. border-width:0px;
  2104. position:absolute;
  2105. left:49px;
  2106. top:14px;
  2107. width:129px;
  2108. height:22px;
  2109. display:flex;
  2110. font-size:16px;
  2111. color:#FFFFFF;
  2112. }
  2113. #u29943 .text {
  2114. position:absolute;
  2115. align-self:flex-start;
  2116. padding:0px 0px 0px 0px;
  2117. box-sizing:border-box;
  2118. width:100%;
  2119. }
  2120. #u29943_text {
  2121. border-width:0px;
  2122. white-space:nowrap;
  2123. text-transform:none;
  2124. }
  2125. #u29944_div {
  2126. border-width:0px;
  2127. position:absolute;
  2128. left:0px;
  2129. top:0px;
  2130. width:1600px;
  2131. height:50px;
  2132. background:inherit;
  2133. background-color:rgba(30, 42, 68, 1);
  2134. border:none;
  2135. border-radius:0px;
  2136. -moz-box-shadow:none;
  2137. -webkit-box-shadow:none;
  2138. box-shadow:none;
  2139. color:#AFB3B6;
  2140. }
  2141. #u29944 {
  2142. border-width:0px;
  2143. position:absolute;
  2144. left:0px;
  2145. top:0px;
  2146. width:1600px;
  2147. height:50px;
  2148. display:flex;
  2149. color:#AFB3B6;
  2150. }
  2151. #u29944 .text {
  2152. position:absolute;
  2153. align-self:center;
  2154. padding:2px 2px 2px 2px;
  2155. box-sizing:border-box;
  2156. width:100%;
  2157. }
  2158. #u29944_text {
  2159. border-width:0px;
  2160. word-wrap:break-word;
  2161. text-transform:none;
  2162. visibility:hidden;
  2163. }
  2164. #u29945 {
  2165. border-width:0px;
  2166. position:absolute;
  2167. left:0px;
  2168. top:0px;
  2169. width:0px;
  2170. height:0px;
  2171. }
  2172. #u29946_img {
  2173. border-width:0px;
  2174. position:absolute;
  2175. left:0px;
  2176. top:0px;
  2177. width:31px;
  2178. height:31px;
  2179. }
  2180. #u29946 {
  2181. border-width:0px;
  2182. position:absolute;
  2183. left:19px;
  2184. top:10px;
  2185. width:31px;
  2186. height:31px;
  2187. display:flex;
  2188. }
  2189. #u29946 .text {
  2190. position:absolute;
  2191. align-self:center;
  2192. padding:2px 2px 2px 2px;
  2193. box-sizing:border-box;
  2194. width:100%;
  2195. }
  2196. #u29946_text {
  2197. border-width:0px;
  2198. word-wrap:break-word;
  2199. text-transform:none;
  2200. }
  2201. #u29947_div {
  2202. border-width:0px;
  2203. position:absolute;
  2204. left:0px;
  2205. top:0px;
  2206. width:129px;
  2207. height:22px;
  2208. background:inherit;
  2209. background-color:rgba(255, 255, 255, 0);
  2210. border:none;
  2211. border-radius:0px;
  2212. -moz-box-shadow:none;
  2213. -webkit-box-shadow:none;
  2214. box-shadow:none;
  2215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2216. font-weight:400;
  2217. font-style:normal;
  2218. font-size:16px;
  2219. color:#FFFFFF;
  2220. }
  2221. #u29947 {
  2222. border-width:0px;
  2223. position:absolute;
  2224. left:62px;
  2225. top:14px;
  2226. width:129px;
  2227. height:22px;
  2228. display:flex;
  2229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2230. font-weight:400;
  2231. font-style:normal;
  2232. font-size:16px;
  2233. color:#FFFFFF;
  2234. }
  2235. #u29947 .text {
  2236. position:absolute;
  2237. align-self:flex-start;
  2238. padding:0px 0px 0px 0px;
  2239. box-sizing:border-box;
  2240. width:100%;
  2241. }
  2242. #u29947_text {
  2243. border-width:0px;
  2244. white-space:nowrap;
  2245. text-transform:none;
  2246. }
  2247. #u29948_div {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:200px;
  2253. height:1200px;
  2254. background:inherit;
  2255. background-color:rgba(30, 42, 68, 1);
  2256. border:none;
  2257. border-radius:0px;
  2258. -moz-box-shadow:none;
  2259. -webkit-box-shadow:none;
  2260. box-shadow:none;
  2261. color:#AFB3B6;
  2262. }
  2263. #u29948 {
  2264. border-width:0px;
  2265. position:absolute;
  2266. left:0px;
  2267. top:47px;
  2268. width:200px;
  2269. height:1200px;
  2270. display:flex;
  2271. color:#AFB3B6;
  2272. }
  2273. #u29948 .text {
  2274. position:absolute;
  2275. align-self:center;
  2276. padding:2px 2px 2px 2px;
  2277. box-sizing:border-box;
  2278. width:100%;
  2279. }
  2280. #u29948_text {
  2281. border-width:0px;
  2282. word-wrap:break-word;
  2283. text-transform:none;
  2284. visibility:hidden;
  2285. }
  2286. #u29949_img {
  2287. border-width:0px;
  2288. position:absolute;
  2289. left:0px;
  2290. top:0px;
  2291. width:15px;
  2292. height:15px;
  2293. }
  2294. #u29949 {
  2295. border-width:0px;
  2296. position:absolute;
  2297. left:1523px;
  2298. top:18px;
  2299. width:15px;
  2300. height:15px;
  2301. display:flex;
  2302. }
  2303. #u29949 .text {
  2304. position:absolute;
  2305. align-self:center;
  2306. padding:2px 2px 2px 2px;
  2307. box-sizing:border-box;
  2308. width:100%;
  2309. }
  2310. #u29949_text {
  2311. border-width:0px;
  2312. word-wrap:break-word;
  2313. text-transform:none;
  2314. visibility:hidden;
  2315. }
  2316. #u29950_img {
  2317. border-width:0px;
  2318. position:absolute;
  2319. left:0px;
  2320. top:0px;
  2321. width:15px;
  2322. height:15px;
  2323. }
  2324. #u29950 {
  2325. border-width:0px;
  2326. position:absolute;
  2327. left:1493px;
  2328. top:18px;
  2329. width:15px;
  2330. height:15px;
  2331. display:flex;
  2332. }
  2333. #u29950 .text {
  2334. position:absolute;
  2335. align-self:center;
  2336. padding:2px 2px 2px 2px;
  2337. box-sizing:border-box;
  2338. width:100%;
  2339. }
  2340. #u29950_text {
  2341. border-width:0px;
  2342. word-wrap:break-word;
  2343. text-transform:none;
  2344. visibility:hidden;
  2345. }
  2346. #u29951 {
  2347. border-width:0px;
  2348. position:absolute;
  2349. left:0px;
  2350. top:0px;
  2351. width:0px;
  2352. height:0px;
  2353. }
  2354. #u29952_img {
  2355. border-width:0px;
  2356. position:absolute;
  2357. left:0px;
  2358. top:0px;
  2359. width:14px;
  2360. height:14px;
  2361. }
  2362. #u29952 {
  2363. border-width:0px;
  2364. position:absolute;
  2365. left:1553px;
  2366. top:18px;
  2367. width:14px;
  2368. height:14px;
  2369. display:flex;
  2370. }
  2371. #u29952 .text {
  2372. position:absolute;
  2373. align-self:center;
  2374. padding:2px 2px 2px 2px;
  2375. box-sizing:border-box;
  2376. width:100%;
  2377. }
  2378. #u29952_text {
  2379. border-width:0px;
  2380. word-wrap:break-word;
  2381. text-transform:none;
  2382. visibility:hidden;
  2383. }
  2384. #u29953_img {
  2385. border-width:0px;
  2386. position:absolute;
  2387. left:0px;
  2388. top:0px;
  2389. width:8px;
  2390. height:5px;
  2391. }
  2392. #u29953 {
  2393. border-width:0px;
  2394. position:absolute;
  2395. left:1572px;
  2396. top:23px;
  2397. width:8px;
  2398. height:5px;
  2399. display:flex;
  2400. }
  2401. #u29953 .text {
  2402. position:absolute;
  2403. align-self:center;
  2404. padding:2px 2px 2px 2px;
  2405. box-sizing:border-box;
  2406. width:100%;
  2407. }
  2408. #u29953_text {
  2409. border-width:0px;
  2410. word-wrap:break-word;
  2411. text-transform:none;
  2412. visibility:hidden;
  2413. }
  2414. #u29954_div {
  2415. border-width:0px;
  2416. position:absolute;
  2417. left:0px;
  2418. top:0px;
  2419. width:1402px;
  2420. height:1200px;
  2421. background:inherit;
  2422. background-color:rgba(242, 242, 242, 1);
  2423. border:none;
  2424. border-radius:0px;
  2425. -moz-box-shadow:none;
  2426. -webkit-box-shadow:none;
  2427. box-shadow:none;
  2428. }
  2429. #u29954 {
  2430. border-width:0px;
  2431. position:absolute;
  2432. left:198px;
  2433. top:47px;
  2434. width:1402px;
  2435. height:1200px;
  2436. display:flex;
  2437. }
  2438. #u29954 .text {
  2439. position:absolute;
  2440. align-self:center;
  2441. padding:2px 2px 2px 2px;
  2442. box-sizing:border-box;
  2443. width:100%;
  2444. }
  2445. #u29954_text {
  2446. border-width:0px;
  2447. word-wrap:break-word;
  2448. text-transform:none;
  2449. visibility:hidden;
  2450. }
  2451. #u29955 {
  2452. border-width:0px;
  2453. position:absolute;
  2454. left:35px;
  2455. top:81px;
  2456. width:118px;
  2457. height:220px;
  2458. }
  2459. #u29955_children {
  2460. border-width:0px;
  2461. position:absolute;
  2462. left:0px;
  2463. top:0px;
  2464. width:0px;
  2465. height:0px;
  2466. }
  2467. #u29956 {
  2468. border-width:0px;
  2469. position:absolute;
  2470. left:0px;
  2471. top:0px;
  2472. width:98px;
  2473. height:20px;
  2474. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2475. font-weight:400;
  2476. font-style:normal;
  2477. font-size:14px;
  2478. color:#FFFFFF;
  2479. }
  2480. #u29957_div {
  2481. border-width:0px;
  2482. position:absolute;
  2483. left:0px;
  2484. top:0px;
  2485. width:76px;
  2486. height:20px;
  2487. background:inherit;
  2488. background-color:rgba(255, 255, 255, 0);
  2489. border:none;
  2490. border-radius:0px;
  2491. -moz-box-shadow:none;
  2492. -webkit-box-shadow:none;
  2493. box-shadow:none;
  2494. }
  2495. #u29957 {
  2496. border-width:0px;
  2497. position:absolute;
  2498. left:22px;
  2499. top:0px;
  2500. width:76px;
  2501. height:20px;
  2502. display:flex;
  2503. }
  2504. #u29957 .text {
  2505. position:absolute;
  2506. align-self:center;
  2507. padding:2px 2px 2px 3px;
  2508. box-sizing:border-box;
  2509. width:100%;
  2510. }
  2511. #u29957_text {
  2512. border-width:0px;
  2513. white-space:nowrap;
  2514. text-transform:none;
  2515. }
  2516. #u29958 {
  2517. border-width:0px;
  2518. position:absolute;
  2519. left:0px;
  2520. top:20px;
  2521. width:84px;
  2522. height:20px;
  2523. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2524. font-weight:400;
  2525. font-style:normal;
  2526. font-size:14px;
  2527. color:#FFFFFF;
  2528. }
  2529. #u29959_img {
  2530. border-width:0px;
  2531. position:absolute;
  2532. left:0px;
  2533. top:0px;
  2534. width:9px;
  2535. height:9px;
  2536. }
  2537. #u29959 {
  2538. border-width:0px;
  2539. position:absolute;
  2540. left:6px;
  2541. top:6px;
  2542. width:9px;
  2543. height:9px;
  2544. display:flex;
  2545. }
  2546. #u29959 .text {
  2547. position:absolute;
  2548. align-self:center;
  2549. padding:2px 2px 2px 2px;
  2550. box-sizing:border-box;
  2551. width:100%;
  2552. }
  2553. #u29959_img.selected {
  2554. }
  2555. #u29959.selected {
  2556. }
  2557. #u29959_text {
  2558. border-width:0px;
  2559. word-wrap:break-word;
  2560. text-transform:none;
  2561. visibility:hidden;
  2562. }
  2563. #u29960_div {
  2564. border-width:0px;
  2565. position:absolute;
  2566. left:0px;
  2567. top:0px;
  2568. width:62px;
  2569. height:20px;
  2570. background:inherit;
  2571. background-color:rgba(255, 255, 255, 0);
  2572. border:none;
  2573. border-radius:0px;
  2574. -moz-box-shadow:none;
  2575. -webkit-box-shadow:none;
  2576. box-shadow:none;
  2577. }
  2578. #u29960 {
  2579. border-width:0px;
  2580. position:absolute;
  2581. left:22px;
  2582. top:0px;
  2583. width:62px;
  2584. height:20px;
  2585. display:flex;
  2586. }
  2587. #u29960 .text {
  2588. position:absolute;
  2589. align-self:center;
  2590. padding:2px 2px 2px 3px;
  2591. box-sizing:border-box;
  2592. width:100%;
  2593. }
  2594. #u29960_text {
  2595. border-width:0px;
  2596. white-space:nowrap;
  2597. text-transform:none;
  2598. }
  2599. #u29958_children {
  2600. border-width:0px;
  2601. position:absolute;
  2602. left:0px;
  2603. top:0px;
  2604. width:0px;
  2605. height:0px;
  2606. }
  2607. #u29961 {
  2608. border-width:0px;
  2609. position:absolute;
  2610. left:20px;
  2611. top:20px;
  2612. width:98px;
  2613. height:20px;
  2614. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2615. font-weight:400;
  2616. font-style:normal;
  2617. font-size:14px;
  2618. color:#FFFFFF;
  2619. }
  2620. #u29962_div {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:0px;
  2624. top:0px;
  2625. width:76px;
  2626. height:20px;
  2627. background:inherit;
  2628. background-color:rgba(255, 255, 255, 0);
  2629. border:none;
  2630. border-radius:0px;
  2631. -moz-box-shadow:none;
  2632. -webkit-box-shadow:none;
  2633. box-shadow:none;
  2634. }
  2635. #u29962 {
  2636. border-width:0px;
  2637. position:absolute;
  2638. left:22px;
  2639. top:0px;
  2640. width:76px;
  2641. height:20px;
  2642. display:flex;
  2643. }
  2644. #u29962 .text {
  2645. position:absolute;
  2646. align-self:center;
  2647. padding:2px 2px 2px 3px;
  2648. box-sizing:border-box;
  2649. width:100%;
  2650. }
  2651. #u29962_text {
  2652. border-width:0px;
  2653. white-space:nowrap;
  2654. text-transform:none;
  2655. }
  2656. #u29963 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:20px;
  2660. top:40px;
  2661. width:98px;
  2662. height:20px;
  2663. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2664. font-weight:400;
  2665. font-style:normal;
  2666. font-size:14px;
  2667. color:#FFFFFF;
  2668. }
  2669. #u29964_div {
  2670. border-width:0px;
  2671. position:absolute;
  2672. left:0px;
  2673. top:0px;
  2674. width:76px;
  2675. height:20px;
  2676. background:inherit;
  2677. background-color:rgba(255, 255, 255, 0);
  2678. border:none;
  2679. border-radius:0px;
  2680. -moz-box-shadow:none;
  2681. -webkit-box-shadow:none;
  2682. box-shadow:none;
  2683. }
  2684. #u29964 {
  2685. border-width:0px;
  2686. position:absolute;
  2687. left:22px;
  2688. top:0px;
  2689. width:76px;
  2690. height:20px;
  2691. display:flex;
  2692. }
  2693. #u29964 .text {
  2694. position:absolute;
  2695. align-self:center;
  2696. padding:2px 2px 2px 3px;
  2697. box-sizing:border-box;
  2698. width:100%;
  2699. }
  2700. #u29964_text {
  2701. border-width:0px;
  2702. white-space:nowrap;
  2703. text-transform:none;
  2704. }
  2705. #u29965 {
  2706. border-width:0px;
  2707. position:absolute;
  2708. left:0px;
  2709. top:80px;
  2710. width:84px;
  2711. height:20px;
  2712. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2713. font-weight:400;
  2714. font-style:normal;
  2715. font-size:14px;
  2716. color:#FFFFFF;
  2717. }
  2718. #u29966_img {
  2719. border-width:0px;
  2720. position:absolute;
  2721. left:0px;
  2722. top:0px;
  2723. width:9px;
  2724. height:9px;
  2725. }
  2726. #u29966 {
  2727. border-width:0px;
  2728. position:absolute;
  2729. left:6px;
  2730. top:6px;
  2731. width:9px;
  2732. height:9px;
  2733. display:flex;
  2734. }
  2735. #u29966 .text {
  2736. position:absolute;
  2737. align-self:center;
  2738. padding:2px 2px 2px 2px;
  2739. box-sizing:border-box;
  2740. width:100%;
  2741. }
  2742. #u29966_img.selected {
  2743. }
  2744. #u29966.selected {
  2745. }
  2746. #u29966_text {
  2747. border-width:0px;
  2748. word-wrap:break-word;
  2749. text-transform:none;
  2750. visibility:hidden;
  2751. }
  2752. #u29967_div {
  2753. border-width:0px;
  2754. position:absolute;
  2755. left:0px;
  2756. top:0px;
  2757. width:62px;
  2758. height:20px;
  2759. background:inherit;
  2760. background-color:rgba(255, 255, 255, 0);
  2761. border:none;
  2762. border-radius:0px;
  2763. -moz-box-shadow:none;
  2764. -webkit-box-shadow:none;
  2765. box-shadow:none;
  2766. }
  2767. #u29967 {
  2768. border-width:0px;
  2769. position:absolute;
  2770. left:22px;
  2771. top:0px;
  2772. width:62px;
  2773. height:20px;
  2774. display:flex;
  2775. }
  2776. #u29967 .text {
  2777. position:absolute;
  2778. align-self:center;
  2779. padding:2px 2px 2px 3px;
  2780. box-sizing:border-box;
  2781. width:100%;
  2782. }
  2783. #u29967_text {
  2784. border-width:0px;
  2785. white-space:nowrap;
  2786. text-transform:none;
  2787. }
  2788. #u29965_children {
  2789. border-width:0px;
  2790. position:absolute;
  2791. left:0px;
  2792. top:0px;
  2793. width:0px;
  2794. height:0px;
  2795. }
  2796. #u29968 {
  2797. border-width:0px;
  2798. position:absolute;
  2799. left:20px;
  2800. top:20px;
  2801. width:98px;
  2802. height:20px;
  2803. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2804. font-weight:400;
  2805. font-style:normal;
  2806. font-size:14px;
  2807. color:#FFFFFF;
  2808. }
  2809. #u29969_div {
  2810. border-width:0px;
  2811. position:absolute;
  2812. left:0px;
  2813. top:0px;
  2814. width:76px;
  2815. height:20px;
  2816. background:inherit;
  2817. background-color:rgba(255, 255, 255, 0);
  2818. border:none;
  2819. border-radius:0px;
  2820. -moz-box-shadow:none;
  2821. -webkit-box-shadow:none;
  2822. box-shadow:none;
  2823. }
  2824. #u29969 {
  2825. border-width:0px;
  2826. position:absolute;
  2827. left:22px;
  2828. top:0px;
  2829. width:76px;
  2830. height:20px;
  2831. display:flex;
  2832. }
  2833. #u29969 .text {
  2834. position:absolute;
  2835. align-self:center;
  2836. padding:2px 2px 2px 3px;
  2837. box-sizing:border-box;
  2838. width:100%;
  2839. }
  2840. #u29969_text {
  2841. border-width:0px;
  2842. white-space:nowrap;
  2843. text-transform:none;
  2844. }
  2845. #u29970 {
  2846. border-width:0px;
  2847. position:absolute;
  2848. left:20px;
  2849. top:40px;
  2850. width:98px;
  2851. height:20px;
  2852. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2853. font-weight:400;
  2854. font-style:normal;
  2855. font-size:14px;
  2856. color:#FFFFFF;
  2857. }
  2858. #u29971_div {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:76px;
  2864. height:20px;
  2865. background:inherit;
  2866. background-color:rgba(255, 255, 255, 0);
  2867. border:none;
  2868. border-radius:0px;
  2869. -moz-box-shadow:none;
  2870. -webkit-box-shadow:none;
  2871. box-shadow:none;
  2872. }
  2873. #u29971 {
  2874. border-width:0px;
  2875. position:absolute;
  2876. left:22px;
  2877. top:0px;
  2878. width:76px;
  2879. height:20px;
  2880. display:flex;
  2881. }
  2882. #u29971 .text {
  2883. position:absolute;
  2884. align-self:center;
  2885. padding:2px 2px 2px 3px;
  2886. box-sizing:border-box;
  2887. width:100%;
  2888. }
  2889. #u29971_text {
  2890. border-width:0px;
  2891. white-space:nowrap;
  2892. text-transform:none;
  2893. }
  2894. #u29972 {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:140px;
  2899. width:84px;
  2900. height:20px;
  2901. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2902. font-weight:400;
  2903. font-style:normal;
  2904. font-size:14px;
  2905. color:#FFFFFF;
  2906. }
  2907. #u29973_img {
  2908. border-width:0px;
  2909. position:absolute;
  2910. left:0px;
  2911. top:0px;
  2912. width:9px;
  2913. height:9px;
  2914. }
  2915. #u29973 {
  2916. border-width:0px;
  2917. position:absolute;
  2918. left:6px;
  2919. top:6px;
  2920. width:9px;
  2921. height:9px;
  2922. display:flex;
  2923. }
  2924. #u29973 .text {
  2925. position:absolute;
  2926. align-self:center;
  2927. padding:2px 2px 2px 2px;
  2928. box-sizing:border-box;
  2929. width:100%;
  2930. }
  2931. #u29973_img.selected {
  2932. }
  2933. #u29973.selected {
  2934. }
  2935. #u29973_text {
  2936. border-width:0px;
  2937. word-wrap:break-word;
  2938. text-transform:none;
  2939. visibility:hidden;
  2940. }
  2941. #u29974_div {
  2942. border-width:0px;
  2943. position:absolute;
  2944. left:0px;
  2945. top:0px;
  2946. width:62px;
  2947. height:20px;
  2948. background:inherit;
  2949. background-color:rgba(255, 255, 255, 0);
  2950. border:none;
  2951. border-radius:0px;
  2952. -moz-box-shadow:none;
  2953. -webkit-box-shadow:none;
  2954. box-shadow:none;
  2955. }
  2956. #u29974 {
  2957. border-width:0px;
  2958. position:absolute;
  2959. left:22px;
  2960. top:0px;
  2961. width:62px;
  2962. height:20px;
  2963. display:flex;
  2964. }
  2965. #u29974 .text {
  2966. position:absolute;
  2967. align-self:center;
  2968. padding:2px 2px 2px 3px;
  2969. box-sizing:border-box;
  2970. width:100%;
  2971. }
  2972. #u29974_text {
  2973. border-width:0px;
  2974. white-space:nowrap;
  2975. text-transform:none;
  2976. }
  2977. #u29972_children {
  2978. border-width:0px;
  2979. position:absolute;
  2980. left:0px;
  2981. top:0px;
  2982. width:0px;
  2983. height:0px;
  2984. visibility:hidden;
  2985. }
  2986. #u29975 {
  2987. border-width:0px;
  2988. position:absolute;
  2989. left:20px;
  2990. top:20px;
  2991. width:84px;
  2992. height:20px;
  2993. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2994. font-weight:400;
  2995. font-style:normal;
  2996. font-size:14px;
  2997. color:#FFFFFF;
  2998. }
  2999. #u29976_div {
  3000. border-width:0px;
  3001. position:absolute;
  3002. left:0px;
  3003. top:0px;
  3004. width:62px;
  3005. height:20px;
  3006. background:inherit;
  3007. background-color:rgba(255, 255, 255, 0);
  3008. border:none;
  3009. border-radius:0px;
  3010. -moz-box-shadow:none;
  3011. -webkit-box-shadow:none;
  3012. box-shadow:none;
  3013. }
  3014. #u29976 {
  3015. border-width:0px;
  3016. position:absolute;
  3017. left:22px;
  3018. top:0px;
  3019. width:62px;
  3020. height:20px;
  3021. display:flex;
  3022. }
  3023. #u29976 .text {
  3024. position:absolute;
  3025. align-self:center;
  3026. padding:2px 2px 2px 3px;
  3027. box-sizing:border-box;
  3028. width:100%;
  3029. }
  3030. #u29976_text {
  3031. border-width:0px;
  3032. white-space:nowrap;
  3033. text-transform:none;
  3034. }
  3035. #u29977 {
  3036. border-width:0px;
  3037. position:absolute;
  3038. left:20px;
  3039. top:40px;
  3040. width:84px;
  3041. height:20px;
  3042. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3043. font-weight:400;
  3044. font-style:normal;
  3045. font-size:14px;
  3046. color:#FFFFFF;
  3047. }
  3048. #u29978_div {
  3049. border-width:0px;
  3050. position:absolute;
  3051. left:0px;
  3052. top:0px;
  3053. width:62px;
  3054. height:20px;
  3055. background:inherit;
  3056. background-color:rgba(255, 255, 255, 0);
  3057. border:none;
  3058. border-radius:0px;
  3059. -moz-box-shadow:none;
  3060. -webkit-box-shadow:none;
  3061. box-shadow:none;
  3062. }
  3063. #u29978 {
  3064. border-width:0px;
  3065. position:absolute;
  3066. left:22px;
  3067. top:0px;
  3068. width:62px;
  3069. height:20px;
  3070. display:flex;
  3071. }
  3072. #u29978 .text {
  3073. position:absolute;
  3074. align-self:center;
  3075. padding:2px 2px 2px 3px;
  3076. box-sizing:border-box;
  3077. width:100%;
  3078. }
  3079. #u29978_text {
  3080. border-width:0px;
  3081. white-space:nowrap;
  3082. text-transform:none;
  3083. }
  3084. #u29979 {
  3085. border-width:0px;
  3086. position:absolute;
  3087. left:20px;
  3088. top:60px;
  3089. width:84px;
  3090. height:20px;
  3091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3092. font-weight:400;
  3093. font-style:normal;
  3094. font-size:14px;
  3095. color:#FFFFFF;
  3096. }
  3097. #u29980_div {
  3098. border-width:0px;
  3099. position:absolute;
  3100. left:0px;
  3101. top:0px;
  3102. width:62px;
  3103. height:20px;
  3104. background:inherit;
  3105. background-color:rgba(255, 255, 255, 0);
  3106. border:none;
  3107. border-radius:0px;
  3108. -moz-box-shadow:none;
  3109. -webkit-box-shadow:none;
  3110. box-shadow:none;
  3111. }
  3112. #u29980 {
  3113. border-width:0px;
  3114. position:absolute;
  3115. left:22px;
  3116. top:0px;
  3117. width:62px;
  3118. height:20px;
  3119. display:flex;
  3120. }
  3121. #u29980 .text {
  3122. position:absolute;
  3123. align-self:center;
  3124. padding:2px 2px 2px 3px;
  3125. box-sizing:border-box;
  3126. width:100%;
  3127. }
  3128. #u29980_text {
  3129. border-width:0px;
  3130. white-space:nowrap;
  3131. text-transform:none;
  3132. }
  3133. #u29981 {
  3134. border-width:0px;
  3135. position:absolute;
  3136. left:20px;
  3137. top:80px;
  3138. width:84px;
  3139. height:20px;
  3140. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3141. font-weight:400;
  3142. font-style:normal;
  3143. font-size:14px;
  3144. color:#FFFFFF;
  3145. }
  3146. #u29982_div {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:62px;
  3152. height:20px;
  3153. background:inherit;
  3154. background-color:rgba(255, 255, 255, 0);
  3155. border:none;
  3156. border-radius:0px;
  3157. -moz-box-shadow:none;
  3158. -webkit-box-shadow:none;
  3159. box-shadow:none;
  3160. }
  3161. #u29982 {
  3162. border-width:0px;
  3163. position:absolute;
  3164. left:22px;
  3165. top:0px;
  3166. width:62px;
  3167. height:20px;
  3168. display:flex;
  3169. }
  3170. #u29982 .text {
  3171. position:absolute;
  3172. align-self:center;
  3173. padding:2px 2px 2px 3px;
  3174. box-sizing:border-box;
  3175. width:100%;
  3176. }
  3177. #u29982_text {
  3178. border-width:0px;
  3179. white-space:nowrap;
  3180. text-transform:none;
  3181. }
  3182. #u29983 {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:160px;
  3187. width:98px;
  3188. height:20px;
  3189. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3190. font-weight:400;
  3191. font-style:normal;
  3192. font-size:14px;
  3193. color:#FFFFFF;
  3194. }
  3195. #u29984_img {
  3196. border-width:0px;
  3197. position:absolute;
  3198. left:0px;
  3199. top:0px;
  3200. width:9px;
  3201. height:9px;
  3202. }
  3203. #u29984 {
  3204. border-width:0px;
  3205. position:absolute;
  3206. left:6px;
  3207. top:6px;
  3208. width:9px;
  3209. height:9px;
  3210. display:flex;
  3211. }
  3212. #u29984 .text {
  3213. position:absolute;
  3214. align-self:center;
  3215. padding:2px 2px 2px 2px;
  3216. box-sizing:border-box;
  3217. width:100%;
  3218. }
  3219. #u29984_img.selected {
  3220. }
  3221. #u29984.selected {
  3222. }
  3223. #u29984_text {
  3224. border-width:0px;
  3225. word-wrap:break-word;
  3226. text-transform:none;
  3227. visibility:hidden;
  3228. }
  3229. #u29985_div {
  3230. border-width:0px;
  3231. position:absolute;
  3232. left:0px;
  3233. top:0px;
  3234. width:76px;
  3235. height:20px;
  3236. background:inherit;
  3237. background-color:rgba(255, 255, 255, 0);
  3238. border:none;
  3239. border-radius:0px;
  3240. -moz-box-shadow:none;
  3241. -webkit-box-shadow:none;
  3242. box-shadow:none;
  3243. }
  3244. #u29985 {
  3245. border-width:0px;
  3246. position:absolute;
  3247. left:22px;
  3248. top:0px;
  3249. width:76px;
  3250. height:20px;
  3251. display:flex;
  3252. }
  3253. #u29985 .text {
  3254. position:absolute;
  3255. align-self:center;
  3256. padding:2px 2px 2px 3px;
  3257. box-sizing:border-box;
  3258. width:100%;
  3259. }
  3260. #u29985_text {
  3261. border-width:0px;
  3262. white-space:nowrap;
  3263. text-transform:none;
  3264. }
  3265. #u29983_children {
  3266. border-width:0px;
  3267. position:absolute;
  3268. left:0px;
  3269. top:0px;
  3270. width:0px;
  3271. height:0px;
  3272. visibility:hidden;
  3273. }
  3274. #u29986 {
  3275. border-width:0px;
  3276. position:absolute;
  3277. left:20px;
  3278. top:20px;
  3279. width:98px;
  3280. height:20px;
  3281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3282. font-weight:400;
  3283. font-style:normal;
  3284. font-size:14px;
  3285. color:#FFFFFF;
  3286. }
  3287. #u29987_div {
  3288. border-width:0px;
  3289. position:absolute;
  3290. left:0px;
  3291. top:0px;
  3292. width:76px;
  3293. height:20px;
  3294. background:inherit;
  3295. background-color:rgba(255, 255, 255, 0);
  3296. border:none;
  3297. border-radius:0px;
  3298. -moz-box-shadow:none;
  3299. -webkit-box-shadow:none;
  3300. box-shadow:none;
  3301. }
  3302. #u29987 {
  3303. border-width:0px;
  3304. position:absolute;
  3305. left:22px;
  3306. top:0px;
  3307. width:76px;
  3308. height:20px;
  3309. display:flex;
  3310. }
  3311. #u29987 .text {
  3312. position:absolute;
  3313. align-self:center;
  3314. padding:2px 2px 2px 3px;
  3315. box-sizing:border-box;
  3316. width:100%;
  3317. }
  3318. #u29987_text {
  3319. border-width:0px;
  3320. white-space:nowrap;
  3321. text-transform:none;
  3322. }
  3323. #u29988 {
  3324. border-width:0px;
  3325. position:absolute;
  3326. left:20px;
  3327. top:40px;
  3328. width:98px;
  3329. height:20px;
  3330. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3331. font-weight:400;
  3332. font-style:normal;
  3333. font-size:14px;
  3334. color:#FFFFFF;
  3335. }
  3336. #u29989_div {
  3337. border-width:0px;
  3338. position:absolute;
  3339. left:0px;
  3340. top:0px;
  3341. width:76px;
  3342. height:20px;
  3343. background:inherit;
  3344. background-color:rgba(255, 255, 255, 0);
  3345. border:none;
  3346. border-radius:0px;
  3347. -moz-box-shadow:none;
  3348. -webkit-box-shadow:none;
  3349. box-shadow:none;
  3350. }
  3351. #u29989 {
  3352. border-width:0px;
  3353. position:absolute;
  3354. left:22px;
  3355. top:0px;
  3356. width:76px;
  3357. height:20px;
  3358. display:flex;
  3359. }
  3360. #u29989 .text {
  3361. position:absolute;
  3362. align-self:center;
  3363. padding:2px 2px 2px 3px;
  3364. box-sizing:border-box;
  3365. width:100%;
  3366. }
  3367. #u29989_text {
  3368. border-width:0px;
  3369. white-space:nowrap;
  3370. text-transform:none;
  3371. }
  3372. #u29990 {
  3373. border-width:0px;
  3374. position:absolute;
  3375. left:0px;
  3376. top:180px;
  3377. width:84px;
  3378. height:20px;
  3379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3380. font-weight:400;
  3381. font-style:normal;
  3382. font-size:14px;
  3383. color:#FFFFFF;
  3384. }
  3385. #u29991_img {
  3386. border-width:0px;
  3387. position:absolute;
  3388. left:0px;
  3389. top:0px;
  3390. width:9px;
  3391. height:9px;
  3392. }
  3393. #u29991 {
  3394. border-width:0px;
  3395. position:absolute;
  3396. left:6px;
  3397. top:6px;
  3398. width:9px;
  3399. height:9px;
  3400. display:flex;
  3401. }
  3402. #u29991 .text {
  3403. position:absolute;
  3404. align-self:center;
  3405. padding:2px 2px 2px 2px;
  3406. box-sizing:border-box;
  3407. width:100%;
  3408. }
  3409. #u29991_img.selected {
  3410. }
  3411. #u29991.selected {
  3412. }
  3413. #u29991_text {
  3414. border-width:0px;
  3415. word-wrap:break-word;
  3416. text-transform:none;
  3417. visibility:hidden;
  3418. }
  3419. #u29992_div {
  3420. border-width:0px;
  3421. position:absolute;
  3422. left:0px;
  3423. top:0px;
  3424. width:62px;
  3425. height:20px;
  3426. background:inherit;
  3427. background-color:rgba(255, 255, 255, 0);
  3428. border:none;
  3429. border-radius:0px;
  3430. -moz-box-shadow:none;
  3431. -webkit-box-shadow:none;
  3432. box-shadow:none;
  3433. }
  3434. #u29992 {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:22px;
  3438. top:0px;
  3439. width:62px;
  3440. height:20px;
  3441. display:flex;
  3442. }
  3443. #u29992 .text {
  3444. position:absolute;
  3445. align-self:center;
  3446. padding:2px 2px 2px 3px;
  3447. box-sizing:border-box;
  3448. width:100%;
  3449. }
  3450. #u29992_text {
  3451. border-width:0px;
  3452. white-space:nowrap;
  3453. text-transform:none;
  3454. }
  3455. #u29990_children {
  3456. border-width:0px;
  3457. position:absolute;
  3458. left:0px;
  3459. top:0px;
  3460. width:0px;
  3461. height:0px;
  3462. visibility:hidden;
  3463. }
  3464. #u29993 {
  3465. border-width:0px;
  3466. position:absolute;
  3467. left:20px;
  3468. top:20px;
  3469. width:98px;
  3470. height:20px;
  3471. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3472. font-weight:400;
  3473. font-style:normal;
  3474. font-size:14px;
  3475. color:#FFFFFF;
  3476. }
  3477. #u29994_div {
  3478. border-width:0px;
  3479. position:absolute;
  3480. left:0px;
  3481. top:0px;
  3482. width:76px;
  3483. height:20px;
  3484. background:inherit;
  3485. background-color:rgba(255, 255, 255, 0);
  3486. border:none;
  3487. border-radius:0px;
  3488. -moz-box-shadow:none;
  3489. -webkit-box-shadow:none;
  3490. box-shadow:none;
  3491. }
  3492. #u29994 {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:22px;
  3496. top:0px;
  3497. width:76px;
  3498. height:20px;
  3499. display:flex;
  3500. }
  3501. #u29994 .text {
  3502. position:absolute;
  3503. align-self:center;
  3504. padding:2px 2px 2px 3px;
  3505. box-sizing:border-box;
  3506. width:100%;
  3507. }
  3508. #u29994_text {
  3509. border-width:0px;
  3510. white-space:nowrap;
  3511. text-transform:none;
  3512. }
  3513. #u29995 {
  3514. border-width:0px;
  3515. position:absolute;
  3516. left:20px;
  3517. top:40px;
  3518. width:84px;
  3519. height:20px;
  3520. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3521. font-weight:400;
  3522. font-style:normal;
  3523. font-size:14px;
  3524. color:#FFFFFF;
  3525. }
  3526. #u29996_div {
  3527. border-width:0px;
  3528. position:absolute;
  3529. left:0px;
  3530. top:0px;
  3531. width:62px;
  3532. height:20px;
  3533. background:inherit;
  3534. background-color:rgba(255, 255, 255, 0);
  3535. border:none;
  3536. border-radius:0px;
  3537. -moz-box-shadow:none;
  3538. -webkit-box-shadow:none;
  3539. box-shadow:none;
  3540. }
  3541. #u29996 {
  3542. border-width:0px;
  3543. position:absolute;
  3544. left:22px;
  3545. top:0px;
  3546. width:62px;
  3547. height:20px;
  3548. display:flex;
  3549. }
  3550. #u29996 .text {
  3551. position:absolute;
  3552. align-self:center;
  3553. padding:2px 2px 2px 3px;
  3554. box-sizing:border-box;
  3555. width:100%;
  3556. }
  3557. #u29996_text {
  3558. border-width:0px;
  3559. white-space:nowrap;
  3560. text-transform:none;
  3561. }
  3562. #u29997 {
  3563. border-width:0px;
  3564. position:absolute;
  3565. left:0px;
  3566. top:200px;
  3567. width:84px;
  3568. height:20px;
  3569. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3570. font-weight:400;
  3571. font-style:normal;
  3572. font-size:14px;
  3573. color:#FFFFFF;
  3574. }
  3575. #u29998_img {
  3576. border-width:0px;
  3577. position:absolute;
  3578. left:0px;
  3579. top:0px;
  3580. width:9px;
  3581. height:9px;
  3582. }
  3583. #u29998 {
  3584. border-width:0px;
  3585. position:absolute;
  3586. left:6px;
  3587. top:6px;
  3588. width:9px;
  3589. height:9px;
  3590. display:flex;
  3591. }
  3592. #u29998 .text {
  3593. position:absolute;
  3594. align-self:center;
  3595. padding:2px 2px 2px 2px;
  3596. box-sizing:border-box;
  3597. width:100%;
  3598. }
  3599. #u29998_img.selected {
  3600. }
  3601. #u29998.selected {
  3602. }
  3603. #u29998_text {
  3604. border-width:0px;
  3605. word-wrap:break-word;
  3606. text-transform:none;
  3607. visibility:hidden;
  3608. }
  3609. #u29999_div {
  3610. border-width:0px;
  3611. position:absolute;
  3612. left:0px;
  3613. top:0px;
  3614. width:62px;
  3615. height:20px;
  3616. background:inherit;
  3617. background-color:rgba(255, 255, 255, 0);
  3618. border:none;
  3619. border-radius:0px;
  3620. -moz-box-shadow:none;
  3621. -webkit-box-shadow:none;
  3622. box-shadow:none;
  3623. }
  3624. #u29999 {
  3625. border-width:0px;
  3626. position:absolute;
  3627. left:22px;
  3628. top:0px;
  3629. width:62px;
  3630. height:20px;
  3631. display:flex;
  3632. }
  3633. #u29999 .text {
  3634. position:absolute;
  3635. align-self:center;
  3636. padding:2px 2px 2px 3px;
  3637. box-sizing:border-box;
  3638. width:100%;
  3639. }
  3640. #u29999_text {
  3641. border-width:0px;
  3642. white-space:nowrap;
  3643. text-transform:none;
  3644. }
  3645. #u29997_children {
  3646. border-width:0px;
  3647. position:absolute;
  3648. left:0px;
  3649. top:0px;
  3650. width:0px;
  3651. height:0px;
  3652. visibility:hidden;
  3653. }
  3654. #u30000 {
  3655. border-width:0px;
  3656. position:absolute;
  3657. left:20px;
  3658. top:20px;
  3659. width:84px;
  3660. height:20px;
  3661. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3662. font-weight:400;
  3663. font-style:normal;
  3664. font-size:14px;
  3665. color:#FFFFFF;
  3666. }
  3667. #u30001_div {
  3668. border-width:0px;
  3669. position:absolute;
  3670. left:0px;
  3671. top:0px;
  3672. width:62px;
  3673. height:20px;
  3674. background:inherit;
  3675. background-color:rgba(255, 255, 255, 0);
  3676. border:none;
  3677. border-radius:0px;
  3678. -moz-box-shadow:none;
  3679. -webkit-box-shadow:none;
  3680. box-shadow:none;
  3681. }
  3682. #u30001 {
  3683. border-width:0px;
  3684. position:absolute;
  3685. left:22px;
  3686. top:0px;
  3687. width:62px;
  3688. height:20px;
  3689. display:flex;
  3690. }
  3691. #u30001 .text {
  3692. position:absolute;
  3693. align-self:center;
  3694. padding:2px 2px 2px 3px;
  3695. box-sizing:border-box;
  3696. width:100%;
  3697. }
  3698. #u30001_text {
  3699. border-width:0px;
  3700. white-space:nowrap;
  3701. text-transform:none;
  3702. }
  3703. #u30002 {
  3704. border-width:0px;
  3705. position:absolute;
  3706. left:20px;
  3707. top:40px;
  3708. width:84px;
  3709. height:20px;
  3710. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:14px;
  3714. color:#FFFFFF;
  3715. }
  3716. #u30003_div {
  3717. border-width:0px;
  3718. position:absolute;
  3719. left:0px;
  3720. top:0px;
  3721. width:62px;
  3722. height:20px;
  3723. background:inherit;
  3724. background-color:rgba(255, 255, 255, 0);
  3725. border:none;
  3726. border-radius:0px;
  3727. -moz-box-shadow:none;
  3728. -webkit-box-shadow:none;
  3729. box-shadow:none;
  3730. }
  3731. #u30003 {
  3732. border-width:0px;
  3733. position:absolute;
  3734. left:22px;
  3735. top:0px;
  3736. width:62px;
  3737. height:20px;
  3738. display:flex;
  3739. }
  3740. #u30003 .text {
  3741. position:absolute;
  3742. align-self:center;
  3743. padding:2px 2px 2px 3px;
  3744. box-sizing:border-box;
  3745. width:100%;
  3746. }
  3747. #u30003_text {
  3748. border-width:0px;
  3749. white-space:nowrap;
  3750. text-transform:none;
  3751. }
  3752. #u30004 {
  3753. border-width:0px;
  3754. position:absolute;
  3755. left:20px;
  3756. top:60px;
  3757. width:84px;
  3758. height:20px;
  3759. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3760. font-weight:400;
  3761. font-style:normal;
  3762. font-size:14px;
  3763. color:#FFFFFF;
  3764. }
  3765. #u30005_div {
  3766. border-width:0px;
  3767. position:absolute;
  3768. left:0px;
  3769. top:0px;
  3770. width:62px;
  3771. height:20px;
  3772. background:inherit;
  3773. background-color:rgba(255, 255, 255, 0);
  3774. border:none;
  3775. border-radius:0px;
  3776. -moz-box-shadow:none;
  3777. -webkit-box-shadow:none;
  3778. box-shadow:none;
  3779. }
  3780. #u30005 {
  3781. border-width:0px;
  3782. position:absolute;
  3783. left:22px;
  3784. top:0px;
  3785. width:62px;
  3786. height:20px;
  3787. display:flex;
  3788. }
  3789. #u30005 .text {
  3790. position:absolute;
  3791. align-self:center;
  3792. padding:2px 2px 2px 3px;
  3793. box-sizing:border-box;
  3794. width:100%;
  3795. }
  3796. #u30005_text {
  3797. border-width:0px;
  3798. white-space:nowrap;
  3799. text-transform:none;
  3800. }
  3801. #u30006 {
  3802. border-width:0px;
  3803. position:absolute;
  3804. left:0px;
  3805. top:0px;
  3806. width:0px;
  3807. height:0px;
  3808. }
  3809. #u30007_input {
  3810. position:absolute;
  3811. left:0px;
  3812. top:0px;
  3813. width:141px;
  3814. height:22px;
  3815. padding:2px 2px 2px 2px;
  3816. font-family:'ArialMT', 'Arial', sans-serif;
  3817. font-weight:400;
  3818. font-style:normal;
  3819. font-size:14px;
  3820. letter-spacing:normal;
  3821. color:#FFFFFF;
  3822. vertical-align:none;
  3823. text-align:left;
  3824. text-transform:none;
  3825. background-color:transparent;
  3826. border-color:transparent;
  3827. }
  3828. #u30007_input.disabled {
  3829. position:absolute;
  3830. left:0px;
  3831. top:0px;
  3832. width:141px;
  3833. height:22px;
  3834. padding:2px 2px 2px 2px;
  3835. font-family:'ArialMT', 'Arial', sans-serif;
  3836. font-weight:400;
  3837. font-style:normal;
  3838. font-size:14px;
  3839. letter-spacing:normal;
  3840. color:#FFFFFF;
  3841. vertical-align:none;
  3842. text-align:left;
  3843. text-transform:none;
  3844. background-color:transparent;
  3845. border-color:transparent;
  3846. }
  3847. #u30007_div {
  3848. border-width:0px;
  3849. position:absolute;
  3850. left:0px;
  3851. top:0px;
  3852. width:141px;
  3853. height:22px;
  3854. background:inherit;
  3855. background-color:rgba(255, 255, 255, 0);
  3856. border:none;
  3857. border-radius:0px;
  3858. -moz-box-shadow:none;
  3859. -webkit-box-shadow:none;
  3860. box-shadow:none;
  3861. font-size:14px;
  3862. color:#FFFFFF;
  3863. }
  3864. #u30007 {
  3865. border-width:0px;
  3866. position:absolute;
  3867. left:243px;
  3868. top:14px;
  3869. width:141px;
  3870. height:22px;
  3871. display:flex;
  3872. font-size:14px;
  3873. color:#FFFFFF;
  3874. }
  3875. #u30007 .text {
  3876. position:absolute;
  3877. align-self:flex-start;
  3878. padding:2px 2px 2px 2px;
  3879. box-sizing:border-box;
  3880. width:100%;
  3881. }
  3882. #u30007_div.disabled {
  3883. border-width:0px;
  3884. position:absolute;
  3885. left:0px;
  3886. top:0px;
  3887. width:141px;
  3888. height:22px;
  3889. background:inherit;
  3890. background-color:rgba(240, 240, 240, 1);
  3891. border:none;
  3892. border-radius:0px;
  3893. -moz-box-shadow:none;
  3894. -webkit-box-shadow:none;
  3895. box-shadow:none;
  3896. font-size:14px;
  3897. color:#FFFFFF;
  3898. }
  3899. #u30007.disabled {
  3900. }
  3901. .u30007_input_option {
  3902. font-size:14px;
  3903. }
  3904. #u30008_img {
  3905. border-width:0px;
  3906. position:absolute;
  3907. left:0px;
  3908. top:0px;
  3909. width:22px;
  3910. height:22px;
  3911. }
  3912. #u30008 {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:216px;
  3916. top:15px;
  3917. width:22px;
  3918. height:22px;
  3919. display:flex;
  3920. }
  3921. #u30008 .text {
  3922. position:absolute;
  3923. align-self:center;
  3924. padding:2px 2px 2px 2px;
  3925. box-sizing:border-box;
  3926. width:100%;
  3927. }
  3928. #u30008_text {
  3929. border-width:0px;
  3930. word-wrap:break-word;
  3931. text-transform:none;
  3932. visibility:hidden;
  3933. }
  3934. #u30009_div {
  3935. border-width:0px;
  3936. position:absolute;
  3937. left:0px;
  3938. top:0px;
  3939. width:136px;
  3940. height:16px;
  3941. background:inherit;
  3942. background-color:rgba(255, 255, 255, 0);
  3943. border:none;
  3944. border-radius:0px;
  3945. -moz-box-shadow:none;
  3946. -webkit-box-shadow:none;
  3947. box-shadow:none;
  3948. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3949. font-weight:200;
  3950. font-style:normal;
  3951. font-size:11px;
  3952. color:#555555;
  3953. }
  3954. #u30009 {
  3955. border-width:0px;
  3956. position:absolute;
  3957. left:208px;
  3958. top:53px;
  3959. width:136px;
  3960. height:16px;
  3961. display:flex;
  3962. font-family:'PingFangSC-Thin', 'PingFang SC Thin', 'PingFang SC', sans-serif;
  3963. font-weight:200;
  3964. font-style:normal;
  3965. font-size:11px;
  3966. color:#555555;
  3967. }
  3968. #u30009 .text {
  3969. position:absolute;
  3970. align-self:flex-start;
  3971. padding:0px 0px 0px 0px;
  3972. box-sizing:border-box;
  3973. width:100%;
  3974. }
  3975. #u30009_text {
  3976. border-width:0px;
  3977. white-space:nowrap;
  3978. text-transform:none;
  3979. }
  3980. #u30010_div {
  3981. border-width:0px;
  3982. position:absolute;
  3983. left:0px;
  3984. top:0px;
  3985. width:140px;
  3986. height:24px;
  3987. background:inherit;
  3988. background-color:rgba(242, 242, 242, 0.2);
  3989. border:none;
  3990. border-radius:25px;
  3991. -moz-box-shadow:none;
  3992. -webkit-box-shadow:none;
  3993. box-shadow:none;
  3994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3995. font-weight:400;
  3996. font-style:normal;
  3997. color:#FFFFFF;
  3998. text-align:center;
  3999. }
  4000. #u30010 {
  4001. border-width:0px;
  4002. position:absolute;
  4003. left:417px;
  4004. top:13px;
  4005. width:140px;
  4006. height:24px;
  4007. display:flex;
  4008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. color:#FFFFFF;
  4012. text-align:center;
  4013. }
  4014. #u30010 .text {
  4015. position:absolute;
  4016. align-self:center;
  4017. padding:0px 0px 0px 0px;
  4018. box-sizing:border-box;
  4019. width:100%;
  4020. }
  4021. #u30010_text {
  4022. border-width:0px;
  4023. word-wrap:break-word;
  4024. text-transform:none;
  4025. }
  4026. #u30011_div {
  4027. border-width:0px;
  4028. position:absolute;
  4029. left:0px;
  4030. top:0px;
  4031. width:85px;
  4032. height:20px;
  4033. background:inherit;
  4034. background-color:rgba(30, 42, 68, 1);
  4035. border:none;
  4036. border-radius:0px;
  4037. -moz-box-shadow:none;
  4038. -webkit-box-shadow:none;
  4039. box-shadow:none;
  4040. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4041. font-weight:400;
  4042. font-style:normal;
  4043. color:#FFFFFF;
  4044. }
  4045. #u30011 {
  4046. border-width:0px;
  4047. position:absolute;
  4048. left:1374px;
  4049. top:15px;
  4050. width:85px;
  4051. height:20px;
  4052. display:flex;
  4053. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4054. font-weight:400;
  4055. font-style:normal;
  4056. color:#FFFFFF;
  4057. }
  4058. #u30011 .text {
  4059. position:absolute;
  4060. align-self:flex-start;
  4061. padding:0px 0px 0px 0px;
  4062. box-sizing:border-box;
  4063. width:100%;
  4064. }
  4065. #u30011_text {
  4066. border-width:0px;
  4067. white-space:nowrap;
  4068. text-transform:none;
  4069. }
  4070. #u30012_div {
  4071. border-width:0px;
  4072. position:absolute;
  4073. left:0px;
  4074. top:0px;
  4075. width:1381px;
  4076. height:1168px;
  4077. background:inherit;
  4078. background-color:rgba(255, 255, 255, 1);
  4079. border:none;
  4080. border-radius:0px;
  4081. -moz-box-shadow:none;
  4082. -webkit-box-shadow:none;
  4083. box-shadow:none;
  4084. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4085. font-weight:400;
  4086. font-style:normal;
  4087. font-size:12px;
  4088. color:#FFFFFF;
  4089. text-align:left;
  4090. }
  4091. #u30012 {
  4092. border-width:0px;
  4093. position:absolute;
  4094. left:208px;
  4095. top:74px;
  4096. width:1381px;
  4097. height:1168px;
  4098. display:flex;
  4099. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4100. font-weight:400;
  4101. font-style:normal;
  4102. font-size:12px;
  4103. color:#FFFFFF;
  4104. text-align:left;
  4105. }
  4106. #u30012 .text {
  4107. position:absolute;
  4108. align-self:center;
  4109. padding:2px 2px 2px 50px;
  4110. box-sizing:border-box;
  4111. width:100%;
  4112. }
  4113. #u30012_text {
  4114. border-width:0px;
  4115. word-wrap:break-word;
  4116. text-transform:none;
  4117. visibility:hidden;
  4118. }
  4119. #u30013_div {
  4120. border-width:0px;
  4121. position:absolute;
  4122. left:0px;
  4123. top:0px;
  4124. width:54px;
  4125. height:50px;
  4126. background:inherit;
  4127. background-color:rgba(255, 255, 255, 0);
  4128. border:none;
  4129. border-left:0px;
  4130. border-top:0px;
  4131. border-right:0px;
  4132. border-radius:0px;
  4133. border-bottom-right-radius:0px;
  4134. border-bottom-left-radius:0px;
  4135. -moz-box-shadow:none;
  4136. -webkit-box-shadow:none;
  4137. box-shadow:none;
  4138. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4139. font-weight:400;
  4140. font-style:normal;
  4141. font-size:18px;
  4142. color:#0089FE;
  4143. }
  4144. #u30013 {
  4145. border-width:0px;
  4146. position:absolute;
  4147. left:227px;
  4148. top:74px;
  4149. width:54px;
  4150. height:50px;
  4151. display:flex;
  4152. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4153. font-weight:400;
  4154. font-style:normal;
  4155. font-size:18px;
  4156. color:#0089FE;
  4157. }
  4158. #u30013 .text {
  4159. position:absolute;
  4160. align-self:center;
  4161. padding:0px 0px 0px 0px;
  4162. box-sizing:border-box;
  4163. width:100%;
  4164. }
  4165. #u30013_text {
  4166. border-width:0px;
  4167. white-space:nowrap;
  4168. text-transform:none;
  4169. }
  4170. #u30014 {
  4171. border-width:0px;
  4172. position:absolute;
  4173. left:228px;
  4174. top:263px;
  4175. width:1339px;
  4176. height:152px;
  4177. }
  4178. #u30015_img {
  4179. border-width:0px;
  4180. position:absolute;
  4181. left:0px;
  4182. top:0px;
  4183. width:1070px;
  4184. height:38px;
  4185. }
  4186. #u30015 {
  4187. border-width:0px;
  4188. position:absolute;
  4189. left:0px;
  4190. top:0px;
  4191. width:1070px;
  4192. height:38px;
  4193. display:flex;
  4194. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4195. font-weight:400;
  4196. font-style:normal;
  4197. font-size:12px;
  4198. color:#FFFFFF;
  4199. text-align:left;
  4200. }
  4201. #u30015 .text {
  4202. position:absolute;
  4203. align-self:center;
  4204. padding:2px 2px 2px 30px;
  4205. box-sizing:border-box;
  4206. width:100%;
  4207. }
  4208. #u30015_text {
  4209. border-width:0px;
  4210. word-wrap:break-word;
  4211. text-transform:none;
  4212. }
  4213. #u30016_img {
  4214. border-width:0px;
  4215. position:absolute;
  4216. left:0px;
  4217. top:0px;
  4218. width:269px;
  4219. height:38px;
  4220. }
  4221. #u30016 {
  4222. border-width:0px;
  4223. position:absolute;
  4224. left:1070px;
  4225. top:0px;
  4226. width:269px;
  4227. height:38px;
  4228. display:flex;
  4229. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4230. font-weight:400;
  4231. font-style:normal;
  4232. font-size:12px;
  4233. color:#FFFFFF;
  4234. text-align:left;
  4235. }
  4236. #u30016 .text {
  4237. position:absolute;
  4238. align-self:center;
  4239. padding:2px 2px 2px 30px;
  4240. box-sizing:border-box;
  4241. width:100%;
  4242. }
  4243. #u30016_text {
  4244. border-width:0px;
  4245. word-wrap:break-word;
  4246. text-transform:none;
  4247. }
  4248. #u30017_img {
  4249. border-width:0px;
  4250. position:absolute;
  4251. left:0px;
  4252. top:0px;
  4253. width:1070px;
  4254. height:38px;
  4255. }
  4256. #u30017 {
  4257. border-width:0px;
  4258. position:absolute;
  4259. left:0px;
  4260. top:38px;
  4261. width:1070px;
  4262. height:38px;
  4263. display:flex;
  4264. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4265. font-weight:400;
  4266. font-style:normal;
  4267. font-size:12px;
  4268. color:#333333;
  4269. text-align:left;
  4270. }
  4271. #u30017 .text {
  4272. position:absolute;
  4273. align-self:center;
  4274. padding:2px 2px 2px 30px;
  4275. box-sizing:border-box;
  4276. width:100%;
  4277. }
  4278. #u30017_text {
  4279. border-width:0px;
  4280. word-wrap:break-word;
  4281. text-transform:none;
  4282. }
  4283. #u30018_img {
  4284. border-width:0px;
  4285. position:absolute;
  4286. left:0px;
  4287. top:0px;
  4288. width:269px;
  4289. height:38px;
  4290. }
  4291. #u30018 {
  4292. border-width:0px;
  4293. position:absolute;
  4294. left:1070px;
  4295. top:38px;
  4296. width:269px;
  4297. height:38px;
  4298. display:flex;
  4299. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4300. font-weight:400;
  4301. font-style:normal;
  4302. font-size:12px;
  4303. color:#0089FE;
  4304. text-align:left;
  4305. }
  4306. #u30018 .text {
  4307. position:absolute;
  4308. align-self:center;
  4309. padding:2px 2px 2px 30px;
  4310. box-sizing:border-box;
  4311. width:100%;
  4312. }
  4313. #u30018_text {
  4314. border-width:0px;
  4315. word-wrap:break-word;
  4316. text-transform:none;
  4317. }
  4318. #u30019_img {
  4319. border-width:0px;
  4320. position:absolute;
  4321. left:0px;
  4322. top:0px;
  4323. width:1070px;
  4324. height:38px;
  4325. }
  4326. #u30019 {
  4327. border-width:0px;
  4328. position:absolute;
  4329. left:0px;
  4330. top:76px;
  4331. width:1070px;
  4332. height:38px;
  4333. display:flex;
  4334. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4335. font-weight:400;
  4336. font-style:normal;
  4337. font-size:12px;
  4338. color:#333333;
  4339. text-align:left;
  4340. }
  4341. #u30019 .text {
  4342. position:absolute;
  4343. align-self:center;
  4344. padding:2px 2px 2px 30px;
  4345. box-sizing:border-box;
  4346. width:100%;
  4347. }
  4348. #u30019_text {
  4349. border-width:0px;
  4350. word-wrap:break-word;
  4351. text-transform:none;
  4352. visibility:hidden;
  4353. }
  4354. #u30020_img {
  4355. border-width:0px;
  4356. position:absolute;
  4357. left:0px;
  4358. top:0px;
  4359. width:269px;
  4360. height:38px;
  4361. }
  4362. #u30020 {
  4363. border-width:0px;
  4364. position:absolute;
  4365. left:1070px;
  4366. top:76px;
  4367. width:269px;
  4368. height:38px;
  4369. display:flex;
  4370. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4371. font-weight:400;
  4372. font-style:normal;
  4373. font-size:12px;
  4374. color:#0089FE;
  4375. text-align:left;
  4376. }
  4377. #u30020 .text {
  4378. position:absolute;
  4379. align-self:center;
  4380. padding:2px 2px 2px 30px;
  4381. box-sizing:border-box;
  4382. width:100%;
  4383. }
  4384. #u30020_text {
  4385. border-width:0px;
  4386. word-wrap:break-word;
  4387. text-transform:none;
  4388. visibility:hidden;
  4389. }
  4390. #u30021_img {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:1070px;
  4396. height:38px;
  4397. }
  4398. #u30021 {
  4399. border-width:0px;
  4400. position:absolute;
  4401. left:0px;
  4402. top:114px;
  4403. width:1070px;
  4404. height:38px;
  4405. display:flex;
  4406. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. font-size:12px;
  4410. color:#333333;
  4411. text-align:left;
  4412. }
  4413. #u30021 .text {
  4414. position:absolute;
  4415. align-self:center;
  4416. padding:2px 2px 2px 30px;
  4417. box-sizing:border-box;
  4418. width:100%;
  4419. }
  4420. #u30021_text {
  4421. border-width:0px;
  4422. word-wrap:break-word;
  4423. text-transform:none;
  4424. }
  4425. #u30022_img {
  4426. border-width:0px;
  4427. position:absolute;
  4428. left:0px;
  4429. top:0px;
  4430. width:269px;
  4431. height:38px;
  4432. }
  4433. #u30022 {
  4434. border-width:0px;
  4435. position:absolute;
  4436. left:1070px;
  4437. top:114px;
  4438. width:269px;
  4439. height:38px;
  4440. display:flex;
  4441. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4442. font-weight:400;
  4443. font-style:normal;
  4444. font-size:12px;
  4445. color:#0089FE;
  4446. text-align:left;
  4447. }
  4448. #u30022 .text {
  4449. position:absolute;
  4450. align-self:center;
  4451. padding:2px 2px 2px 30px;
  4452. box-sizing:border-box;
  4453. width:100%;
  4454. }
  4455. #u30022_text {
  4456. border-width:0px;
  4457. word-wrap:break-word;
  4458. text-transform:none;
  4459. visibility:hidden;
  4460. }
  4461. #u30023 {
  4462. border-width:0px;
  4463. position:absolute;
  4464. left:0px;
  4465. top:0px;
  4466. width:0px;
  4467. height:0px;
  4468. }
  4469. #u30024_div {
  4470. border-width:0px;
  4471. position:absolute;
  4472. left:0px;
  4473. top:0px;
  4474. width:59px;
  4475. height:30px;
  4476. background:inherit;
  4477. background-color:rgba(24, 144, 255, 1);
  4478. box-sizing:border-box;
  4479. border-width:1px;
  4480. border-style:solid;
  4481. border-color:rgba(0, 153, 255, 1);
  4482. border-radius:4px;
  4483. -moz-box-shadow:none;
  4484. -webkit-box-shadow:none;
  4485. box-shadow:none;
  4486. font-family:'Microsoft YaHei', sans-serif;
  4487. font-weight:400;
  4488. font-style:normal;
  4489. font-size:14px;
  4490. color:#FFFFFF;
  4491. }
  4492. #u30024 {
  4493. border-width:0px;
  4494. position:absolute;
  4495. left:228px;
  4496. top:174px;
  4497. width:59px;
  4498. height:30px;
  4499. display:flex;
  4500. font-family:'Microsoft YaHei', sans-serif;
  4501. font-weight:400;
  4502. font-style:normal;
  4503. font-size:14px;
  4504. color:#FFFFFF;
  4505. }
  4506. #u30024 .text {
  4507. position:absolute;
  4508. align-self:center;
  4509. padding:5px 15px 5px 15px;
  4510. box-sizing:border-box;
  4511. width:100%;
  4512. }
  4513. #u30024_text {
  4514. border-width:0px;
  4515. white-space:nowrap;
  4516. text-transform:none;
  4517. }
  4518. #u30025_div {
  4519. border-width:0px;
  4520. position:absolute;
  4521. left:0px;
  4522. top:0px;
  4523. width:55px;
  4524. height:30px;
  4525. background:inherit;
  4526. background-color:rgba(255, 255, 255, 1);
  4527. box-sizing:border-box;
  4528. border-width:1px;
  4529. border-style:solid;
  4530. border-color:rgba(170, 170, 170, 1);
  4531. border-radius:4px;
  4532. -moz-box-shadow:none;
  4533. -webkit-box-shadow:none;
  4534. box-shadow:none;
  4535. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4536. font-weight:400;
  4537. font-style:normal;
  4538. font-size:12px;
  4539. color:#555555;
  4540. }
  4541. #u30025 {
  4542. border-width:0px;
  4543. position:absolute;
  4544. left:297px;
  4545. top:174px;
  4546. width:55px;
  4547. height:30px;
  4548. display:flex;
  4549. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4550. font-weight:400;
  4551. font-style:normal;
  4552. font-size:12px;
  4553. color:#555555;
  4554. }
  4555. #u30025 .text {
  4556. position:absolute;
  4557. align-self:center;
  4558. padding:5px 15px 5px 15px;
  4559. box-sizing:border-box;
  4560. width:100%;
  4561. }
  4562. #u30025_text {
  4563. border-width:0px;
  4564. white-space:nowrap;
  4565. text-transform:none;
  4566. }
  4567. #u30026 {
  4568. border-width:0px;
  4569. position:absolute;
  4570. left:0px;
  4571. top:0px;
  4572. width:0px;
  4573. height:0px;
  4574. }
  4575. #u30027_div {
  4576. border-width:0px;
  4577. position:absolute;
  4578. left:0px;
  4579. top:0px;
  4580. width:140px;
  4581. height:30px;
  4582. background:inherit;
  4583. background-color:rgba(255, 255, 255, 1);
  4584. box-sizing:border-box;
  4585. border-width:1px;
  4586. border-style:solid;
  4587. border-color:rgba(215, 215, 215, 1);
  4588. border-radius:4px;
  4589. -moz-box-shadow:none;
  4590. -webkit-box-shadow:none;
  4591. box-shadow:none;
  4592. font-size:11px;
  4593. }
  4594. #u30027 {
  4595. border-width:0px;
  4596. position:absolute;
  4597. left:1277px;
  4598. top:134px;
  4599. width:140px;
  4600. height:30px;
  4601. display:flex;
  4602. font-size:11px;
  4603. }
  4604. #u30027 .text {
  4605. position:absolute;
  4606. align-self:center;
  4607. padding:2px 2px 2px 2px;
  4608. box-sizing:border-box;
  4609. width:100%;
  4610. }
  4611. #u30027_text {
  4612. border-width:0px;
  4613. word-wrap:break-word;
  4614. text-transform:none;
  4615. visibility:hidden;
  4616. }
  4617. #u30028_input {
  4618. position:absolute;
  4619. left:0px;
  4620. top:0px;
  4621. width:126px;
  4622. height:23px;
  4623. padding:2px 2px 2px 2px;
  4624. font-family:'ArialMT', 'Arial', sans-serif;
  4625. font-weight:400;
  4626. font-style:normal;
  4627. font-size:11px;
  4628. letter-spacing:normal;
  4629. color:#AAAAAA;
  4630. vertical-align:none;
  4631. text-align:left;
  4632. text-transform:none;
  4633. background-color:transparent;
  4634. border-color:transparent;
  4635. }
  4636. #u30028_input.disabled {
  4637. position:absolute;
  4638. left:0px;
  4639. top:0px;
  4640. width:126px;
  4641. height:23px;
  4642. padding:2px 2px 2px 2px;
  4643. font-family:'ArialMT', 'Arial', sans-serif;
  4644. font-weight:400;
  4645. font-style:normal;
  4646. font-size:11px;
  4647. letter-spacing:normal;
  4648. color:#AAAAAA;
  4649. vertical-align:none;
  4650. text-align:left;
  4651. text-transform:none;
  4652. background-color:transparent;
  4653. border-color:transparent;
  4654. }
  4655. #u30028_div {
  4656. border-width:0px;
  4657. position:absolute;
  4658. left:0px;
  4659. top:0px;
  4660. width:126px;
  4661. height:23px;
  4662. background:inherit;
  4663. background-color:rgba(255, 255, 255, 1);
  4664. border:none;
  4665. border-radius:0px;
  4666. -moz-box-shadow:none;
  4667. -webkit-box-shadow:none;
  4668. box-shadow:none;
  4669. font-size:11px;
  4670. color:#AAAAAA;
  4671. }
  4672. #u30028 {
  4673. border-width:0px;
  4674. position:absolute;
  4675. left:1284px;
  4676. top:136px;
  4677. width:126px;
  4678. height:23px;
  4679. display:flex;
  4680. font-size:11px;
  4681. color:#AAAAAA;
  4682. }
  4683. #u30028 .text {
  4684. position:absolute;
  4685. align-self:flex-start;
  4686. padding:2px 2px 2px 2px;
  4687. box-sizing:border-box;
  4688. width:100%;
  4689. }
  4690. #u30028_div.disabled {
  4691. border-width:0px;
  4692. position:absolute;
  4693. left:0px;
  4694. top:0px;
  4695. width:126px;
  4696. height:23px;
  4697. background:inherit;
  4698. background-color:rgba(240, 240, 240, 1);
  4699. border:none;
  4700. border-radius:0px;
  4701. -moz-box-shadow:none;
  4702. -webkit-box-shadow:none;
  4703. box-shadow:none;
  4704. font-size:11px;
  4705. color:#AAAAAA;
  4706. }
  4707. #u30028.disabled {
  4708. }
  4709. .u30028_input_option {
  4710. font-size:11px;
  4711. }
  4712. #u30029 {
  4713. border-width:0px;
  4714. position:absolute;
  4715. left:0px;
  4716. top:0px;
  4717. width:0px;
  4718. height:0px;
  4719. }
  4720. #u30030_div {
  4721. border-width:0px;
  4722. position:absolute;
  4723. left:0px;
  4724. top:0px;
  4725. width:140px;
  4726. height:30px;
  4727. background:inherit;
  4728. background-color:rgba(255, 255, 255, 1);
  4729. box-sizing:border-box;
  4730. border-width:1px;
  4731. border-style:solid;
  4732. border-color:rgba(215, 215, 215, 1);
  4733. border-radius:4px;
  4734. -moz-box-shadow:none;
  4735. -webkit-box-shadow:none;
  4736. box-shadow:none;
  4737. font-size:11px;
  4738. }
  4739. #u30030 {
  4740. border-width:0px;
  4741. position:absolute;
  4742. left:1427px;
  4743. top:134px;
  4744. width:140px;
  4745. height:30px;
  4746. display:flex;
  4747. font-size:11px;
  4748. }
  4749. #u30030 .text {
  4750. position:absolute;
  4751. align-self:center;
  4752. padding:2px 2px 2px 2px;
  4753. box-sizing:border-box;
  4754. width:100%;
  4755. }
  4756. #u30030_text {
  4757. border-width:0px;
  4758. word-wrap:break-word;
  4759. text-transform:none;
  4760. visibility:hidden;
  4761. }
  4762. #u30031_input {
  4763. position:absolute;
  4764. left:0px;
  4765. top:0px;
  4766. width:126px;
  4767. height:23px;
  4768. padding:2px 2px 2px 2px;
  4769. font-family:'ArialMT', 'Arial', sans-serif;
  4770. font-weight:400;
  4771. font-style:normal;
  4772. font-size:11px;
  4773. letter-spacing:normal;
  4774. color:#AAAAAA;
  4775. vertical-align:none;
  4776. text-align:left;
  4777. text-transform:none;
  4778. background-color:transparent;
  4779. border-color:transparent;
  4780. }
  4781. #u30031_input.disabled {
  4782. position:absolute;
  4783. left:0px;
  4784. top:0px;
  4785. width:126px;
  4786. height:23px;
  4787. padding:2px 2px 2px 2px;
  4788. font-family:'ArialMT', 'Arial', sans-serif;
  4789. font-weight:400;
  4790. font-style:normal;
  4791. font-size:11px;
  4792. letter-spacing:normal;
  4793. color:#AAAAAA;
  4794. vertical-align:none;
  4795. text-align:left;
  4796. text-transform:none;
  4797. background-color:transparent;
  4798. border-color:transparent;
  4799. }
  4800. #u30031_div {
  4801. border-width:0px;
  4802. position:absolute;
  4803. left:0px;
  4804. top:0px;
  4805. width:126px;
  4806. height:23px;
  4807. background:inherit;
  4808. background-color:rgba(255, 255, 255, 1);
  4809. border:none;
  4810. border-radius:0px;
  4811. -moz-box-shadow:none;
  4812. -webkit-box-shadow:none;
  4813. box-shadow:none;
  4814. font-size:11px;
  4815. color:#AAAAAA;
  4816. }
  4817. #u30031 {
  4818. border-width:0px;
  4819. position:absolute;
  4820. left:1434px;
  4821. top:136px;
  4822. width:126px;
  4823. height:23px;
  4824. display:flex;
  4825. font-size:11px;
  4826. color:#AAAAAA;
  4827. }
  4828. #u30031 .text {
  4829. position:absolute;
  4830. align-self:flex-start;
  4831. padding:2px 2px 2px 2px;
  4832. box-sizing:border-box;
  4833. width:100%;
  4834. }
  4835. #u30031_div.disabled {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:126px;
  4841. height:23px;
  4842. background:inherit;
  4843. background-color:rgba(240, 240, 240, 1);
  4844. border:none;
  4845. border-radius:0px;
  4846. -moz-box-shadow:none;
  4847. -webkit-box-shadow:none;
  4848. box-shadow:none;
  4849. font-size:11px;
  4850. color:#AAAAAA;
  4851. }
  4852. #u30031.disabled {
  4853. }
  4854. .u30031_input_option {
  4855. font-size:11px;
  4856. }
  4857. #u30032 {
  4858. border-width:0px;
  4859. position:absolute;
  4860. left:0px;
  4861. top:0px;
  4862. width:0px;
  4863. height:0px;
  4864. }
  4865. #u30033_div {
  4866. border-width:0px;
  4867. position:absolute;
  4868. left:0px;
  4869. top:0px;
  4870. width:140px;
  4871. height:30px;
  4872. background:inherit;
  4873. background-color:rgba(255, 255, 255, 1);
  4874. box-sizing:border-box;
  4875. border-width:1px;
  4876. border-style:solid;
  4877. border-color:rgba(201, 201, 201, 1);
  4878. border-radius:4px;
  4879. -moz-box-shadow:none;
  4880. -webkit-box-shadow:none;
  4881. box-shadow:none;
  4882. font-family:'Microsoft YaHei', sans-serif;
  4883. font-weight:400;
  4884. font-style:normal;
  4885. font-size:14px;
  4886. color:#CCCCCC;
  4887. text-align:left;
  4888. }
  4889. #u30033 {
  4890. border-width:0px;
  4891. position:absolute;
  4892. left:228px;
  4893. top:134px;
  4894. width:140px;
  4895. height:30px;
  4896. display:flex;
  4897. font-family:'Microsoft YaHei', sans-serif;
  4898. font-weight:400;
  4899. font-style:normal;
  4900. font-size:14px;
  4901. color:#CCCCCC;
  4902. text-align:left;
  4903. }
  4904. #u30033 .text {
  4905. position:absolute;
  4906. align-self:center;
  4907. padding:2px 8px 2px 8px;
  4908. box-sizing:border-box;
  4909. width:100%;
  4910. }
  4911. #u30033_text {
  4912. border-width:0px;
  4913. word-wrap:break-word;
  4914. text-transform:none;
  4915. visibility:hidden;
  4916. }
  4917. #u30034_input {
  4918. position:absolute;
  4919. left:0px;
  4920. top:0px;
  4921. width:127px;
  4922. height:25px;
  4923. padding:2px 2px 2px 2px;
  4924. font-family:'Microsoft YaHei', sans-serif;
  4925. font-weight:400;
  4926. font-style:normal;
  4927. font-size:10px;
  4928. letter-spacing:normal;
  4929. color:#000000;
  4930. vertical-align:none;
  4931. text-align:left;
  4932. text-transform:none;
  4933. background-color:transparent;
  4934. border-color:transparent;
  4935. }
  4936. #u30034_input.disabled {
  4937. position:absolute;
  4938. left:0px;
  4939. top:0px;
  4940. width:127px;
  4941. height:25px;
  4942. padding:2px 2px 2px 2px;
  4943. font-family:'Microsoft YaHei', sans-serif;
  4944. font-weight:400;
  4945. font-style:normal;
  4946. font-size:10px;
  4947. letter-spacing:normal;
  4948. color:#000000;
  4949. vertical-align:none;
  4950. text-align:left;
  4951. text-transform:none;
  4952. background-color:transparent;
  4953. border-color:transparent;
  4954. }
  4955. #u30034_div {
  4956. border-width:0px;
  4957. position:absolute;
  4958. left:0px;
  4959. top:0px;
  4960. width:127px;
  4961. height:25px;
  4962. background:inherit;
  4963. background-color:rgba(255, 255, 255, 1);
  4964. border:none;
  4965. border-radius:0px;
  4966. -moz-box-shadow:none;
  4967. -webkit-box-shadow:none;
  4968. box-shadow:none;
  4969. font-family:'Microsoft YaHei', sans-serif;
  4970. font-weight:400;
  4971. font-style:normal;
  4972. font-size:10px;
  4973. }
  4974. #u30034 {
  4975. border-width:0px;
  4976. position:absolute;
  4977. left:236px;
  4978. top:135px;
  4979. width:127px;
  4980. height:25px;
  4981. display:flex;
  4982. font-family:'Microsoft YaHei', sans-serif;
  4983. font-weight:400;
  4984. font-style:normal;
  4985. font-size:10px;
  4986. }
  4987. #u30034 .text {
  4988. position:absolute;
  4989. align-self:center;
  4990. padding:2px 2px 2px 2px;
  4991. box-sizing:border-box;
  4992. width:100%;
  4993. }
  4994. #u30034_div.disabled {
  4995. border-width:0px;
  4996. position:absolute;
  4997. left:0px;
  4998. top:0px;
  4999. width:127px;
  5000. height:25px;
  5001. background:inherit;
  5002. background-color:rgba(240, 240, 240, 1);
  5003. border:none;
  5004. border-radius:0px;
  5005. -moz-box-shadow:none;
  5006. -webkit-box-shadow:none;
  5007. box-shadow:none;
  5008. font-family:'Microsoft YaHei', sans-serif;
  5009. font-weight:400;
  5010. font-style:normal;
  5011. font-size:10px;
  5012. }
  5013. #u30034.disabled {
  5014. }
  5015. #u30035 {
  5016. border-width:0px;
  5017. position:absolute;
  5018. left:0px;
  5019. top:0px;
  5020. width:0px;
  5021. height:0px;
  5022. }
  5023. #u30036_div {
  5024. border-width:0px;
  5025. position:absolute;
  5026. left:0px;
  5027. top:0px;
  5028. width:140px;
  5029. height:30px;
  5030. background:inherit;
  5031. background-color:rgba(255, 255, 255, 1);
  5032. box-sizing:border-box;
  5033. border-width:1px;
  5034. border-style:solid;
  5035. border-color:rgba(201, 201, 201, 1);
  5036. border-radius:4px;
  5037. -moz-box-shadow:none;
  5038. -webkit-box-shadow:none;
  5039. box-shadow:none;
  5040. font-family:'Microsoft YaHei', sans-serif;
  5041. font-weight:400;
  5042. font-style:normal;
  5043. font-size:14px;
  5044. color:#CCCCCC;
  5045. text-align:left;
  5046. }
  5047. #u30036 {
  5048. border-width:0px;
  5049. position:absolute;
  5050. left:378px;
  5051. top:134px;
  5052. width:140px;
  5053. height:30px;
  5054. display:flex;
  5055. font-family:'Microsoft YaHei', sans-serif;
  5056. font-weight:400;
  5057. font-style:normal;
  5058. font-size:14px;
  5059. color:#CCCCCC;
  5060. text-align:left;
  5061. }
  5062. #u30036 .text {
  5063. position:absolute;
  5064. align-self:center;
  5065. padding:2px 8px 2px 8px;
  5066. box-sizing:border-box;
  5067. width:100%;
  5068. }
  5069. #u30036_text {
  5070. border-width:0px;
  5071. word-wrap:break-word;
  5072. text-transform:none;
  5073. visibility:hidden;
  5074. }
  5075. #u30037_input {
  5076. position:absolute;
  5077. left:0px;
  5078. top:0px;
  5079. width:127px;
  5080. height:25px;
  5081. padding:2px 2px 2px 2px;
  5082. font-family:'Microsoft YaHei', sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. font-size:10px;
  5086. letter-spacing:normal;
  5087. color:#000000;
  5088. vertical-align:none;
  5089. text-align:left;
  5090. text-transform:none;
  5091. background-color:transparent;
  5092. border-color:transparent;
  5093. }
  5094. #u30037_input.disabled {
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:127px;
  5099. height:25px;
  5100. padding:2px 2px 2px 2px;
  5101. font-family:'Microsoft YaHei', sans-serif;
  5102. font-weight:400;
  5103. font-style:normal;
  5104. font-size:10px;
  5105. letter-spacing:normal;
  5106. color:#000000;
  5107. vertical-align:none;
  5108. text-align:left;
  5109. text-transform:none;
  5110. background-color:transparent;
  5111. border-color:transparent;
  5112. }
  5113. #u30037_div {
  5114. border-width:0px;
  5115. position:absolute;
  5116. left:0px;
  5117. top:0px;
  5118. width:127px;
  5119. height:25px;
  5120. background:inherit;
  5121. background-color:rgba(255, 255, 255, 1);
  5122. border:none;
  5123. border-radius:0px;
  5124. -moz-box-shadow:none;
  5125. -webkit-box-shadow:none;
  5126. box-shadow:none;
  5127. font-family:'Microsoft YaHei', sans-serif;
  5128. font-weight:400;
  5129. font-style:normal;
  5130. font-size:10px;
  5131. }
  5132. #u30037 {
  5133. border-width:0px;
  5134. position:absolute;
  5135. left:386px;
  5136. top:135px;
  5137. width:127px;
  5138. height:25px;
  5139. display:flex;
  5140. font-family:'Microsoft YaHei', sans-serif;
  5141. font-weight:400;
  5142. font-style:normal;
  5143. font-size:10px;
  5144. }
  5145. #u30037 .text {
  5146. position:absolute;
  5147. align-self:center;
  5148. padding:2px 2px 2px 2px;
  5149. box-sizing:border-box;
  5150. width:100%;
  5151. }
  5152. #u30037_div.disabled {
  5153. border-width:0px;
  5154. position:absolute;
  5155. left:0px;
  5156. top:0px;
  5157. width:127px;
  5158. height:25px;
  5159. background:inherit;
  5160. background-color:rgba(240, 240, 240, 1);
  5161. border:none;
  5162. border-radius:0px;
  5163. -moz-box-shadow:none;
  5164. -webkit-box-shadow:none;
  5165. box-shadow:none;
  5166. font-family:'Microsoft YaHei', sans-serif;
  5167. font-weight:400;
  5168. font-style:normal;
  5169. font-size:10px;
  5170. }
  5171. #u30037.disabled {
  5172. }
  5173. #u30038 {
  5174. border-width:0px;
  5175. position:absolute;
  5176. left:0px;
  5177. top:0px;
  5178. width:0px;
  5179. height:0px;
  5180. }
  5181. #u30039_div {
  5182. border-width:0px;
  5183. position:absolute;
  5184. left:0px;
  5185. top:0px;
  5186. width:140px;
  5187. height:30px;
  5188. background:inherit;
  5189. background-color:rgba(255, 255, 255, 1);
  5190. box-sizing:border-box;
  5191. border-width:1px;
  5192. border-style:solid;
  5193. border-color:rgba(215, 215, 215, 1);
  5194. border-radius:4px;
  5195. -moz-box-shadow:none;
  5196. -webkit-box-shadow:none;
  5197. box-shadow:none;
  5198. font-size:11px;
  5199. }
  5200. #u30039 {
  5201. border-width:0px;
  5202. position:absolute;
  5203. left:828px;
  5204. top:134px;
  5205. width:140px;
  5206. height:30px;
  5207. display:flex;
  5208. font-size:11px;
  5209. }
  5210. #u30039 .text {
  5211. position:absolute;
  5212. align-self:center;
  5213. padding:2px 2px 2px 2px;
  5214. box-sizing:border-box;
  5215. width:100%;
  5216. }
  5217. #u30039_text {
  5218. border-width:0px;
  5219. word-wrap:break-word;
  5220. text-transform:none;
  5221. visibility:hidden;
  5222. }
  5223. #u30040_input {
  5224. position:absolute;
  5225. left:0px;
  5226. top:0px;
  5227. width:126px;
  5228. height:23px;
  5229. padding:2px 2px 2px 2px;
  5230. font-family:'ArialMT', 'Arial', sans-serif;
  5231. font-weight:400;
  5232. font-style:normal;
  5233. font-size:11px;
  5234. letter-spacing:normal;
  5235. color:#AAAAAA;
  5236. vertical-align:none;
  5237. text-align:left;
  5238. text-transform:none;
  5239. background-color:transparent;
  5240. border-color:transparent;
  5241. }
  5242. #u30040_input.disabled {
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:126px;
  5247. height:23px;
  5248. padding:2px 2px 2px 2px;
  5249. font-family:'ArialMT', 'Arial', sans-serif;
  5250. font-weight:400;
  5251. font-style:normal;
  5252. font-size:11px;
  5253. letter-spacing:normal;
  5254. color:#AAAAAA;
  5255. vertical-align:none;
  5256. text-align:left;
  5257. text-transform:none;
  5258. background-color:transparent;
  5259. border-color:transparent;
  5260. }
  5261. #u30040_div {
  5262. border-width:0px;
  5263. position:absolute;
  5264. left:0px;
  5265. top:0px;
  5266. width:126px;
  5267. height:23px;
  5268. background:inherit;
  5269. background-color:rgba(255, 255, 255, 1);
  5270. border:none;
  5271. border-radius:0px;
  5272. -moz-box-shadow:none;
  5273. -webkit-box-shadow:none;
  5274. box-shadow:none;
  5275. font-size:11px;
  5276. color:#AAAAAA;
  5277. }
  5278. #u30040 {
  5279. border-width:0px;
  5280. position:absolute;
  5281. left:835px;
  5282. top:136px;
  5283. width:126px;
  5284. height:23px;
  5285. display:flex;
  5286. font-size:11px;
  5287. color:#AAAAAA;
  5288. }
  5289. #u30040 .text {
  5290. position:absolute;
  5291. align-self:flex-start;
  5292. padding:2px 2px 2px 2px;
  5293. box-sizing:border-box;
  5294. width:100%;
  5295. }
  5296. #u30040_div.disabled {
  5297. border-width:0px;
  5298. position:absolute;
  5299. left:0px;
  5300. top:0px;
  5301. width:126px;
  5302. height:23px;
  5303. background:inherit;
  5304. background-color:rgba(240, 240, 240, 1);
  5305. border:none;
  5306. border-radius:0px;
  5307. -moz-box-shadow:none;
  5308. -webkit-box-shadow:none;
  5309. box-shadow:none;
  5310. font-size:11px;
  5311. color:#AAAAAA;
  5312. }
  5313. #u30040.disabled {
  5314. }
  5315. .u30040_input_option {
  5316. font-size:11px;
  5317. }
  5318. #u30041 {
  5319. border-width:0px;
  5320. position:absolute;
  5321. left:0px;
  5322. top:0px;
  5323. width:0px;
  5324. height:0px;
  5325. }
  5326. #u30042_div {
  5327. border-width:0px;
  5328. position:absolute;
  5329. left:0px;
  5330. top:0px;
  5331. width:140px;
  5332. height:30px;
  5333. background:inherit;
  5334. background-color:rgba(255, 255, 255, 1);
  5335. box-sizing:border-box;
  5336. border-width:1px;
  5337. border-style:solid;
  5338. border-color:rgba(215, 215, 215, 1);
  5339. border-radius:4px;
  5340. -moz-box-shadow:none;
  5341. -webkit-box-shadow:none;
  5342. box-shadow:none;
  5343. font-size:11px;
  5344. }
  5345. #u30042 {
  5346. border-width:0px;
  5347. position:absolute;
  5348. left:1127px;
  5349. top:134px;
  5350. width:140px;
  5351. height:30px;
  5352. display:flex;
  5353. font-size:11px;
  5354. }
  5355. #u30042 .text {
  5356. position:absolute;
  5357. align-self:center;
  5358. padding:2px 2px 2px 2px;
  5359. box-sizing:border-box;
  5360. width:100%;
  5361. }
  5362. #u30042_text {
  5363. border-width:0px;
  5364. word-wrap:break-word;
  5365. text-transform:none;
  5366. visibility:hidden;
  5367. }
  5368. #u30043_input {
  5369. position:absolute;
  5370. left:0px;
  5371. top:0px;
  5372. width:126px;
  5373. height:23px;
  5374. padding:2px 2px 2px 2px;
  5375. font-family:'ArialMT', 'Arial', sans-serif;
  5376. font-weight:400;
  5377. font-style:normal;
  5378. font-size:11px;
  5379. letter-spacing:normal;
  5380. color:#AAAAAA;
  5381. vertical-align:none;
  5382. text-align:left;
  5383. text-transform:none;
  5384. background-color:transparent;
  5385. border-color:transparent;
  5386. }
  5387. #u30043_input.disabled {
  5388. position:absolute;
  5389. left:0px;
  5390. top:0px;
  5391. width:126px;
  5392. height:23px;
  5393. padding:2px 2px 2px 2px;
  5394. font-family:'ArialMT', 'Arial', sans-serif;
  5395. font-weight:400;
  5396. font-style:normal;
  5397. font-size:11px;
  5398. letter-spacing:normal;
  5399. color:#AAAAAA;
  5400. vertical-align:none;
  5401. text-align:left;
  5402. text-transform:none;
  5403. background-color:transparent;
  5404. border-color:transparent;
  5405. }
  5406. #u30043_div {
  5407. border-width:0px;
  5408. position:absolute;
  5409. left:0px;
  5410. top:0px;
  5411. width:126px;
  5412. height:23px;
  5413. background:inherit;
  5414. background-color:rgba(255, 255, 255, 1);
  5415. border:none;
  5416. border-radius:0px;
  5417. -moz-box-shadow:none;
  5418. -webkit-box-shadow:none;
  5419. box-shadow:none;
  5420. font-size:11px;
  5421. color:#AAAAAA;
  5422. }
  5423. #u30043 {
  5424. border-width:0px;
  5425. position:absolute;
  5426. left:1134px;
  5427. top:136px;
  5428. width:126px;
  5429. height:23px;
  5430. display:flex;
  5431. font-size:11px;
  5432. color:#AAAAAA;
  5433. }
  5434. #u30043 .text {
  5435. position:absolute;
  5436. align-self:flex-start;
  5437. padding:2px 2px 2px 2px;
  5438. box-sizing:border-box;
  5439. width:100%;
  5440. }
  5441. #u30043_div.disabled {
  5442. border-width:0px;
  5443. position:absolute;
  5444. left:0px;
  5445. top:0px;
  5446. width:126px;
  5447. height:23px;
  5448. background:inherit;
  5449. background-color:rgba(240, 240, 240, 1);
  5450. border:none;
  5451. border-radius:0px;
  5452. -moz-box-shadow:none;
  5453. -webkit-box-shadow:none;
  5454. box-shadow:none;
  5455. font-size:11px;
  5456. color:#AAAAAA;
  5457. }
  5458. #u30043.disabled {
  5459. }
  5460. .u30043_input_option {
  5461. font-size:11px;
  5462. }
  5463. #u30044 {
  5464. border-width:0px;
  5465. position:absolute;
  5466. left:0px;
  5467. top:0px;
  5468. width:0px;
  5469. height:0px;
  5470. }
  5471. #u30045_div {
  5472. border-width:0px;
  5473. position:absolute;
  5474. left:0px;
  5475. top:0px;
  5476. width:140px;
  5477. height:30px;
  5478. background:inherit;
  5479. background-color:rgba(255, 255, 255, 1);
  5480. box-sizing:border-box;
  5481. border-width:1px;
  5482. border-style:solid;
  5483. border-color:rgba(215, 215, 215, 1);
  5484. border-radius:4px;
  5485. -moz-box-shadow:none;
  5486. -webkit-box-shadow:none;
  5487. box-shadow:none;
  5488. font-size:11px;
  5489. }
  5490. #u30045 {
  5491. border-width:0px;
  5492. position:absolute;
  5493. left:977px;
  5494. top:134px;
  5495. width:140px;
  5496. height:30px;
  5497. display:flex;
  5498. font-size:11px;
  5499. }
  5500. #u30045 .text {
  5501. position:absolute;
  5502. align-self:center;
  5503. padding:2px 2px 2px 2px;
  5504. box-sizing:border-box;
  5505. width:100%;
  5506. }
  5507. #u30045_text {
  5508. border-width:0px;
  5509. word-wrap:break-word;
  5510. text-transform:none;
  5511. visibility:hidden;
  5512. }
  5513. #u30046_input {
  5514. position:absolute;
  5515. left:0px;
  5516. top:0px;
  5517. width:126px;
  5518. height:23px;
  5519. padding:2px 2px 2px 2px;
  5520. font-family:'ArialMT', 'Arial', sans-serif;
  5521. font-weight:400;
  5522. font-style:normal;
  5523. font-size:11px;
  5524. letter-spacing:normal;
  5525. color:#AAAAAA;
  5526. vertical-align:none;
  5527. text-align:left;
  5528. text-transform:none;
  5529. background-color:transparent;
  5530. border-color:transparent;
  5531. }
  5532. #u30046_input.disabled {
  5533. position:absolute;
  5534. left:0px;
  5535. top:0px;
  5536. width:126px;
  5537. height:23px;
  5538. padding:2px 2px 2px 2px;
  5539. font-family:'ArialMT', 'Arial', sans-serif;
  5540. font-weight:400;
  5541. font-style:normal;
  5542. font-size:11px;
  5543. letter-spacing:normal;
  5544. color:#AAAAAA;
  5545. vertical-align:none;
  5546. text-align:left;
  5547. text-transform:none;
  5548. background-color:transparent;
  5549. border-color:transparent;
  5550. }
  5551. #u30046_div {
  5552. border-width:0px;
  5553. position:absolute;
  5554. left:0px;
  5555. top:0px;
  5556. width:126px;
  5557. height:23px;
  5558. background:inherit;
  5559. background-color:rgba(255, 255, 255, 1);
  5560. border:none;
  5561. border-radius:0px;
  5562. -moz-box-shadow:none;
  5563. -webkit-box-shadow:none;
  5564. box-shadow:none;
  5565. font-size:11px;
  5566. color:#AAAAAA;
  5567. }
  5568. #u30046 {
  5569. border-width:0px;
  5570. position:absolute;
  5571. left:984px;
  5572. top:136px;
  5573. width:126px;
  5574. height:23px;
  5575. display:flex;
  5576. font-size:11px;
  5577. color:#AAAAAA;
  5578. }
  5579. #u30046 .text {
  5580. position:absolute;
  5581. align-self:flex-start;
  5582. padding:2px 2px 2px 2px;
  5583. box-sizing:border-box;
  5584. width:100%;
  5585. }
  5586. #u30046_div.disabled {
  5587. border-width:0px;
  5588. position:absolute;
  5589. left:0px;
  5590. top:0px;
  5591. width:126px;
  5592. height:23px;
  5593. background:inherit;
  5594. background-color:rgba(240, 240, 240, 1);
  5595. border:none;
  5596. border-radius:0px;
  5597. -moz-box-shadow:none;
  5598. -webkit-box-shadow:none;
  5599. box-shadow:none;
  5600. font-size:11px;
  5601. color:#AAAAAA;
  5602. }
  5603. #u30046.disabled {
  5604. }
  5605. .u30046_input_option {
  5606. font-size:11px;
  5607. }
  5608. #u30047 {
  5609. border-width:0px;
  5610. position:absolute;
  5611. left:0px;
  5612. top:0px;
  5613. width:0px;
  5614. height:0px;
  5615. }
  5616. #u30048_div {
  5617. border-width:0px;
  5618. position:absolute;
  5619. left:0px;
  5620. top:0px;
  5621. width:140px;
  5622. height:30px;
  5623. background:inherit;
  5624. background-color:rgba(255, 255, 255, 1);
  5625. box-sizing:border-box;
  5626. border-width:1px;
  5627. border-style:solid;
  5628. border-color:rgba(215, 215, 215, 1);
  5629. border-radius:4px;
  5630. -moz-box-shadow:none;
  5631. -webkit-box-shadow:none;
  5632. box-shadow:none;
  5633. font-size:11px;
  5634. }
  5635. #u30048 {
  5636. border-width:0px;
  5637. position:absolute;
  5638. left:528px;
  5639. top:134px;
  5640. width:140px;
  5641. height:30px;
  5642. display:flex;
  5643. font-size:11px;
  5644. }
  5645. #u30048 .text {
  5646. position:absolute;
  5647. align-self:center;
  5648. padding:2px 2px 2px 2px;
  5649. box-sizing:border-box;
  5650. width:100%;
  5651. }
  5652. #u30048_text {
  5653. border-width:0px;
  5654. word-wrap:break-word;
  5655. text-transform:none;
  5656. visibility:hidden;
  5657. }
  5658. #u30049_input {
  5659. position:absolute;
  5660. left:0px;
  5661. top:0px;
  5662. width:126px;
  5663. height:23px;
  5664. padding:2px 2px 2px 2px;
  5665. font-family:'ArialMT', 'Arial', sans-serif;
  5666. font-weight:400;
  5667. font-style:normal;
  5668. font-size:11px;
  5669. letter-spacing:normal;
  5670. color:#AAAAAA;
  5671. vertical-align:none;
  5672. text-align:left;
  5673. text-transform:none;
  5674. background-color:transparent;
  5675. border-color:transparent;
  5676. }
  5677. #u30049_input.disabled {
  5678. position:absolute;
  5679. left:0px;
  5680. top:0px;
  5681. width:126px;
  5682. height:23px;
  5683. padding:2px 2px 2px 2px;
  5684. font-family:'ArialMT', 'Arial', sans-serif;
  5685. font-weight:400;
  5686. font-style:normal;
  5687. font-size:11px;
  5688. letter-spacing:normal;
  5689. color:#AAAAAA;
  5690. vertical-align:none;
  5691. text-align:left;
  5692. text-transform:none;
  5693. background-color:transparent;
  5694. border-color:transparent;
  5695. }
  5696. #u30049_div {
  5697. border-width:0px;
  5698. position:absolute;
  5699. left:0px;
  5700. top:0px;
  5701. width:126px;
  5702. height:23px;
  5703. background:inherit;
  5704. background-color:rgba(255, 255, 255, 1);
  5705. border:none;
  5706. border-radius:0px;
  5707. -moz-box-shadow:none;
  5708. -webkit-box-shadow:none;
  5709. box-shadow:none;
  5710. font-size:11px;
  5711. color:#AAAAAA;
  5712. }
  5713. #u30049 {
  5714. border-width:0px;
  5715. position:absolute;
  5716. left:535px;
  5717. top:136px;
  5718. width:126px;
  5719. height:23px;
  5720. display:flex;
  5721. font-size:11px;
  5722. color:#AAAAAA;
  5723. }
  5724. #u30049 .text {
  5725. position:absolute;
  5726. align-self:flex-start;
  5727. padding:2px 2px 2px 2px;
  5728. box-sizing:border-box;
  5729. width:100%;
  5730. }
  5731. #u30049_div.disabled {
  5732. border-width:0px;
  5733. position:absolute;
  5734. left:0px;
  5735. top:0px;
  5736. width:126px;
  5737. height:23px;
  5738. background:inherit;
  5739. background-color:rgba(240, 240, 240, 1);
  5740. border:none;
  5741. border-radius:0px;
  5742. -moz-box-shadow:none;
  5743. -webkit-box-shadow:none;
  5744. box-shadow:none;
  5745. font-size:11px;
  5746. color:#AAAAAA;
  5747. }
  5748. #u30049.disabled {
  5749. }
  5750. .u30049_input_option {
  5751. font-size:11px;
  5752. }
  5753. #u30050 {
  5754. border-width:0px;
  5755. position:absolute;
  5756. left:0px;
  5757. top:0px;
  5758. width:0px;
  5759. height:0px;
  5760. }
  5761. #u30051_div {
  5762. border-width:0px;
  5763. position:absolute;
  5764. left:0px;
  5765. top:0px;
  5766. width:140px;
  5767. height:30px;
  5768. background:inherit;
  5769. background-color:rgba(255, 255, 255, 1);
  5770. box-sizing:border-box;
  5771. border-width:1px;
  5772. border-style:solid;
  5773. border-color:rgba(215, 215, 215, 1);
  5774. border-radius:4px;
  5775. -moz-box-shadow:none;
  5776. -webkit-box-shadow:none;
  5777. box-shadow:none;
  5778. font-size:11px;
  5779. }
  5780. #u30051 {
  5781. border-width:0px;
  5782. position:absolute;
  5783. left:678px;
  5784. top:134px;
  5785. width:140px;
  5786. height:30px;
  5787. display:flex;
  5788. font-size:11px;
  5789. }
  5790. #u30051 .text {
  5791. position:absolute;
  5792. align-self:center;
  5793. padding:2px 2px 2px 2px;
  5794. box-sizing:border-box;
  5795. width:100%;
  5796. }
  5797. #u30051_text {
  5798. border-width:0px;
  5799. word-wrap:break-word;
  5800. text-transform:none;
  5801. visibility:hidden;
  5802. }
  5803. #u30052_input {
  5804. position:absolute;
  5805. left:0px;
  5806. top:0px;
  5807. width:126px;
  5808. height:23px;
  5809. padding:2px 2px 2px 2px;
  5810. font-family:'ArialMT', 'Arial', sans-serif;
  5811. font-weight:400;
  5812. font-style:normal;
  5813. font-size:11px;
  5814. letter-spacing:normal;
  5815. color:#AAAAAA;
  5816. vertical-align:none;
  5817. text-align:left;
  5818. text-transform:none;
  5819. background-color:transparent;
  5820. border-color:transparent;
  5821. }
  5822. #u30052_input.disabled {
  5823. position:absolute;
  5824. left:0px;
  5825. top:0px;
  5826. width:126px;
  5827. height:23px;
  5828. padding:2px 2px 2px 2px;
  5829. font-family:'ArialMT', 'Arial', sans-serif;
  5830. font-weight:400;
  5831. font-style:normal;
  5832. font-size:11px;
  5833. letter-spacing:normal;
  5834. color:#AAAAAA;
  5835. vertical-align:none;
  5836. text-align:left;
  5837. text-transform:none;
  5838. background-color:transparent;
  5839. border-color:transparent;
  5840. }
  5841. #u30052_div {
  5842. border-width:0px;
  5843. position:absolute;
  5844. left:0px;
  5845. top:0px;
  5846. width:126px;
  5847. height:23px;
  5848. background:inherit;
  5849. background-color:rgba(255, 255, 255, 1);
  5850. border:none;
  5851. border-radius:0px;
  5852. -moz-box-shadow:none;
  5853. -webkit-box-shadow:none;
  5854. box-shadow:none;
  5855. font-size:11px;
  5856. color:#AAAAAA;
  5857. }
  5858. #u30052 {
  5859. border-width:0px;
  5860. position:absolute;
  5861. left:685px;
  5862. top:136px;
  5863. width:126px;
  5864. height:23px;
  5865. display:flex;
  5866. font-size:11px;
  5867. color:#AAAAAA;
  5868. }
  5869. #u30052 .text {
  5870. position:absolute;
  5871. align-self:flex-start;
  5872. padding:2px 2px 2px 2px;
  5873. box-sizing:border-box;
  5874. width:100%;
  5875. }
  5876. #u30052_div.disabled {
  5877. border-width:0px;
  5878. position:absolute;
  5879. left:0px;
  5880. top:0px;
  5881. width:126px;
  5882. height:23px;
  5883. background:inherit;
  5884. background-color:rgba(240, 240, 240, 1);
  5885. border:none;
  5886. border-radius:0px;
  5887. -moz-box-shadow:none;
  5888. -webkit-box-shadow:none;
  5889. box-shadow:none;
  5890. font-size:11px;
  5891. color:#AAAAAA;
  5892. }
  5893. #u30052.disabled {
  5894. }
  5895. .u30052_input_option {
  5896. font-size:11px;
  5897. }
  5898. #u30053_div {
  5899. border-width:0px;
  5900. position:absolute;
  5901. left:0px;
  5902. top:0px;
  5903. width:79px;
  5904. height:30px;
  5905. background:inherit;
  5906. background-color:rgba(255, 255, 255, 1);
  5907. box-sizing:border-box;
  5908. border-width:1px;
  5909. border-style:solid;
  5910. border-color:rgba(170, 170, 170, 1);
  5911. border-radius:0px;
  5912. -moz-box-shadow:none;
  5913. -webkit-box-shadow:none;
  5914. box-shadow:none;
  5915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5916. font-weight:400;
  5917. font-style:normal;
  5918. font-size:12px;
  5919. color:#555555;
  5920. }
  5921. #u30053 {
  5922. border-width:0px;
  5923. position:absolute;
  5924. left:228px;
  5925. top:224px;
  5926. width:79px;
  5927. height:30px;
  5928. display:flex;
  5929. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5930. font-weight:400;
  5931. font-style:normal;
  5932. font-size:12px;
  5933. color:#555555;
  5934. }
  5935. #u30053 .text {
  5936. position:absolute;
  5937. align-self:center;
  5938. padding:5px 15px 5px 15px;
  5939. box-sizing:border-box;
  5940. width:100%;
  5941. }
  5942. #u30053_text {
  5943. border-width:0px;
  5944. white-space:nowrap;
  5945. text-transform:none;
  5946. }
  5947. #u30054_div {
  5948. border-width:0px;
  5949. position:absolute;
  5950. left:0px;
  5951. top:0px;
  5952. width:330px;
  5953. height:25px;
  5954. background:inherit;
  5955. background-color:rgba(255, 255, 255, 0);
  5956. border:none;
  5957. border-radius:0px;
  5958. -moz-box-shadow:none;
  5959. -webkit-box-shadow:none;
  5960. box-shadow:none;
  5961. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5962. font-weight:500;
  5963. font-style:normal;
  5964. font-size:18px;
  5965. }
  5966. #u30054 {
  5967. border-width:0px;
  5968. position:absolute;
  5969. left:301px;
  5970. top:87px;
  5971. width:330px;
  5972. height:25px;
  5973. display:flex;
  5974. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  5975. font-weight:500;
  5976. font-style:normal;
  5977. font-size:18px;
  5978. }
  5979. #u30054 .text {
  5980. position:absolute;
  5981. align-self:flex-start;
  5982. padding:0px 0px 0px 0px;
  5983. box-sizing:border-box;
  5984. width:100%;
  5985. }
  5986. #u30054_text {
  5987. border-width:0px;
  5988. white-space:nowrap;
  5989. text-transform:none;
  5990. }
  5991. #u30055_div {
  5992. border-width:0px;
  5993. position:absolute;
  5994. left:0px;
  5995. top:0px;
  5996. width:79px;
  5997. height:30px;
  5998. background:inherit;
  5999. background-color:rgba(255, 255, 255, 1);
  6000. box-sizing:border-box;
  6001. border-width:1px;
  6002. border-style:solid;
  6003. border-color:rgba(170, 170, 170, 1);
  6004. border-radius:0px;
  6005. -moz-box-shadow:none;
  6006. -webkit-box-shadow:none;
  6007. box-shadow:none;
  6008. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6009. font-weight:400;
  6010. font-style:normal;
  6011. font-size:12px;
  6012. color:#555555;
  6013. }
  6014. #u30055 {
  6015. border-width:0px;
  6016. position:absolute;
  6017. left:306px;
  6018. top:224px;
  6019. width:79px;
  6020. height:30px;
  6021. display:flex;
  6022. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6023. font-weight:400;
  6024. font-style:normal;
  6025. font-size:12px;
  6026. color:#555555;
  6027. }
  6028. #u30055 .text {
  6029. position:absolute;
  6030. align-self:center;
  6031. padding:5px 15px 5px 15px;
  6032. box-sizing:border-box;
  6033. width:100%;
  6034. }
  6035. #u30055_text {
  6036. border-width:0px;
  6037. white-space:nowrap;
  6038. text-transform:none;
  6039. }
  6040. #u30056_div {
  6041. border-width:0px;
  6042. position:absolute;
  6043. left:0px;
  6044. top:0px;
  6045. width:79px;
  6046. height:30px;
  6047. background:inherit;
  6048. background-color:rgba(255, 255, 255, 1);
  6049. box-sizing:border-box;
  6050. border-width:1px;
  6051. border-style:solid;
  6052. border-color:rgba(170, 170, 170, 1);
  6053. border-radius:0px;
  6054. -moz-box-shadow:none;
  6055. -webkit-box-shadow:none;
  6056. box-shadow:none;
  6057. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6058. font-weight:400;
  6059. font-style:normal;
  6060. font-size:12px;
  6061. color:#555555;
  6062. }
  6063. #u30056 {
  6064. border-width:0px;
  6065. position:absolute;
  6066. left:384px;
  6067. top:224px;
  6068. width:79px;
  6069. height:30px;
  6070. display:flex;
  6071. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6072. font-weight:400;
  6073. font-style:normal;
  6074. font-size:12px;
  6075. color:#555555;
  6076. }
  6077. #u30056 .text {
  6078. position:absolute;
  6079. align-self:center;
  6080. padding:5px 15px 5px 15px;
  6081. box-sizing:border-box;
  6082. width:100%;
  6083. }
  6084. #u30056_text {
  6085. border-width:0px;
  6086. white-space:nowrap;
  6087. text-transform:none;
  6088. }
  6089. #u30057_div {
  6090. border-width:0px;
  6091. position:absolute;
  6092. left:0px;
  6093. top:0px;
  6094. width:79px;
  6095. height:30px;
  6096. background:inherit;
  6097. background-color:rgba(255, 255, 255, 1);
  6098. box-sizing:border-box;
  6099. border-width:1px;
  6100. border-style:solid;
  6101. border-color:rgba(170, 170, 170, 1);
  6102. border-radius:0px;
  6103. -moz-box-shadow:none;
  6104. -webkit-box-shadow:none;
  6105. box-shadow:none;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:12px;
  6110. color:#555555;
  6111. }
  6112. #u30057 {
  6113. border-width:0px;
  6114. position:absolute;
  6115. left:462px;
  6116. top:224px;
  6117. width:79px;
  6118. height:30px;
  6119. display:flex;
  6120. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6121. font-weight:400;
  6122. font-style:normal;
  6123. font-size:12px;
  6124. color:#555555;
  6125. }
  6126. #u30057 .text {
  6127. position:absolute;
  6128. align-self:center;
  6129. padding:5px 15px 5px 15px;
  6130. box-sizing:border-box;
  6131. width:100%;
  6132. }
  6133. #u30057_text {
  6134. border-width:0px;
  6135. white-space:nowrap;
  6136. text-transform:none;
  6137. }
  6138. #u30058_div {
  6139. border-width:0px;
  6140. position:absolute;
  6141. left:0px;
  6142. top:0px;
  6143. width:55px;
  6144. height:30px;
  6145. background:inherit;
  6146. background-color:rgba(255, 255, 255, 1);
  6147. box-sizing:border-box;
  6148. border-width:1px;
  6149. border-style:solid;
  6150. border-color:rgba(170, 170, 170, 1);
  6151. border-radius:0px;
  6152. -moz-box-shadow:none;
  6153. -webkit-box-shadow:none;
  6154. box-shadow:none;
  6155. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6156. font-weight:400;
  6157. font-style:normal;
  6158. font-size:12px;
  6159. color:#555555;
  6160. }
  6161. #u30058 {
  6162. border-width:0px;
  6163. position:absolute;
  6164. left:540px;
  6165. top:224px;
  6166. width:55px;
  6167. height:30px;
  6168. display:flex;
  6169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6170. font-weight:400;
  6171. font-style:normal;
  6172. font-size:12px;
  6173. color:#555555;
  6174. }
  6175. #u30058 .text {
  6176. position:absolute;
  6177. align-self:center;
  6178. padding:5px 15px 5px 15px;
  6179. box-sizing:border-box;
  6180. width:100%;
  6181. }
  6182. #u30058_text {
  6183. border-width:0px;
  6184. white-space:nowrap;
  6185. text-transform:none;
  6186. }
  6187. #u30059_div {
  6188. border-width:0px;
  6189. position:absolute;
  6190. left:0px;
  6191. top:0px;
  6192. width:55px;
  6193. height:30px;
  6194. background:inherit;
  6195. background-color:rgba(255, 255, 255, 1);
  6196. box-sizing:border-box;
  6197. border-width:1px;
  6198. border-style:solid;
  6199. border-color:rgba(170, 170, 170, 1);
  6200. border-radius:0px;
  6201. -moz-box-shadow:none;
  6202. -webkit-box-shadow:none;
  6203. box-shadow:none;
  6204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6205. font-weight:400;
  6206. font-style:normal;
  6207. font-size:12px;
  6208. color:#555555;
  6209. }
  6210. #u30059 {
  6211. border-width:0px;
  6212. position:absolute;
  6213. left:594px;
  6214. top:224px;
  6215. width:55px;
  6216. height:30px;
  6217. display:flex;
  6218. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6219. font-weight:400;
  6220. font-style:normal;
  6221. font-size:12px;
  6222. color:#555555;
  6223. }
  6224. #u30059 .text {
  6225. position:absolute;
  6226. align-self:center;
  6227. padding:5px 15px 5px 15px;
  6228. box-sizing:border-box;
  6229. width:100%;
  6230. }
  6231. #u30059_text {
  6232. border-width:0px;
  6233. white-space:nowrap;
  6234. text-transform:none;
  6235. }
  6236. #u30060_div {
  6237. border-width:0px;
  6238. position:absolute;
  6239. left:0px;
  6240. top:0px;
  6241. width:103px;
  6242. height:30px;
  6243. background:inherit;
  6244. background-color:rgba(255, 255, 255, 1);
  6245. box-sizing:border-box;
  6246. border-width:1px;
  6247. border-style:solid;
  6248. border-color:rgba(170, 170, 170, 1);
  6249. border-radius:4px;
  6250. -moz-box-shadow:none;
  6251. -webkit-box-shadow:none;
  6252. box-shadow:none;
  6253. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6254. font-weight:400;
  6255. font-style:normal;
  6256. font-size:12px;
  6257. color:#555555;
  6258. }
  6259. #u30060 {
  6260. border-width:0px;
  6261. position:absolute;
  6262. left:669px;
  6263. top:224px;
  6264. width:103px;
  6265. height:30px;
  6266. display:flex;
  6267. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6268. font-weight:400;
  6269. font-style:normal;
  6270. font-size:12px;
  6271. color:#555555;
  6272. }
  6273. #u30060 .text {
  6274. position:absolute;
  6275. align-self:center;
  6276. padding:5px 15px 5px 15px;
  6277. box-sizing:border-box;
  6278. width:100%;
  6279. }
  6280. #u30060_text {
  6281. border-width:0px;
  6282. white-space:nowrap;
  6283. text-transform:none;
  6284. }