styles.css 124 KB

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