styles.css 152 KB

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