styles.css 144 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578657965806581658265836584658565866587658865896590659165926593659465956596659765986599660066016602660366046605660666076608660966106611661266136614661566166617661866196620662166226623662466256626662766286629663066316632663366346635663666376638663966406641664266436644664566466647664866496650665166526653665466556656665766586659666066616662666366646665666666676668666966706671667266736674667566766677667866796680668166826683668466856686668766886689669066916692669366946695669666976698669967006701670267036704670567066707670867096710671167126713671467156716671767186719672067216722672367246725672667276728672967306731673267336734673567366737673867396740674167426743674467456746674767486749675067516752675367546755675667576758675967606761676267636764676567666767676867696770677167726773677467756776677767786779678067816782678367846785678667876788678967906791679267936794679567966797679867996800680168026803680468056806680768086809681068116812681368146815681668176818681968206821682268236824682568266827682868296830683168326833683468356836683768386839684068416842684368446845684668476848684968506851685268536854685568566857685868596860686168626863686468656866686768686869687068716872687368746875687668776878687968806881688268836884688568866887688868896890689168926893689468956896689768986899690069016902690369046905690669076908690969106911691269136914691569166917691869196920692169226923692469256926692769286929693069316932693369346935693669376938693969406941694269436944694569466947694869496950695169526953695469556956695769586959696069616962696369646965696669676968696969706971697269736974697569766977697869796980698169826983698469856986698769886989699069916992699369946995699669976998699970007001700270037004700570067007700870097010701170127013701470157016701770187019702070217022702370247025702670277028702970307031703270337034703570367037703870397040704170427043704470457046704770487049705070517052705370547055705670577058705970607061706270637064706570667067706870697070707170727073707470757076707770787079708070817082708370847085708670877088708970907091709270937094709570967097709870997100710171027103710471057106710771087109711071117112711371147115711671177118711971207121712271237124712571267127712871297130713171327133713471357136713771387139714071417142714371447145714671477148714971507151715271537154715571567157715871597160716171627163716471657166716771687169717071717172717371747175717671777178717971807181718271837184718571867187718871897190719171927193719471957196719771987199720072017202720372047205720672077208720972107211721272137214721572167217721872197220722172227223722472257226722772287229723072317232723372347235723672377238723972407241724272437244724572467247724872497250725172527253725472557256725772587259726072617262726372647265726672677268726972707271727272737274727572767277727872797280728172827283728472857286728772887289729072917292729372947295729672977298729973007301730273037304730573067307730873097310731173127313731473157316731773187319732073217322732373247325732673277328732973307331733273337334733573367337733873397340734173427343734473457346734773487349735073517352735373547355735673577358735973607361736273637364736573667367736873697370737173727373737473757376737773787379738073817382738373847385738673877388738973907391739273937394739573967397739873997400740174027403740474057406740774087409741074117412741374147415741674177418741974207421742274237424742574267427742874297430743174327433743474357436743774387439744074417442744374447445744674477448744974507451745274537454745574567457745874597460746174627463746474657466746774687469747074717472747374747475747674777478747974807481748274837484748574867487748874897490749174927493749474957496749774987499750075017502750375047505750675077508750975107511751275137514751575167517751875197520752175227523752475257526752775287529753075317532753375347535753675377538753975407541754275437544754575467547754875497550755175527553755475557556755775587559756075617562756375647565756675677568756975707571757275737574757575767577757875797580758175827583758475857586758775887589759075917592759375947595759675977598759976007601760276037604760576067607760876097610761176127613761476157616761776187619762076217622762376247625762676277628762976307631763276337634763576367637763876397640764176427643764476457646764776487649765076517652765376547655765676577658765976607661766276637664766576667667766876697670767176727673767476757676767776787679768076817682768376847685768676877688768976907691769276937694769576967697769876997700770177027703770477057706770777087709771077117712771377147715771677177718771977207721772277237724772577267727772877297730773177327733773477357736773777387739774077417742774377447745774677477748774977507751775277537754775577567757775877597760776177627763776477657766776777687769777077717772777377747775777677777778777977807781778277837784778577867787778877897790779177927793779477957796779777987799780078017802780378047805780678077808780978107811781278137814781578167817781878197820782178227823782478257826782778287829783078317832783378347835783678377838783978407841784278437844784578467847784878497850785178527853785478557856785778587859786078617862786378647865786678677868786978707871787278737874787578767877787878797880788178827883788478857886788778887889789078917892789378947895789678977898789979007901790279037904790579067907790879097910791179127913791479157916791779187919792079217922792379247925792679277928792979307931793279337934793579367937
  1. body {
  2. margin:0px;
  3. background-image:none;
  4. position:relative;
  5. left:-0px;
  6. width:2310px;
  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. #u11815 {
  20. border-width:0px;
  21. position:absolute;
  22. left:0px;
  23. top:0px;
  24. width:1600px;
  25. height:1250px;
  26. }
  27. #u11816_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. #u11816 {
  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. #u11816 .text {
  52. position:absolute;
  53. align-self:center;
  54. padding:2px 2px 2px 2px;
  55. box-sizing:border-box;
  56. width:100%;
  57. }
  58. #u11816_text {
  59. border-width:0px;
  60. word-wrap:break-word;
  61. text-transform:none;
  62. visibility:hidden;
  63. }
  64. #u11817_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. #u11817 {
  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. #u11817 .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. #u11817_text {
  100. border-width:0px;
  101. white-space:nowrap;
  102. text-transform:none;
  103. }
  104. #u11818_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. #u11818 {
  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. #u11818 .text {
  131. position:absolute;
  132. align-self:center;
  133. padding:2px 2px 2px 2px;
  134. box-sizing:border-box;
  135. width:100%;
  136. }
  137. #u11818_text {
  138. border-width:0px;
  139. word-wrap:break-word;
  140. text-transform:none;
  141. visibility:hidden;
  142. }
  143. #u11819 {
  144. border-width:0px;
  145. position:absolute;
  146. left:0px;
  147. top:0px;
  148. width:0px;
  149. height:0px;
  150. }
  151. #u11820 {
  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. #u11820 .text {
  162. position:absolute;
  163. align-self:center;
  164. padding:2px 2px 2px 2px;
  165. box-sizing:border-box;
  166. width:100%;
  167. }
  168. #u11820_img {
  169. border-width:0px;
  170. position:absolute;
  171. left:0px;
  172. top:0px;
  173. width:31px;
  174. height:31px;
  175. }
  176. #u11820_text {
  177. border-width:0px;
  178. word-wrap:break-word;
  179. text-transform:none;
  180. }
  181. #u11821_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. #u11821 {
  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. #u11821 .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. #u11821_text {
  223. border-width:0px;
  224. white-space:nowrap;
  225. text-transform:none;
  226. }
  227. #u11822_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. #u11822 {
  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. #u11822 .text {
  254. position:absolute;
  255. align-self:center;
  256. padding:2px 2px 2px 2px;
  257. box-sizing:border-box;
  258. width:100%;
  259. }
  260. #u11822_text {
  261. border-width:0px;
  262. word-wrap:break-word;
  263. text-transform:none;
  264. visibility:hidden;
  265. }
  266. #u11823 {
  267. border-width:0px;
  268. position:absolute;
  269. left:0px;
  270. top:0px;
  271. width:0px;
  272. height:0px;
  273. }
  274. #u11824_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. #u11824 {
  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. #u11824 .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. #u11824_text {
  316. border-width:0px;
  317. white-space:nowrap;
  318. text-transform:none;
  319. }
  320. #u11825 {
  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. #u11825 .text {
  331. position:absolute;
  332. align-self:center;
  333. padding:2px 2px 2px 2px;
  334. box-sizing:border-box;
  335. width:100%;
  336. }
  337. #u11825_img {
  338. border-width:0px;
  339. position:absolute;
  340. left:0px;
  341. top:0px;
  342. width:14px;
  343. height:14px;
  344. }
  345. #u11825_text {
  346. border-width:0px;
  347. word-wrap:break-word;
  348. text-transform:none;
  349. visibility:hidden;
  350. }
  351. #u11826 {
  352. border-width:0px;
  353. position:absolute;
  354. left:0px;
  355. top:0px;
  356. width:0px;
  357. height:0px;
  358. }
  359. #u11827_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. #u11827 {
  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. #u11827 .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. #u11827_text {
  401. border-width:0px;
  402. white-space:nowrap;
  403. text-transform:none;
  404. }
  405. #u11828 {
  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. #u11828 .text {
  416. position:absolute;
  417. align-self:center;
  418. padding:2px 2px 2px 2px;
  419. box-sizing:border-box;
  420. width:100%;
  421. }
  422. #u11828_img {
  423. border-width:0px;
  424. position:absolute;
  425. left:0px;
  426. top:0px;
  427. width:14px;
  428. height:14px;
  429. }
  430. #u11828_text {
  431. border-width:0px;
  432. word-wrap:break-word;
  433. text-transform:none;
  434. visibility:hidden;
  435. }
  436. #u11829 {
  437. border-width:0px;
  438. position:absolute;
  439. left:0px;
  440. top:0px;
  441. width:0px;
  442. height:0px;
  443. }
  444. #u11830_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. #u11830 {
  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. #u11830 .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. #u11830_text {
  486. border-width:0px;
  487. white-space:nowrap;
  488. text-transform:none;
  489. }
  490. #u11831 {
  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. #u11831 .text {
  501. position:absolute;
  502. align-self:center;
  503. padding:2px 2px 2px 2px;
  504. box-sizing:border-box;
  505. width:100%;
  506. }
  507. #u11831_img {
  508. border-width:0px;
  509. position:absolute;
  510. left:0px;
  511. top:0px;
  512. width:14px;
  513. height:14px;
  514. }
  515. #u11831_text {
  516. border-width:0px;
  517. word-wrap:break-word;
  518. text-transform:none;
  519. visibility:hidden;
  520. }
  521. #u11832 {
  522. border-width:0px;
  523. position:absolute;
  524. left:0px;
  525. top:0px;
  526. width:0px;
  527. height:0px;
  528. }
  529. #u11833_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. #u11833 {
  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. #u11833 .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. #u11833_text {
  571. border-width:0px;
  572. white-space:nowrap;
  573. text-transform:none;
  574. }
  575. #u11834 {
  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. #u11834 .text {
  586. position:absolute;
  587. align-self:center;
  588. padding:2px 2px 2px 2px;
  589. box-sizing:border-box;
  590. width:100%;
  591. }
  592. #u11834_img {
  593. border-width:0px;
  594. position:absolute;
  595. left:0px;
  596. top:0px;
  597. width:14px;
  598. height:14px;
  599. }
  600. #u11834_text {
  601. border-width:0px;
  602. word-wrap:break-word;
  603. text-transform:none;
  604. visibility:hidden;
  605. }
  606. #u11835 {
  607. border-width:0px;
  608. position:absolute;
  609. left:0px;
  610. top:0px;
  611. width:0px;
  612. height:0px;
  613. }
  614. #u11836_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. #u11836 {
  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. #u11836 .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. #u11836_text {
  656. border-width:0px;
  657. white-space:nowrap;
  658. text-transform:none;
  659. }
  660. #u11837 {
  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. #u11837 .text {
  671. position:absolute;
  672. align-self:center;
  673. padding:2px 2px 2px 2px;
  674. box-sizing:border-box;
  675. width:100%;
  676. }
  677. #u11837_img {
  678. border-width:0px;
  679. position:absolute;
  680. left:0px;
  681. top:0px;
  682. width:14px;
  683. height:14px;
  684. }
  685. #u11837_text {
  686. border-width:0px;
  687. word-wrap:break-word;
  688. text-transform:none;
  689. visibility:hidden;
  690. }
  691. #u11838 {
  692. border-width:0px;
  693. position:absolute;
  694. left:0px;
  695. top:0px;
  696. width:0px;
  697. height:0px;
  698. }
  699. #u11839_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. #u11839 {
  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. #u11839 .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. #u11839_text {
  741. border-width:0px;
  742. white-space:nowrap;
  743. text-transform:none;
  744. }
  745. #u11840 {
  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. #u11840 .text {
  756. position:absolute;
  757. align-self:center;
  758. padding:2px 2px 2px 2px;
  759. box-sizing:border-box;
  760. width:100%;
  761. }
  762. #u11840_img {
  763. border-width:0px;
  764. position:absolute;
  765. left:0px;
  766. top:0px;
  767. width:14px;
  768. height:14px;
  769. }
  770. #u11840_text {
  771. border-width:0px;
  772. word-wrap:break-word;
  773. text-transform:none;
  774. visibility:hidden;
  775. }
  776. #u11841 {
  777. border-width:0px;
  778. position:absolute;
  779. left:0px;
  780. top:0px;
  781. width:0px;
  782. height:0px;
  783. }
  784. #u11842_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. #u11842 {
  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. #u11842 .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. #u11842_text {
  826. border-width:0px;
  827. white-space:nowrap;
  828. text-transform:none;
  829. }
  830. #u11843 {
  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. #u11843 .text {
  841. position:absolute;
  842. align-self:center;
  843. padding:2px 2px 2px 2px;
  844. box-sizing:border-box;
  845. width:100%;
  846. }
  847. #u11843_img {
  848. border-width:0px;
  849. position:absolute;
  850. left:0px;
  851. top:0px;
  852. width:14px;
  853. height:14px;
  854. }
  855. #u11843_text {
  856. border-width:0px;
  857. word-wrap:break-word;
  858. text-transform:none;
  859. visibility:hidden;
  860. }
  861. #u11844 {
  862. border-width:0px;
  863. position:absolute;
  864. left:0px;
  865. top:0px;
  866. width:0px;
  867. height:0px;
  868. }
  869. #u11845_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. #u11845 {
  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. #u11845 .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. #u11845_text {
  911. border-width:0px;
  912. white-space:nowrap;
  913. text-transform:none;
  914. }
  915. #u11846 {
  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. #u11846 .text {
  926. position:absolute;
  927. align-self:center;
  928. padding:2px 2px 2px 2px;
  929. box-sizing:border-box;
  930. width:100%;
  931. }
  932. #u11846_img {
  933. border-width:0px;
  934. position:absolute;
  935. left:0px;
  936. top:0px;
  937. width:14px;
  938. height:14px;
  939. }
  940. #u11846_text {
  941. border-width:0px;
  942. word-wrap:break-word;
  943. text-transform:none;
  944. visibility:hidden;
  945. }
  946. #u11847 {
  947. border-width:0px;
  948. position:absolute;
  949. left:0px;
  950. top:0px;
  951. width:0px;
  952. height:0px;
  953. }
  954. #u11848_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. #u11848 {
  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. #u11848 .text {
  987. position:absolute;
  988. align-self:center;
  989. padding:0px 0px 0px 0px;
  990. box-sizing:border-box;
  991. width:100%;
  992. }
  993. #u11848_text {
  994. border-width:0px;
  995. white-space:nowrap;
  996. text-transform:none;
  997. }
  998. #u11849 {
  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. #u11849 .text {
  1009. position:absolute;
  1010. align-self:center;
  1011. padding:2px 2px 2px 2px;
  1012. box-sizing:border-box;
  1013. width:100%;
  1014. }
  1015. #u11849_img {
  1016. border-width:0px;
  1017. position:absolute;
  1018. left:0px;
  1019. top:0px;
  1020. width:22px;
  1021. height:22px;
  1022. }
  1023. #u11849_text {
  1024. border-width:0px;
  1025. word-wrap:break-word;
  1026. text-transform:none;
  1027. visibility:hidden;
  1028. }
  1029. #u11850 {
  1030. border-width:0px;
  1031. position:absolute;
  1032. left:0px;
  1033. top:0px;
  1034. width:0px;
  1035. height:0px;
  1036. }
  1037. #u11851_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. #u11851 {
  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. #u11851 .text {
  1070. position:absolute;
  1071. align-self:center;
  1072. padding:0px 0px 0px 0px;
  1073. box-sizing:border-box;
  1074. width:100%;
  1075. }
  1076. #u11851_text {
  1077. border-width:0px;
  1078. white-space:nowrap;
  1079. text-transform:none;
  1080. }
  1081. #u11852 {
  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. #u11852 .text {
  1092. position:absolute;
  1093. align-self:center;
  1094. padding:2px 2px 2px 2px;
  1095. box-sizing:border-box;
  1096. width:100%;
  1097. }
  1098. #u11852_img {
  1099. border-width:0px;
  1100. position:absolute;
  1101. left:0px;
  1102. top:0px;
  1103. width:22px;
  1104. height:22px;
  1105. }
  1106. #u11852_text {
  1107. border-width:0px;
  1108. word-wrap:break-word;
  1109. text-transform:none;
  1110. visibility:hidden;
  1111. }
  1112. #u11853 {
  1113. border-width:0px;
  1114. position:absolute;
  1115. left:0px;
  1116. top:0px;
  1117. width:0px;
  1118. height:0px;
  1119. }
  1120. #u11854_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. #u11854 {
  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. #u11854 .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. #u11854_text {
  1162. border-width:0px;
  1163. white-space:nowrap;
  1164. text-transform:none;
  1165. }
  1166. #u11855 {
  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. #u11855 .text {
  1177. position:absolute;
  1178. align-self:center;
  1179. padding:2px 2px 2px 2px;
  1180. box-sizing:border-box;
  1181. width:100%;
  1182. }
  1183. #u11855_img {
  1184. border-width:0px;
  1185. position:absolute;
  1186. left:0px;
  1187. top:0px;
  1188. width:14px;
  1189. height:14px;
  1190. }
  1191. #u11855_text {
  1192. border-width:0px;
  1193. word-wrap:break-word;
  1194. text-transform:none;
  1195. visibility:hidden;
  1196. }
  1197. #u11856 {
  1198. border-width:0px;
  1199. position:absolute;
  1200. left:0px;
  1201. top:0px;
  1202. width:0px;
  1203. height:0px;
  1204. }
  1205. #u11857_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. #u11857_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. #u11857_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. #u11857 {
  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. #u11857 .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. #u11857_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. #u11857.disabled {
  1294. }
  1295. .u11857_input_option {
  1296. font-size:14px;
  1297. }
  1298. #u11858 {
  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. #u11858 .text {
  1309. position:absolute;
  1310. align-self:center;
  1311. padding:2px 2px 2px 2px;
  1312. box-sizing:border-box;
  1313. width:100%;
  1314. }
  1315. #u11858_img {
  1316. border-width:0px;
  1317. position:absolute;
  1318. left:0px;
  1319. top:0px;
  1320. width:22px;
  1321. height:22px;
  1322. }
  1323. #u11858_text {
  1324. border-width:0px;
  1325. word-wrap:break-word;
  1326. text-transform:none;
  1327. visibility:hidden;
  1328. }
  1329. #u11859_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. #u11859 {
  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. #u11859 .text {
  1364. position:absolute;
  1365. align-self:center;
  1366. padding:0px 0px 0px 0px;
  1367. box-sizing:border-box;
  1368. width:100%;
  1369. }
  1370. #u11859_text {
  1371. border-width:0px;
  1372. word-wrap:break-word;
  1373. text-transform:none;
  1374. }
  1375. #u11860 {
  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. #u11860 .text {
  1386. position:absolute;
  1387. align-self:center;
  1388. padding:2px 2px 2px 2px;
  1389. box-sizing:border-box;
  1390. width:100%;
  1391. }
  1392. #u11860_img {
  1393. border-width:0px;
  1394. position:absolute;
  1395. left:0px;
  1396. top:0px;
  1397. width:2px;
  1398. height:12px;
  1399. }
  1400. #u11860_text {
  1401. border-width:0px;
  1402. word-wrap:break-word;
  1403. text-transform:none;
  1404. visibility:hidden;
  1405. }
  1406. #u11861 {
  1407. border-width:0px;
  1408. position:absolute;
  1409. left:0px;
  1410. top:0px;
  1411. width:0px;
  1412. height:0px;
  1413. }
  1414. #u11862_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. #u11862 {
  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. #u11862 .text {
  1447. position:absolute;
  1448. align-self:center;
  1449. padding:0px 0px 0px 0px;
  1450. box-sizing:border-box;
  1451. width:100%;
  1452. }
  1453. #u11862_text {
  1454. border-width:0px;
  1455. white-space:nowrap;
  1456. text-transform:none;
  1457. }
  1458. #u11863 {
  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. #u11863 .text {
  1469. position:absolute;
  1470. align-self:center;
  1471. padding:2px 2px 2px 2px;
  1472. box-sizing:border-box;
  1473. width:100%;
  1474. }
  1475. #u11863_img {
  1476. border-width:0px;
  1477. position:absolute;
  1478. left:0px;
  1479. top:0px;
  1480. width:22px;
  1481. height:22px;
  1482. }
  1483. #u11863_text {
  1484. border-width:0px;
  1485. word-wrap:break-word;
  1486. text-transform:none;
  1487. visibility:hidden;
  1488. }
  1489. #u11864 {
  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. #u11864 .text {
  1500. position:absolute;
  1501. align-self:center;
  1502. padding:2px 2px 2px 2px;
  1503. box-sizing:border-box;
  1504. width:100%;
  1505. }
  1506. #u11864_img {
  1507. border-width:0px;
  1508. position:absolute;
  1509. left:0px;
  1510. top:0px;
  1511. width:69px;
  1512. height:2px;
  1513. }
  1514. #u11864_text {
  1515. border-width:0px;
  1516. word-wrap:break-word;
  1517. text-transform:none;
  1518. visibility:hidden;
  1519. }
  1520. #u11865 {
  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. #u11865 .text {
  1531. position:absolute;
  1532. align-self:center;
  1533. padding:2px 2px 2px 2px;
  1534. box-sizing:border-box;
  1535. width:100%;
  1536. }
  1537. #u11865_img {
  1538. border-width:0px;
  1539. position:absolute;
  1540. left:0px;
  1541. top:0px;
  1542. width:69px;
  1543. height:2px;
  1544. }
  1545. #u11865_text {
  1546. border-width:0px;
  1547. word-wrap:break-word;
  1548. text-transform:none;
  1549. visibility:hidden;
  1550. }
  1551. #u11866 {
  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. #u11866 .text {
  1562. position:absolute;
  1563. align-self:center;
  1564. padding:2px 2px 2px 2px;
  1565. box-sizing:border-box;
  1566. width:100%;
  1567. }
  1568. #u11866_img {
  1569. border-width:0px;
  1570. position:absolute;
  1571. left:0px;
  1572. top:0px;
  1573. width:57px;
  1574. height:2px;
  1575. }
  1576. #u11866_text {
  1577. border-width:0px;
  1578. word-wrap:break-word;
  1579. text-transform:none;
  1580. visibility:hidden;
  1581. }
  1582. #u11867 {
  1583. border-width:0px;
  1584. position:absolute;
  1585. left:0px;
  1586. top:0px;
  1587. width:0px;
  1588. height:0px;
  1589. }
  1590. #u11868_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. #u11868 {
  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. #u11868 .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. #u11868_text {
  1632. border-width:0px;
  1633. white-space:nowrap;
  1634. text-transform:none;
  1635. }
  1636. #u11869 {
  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. #u11869 .text {
  1647. position:absolute;
  1648. align-self:center;
  1649. padding:2px 2px 2px 2px;
  1650. box-sizing:border-box;
  1651. width:100%;
  1652. }
  1653. #u11869_img {
  1654. border-width:0px;
  1655. position:absolute;
  1656. left:0px;
  1657. top:0px;
  1658. width:18px;
  1659. height:14px;
  1660. }
  1661. #u11869_text {
  1662. border-width:0px;
  1663. word-wrap:break-word;
  1664. text-transform:none;
  1665. visibility:hidden;
  1666. }
  1667. #u11870_div {
  1668. border-width:0px;
  1669. position:absolute;
  1670. left:0px;
  1671. top:0px;
  1672. width:1265px;
  1673. height:1180px;
  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. #u11870 {
  1682. border-width:0px;
  1683. position:absolute;
  1684. left:329px;
  1685. top:50px;
  1686. width:1265px;
  1687. height:1180px;
  1688. display:flex;
  1689. transition:none;
  1690. transform-origin:50% 50%;
  1691. color:#1890FF;
  1692. }
  1693. #u11870 .text {
  1694. position:absolute;
  1695. align-self:center;
  1696. padding:2px 2px 2px 2px;
  1697. box-sizing:border-box;
  1698. width:100%;
  1699. }
  1700. #u11870_text {
  1701. border-width:0px;
  1702. word-wrap:break-word;
  1703. text-transform:none;
  1704. visibility:hidden;
  1705. }
  1706. #u11871_div {
  1707. border-width:0px;
  1708. position:absolute;
  1709. left:0px;
  1710. top:0px;
  1711. width:73px;
  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-Regular', 'PingFang SC', sans-serif;
  1724. font-weight:400;
  1725. font-style:normal;
  1726. font-size:18px;
  1727. }
  1728. #u11871 {
  1729. border-width:0px;
  1730. position:absolute;
  1731. left:349px;
  1732. top:50px;
  1733. width:73px;
  1734. height:50px;
  1735. display:flex;
  1736. transition:none;
  1737. transform-origin:50% 50%;
  1738. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1739. font-weight:400;
  1740. font-style:normal;
  1741. font-size:18px;
  1742. }
  1743. #u11871 .text {
  1744. position:absolute;
  1745. align-self:center;
  1746. padding:0px 0px 0px 0px;
  1747. box-sizing:border-box;
  1748. width:100%;
  1749. }
  1750. #u11871_text {
  1751. border-width:0px;
  1752. white-space:nowrap;
  1753. text-transform:none;
  1754. }
  1755. #u11872 {
  1756. border-width:0px;
  1757. position:absolute;
  1758. left:0px;
  1759. top:0px;
  1760. width:0px;
  1761. height:0px;
  1762. }
  1763. #u11873_div {
  1764. border-width:0px;
  1765. position:absolute;
  1766. left:0px;
  1767. top:0px;
  1768. width:59px;
  1769. height:30px;
  1770. background:inherit;
  1771. background-color:rgba(24, 144, 255, 1);
  1772. box-sizing:border-box;
  1773. border-width:1px;
  1774. border-style:solid;
  1775. border-color:rgba(0, 153, 255, 1);
  1776. border-radius:4px;
  1777. filter:drop-shadow(none);
  1778. transition:none;
  1779. font-family:"Microsoft YaHei", sans-serif;
  1780. font-weight:400;
  1781. font-style:normal;
  1782. font-size:14px;
  1783. color:#FFFFFF;
  1784. }
  1785. #u11873 {
  1786. border-width:0px;
  1787. position:absolute;
  1788. left:806px;
  1789. top:145px;
  1790. width:59px;
  1791. height:30px;
  1792. display:flex;
  1793. transition:none;
  1794. transform-origin:50% 50%;
  1795. font-family:"Microsoft YaHei", sans-serif;
  1796. font-weight:400;
  1797. font-style:normal;
  1798. font-size:14px;
  1799. color:#FFFFFF;
  1800. }
  1801. #u11873 .text {
  1802. position:absolute;
  1803. align-self:center;
  1804. padding:5px 15px 5px 15px;
  1805. box-sizing:border-box;
  1806. width:100%;
  1807. }
  1808. #u11873_text {
  1809. border-width:0px;
  1810. white-space:nowrap;
  1811. text-transform:none;
  1812. }
  1813. #u11874_div {
  1814. border-width:0px;
  1815. position:absolute;
  1816. left:0px;
  1817. top:0px;
  1818. width:55px;
  1819. height:30px;
  1820. background:inherit;
  1821. background-color:rgba(255, 255, 255, 1);
  1822. box-sizing:border-box;
  1823. border-width:1px;
  1824. border-style:solid;
  1825. border-color:rgba(170, 170, 170, 1);
  1826. border-radius:4px;
  1827. filter:drop-shadow(none);
  1828. transition:none;
  1829. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1830. font-weight:400;
  1831. font-style:normal;
  1832. font-size:12px;
  1833. color:#555555;
  1834. }
  1835. #u11874 {
  1836. border-width:0px;
  1837. position:absolute;
  1838. left:875px;
  1839. top:145px;
  1840. width:55px;
  1841. height:30px;
  1842. display:flex;
  1843. transition:none;
  1844. transform-origin:50% 50%;
  1845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1846. font-weight:400;
  1847. font-style:normal;
  1848. font-size:12px;
  1849. color:#555555;
  1850. }
  1851. #u11874 .text {
  1852. position:absolute;
  1853. align-self:center;
  1854. padding:5px 15px 5px 15px;
  1855. box-sizing:border-box;
  1856. width:100%;
  1857. }
  1858. #u11874_text {
  1859. border-width:0px;
  1860. white-space:nowrap;
  1861. text-transform:none;
  1862. }
  1863. #u11875 {
  1864. border-width:0px;
  1865. position:absolute;
  1866. left:356px;
  1867. top:235px;
  1868. width:1214px;
  1869. height:328px;
  1870. }
  1871. #u11876 {
  1872. border-width:0px;
  1873. position:absolute;
  1874. left:0px;
  1875. top:0px;
  1876. width:122px;
  1877. height:44px;
  1878. display:flex;
  1879. transition:none;
  1880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1881. font-weight:400;
  1882. font-style:normal;
  1883. font-size:12px;
  1884. color:#FFFFFF;
  1885. }
  1886. #u11876 .text {
  1887. position:absolute;
  1888. align-self:center;
  1889. padding:2px 2px 2px 0px;
  1890. box-sizing:border-box;
  1891. width:100%;
  1892. }
  1893. #u11876_img {
  1894. border-width:0px;
  1895. position:absolute;
  1896. left:0px;
  1897. top:0px;
  1898. width:122px;
  1899. height:44px;
  1900. }
  1901. #u11876_text {
  1902. border-width:0px;
  1903. word-wrap:break-word;
  1904. text-transform:none;
  1905. }
  1906. #u11877 {
  1907. border-width:0px;
  1908. position:absolute;
  1909. left:122px;
  1910. top:0px;
  1911. width:273px;
  1912. height:44px;
  1913. display:flex;
  1914. transition:none;
  1915. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1916. font-weight:400;
  1917. font-style:normal;
  1918. font-size:12px;
  1919. color:#FFFFFF;
  1920. }
  1921. #u11877 .text {
  1922. position:absolute;
  1923. align-self:center;
  1924. padding:2px 2px 2px 0px;
  1925. box-sizing:border-box;
  1926. width:100%;
  1927. }
  1928. #u11877_img {
  1929. border-width:0px;
  1930. position:absolute;
  1931. left:0px;
  1932. top:0px;
  1933. width:273px;
  1934. height:44px;
  1935. }
  1936. #u11877_text {
  1937. border-width:0px;
  1938. word-wrap:break-word;
  1939. text-transform:none;
  1940. }
  1941. #u11878 {
  1942. border-width:0px;
  1943. position:absolute;
  1944. left:395px;
  1945. top:0px;
  1946. width:312px;
  1947. height:44px;
  1948. display:flex;
  1949. transition:none;
  1950. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1951. font-weight:400;
  1952. font-style:normal;
  1953. font-size:12px;
  1954. color:#FFFFFF;
  1955. }
  1956. #u11878 .text {
  1957. position:absolute;
  1958. align-self:center;
  1959. padding:2px 2px 2px 0px;
  1960. box-sizing:border-box;
  1961. width:100%;
  1962. }
  1963. #u11878_img {
  1964. border-width:0px;
  1965. position:absolute;
  1966. left:0px;
  1967. top:0px;
  1968. width:312px;
  1969. height:44px;
  1970. }
  1971. #u11878_text {
  1972. border-width:0px;
  1973. word-wrap:break-word;
  1974. text-transform:none;
  1975. }
  1976. #u11879 {
  1977. border-width:0px;
  1978. position:absolute;
  1979. left:707px;
  1980. top:0px;
  1981. width:312px;
  1982. height:44px;
  1983. display:flex;
  1984. transition:none;
  1985. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  1986. font-weight:400;
  1987. font-style:normal;
  1988. font-size:12px;
  1989. color:#FFFFFF;
  1990. }
  1991. #u11879 .text {
  1992. position:absolute;
  1993. align-self:center;
  1994. padding:2px 2px 2px 0px;
  1995. box-sizing:border-box;
  1996. width:100%;
  1997. }
  1998. #u11879_img {
  1999. border-width:0px;
  2000. position:absolute;
  2001. left:0px;
  2002. top:0px;
  2003. width:312px;
  2004. height:44px;
  2005. }
  2006. #u11879_text {
  2007. border-width:0px;
  2008. word-wrap:break-word;
  2009. text-transform:none;
  2010. }
  2011. #u11880 {
  2012. border-width:0px;
  2013. position:absolute;
  2014. left:1019px;
  2015. top:0px;
  2016. width:195px;
  2017. height:44px;
  2018. display:flex;
  2019. transition:none;
  2020. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2021. font-weight:400;
  2022. font-style:normal;
  2023. font-size:12px;
  2024. color:#FFFFFF;
  2025. }
  2026. #u11880 .text {
  2027. position:absolute;
  2028. align-self:center;
  2029. padding:2px 2px 2px 0px;
  2030. box-sizing:border-box;
  2031. width:100%;
  2032. }
  2033. #u11880_img {
  2034. border-width:0px;
  2035. position:absolute;
  2036. left:0px;
  2037. top:0px;
  2038. width:195px;
  2039. height:44px;
  2040. }
  2041. #u11880_text {
  2042. border-width:0px;
  2043. word-wrap:break-word;
  2044. text-transform:none;
  2045. }
  2046. #u11881 {
  2047. border-width:0px;
  2048. position:absolute;
  2049. left:0px;
  2050. top:44px;
  2051. width:122px;
  2052. height:38px;
  2053. display:flex;
  2054. transition:none;
  2055. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2056. font-weight:400;
  2057. font-style:normal;
  2058. font-size:12px;
  2059. color:#333333;
  2060. }
  2061. #u11881 .text {
  2062. position:absolute;
  2063. align-self:center;
  2064. padding:2px 2px 2px 0px;
  2065. box-sizing:border-box;
  2066. width:100%;
  2067. }
  2068. #u11881_img {
  2069. border-width:0px;
  2070. position:absolute;
  2071. left:0px;
  2072. top:0px;
  2073. width:122px;
  2074. height:38px;
  2075. }
  2076. #u11881_text {
  2077. border-width:0px;
  2078. word-wrap:break-word;
  2079. text-transform:none;
  2080. visibility:hidden;
  2081. }
  2082. #u11882 {
  2083. border-width:0px;
  2084. position:absolute;
  2085. left:122px;
  2086. top:44px;
  2087. width:273px;
  2088. height:38px;
  2089. display:flex;
  2090. transition:none;
  2091. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2092. font-weight:400;
  2093. font-style:normal;
  2094. font-size:12px;
  2095. color:#333333;
  2096. }
  2097. #u11882 .text {
  2098. position:absolute;
  2099. align-self:center;
  2100. padding:2px 2px 2px 0px;
  2101. box-sizing:border-box;
  2102. width:100%;
  2103. }
  2104. #u11882_img {
  2105. border-width:0px;
  2106. position:absolute;
  2107. left:0px;
  2108. top:0px;
  2109. width:273px;
  2110. height:38px;
  2111. }
  2112. #u11882_text {
  2113. border-width:0px;
  2114. word-wrap:break-word;
  2115. text-transform:none;
  2116. visibility:hidden;
  2117. }
  2118. #u11883 {
  2119. border-width:0px;
  2120. position:absolute;
  2121. left:395px;
  2122. top:44px;
  2123. width:312px;
  2124. height:38px;
  2125. display:flex;
  2126. transition:none;
  2127. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2128. font-weight:400;
  2129. font-style:normal;
  2130. font-size:12px;
  2131. color:#333333;
  2132. }
  2133. #u11883 .text {
  2134. position:absolute;
  2135. align-self:center;
  2136. padding:2px 2px 2px 0px;
  2137. box-sizing:border-box;
  2138. width:100%;
  2139. }
  2140. #u11883_img {
  2141. border-width:0px;
  2142. position:absolute;
  2143. left:0px;
  2144. top:0px;
  2145. width:312px;
  2146. height:38px;
  2147. }
  2148. #u11883_text {
  2149. border-width:0px;
  2150. word-wrap:break-word;
  2151. text-transform:none;
  2152. visibility:hidden;
  2153. }
  2154. #u11884 {
  2155. border-width:0px;
  2156. position:absolute;
  2157. left:707px;
  2158. top:44px;
  2159. width:312px;
  2160. height:38px;
  2161. display:flex;
  2162. transition:none;
  2163. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2164. font-weight:400;
  2165. font-style:normal;
  2166. font-size:12px;
  2167. color:#333333;
  2168. }
  2169. #u11884 .text {
  2170. position:absolute;
  2171. align-self:center;
  2172. padding:2px 2px 2px 0px;
  2173. box-sizing:border-box;
  2174. width:100%;
  2175. }
  2176. #u11884_img {
  2177. border-width:0px;
  2178. position:absolute;
  2179. left:0px;
  2180. top:0px;
  2181. width:312px;
  2182. height:38px;
  2183. }
  2184. #u11884_text {
  2185. border-width:0px;
  2186. word-wrap:break-word;
  2187. text-transform:none;
  2188. visibility:hidden;
  2189. }
  2190. #u11885 {
  2191. border-width:0px;
  2192. position:absolute;
  2193. left:1019px;
  2194. top:44px;
  2195. width:195px;
  2196. height:38px;
  2197. display:flex;
  2198. transition:none;
  2199. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2200. font-weight:400;
  2201. font-style:normal;
  2202. font-size:12px;
  2203. color:#0089FE;
  2204. }
  2205. #u11885 .text {
  2206. position:absolute;
  2207. align-self:center;
  2208. padding:2px 2px 2px 0px;
  2209. box-sizing:border-box;
  2210. width:100%;
  2211. }
  2212. #u11885_img {
  2213. border-width:0px;
  2214. position:absolute;
  2215. left:0px;
  2216. top:0px;
  2217. width:195px;
  2218. height:38px;
  2219. }
  2220. #u11885_text {
  2221. border-width:0px;
  2222. word-wrap:break-word;
  2223. text-transform:none;
  2224. }
  2225. #u11886 {
  2226. border-width:0px;
  2227. position:absolute;
  2228. left:0px;
  2229. top:82px;
  2230. width:122px;
  2231. height:38px;
  2232. display:flex;
  2233. transition:none;
  2234. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2235. font-weight:400;
  2236. font-style:normal;
  2237. font-size:12px;
  2238. color:#333333;
  2239. }
  2240. #u11886 .text {
  2241. position:absolute;
  2242. align-self:center;
  2243. padding:2px 2px 2px 0px;
  2244. box-sizing:border-box;
  2245. width:100%;
  2246. }
  2247. #u11886_img {
  2248. border-width:0px;
  2249. position:absolute;
  2250. left:0px;
  2251. top:0px;
  2252. width:122px;
  2253. height:38px;
  2254. }
  2255. #u11886_text {
  2256. border-width:0px;
  2257. word-wrap:break-word;
  2258. text-transform:none;
  2259. visibility:hidden;
  2260. }
  2261. #u11887 {
  2262. border-width:0px;
  2263. position:absolute;
  2264. left:122px;
  2265. top:82px;
  2266. width:273px;
  2267. height:38px;
  2268. display:flex;
  2269. transition:none;
  2270. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2271. font-weight:400;
  2272. font-style:normal;
  2273. font-size:12px;
  2274. color:#333333;
  2275. }
  2276. #u11887 .text {
  2277. position:absolute;
  2278. align-self:center;
  2279. padding:2px 2px 2px 0px;
  2280. box-sizing:border-box;
  2281. width:100%;
  2282. }
  2283. #u11887_img {
  2284. border-width:0px;
  2285. position:absolute;
  2286. left:0px;
  2287. top:0px;
  2288. width:273px;
  2289. height:38px;
  2290. }
  2291. #u11887_text {
  2292. border-width:0px;
  2293. word-wrap:break-word;
  2294. text-transform:none;
  2295. visibility:hidden;
  2296. }
  2297. #u11888 {
  2298. border-width:0px;
  2299. position:absolute;
  2300. left:395px;
  2301. top:82px;
  2302. width:312px;
  2303. height:38px;
  2304. display:flex;
  2305. transition:none;
  2306. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2307. font-weight:400;
  2308. font-style:normal;
  2309. font-size:12px;
  2310. color:#333333;
  2311. }
  2312. #u11888 .text {
  2313. position:absolute;
  2314. align-self:center;
  2315. padding:2px 2px 2px 0px;
  2316. box-sizing:border-box;
  2317. width:100%;
  2318. }
  2319. #u11888_img {
  2320. border-width:0px;
  2321. position:absolute;
  2322. left:0px;
  2323. top:0px;
  2324. width:312px;
  2325. height:38px;
  2326. }
  2327. #u11888_text {
  2328. border-width:0px;
  2329. word-wrap:break-word;
  2330. text-transform:none;
  2331. visibility:hidden;
  2332. }
  2333. #u11889 {
  2334. border-width:0px;
  2335. position:absolute;
  2336. left:707px;
  2337. top:82px;
  2338. width:312px;
  2339. height:38px;
  2340. display:flex;
  2341. transition:none;
  2342. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2343. font-weight:400;
  2344. font-style:normal;
  2345. font-size:12px;
  2346. color:#333333;
  2347. }
  2348. #u11889 .text {
  2349. position:absolute;
  2350. align-self:center;
  2351. padding:2px 2px 2px 0px;
  2352. box-sizing:border-box;
  2353. width:100%;
  2354. }
  2355. #u11889_img {
  2356. border-width:0px;
  2357. position:absolute;
  2358. left:0px;
  2359. top:0px;
  2360. width:312px;
  2361. height:38px;
  2362. }
  2363. #u11889_text {
  2364. border-width:0px;
  2365. word-wrap:break-word;
  2366. text-transform:none;
  2367. visibility:hidden;
  2368. }
  2369. #u11890 {
  2370. border-width:0px;
  2371. position:absolute;
  2372. left:1019px;
  2373. top:82px;
  2374. width:195px;
  2375. height:38px;
  2376. display:flex;
  2377. transition:none;
  2378. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2379. font-weight:400;
  2380. font-style:normal;
  2381. font-size:12px;
  2382. color:#0089FE;
  2383. }
  2384. #u11890 .text {
  2385. position:absolute;
  2386. align-self:center;
  2387. padding:2px 2px 2px 0px;
  2388. box-sizing:border-box;
  2389. width:100%;
  2390. }
  2391. #u11890_img {
  2392. border-width:0px;
  2393. position:absolute;
  2394. left:0px;
  2395. top:0px;
  2396. width:195px;
  2397. height:38px;
  2398. }
  2399. #u11890_text {
  2400. border-width:0px;
  2401. word-wrap:break-word;
  2402. text-transform:none;
  2403. }
  2404. #u11891 {
  2405. border-width:0px;
  2406. position:absolute;
  2407. left:0px;
  2408. top:120px;
  2409. width:122px;
  2410. height:38px;
  2411. display:flex;
  2412. transition:none;
  2413. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2414. font-weight:400;
  2415. font-style:normal;
  2416. font-size:12px;
  2417. color:#333333;
  2418. }
  2419. #u11891 .text {
  2420. position:absolute;
  2421. align-self:center;
  2422. padding:2px 2px 2px 0px;
  2423. box-sizing:border-box;
  2424. width:100%;
  2425. }
  2426. #u11891_img {
  2427. border-width:0px;
  2428. position:absolute;
  2429. left:0px;
  2430. top:0px;
  2431. width:122px;
  2432. height:38px;
  2433. }
  2434. #u11891_text {
  2435. border-width:0px;
  2436. word-wrap:break-word;
  2437. text-transform:none;
  2438. visibility:hidden;
  2439. }
  2440. #u11892 {
  2441. border-width:0px;
  2442. position:absolute;
  2443. left:122px;
  2444. top:120px;
  2445. width:273px;
  2446. height:38px;
  2447. display:flex;
  2448. transition:none;
  2449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2450. font-weight:400;
  2451. font-style:normal;
  2452. font-size:12px;
  2453. color:#333333;
  2454. }
  2455. #u11892 .text {
  2456. position:absolute;
  2457. align-self:center;
  2458. padding:2px 2px 2px 0px;
  2459. box-sizing:border-box;
  2460. width:100%;
  2461. }
  2462. #u11892_img {
  2463. border-width:0px;
  2464. position:absolute;
  2465. left:0px;
  2466. top:0px;
  2467. width:273px;
  2468. height:38px;
  2469. }
  2470. #u11892_text {
  2471. border-width:0px;
  2472. word-wrap:break-word;
  2473. text-transform:none;
  2474. visibility:hidden;
  2475. }
  2476. #u11893 {
  2477. border-width:0px;
  2478. position:absolute;
  2479. left:395px;
  2480. top:120px;
  2481. width:312px;
  2482. height:38px;
  2483. display:flex;
  2484. transition:none;
  2485. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2486. font-weight:400;
  2487. font-style:normal;
  2488. font-size:12px;
  2489. color:#333333;
  2490. }
  2491. #u11893 .text {
  2492. position:absolute;
  2493. align-self:center;
  2494. padding:2px 2px 2px 0px;
  2495. box-sizing:border-box;
  2496. width:100%;
  2497. }
  2498. #u11893_img {
  2499. border-width:0px;
  2500. position:absolute;
  2501. left:0px;
  2502. top:0px;
  2503. width:312px;
  2504. height:38px;
  2505. }
  2506. #u11893_text {
  2507. border-width:0px;
  2508. word-wrap:break-word;
  2509. text-transform:none;
  2510. visibility:hidden;
  2511. }
  2512. #u11894 {
  2513. border-width:0px;
  2514. position:absolute;
  2515. left:707px;
  2516. top:120px;
  2517. width:312px;
  2518. height:38px;
  2519. display:flex;
  2520. transition:none;
  2521. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2522. font-weight:400;
  2523. font-style:normal;
  2524. font-size:12px;
  2525. color:#333333;
  2526. }
  2527. #u11894 .text {
  2528. position:absolute;
  2529. align-self:center;
  2530. padding:2px 2px 2px 0px;
  2531. box-sizing:border-box;
  2532. width:100%;
  2533. }
  2534. #u11894_img {
  2535. border-width:0px;
  2536. position:absolute;
  2537. left:0px;
  2538. top:0px;
  2539. width:312px;
  2540. height:38px;
  2541. }
  2542. #u11894_text {
  2543. border-width:0px;
  2544. word-wrap:break-word;
  2545. text-transform:none;
  2546. visibility:hidden;
  2547. }
  2548. #u11895 {
  2549. border-width:0px;
  2550. position:absolute;
  2551. left:1019px;
  2552. top:120px;
  2553. width:195px;
  2554. height:38px;
  2555. display:flex;
  2556. transition:none;
  2557. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2558. font-weight:400;
  2559. font-style:normal;
  2560. font-size:12px;
  2561. color:#0089FE;
  2562. }
  2563. #u11895 .text {
  2564. position:absolute;
  2565. align-self:center;
  2566. padding:2px 2px 2px 0px;
  2567. box-sizing:border-box;
  2568. width:100%;
  2569. }
  2570. #u11895_img {
  2571. border-width:0px;
  2572. position:absolute;
  2573. left:0px;
  2574. top:0px;
  2575. width:195px;
  2576. height:38px;
  2577. }
  2578. #u11895_text {
  2579. border-width:0px;
  2580. word-wrap:break-word;
  2581. text-transform:none;
  2582. visibility:hidden;
  2583. }
  2584. #u11896 {
  2585. border-width:0px;
  2586. position:absolute;
  2587. left:0px;
  2588. top:158px;
  2589. width:122px;
  2590. height:38px;
  2591. display:flex;
  2592. transition:none;
  2593. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2594. font-weight:400;
  2595. font-style:normal;
  2596. font-size:12px;
  2597. color:#333333;
  2598. }
  2599. #u11896 .text {
  2600. position:absolute;
  2601. align-self:center;
  2602. padding:2px 2px 2px 0px;
  2603. box-sizing:border-box;
  2604. width:100%;
  2605. }
  2606. #u11896_img {
  2607. border-width:0px;
  2608. position:absolute;
  2609. left:0px;
  2610. top:0px;
  2611. width:122px;
  2612. height:38px;
  2613. }
  2614. #u11896_text {
  2615. border-width:0px;
  2616. word-wrap:break-word;
  2617. text-transform:none;
  2618. visibility:hidden;
  2619. }
  2620. #u11897 {
  2621. border-width:0px;
  2622. position:absolute;
  2623. left:122px;
  2624. top:158px;
  2625. width:273px;
  2626. height:38px;
  2627. display:flex;
  2628. transition:none;
  2629. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2630. font-weight:400;
  2631. font-style:normal;
  2632. font-size:12px;
  2633. color:#333333;
  2634. }
  2635. #u11897 .text {
  2636. position:absolute;
  2637. align-self:center;
  2638. padding:2px 2px 2px 0px;
  2639. box-sizing:border-box;
  2640. width:100%;
  2641. }
  2642. #u11897_img {
  2643. border-width:0px;
  2644. position:absolute;
  2645. left:0px;
  2646. top:0px;
  2647. width:273px;
  2648. height:38px;
  2649. }
  2650. #u11897_text {
  2651. border-width:0px;
  2652. word-wrap:break-word;
  2653. text-transform:none;
  2654. visibility:hidden;
  2655. }
  2656. #u11898 {
  2657. border-width:0px;
  2658. position:absolute;
  2659. left:395px;
  2660. top:158px;
  2661. width:312px;
  2662. height:38px;
  2663. display:flex;
  2664. transition:none;
  2665. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2666. font-weight:400;
  2667. font-style:normal;
  2668. font-size:12px;
  2669. color:#333333;
  2670. }
  2671. #u11898 .text {
  2672. position:absolute;
  2673. align-self:center;
  2674. padding:2px 2px 2px 0px;
  2675. box-sizing:border-box;
  2676. width:100%;
  2677. }
  2678. #u11898_img {
  2679. border-width:0px;
  2680. position:absolute;
  2681. left:0px;
  2682. top:0px;
  2683. width:312px;
  2684. height:38px;
  2685. }
  2686. #u11898_text {
  2687. border-width:0px;
  2688. word-wrap:break-word;
  2689. text-transform:none;
  2690. visibility:hidden;
  2691. }
  2692. #u11899 {
  2693. border-width:0px;
  2694. position:absolute;
  2695. left:707px;
  2696. top:158px;
  2697. width:312px;
  2698. height:38px;
  2699. display:flex;
  2700. transition:none;
  2701. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2702. font-weight:400;
  2703. font-style:normal;
  2704. font-size:12px;
  2705. color:#333333;
  2706. }
  2707. #u11899 .text {
  2708. position:absolute;
  2709. align-self:center;
  2710. padding:2px 2px 2px 0px;
  2711. box-sizing:border-box;
  2712. width:100%;
  2713. }
  2714. #u11899_img {
  2715. border-width:0px;
  2716. position:absolute;
  2717. left:0px;
  2718. top:0px;
  2719. width:312px;
  2720. height:38px;
  2721. }
  2722. #u11899_text {
  2723. border-width:0px;
  2724. word-wrap:break-word;
  2725. text-transform:none;
  2726. visibility:hidden;
  2727. }
  2728. #u11900 {
  2729. border-width:0px;
  2730. position:absolute;
  2731. left:1019px;
  2732. top:158px;
  2733. width:195px;
  2734. height:38px;
  2735. display:flex;
  2736. transition:none;
  2737. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2738. font-weight:400;
  2739. font-style:normal;
  2740. font-size:12px;
  2741. color:#AAAAAA;
  2742. }
  2743. #u11900 .text {
  2744. position:absolute;
  2745. align-self:center;
  2746. padding:2px 2px 2px 0px;
  2747. box-sizing:border-box;
  2748. width:100%;
  2749. }
  2750. #u11900_img {
  2751. border-width:0px;
  2752. position:absolute;
  2753. left:0px;
  2754. top:0px;
  2755. width:195px;
  2756. height:38px;
  2757. }
  2758. #u11900_text {
  2759. border-width:0px;
  2760. word-wrap:break-word;
  2761. text-transform:none;
  2762. visibility:hidden;
  2763. }
  2764. #u11901 {
  2765. border-width:0px;
  2766. position:absolute;
  2767. left:0px;
  2768. top:196px;
  2769. width:122px;
  2770. height:35px;
  2771. display:flex;
  2772. transition:none;
  2773. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2774. font-weight:400;
  2775. font-style:normal;
  2776. font-size:12px;
  2777. color:#333333;
  2778. }
  2779. #u11901 .text {
  2780. position:absolute;
  2781. align-self:center;
  2782. padding:2px 2px 2px 0px;
  2783. box-sizing:border-box;
  2784. width:100%;
  2785. }
  2786. #u11901_img {
  2787. border-width:0px;
  2788. position:absolute;
  2789. left:0px;
  2790. top:0px;
  2791. width:122px;
  2792. height:35px;
  2793. }
  2794. #u11901_text {
  2795. border-width:0px;
  2796. word-wrap:break-word;
  2797. text-transform:none;
  2798. visibility:hidden;
  2799. }
  2800. #u11902 {
  2801. border-width:0px;
  2802. position:absolute;
  2803. left:122px;
  2804. top:196px;
  2805. width:273px;
  2806. height:35px;
  2807. display:flex;
  2808. transition:none;
  2809. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2810. font-weight:400;
  2811. font-style:normal;
  2812. font-size:12px;
  2813. color:#333333;
  2814. }
  2815. #u11902 .text {
  2816. position:absolute;
  2817. align-self:center;
  2818. padding:2px 2px 2px 0px;
  2819. box-sizing:border-box;
  2820. width:100%;
  2821. }
  2822. #u11902_img {
  2823. border-width:0px;
  2824. position:absolute;
  2825. left:0px;
  2826. top:0px;
  2827. width:273px;
  2828. height:35px;
  2829. }
  2830. #u11902_text {
  2831. border-width:0px;
  2832. word-wrap:break-word;
  2833. text-transform:none;
  2834. visibility:hidden;
  2835. }
  2836. #u11903 {
  2837. border-width:0px;
  2838. position:absolute;
  2839. left:395px;
  2840. top:196px;
  2841. width:312px;
  2842. height:35px;
  2843. display:flex;
  2844. transition:none;
  2845. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2846. font-weight:400;
  2847. font-style:normal;
  2848. font-size:12px;
  2849. color:#333333;
  2850. }
  2851. #u11903 .text {
  2852. position:absolute;
  2853. align-self:center;
  2854. padding:2px 2px 2px 0px;
  2855. box-sizing:border-box;
  2856. width:100%;
  2857. }
  2858. #u11903_img {
  2859. border-width:0px;
  2860. position:absolute;
  2861. left:0px;
  2862. top:0px;
  2863. width:312px;
  2864. height:35px;
  2865. }
  2866. #u11903_text {
  2867. border-width:0px;
  2868. word-wrap:break-word;
  2869. text-transform:none;
  2870. visibility:hidden;
  2871. }
  2872. #u11904 {
  2873. border-width:0px;
  2874. position:absolute;
  2875. left:707px;
  2876. top:196px;
  2877. width:312px;
  2878. height:35px;
  2879. display:flex;
  2880. transition:none;
  2881. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2882. font-weight:400;
  2883. font-style:normal;
  2884. font-size:12px;
  2885. color:#333333;
  2886. }
  2887. #u11904 .text {
  2888. position:absolute;
  2889. align-self:center;
  2890. padding:2px 2px 2px 0px;
  2891. box-sizing:border-box;
  2892. width:100%;
  2893. }
  2894. #u11904_img {
  2895. border-width:0px;
  2896. position:absolute;
  2897. left:0px;
  2898. top:0px;
  2899. width:312px;
  2900. height:35px;
  2901. }
  2902. #u11904_text {
  2903. border-width:0px;
  2904. word-wrap:break-word;
  2905. text-transform:none;
  2906. visibility:hidden;
  2907. }
  2908. #u11905 {
  2909. border-width:0px;
  2910. position:absolute;
  2911. left:1019px;
  2912. top:196px;
  2913. width:195px;
  2914. height:35px;
  2915. display:flex;
  2916. transition:none;
  2917. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2918. font-weight:400;
  2919. font-style:normal;
  2920. font-size:12px;
  2921. color:#AAAAAA;
  2922. }
  2923. #u11905 .text {
  2924. position:absolute;
  2925. align-self:center;
  2926. padding:2px 2px 2px 0px;
  2927. box-sizing:border-box;
  2928. width:100%;
  2929. }
  2930. #u11905_img {
  2931. border-width:0px;
  2932. position:absolute;
  2933. left:0px;
  2934. top:0px;
  2935. width:195px;
  2936. height:35px;
  2937. }
  2938. #u11905_text {
  2939. border-width:0px;
  2940. word-wrap:break-word;
  2941. text-transform:none;
  2942. visibility:hidden;
  2943. }
  2944. #u11906 {
  2945. border-width:0px;
  2946. position:absolute;
  2947. left:0px;
  2948. top:231px;
  2949. width:122px;
  2950. height:35px;
  2951. display:flex;
  2952. transition:none;
  2953. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2954. font-weight:400;
  2955. font-style:normal;
  2956. font-size:12px;
  2957. color:#333333;
  2958. }
  2959. #u11906 .text {
  2960. position:absolute;
  2961. align-self:center;
  2962. padding:2px 2px 2px 0px;
  2963. box-sizing:border-box;
  2964. width:100%;
  2965. }
  2966. #u11906_img {
  2967. border-width:0px;
  2968. position:absolute;
  2969. left:0px;
  2970. top:0px;
  2971. width:122px;
  2972. height:35px;
  2973. }
  2974. #u11906_text {
  2975. border-width:0px;
  2976. word-wrap:break-word;
  2977. text-transform:none;
  2978. visibility:hidden;
  2979. }
  2980. #u11907 {
  2981. border-width:0px;
  2982. position:absolute;
  2983. left:122px;
  2984. top:231px;
  2985. width:273px;
  2986. height:35px;
  2987. display:flex;
  2988. transition:none;
  2989. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  2990. font-weight:400;
  2991. font-style:normal;
  2992. font-size:12px;
  2993. color:#333333;
  2994. }
  2995. #u11907 .text {
  2996. position:absolute;
  2997. align-self:center;
  2998. padding:2px 2px 2px 0px;
  2999. box-sizing:border-box;
  3000. width:100%;
  3001. }
  3002. #u11907_img {
  3003. border-width:0px;
  3004. position:absolute;
  3005. left:0px;
  3006. top:0px;
  3007. width:273px;
  3008. height:35px;
  3009. }
  3010. #u11907_text {
  3011. border-width:0px;
  3012. word-wrap:break-word;
  3013. text-transform:none;
  3014. visibility:hidden;
  3015. }
  3016. #u11908 {
  3017. border-width:0px;
  3018. position:absolute;
  3019. left:395px;
  3020. top:231px;
  3021. width:312px;
  3022. height:35px;
  3023. display:flex;
  3024. transition:none;
  3025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3026. font-weight:400;
  3027. font-style:normal;
  3028. font-size:12px;
  3029. color:#333333;
  3030. }
  3031. #u11908 .text {
  3032. position:absolute;
  3033. align-self:center;
  3034. padding:2px 2px 2px 0px;
  3035. box-sizing:border-box;
  3036. width:100%;
  3037. }
  3038. #u11908_img {
  3039. border-width:0px;
  3040. position:absolute;
  3041. left:0px;
  3042. top:0px;
  3043. width:312px;
  3044. height:35px;
  3045. }
  3046. #u11908_text {
  3047. border-width:0px;
  3048. word-wrap:break-word;
  3049. text-transform:none;
  3050. visibility:hidden;
  3051. }
  3052. #u11909 {
  3053. border-width:0px;
  3054. position:absolute;
  3055. left:707px;
  3056. top:231px;
  3057. width:312px;
  3058. height:35px;
  3059. display:flex;
  3060. transition:none;
  3061. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3062. font-weight:400;
  3063. font-style:normal;
  3064. font-size:12px;
  3065. color:#333333;
  3066. }
  3067. #u11909 .text {
  3068. position:absolute;
  3069. align-self:center;
  3070. padding:2px 2px 2px 0px;
  3071. box-sizing:border-box;
  3072. width:100%;
  3073. }
  3074. #u11909_img {
  3075. border-width:0px;
  3076. position:absolute;
  3077. left:0px;
  3078. top:0px;
  3079. width:312px;
  3080. height:35px;
  3081. }
  3082. #u11909_text {
  3083. border-width:0px;
  3084. word-wrap:break-word;
  3085. text-transform:none;
  3086. visibility:hidden;
  3087. }
  3088. #u11910 {
  3089. border-width:0px;
  3090. position:absolute;
  3091. left:1019px;
  3092. top:231px;
  3093. width:195px;
  3094. height:35px;
  3095. display:flex;
  3096. transition:none;
  3097. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3098. font-weight:400;
  3099. font-style:normal;
  3100. font-size:12px;
  3101. color:#333333;
  3102. }
  3103. #u11910 .text {
  3104. position:absolute;
  3105. align-self:center;
  3106. padding:2px 2px 2px 0px;
  3107. box-sizing:border-box;
  3108. width:100%;
  3109. }
  3110. #u11910_img {
  3111. border-width:0px;
  3112. position:absolute;
  3113. left:0px;
  3114. top:0px;
  3115. width:195px;
  3116. height:35px;
  3117. }
  3118. #u11910_text {
  3119. border-width:0px;
  3120. word-wrap:break-word;
  3121. text-transform:none;
  3122. visibility:hidden;
  3123. }
  3124. #u11911 {
  3125. border-width:0px;
  3126. position:absolute;
  3127. left:0px;
  3128. top:266px;
  3129. width:122px;
  3130. height:32px;
  3131. display:flex;
  3132. transition:none;
  3133. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3134. font-weight:400;
  3135. font-style:normal;
  3136. font-size:12px;
  3137. color:#333333;
  3138. }
  3139. #u11911 .text {
  3140. position:absolute;
  3141. align-self:center;
  3142. padding:2px 2px 2px 0px;
  3143. box-sizing:border-box;
  3144. width:100%;
  3145. }
  3146. #u11911_img {
  3147. border-width:0px;
  3148. position:absolute;
  3149. left:0px;
  3150. top:0px;
  3151. width:122px;
  3152. height:32px;
  3153. }
  3154. #u11911_text {
  3155. border-width:0px;
  3156. word-wrap:break-word;
  3157. text-transform:none;
  3158. visibility:hidden;
  3159. }
  3160. #u11912 {
  3161. border-width:0px;
  3162. position:absolute;
  3163. left:122px;
  3164. top:266px;
  3165. width:273px;
  3166. height:32px;
  3167. display:flex;
  3168. transition:none;
  3169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3170. font-weight:400;
  3171. font-style:normal;
  3172. font-size:12px;
  3173. color:#333333;
  3174. }
  3175. #u11912 .text {
  3176. position:absolute;
  3177. align-self:center;
  3178. padding:2px 2px 2px 0px;
  3179. box-sizing:border-box;
  3180. width:100%;
  3181. }
  3182. #u11912_img {
  3183. border-width:0px;
  3184. position:absolute;
  3185. left:0px;
  3186. top:0px;
  3187. width:273px;
  3188. height:32px;
  3189. }
  3190. #u11912_text {
  3191. border-width:0px;
  3192. word-wrap:break-word;
  3193. text-transform:none;
  3194. visibility:hidden;
  3195. }
  3196. #u11913 {
  3197. border-width:0px;
  3198. position:absolute;
  3199. left:395px;
  3200. top:266px;
  3201. width:312px;
  3202. height:32px;
  3203. display:flex;
  3204. transition:none;
  3205. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3206. font-weight:400;
  3207. font-style:normal;
  3208. font-size:12px;
  3209. color:#333333;
  3210. }
  3211. #u11913 .text {
  3212. position:absolute;
  3213. align-self:center;
  3214. padding:2px 2px 2px 0px;
  3215. box-sizing:border-box;
  3216. width:100%;
  3217. }
  3218. #u11913_img {
  3219. border-width:0px;
  3220. position:absolute;
  3221. left:0px;
  3222. top:0px;
  3223. width:312px;
  3224. height:32px;
  3225. }
  3226. #u11913_text {
  3227. border-width:0px;
  3228. word-wrap:break-word;
  3229. text-transform:none;
  3230. visibility:hidden;
  3231. }
  3232. #u11914 {
  3233. border-width:0px;
  3234. position:absolute;
  3235. left:707px;
  3236. top:266px;
  3237. width:312px;
  3238. height:32px;
  3239. display:flex;
  3240. transition:none;
  3241. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3242. font-weight:400;
  3243. font-style:normal;
  3244. font-size:12px;
  3245. color:#333333;
  3246. }
  3247. #u11914 .text {
  3248. position:absolute;
  3249. align-self:center;
  3250. padding:2px 2px 2px 0px;
  3251. box-sizing:border-box;
  3252. width:100%;
  3253. }
  3254. #u11914_img {
  3255. border-width:0px;
  3256. position:absolute;
  3257. left:0px;
  3258. top:0px;
  3259. width:312px;
  3260. height:32px;
  3261. }
  3262. #u11914_text {
  3263. border-width:0px;
  3264. word-wrap:break-word;
  3265. text-transform:none;
  3266. visibility:hidden;
  3267. }
  3268. #u11915 {
  3269. border-width:0px;
  3270. position:absolute;
  3271. left:1019px;
  3272. top:266px;
  3273. width:195px;
  3274. height:32px;
  3275. display:flex;
  3276. transition:none;
  3277. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3278. font-weight:400;
  3279. font-style:normal;
  3280. font-size:12px;
  3281. color:#333333;
  3282. }
  3283. #u11915 .text {
  3284. position:absolute;
  3285. align-self:center;
  3286. padding:2px 2px 2px 0px;
  3287. box-sizing:border-box;
  3288. width:100%;
  3289. }
  3290. #u11915_img {
  3291. border-width:0px;
  3292. position:absolute;
  3293. left:0px;
  3294. top:0px;
  3295. width:195px;
  3296. height:32px;
  3297. }
  3298. #u11915_text {
  3299. border-width:0px;
  3300. word-wrap:break-word;
  3301. text-transform:none;
  3302. visibility:hidden;
  3303. }
  3304. #u11916 {
  3305. border-width:0px;
  3306. position:absolute;
  3307. left:0px;
  3308. top:298px;
  3309. width:122px;
  3310. height:30px;
  3311. display:flex;
  3312. transition:none;
  3313. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3314. font-weight:400;
  3315. font-style:normal;
  3316. font-size:12px;
  3317. color:#333333;
  3318. }
  3319. #u11916 .text {
  3320. position:absolute;
  3321. align-self:center;
  3322. padding:2px 2px 2px 0px;
  3323. box-sizing:border-box;
  3324. width:100%;
  3325. }
  3326. #u11916_img {
  3327. border-width:0px;
  3328. position:absolute;
  3329. left:0px;
  3330. top:0px;
  3331. width:122px;
  3332. height:30px;
  3333. }
  3334. #u11916_text {
  3335. border-width:0px;
  3336. word-wrap:break-word;
  3337. text-transform:none;
  3338. visibility:hidden;
  3339. }
  3340. #u11917 {
  3341. border-width:0px;
  3342. position:absolute;
  3343. left:122px;
  3344. top:298px;
  3345. width:273px;
  3346. height:30px;
  3347. display:flex;
  3348. transition:none;
  3349. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3350. font-weight:400;
  3351. font-style:normal;
  3352. font-size:12px;
  3353. color:#333333;
  3354. }
  3355. #u11917 .text {
  3356. position:absolute;
  3357. align-self:center;
  3358. padding:2px 2px 2px 0px;
  3359. box-sizing:border-box;
  3360. width:100%;
  3361. }
  3362. #u11917_img {
  3363. border-width:0px;
  3364. position:absolute;
  3365. left:0px;
  3366. top:0px;
  3367. width:273px;
  3368. height:30px;
  3369. }
  3370. #u11917_text {
  3371. border-width:0px;
  3372. word-wrap:break-word;
  3373. text-transform:none;
  3374. visibility:hidden;
  3375. }
  3376. #u11918 {
  3377. border-width:0px;
  3378. position:absolute;
  3379. left:395px;
  3380. top:298px;
  3381. width:312px;
  3382. height:30px;
  3383. display:flex;
  3384. transition:none;
  3385. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3386. font-weight:400;
  3387. font-style:normal;
  3388. font-size:12px;
  3389. color:#333333;
  3390. }
  3391. #u11918 .text {
  3392. position:absolute;
  3393. align-self:center;
  3394. padding:2px 2px 2px 0px;
  3395. box-sizing:border-box;
  3396. width:100%;
  3397. }
  3398. #u11918_img {
  3399. border-width:0px;
  3400. position:absolute;
  3401. left:0px;
  3402. top:0px;
  3403. width:312px;
  3404. height:30px;
  3405. }
  3406. #u11918_text {
  3407. border-width:0px;
  3408. word-wrap:break-word;
  3409. text-transform:none;
  3410. visibility:hidden;
  3411. }
  3412. #u11919 {
  3413. border-width:0px;
  3414. position:absolute;
  3415. left:707px;
  3416. top:298px;
  3417. width:312px;
  3418. height:30px;
  3419. display:flex;
  3420. transition:none;
  3421. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3422. font-weight:400;
  3423. font-style:normal;
  3424. font-size:12px;
  3425. color:#333333;
  3426. }
  3427. #u11919 .text {
  3428. position:absolute;
  3429. align-self:center;
  3430. padding:2px 2px 2px 0px;
  3431. box-sizing:border-box;
  3432. width:100%;
  3433. }
  3434. #u11919_img {
  3435. border-width:0px;
  3436. position:absolute;
  3437. left:0px;
  3438. top:0px;
  3439. width:312px;
  3440. height:30px;
  3441. }
  3442. #u11919_text {
  3443. border-width:0px;
  3444. word-wrap:break-word;
  3445. text-transform:none;
  3446. visibility:hidden;
  3447. }
  3448. #u11920 {
  3449. border-width:0px;
  3450. position:absolute;
  3451. left:1019px;
  3452. top:298px;
  3453. width:195px;
  3454. height:30px;
  3455. display:flex;
  3456. transition:none;
  3457. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  3458. font-weight:400;
  3459. font-style:normal;
  3460. font-size:12px;
  3461. color:#333333;
  3462. }
  3463. #u11920 .text {
  3464. position:absolute;
  3465. align-self:center;
  3466. padding:2px 2px 2px 0px;
  3467. box-sizing:border-box;
  3468. width:100%;
  3469. }
  3470. #u11920_img {
  3471. border-width:0px;
  3472. position:absolute;
  3473. left:0px;
  3474. top:0px;
  3475. width:195px;
  3476. height:30px;
  3477. }
  3478. #u11920_text {
  3479. border-width:0px;
  3480. word-wrap:break-word;
  3481. text-transform:none;
  3482. visibility:hidden;
  3483. }
  3484. #u11921 {
  3485. border-width:0px;
  3486. position:absolute;
  3487. left:0px;
  3488. top:0px;
  3489. width:0px;
  3490. height:0px;
  3491. }
  3492. #u11922_div {
  3493. border-width:0px;
  3494. position:absolute;
  3495. left:0px;
  3496. top:0px;
  3497. width:140px;
  3498. height:30px;
  3499. background:inherit;
  3500. background-color:rgba(255, 255, 255, 1);
  3501. box-sizing:border-box;
  3502. border-width:1px;
  3503. border-style:solid;
  3504. border-color:rgba(201, 201, 201, 1);
  3505. border-radius:4px;
  3506. filter:drop-shadow(none);
  3507. transition:none;
  3508. font-family:"Microsoft YaHei", sans-serif;
  3509. font-weight:400;
  3510. font-style:normal;
  3511. font-size:14px;
  3512. color:#CCCCCC;
  3513. text-align:left;
  3514. }
  3515. #u11922 {
  3516. border-width:0px;
  3517. position:absolute;
  3518. left:506px;
  3519. top:145px;
  3520. width:140px;
  3521. height:30px;
  3522. display:flex;
  3523. transition:none;
  3524. transform-origin:50% 50%;
  3525. font-family:"Microsoft YaHei", sans-serif;
  3526. font-weight:400;
  3527. font-style:normal;
  3528. font-size:14px;
  3529. color:#CCCCCC;
  3530. text-align:left;
  3531. }
  3532. #u11922 .text {
  3533. position:absolute;
  3534. align-self:center;
  3535. padding:2px 8px 2px 8px;
  3536. box-sizing:border-box;
  3537. width:100%;
  3538. }
  3539. #u11922_text {
  3540. border-width:0px;
  3541. word-wrap:break-word;
  3542. text-transform:none;
  3543. visibility:hidden;
  3544. }
  3545. #u11923_input {
  3546. position:absolute;
  3547. left:0px;
  3548. top:0px;
  3549. width:127px;
  3550. height:25px;
  3551. padding:2px 2px 2px 2px;
  3552. font-family:"Microsoft YaHei", sans-serif;
  3553. font-weight:400;
  3554. font-style:normal;
  3555. font-size:10px;
  3556. letter-spacing:normal;
  3557. color:#000000;
  3558. vertical-align:none;
  3559. text-align:left;
  3560. text-transform:none;
  3561. background-color:transparent;
  3562. border-color:transparent;
  3563. }
  3564. #u11923_input.hint {
  3565. position:absolute;
  3566. left:0px;
  3567. top:0px;
  3568. width:127px;
  3569. height:25px;
  3570. padding:2px 2px 2px 2px;
  3571. font-family:"Microsoft YaHei", sans-serif;
  3572. font-weight:400;
  3573. font-style:normal;
  3574. font-size:12px;
  3575. letter-spacing:normal;
  3576. color:#AAAAAA;
  3577. vertical-align:none;
  3578. text-align:left;
  3579. text-transform:none;
  3580. background-color:transparent;
  3581. border-color:transparent;
  3582. }
  3583. #u11923_input.disabled {
  3584. position:absolute;
  3585. left:0px;
  3586. top:0px;
  3587. width:127px;
  3588. height:25px;
  3589. padding:2px 2px 2px 2px;
  3590. font-family:"Microsoft YaHei", sans-serif;
  3591. font-weight:400;
  3592. font-style:normal;
  3593. font-size:10px;
  3594. letter-spacing:normal;
  3595. color:#000000;
  3596. vertical-align:none;
  3597. text-align:left;
  3598. text-transform:none;
  3599. background-color:transparent;
  3600. border-color:transparent;
  3601. }
  3602. #u11923_input.hint.disabled {
  3603. position:absolute;
  3604. left:0px;
  3605. top:0px;
  3606. width:127px;
  3607. height:25px;
  3608. padding:2px 2px 2px 2px;
  3609. font-family:"Microsoft YaHei", sans-serif;
  3610. font-weight:400;
  3611. font-style:normal;
  3612. font-size:12px;
  3613. letter-spacing:normal;
  3614. color:#AAAAAA;
  3615. vertical-align:none;
  3616. text-align:left;
  3617. text-transform:none;
  3618. background-color:transparent;
  3619. border-color:transparent;
  3620. }
  3621. #u11923_div {
  3622. border-width:0px;
  3623. position:absolute;
  3624. left:0px;
  3625. top:0px;
  3626. width:127px;
  3627. height:25px;
  3628. background:inherit;
  3629. background-color:rgba(255, 255, 255, 1);
  3630. border-radius:0px;
  3631. filter:drop-shadow(none);
  3632. transition:none;
  3633. font-family:"Microsoft YaHei", sans-serif;
  3634. font-weight:400;
  3635. font-style:normal;
  3636. font-size:10px;
  3637. }
  3638. #u11923 {
  3639. border-width:0px;
  3640. position:absolute;
  3641. left:514px;
  3642. top:146px;
  3643. width:127px;
  3644. height:25px;
  3645. display:flex;
  3646. transition:none;
  3647. transform-origin:50% 50%;
  3648. font-family:"Microsoft YaHei", sans-serif;
  3649. font-weight:400;
  3650. font-style:normal;
  3651. font-size:10px;
  3652. }
  3653. #u11923 .text {
  3654. position:absolute;
  3655. align-self:center;
  3656. padding:2px 2px 2px 2px;
  3657. box-sizing:border-box;
  3658. width:100%;
  3659. }
  3660. #u11923_div.hint {
  3661. border-width:0px;
  3662. position:absolute;
  3663. left:0px;
  3664. top:0px;
  3665. width:127px;
  3666. height:25px;
  3667. background:inherit;
  3668. background-color:rgba(255, 255, 255, 1);
  3669. border-radius:0px;
  3670. filter:drop-shadow(none);
  3671. transition:none;
  3672. font-family:"Microsoft YaHei", sans-serif;
  3673. font-weight:400;
  3674. font-style:normal;
  3675. font-size:10px;
  3676. }
  3677. #u11923.hint {
  3678. }
  3679. #u11923_div.disabled {
  3680. border-width:0px;
  3681. position:absolute;
  3682. left:0px;
  3683. top:0px;
  3684. width:127px;
  3685. height:25px;
  3686. background:inherit;
  3687. background-color:rgba(240, 240, 240, 1);
  3688. border-radius:0px;
  3689. filter:drop-shadow(none);
  3690. transition:none;
  3691. font-family:"Microsoft YaHei", sans-serif;
  3692. font-weight:400;
  3693. font-style:normal;
  3694. font-size:10px;
  3695. }
  3696. #u11923.disabled {
  3697. }
  3698. #u11923_div.hint.disabled {
  3699. border-width:0px;
  3700. position:absolute;
  3701. left:0px;
  3702. top:0px;
  3703. width:127px;
  3704. height:25px;
  3705. background:inherit;
  3706. background-color:rgba(240, 240, 240, 1);
  3707. border-radius:0px;
  3708. filter:drop-shadow(none);
  3709. transition:none;
  3710. font-family:"Microsoft YaHei", sans-serif;
  3711. font-weight:400;
  3712. font-style:normal;
  3713. font-size:10px;
  3714. }
  3715. #u11923.hint.disabled {
  3716. }
  3717. #u11924 {
  3718. border-width:0px;
  3719. position:absolute;
  3720. left:0px;
  3721. top:0px;
  3722. width:0px;
  3723. height:0px;
  3724. }
  3725. #u11925_div {
  3726. border-width:0px;
  3727. position:absolute;
  3728. left:0px;
  3729. top:0px;
  3730. width:140px;
  3731. height:30px;
  3732. background:inherit;
  3733. background-color:rgba(255, 255, 255, 1);
  3734. box-sizing:border-box;
  3735. border-width:1px;
  3736. border-style:solid;
  3737. border-color:rgba(201, 201, 201, 1);
  3738. border-radius:4px;
  3739. filter:drop-shadow(none);
  3740. transition:none;
  3741. font-family:"Microsoft YaHei", sans-serif;
  3742. font-weight:400;
  3743. font-style:normal;
  3744. font-size:14px;
  3745. color:#CCCCCC;
  3746. text-align:left;
  3747. }
  3748. #u11925 {
  3749. border-width:0px;
  3750. position:absolute;
  3751. left:656px;
  3752. top:145px;
  3753. width:140px;
  3754. height:30px;
  3755. display:flex;
  3756. transition:none;
  3757. transform-origin:50% 50%;
  3758. font-family:"Microsoft YaHei", sans-serif;
  3759. font-weight:400;
  3760. font-style:normal;
  3761. font-size:14px;
  3762. color:#CCCCCC;
  3763. text-align:left;
  3764. }
  3765. #u11925 .text {
  3766. position:absolute;
  3767. align-self:center;
  3768. padding:2px 8px 2px 8px;
  3769. box-sizing:border-box;
  3770. width:100%;
  3771. }
  3772. #u11925_text {
  3773. border-width:0px;
  3774. word-wrap:break-word;
  3775. text-transform:none;
  3776. visibility:hidden;
  3777. }
  3778. #u11926_input {
  3779. position:absolute;
  3780. left:0px;
  3781. top:0px;
  3782. width:127px;
  3783. height:25px;
  3784. padding:2px 2px 2px 2px;
  3785. font-family:"Microsoft YaHei", sans-serif;
  3786. font-weight:400;
  3787. font-style:normal;
  3788. font-size:10px;
  3789. letter-spacing:normal;
  3790. color:#000000;
  3791. vertical-align:none;
  3792. text-align:left;
  3793. text-transform:none;
  3794. background-color:transparent;
  3795. border-color:transparent;
  3796. }
  3797. #u11926_input.hint {
  3798. position:absolute;
  3799. left:0px;
  3800. top:0px;
  3801. width:127px;
  3802. height:25px;
  3803. padding:2px 2px 2px 2px;
  3804. font-family:"Microsoft YaHei", sans-serif;
  3805. font-weight:400;
  3806. font-style:normal;
  3807. font-size:12px;
  3808. letter-spacing:normal;
  3809. color:#AAAAAA;
  3810. vertical-align:none;
  3811. text-align:left;
  3812. text-transform:none;
  3813. background-color:transparent;
  3814. border-color:transparent;
  3815. }
  3816. #u11926_input.disabled {
  3817. position:absolute;
  3818. left:0px;
  3819. top:0px;
  3820. width:127px;
  3821. height:25px;
  3822. padding:2px 2px 2px 2px;
  3823. font-family:"Microsoft YaHei", sans-serif;
  3824. font-weight:400;
  3825. font-style:normal;
  3826. font-size:10px;
  3827. letter-spacing:normal;
  3828. color:#000000;
  3829. vertical-align:none;
  3830. text-align:left;
  3831. text-transform:none;
  3832. background-color:transparent;
  3833. border-color:transparent;
  3834. }
  3835. #u11926_input.hint.disabled {
  3836. position:absolute;
  3837. left:0px;
  3838. top:0px;
  3839. width:127px;
  3840. height:25px;
  3841. padding:2px 2px 2px 2px;
  3842. font-family:"Microsoft YaHei", sans-serif;
  3843. font-weight:400;
  3844. font-style:normal;
  3845. font-size:12px;
  3846. letter-spacing:normal;
  3847. color:#AAAAAA;
  3848. vertical-align:none;
  3849. text-align:left;
  3850. text-transform:none;
  3851. background-color:transparent;
  3852. border-color:transparent;
  3853. }
  3854. #u11926_div {
  3855. border-width:0px;
  3856. position:absolute;
  3857. left:0px;
  3858. top:0px;
  3859. width:127px;
  3860. height:25px;
  3861. background:inherit;
  3862. background-color:rgba(255, 255, 255, 1);
  3863. border-radius:0px;
  3864. filter:drop-shadow(none);
  3865. transition:none;
  3866. font-family:"Microsoft YaHei", sans-serif;
  3867. font-weight:400;
  3868. font-style:normal;
  3869. font-size:10px;
  3870. }
  3871. #u11926 {
  3872. border-width:0px;
  3873. position:absolute;
  3874. left:664px;
  3875. top:146px;
  3876. width:127px;
  3877. height:25px;
  3878. display:flex;
  3879. transition:none;
  3880. transform-origin:50% 50%;
  3881. font-family:"Microsoft YaHei", sans-serif;
  3882. font-weight:400;
  3883. font-style:normal;
  3884. font-size:10px;
  3885. }
  3886. #u11926 .text {
  3887. position:absolute;
  3888. align-self:center;
  3889. padding:2px 2px 2px 2px;
  3890. box-sizing:border-box;
  3891. width:100%;
  3892. }
  3893. #u11926_div.hint {
  3894. border-width:0px;
  3895. position:absolute;
  3896. left:0px;
  3897. top:0px;
  3898. width:127px;
  3899. height:25px;
  3900. background:inherit;
  3901. background-color:rgba(255, 255, 255, 1);
  3902. border-radius:0px;
  3903. filter:drop-shadow(none);
  3904. transition:none;
  3905. font-family:"Microsoft YaHei", sans-serif;
  3906. font-weight:400;
  3907. font-style:normal;
  3908. font-size:10px;
  3909. }
  3910. #u11926.hint {
  3911. }
  3912. #u11926_div.disabled {
  3913. border-width:0px;
  3914. position:absolute;
  3915. left:0px;
  3916. top:0px;
  3917. width:127px;
  3918. height:25px;
  3919. background:inherit;
  3920. background-color:rgba(240, 240, 240, 1);
  3921. border-radius:0px;
  3922. filter:drop-shadow(none);
  3923. transition:none;
  3924. font-family:"Microsoft YaHei", sans-serif;
  3925. font-weight:400;
  3926. font-style:normal;
  3927. font-size:10px;
  3928. }
  3929. #u11926.disabled {
  3930. }
  3931. #u11926_div.hint.disabled {
  3932. border-width:0px;
  3933. position:absolute;
  3934. left:0px;
  3935. top:0px;
  3936. width:127px;
  3937. height:25px;
  3938. background:inherit;
  3939. background-color:rgba(240, 240, 240, 1);
  3940. border-radius:0px;
  3941. filter:drop-shadow(none);
  3942. transition:none;
  3943. font-family:"Microsoft YaHei", sans-serif;
  3944. font-weight:400;
  3945. font-style:normal;
  3946. font-size:10px;
  3947. }
  3948. #u11926.hint.disabled {
  3949. }
  3950. #u11927 {
  3951. border-width:0px;
  3952. position:absolute;
  3953. left:0px;
  3954. top:0px;
  3955. width:0px;
  3956. height:0px;
  3957. }
  3958. #u11928_div {
  3959. border-width:0px;
  3960. position:absolute;
  3961. left:0px;
  3962. top:0px;
  3963. width:140px;
  3964. height:30px;
  3965. background:inherit;
  3966. background-color:rgba(255, 255, 255, 1);
  3967. box-sizing:border-box;
  3968. border-width:1px;
  3969. border-style:solid;
  3970. border-color:rgba(215, 215, 215, 1);
  3971. border-radius:4px;
  3972. filter:drop-shadow(none);
  3973. transition:none;
  3974. font-size:11px;
  3975. }
  3976. #u11928 {
  3977. border-width:0px;
  3978. position:absolute;
  3979. left:356px;
  3980. top:145px;
  3981. width:140px;
  3982. height:30px;
  3983. display:flex;
  3984. transition:none;
  3985. transform-origin:50% 50%;
  3986. font-size:11px;
  3987. }
  3988. #u11928 .text {
  3989. position:absolute;
  3990. align-self:center;
  3991. padding:2px 2px 2px 2px;
  3992. box-sizing:border-box;
  3993. width:100%;
  3994. }
  3995. #u11928_text {
  3996. border-width:0px;
  3997. word-wrap:break-word;
  3998. text-transform:none;
  3999. visibility:hidden;
  4000. }
  4001. #u11929_input {
  4002. position:absolute;
  4003. left:0px;
  4004. top:0px;
  4005. width:126px;
  4006. height:23px;
  4007. padding:2px 2px 2px 2px;
  4008. font-family:'ArialMT', 'Arial', sans-serif;
  4009. font-weight:400;
  4010. font-style:normal;
  4011. font-size:11px;
  4012. letter-spacing:normal;
  4013. color:#AAAAAA;
  4014. vertical-align:none;
  4015. text-align:left;
  4016. text-transform:none;
  4017. background-color:transparent;
  4018. border-color:transparent;
  4019. }
  4020. #u11929_input.disabled {
  4021. position:absolute;
  4022. left:0px;
  4023. top:0px;
  4024. width:126px;
  4025. height:23px;
  4026. padding:2px 2px 2px 2px;
  4027. font-family:'ArialMT', 'Arial', sans-serif;
  4028. font-weight:400;
  4029. font-style:normal;
  4030. font-size:11px;
  4031. letter-spacing:normal;
  4032. color:#AAAAAA;
  4033. vertical-align:none;
  4034. text-align:left;
  4035. text-transform:none;
  4036. background-color:transparent;
  4037. border-color:transparent;
  4038. }
  4039. #u11929_div {
  4040. border-width:0px;
  4041. position:absolute;
  4042. left:0px;
  4043. top:0px;
  4044. width:126px;
  4045. height:23px;
  4046. background:inherit;
  4047. background-color:rgba(255, 255, 255, 1);
  4048. border-radius:0px;
  4049. filter:drop-shadow(none);
  4050. transition:none;
  4051. font-size:11px;
  4052. color:#AAAAAA;
  4053. }
  4054. #u11929 {
  4055. border-width:0px;
  4056. position:absolute;
  4057. left:363px;
  4058. top:147px;
  4059. width:126px;
  4060. height:23px;
  4061. display:flex;
  4062. transition:none;
  4063. transform-origin:50% 50%;
  4064. font-size:11px;
  4065. color:#AAAAAA;
  4066. }
  4067. #u11929 .text {
  4068. position:absolute;
  4069. align-self:flex-start;
  4070. padding:2px 2px 2px 2px;
  4071. box-sizing:border-box;
  4072. width:100%;
  4073. }
  4074. #u11929_div.disabled {
  4075. border-width:0px;
  4076. position:absolute;
  4077. left:0px;
  4078. top:0px;
  4079. width:126px;
  4080. height:23px;
  4081. background:inherit;
  4082. background-color:rgba(240, 240, 240, 1);
  4083. border-radius:0px;
  4084. filter:drop-shadow(none);
  4085. transition:none;
  4086. font-size:11px;
  4087. color:#AAAAAA;
  4088. }
  4089. #u11929.disabled {
  4090. }
  4091. .u11929_input_option {
  4092. font-size:11px;
  4093. }
  4094. #u11930 {
  4095. border-width:0px;
  4096. position:absolute;
  4097. left:0px;
  4098. top:0px;
  4099. width:0px;
  4100. height:0px;
  4101. }
  4102. #u11931 {
  4103. border-width:0px;
  4104. position:absolute;
  4105. left:0px;
  4106. top:0px;
  4107. width:0px;
  4108. height:0px;
  4109. }
  4110. #u11932_div {
  4111. border-width:0px;
  4112. position:absolute;
  4113. left:0px;
  4114. top:0px;
  4115. width:380px;
  4116. height:164px;
  4117. background:inherit;
  4118. background-color:rgba(255, 255, 255, 1);
  4119. box-sizing:border-box;
  4120. border-width:1px;
  4121. border-style:solid;
  4122. border-color:rgba(204, 204, 204, 1);
  4123. border-radius:4px;
  4124. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4125. transition:none;
  4126. font-family:"Microsoft YaHei", sans-serif;
  4127. font-weight:400;
  4128. font-style:normal;
  4129. }
  4130. #u11932 {
  4131. border-width:0px;
  4132. position:absolute;
  4133. left:1120px;
  4134. top:498px;
  4135. width:380px;
  4136. height:164px;
  4137. display:flex;
  4138. transition:none;
  4139. transform-origin:50% 50%;
  4140. font-family:"Microsoft YaHei", sans-serif;
  4141. font-weight:400;
  4142. font-style:normal;
  4143. }
  4144. #u11932 .text {
  4145. position:absolute;
  4146. align-self:center;
  4147. padding:2px 2px 2px 2px;
  4148. box-sizing:border-box;
  4149. width:100%;
  4150. }
  4151. #u11932_text {
  4152. border-width:0px;
  4153. word-wrap:break-word;
  4154. text-transform:none;
  4155. visibility:hidden;
  4156. }
  4157. #u11933_div {
  4158. border-width:0px;
  4159. position:absolute;
  4160. left:0px;
  4161. top:0px;
  4162. width:299px;
  4163. height:22px;
  4164. background:inherit;
  4165. background-color:rgba(255, 255, 255, 0);
  4166. border-radius:0px;
  4167. filter:drop-shadow(none);
  4168. transition:none;
  4169. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4170. font-weight:400;
  4171. font-style:normal;
  4172. font-size:14px;
  4173. color:#666666;
  4174. line-height:22px;
  4175. }
  4176. #u11933 {
  4177. border-width:0px;
  4178. position:absolute;
  4179. left:1180px;
  4180. top:553px;
  4181. width:299px;
  4182. height:22px;
  4183. display:flex;
  4184. transition:none;
  4185. transform-origin:50% 50%;
  4186. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4187. font-weight:400;
  4188. font-style:normal;
  4189. font-size:14px;
  4190. color:#666666;
  4191. line-height:22px;
  4192. }
  4193. #u11933 .text {
  4194. position:absolute;
  4195. align-self:flex-start;
  4196. padding:0px 0px 0px 0px;
  4197. box-sizing:border-box;
  4198. width:100%;
  4199. }
  4200. #u11933_text {
  4201. border-width:0px;
  4202. word-wrap:break-word;
  4203. text-transform:none;
  4204. }
  4205. #u11934_div {
  4206. border-width:0px;
  4207. position:absolute;
  4208. left:0px;
  4209. top:0px;
  4210. width:145px;
  4211. height:21px;
  4212. background:inherit;
  4213. background-color:rgba(255, 255, 255, 0);
  4214. border-radius:0px;
  4215. filter:drop-shadow(none);
  4216. transition:none;
  4217. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4218. font-weight:650;
  4219. font-style:normal;
  4220. font-size:18px;
  4221. color:#000000;
  4222. line-height:22px;
  4223. }
  4224. #u11934 {
  4225. border-width:0px;
  4226. position:absolute;
  4227. left:1180px;
  4228. top:523px;
  4229. width:145px;
  4230. height:21px;
  4231. display:flex;
  4232. transition:none;
  4233. transform-origin:50% 50%;
  4234. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4235. font-weight:650;
  4236. font-style:normal;
  4237. font-size:18px;
  4238. color:#000000;
  4239. line-height:22px;
  4240. }
  4241. #u11934 .text {
  4242. position:absolute;
  4243. align-self:flex-start;
  4244. padding:0px 0px 0px 0px;
  4245. box-sizing:border-box;
  4246. width:100%;
  4247. }
  4248. #u11934_text {
  4249. border-width:0px;
  4250. white-space:nowrap;
  4251. text-transform:none;
  4252. }
  4253. #u11935_div {
  4254. border-width:0px;
  4255. position:absolute;
  4256. left:0px;
  4257. top:0px;
  4258. width:61px;
  4259. height:30px;
  4260. background:inherit;
  4261. background-color:rgba(24, 144, 255, 1);
  4262. border-radius:4px;
  4263. filter:drop-shadow(none);
  4264. transition:none;
  4265. font-family:"Microsoft YaHei", sans-serif;
  4266. font-weight:400;
  4267. font-style:normal;
  4268. font-size:14px;
  4269. color:#FFFFFF;
  4270. }
  4271. #u11935 {
  4272. border-width:0px;
  4273. position:absolute;
  4274. left:1422px;
  4275. top:613px;
  4276. width:61px;
  4277. height:30px;
  4278. display:flex;
  4279. transition:none;
  4280. transform-origin:50% 50%;
  4281. font-family:"Microsoft YaHei", sans-serif;
  4282. font-weight:400;
  4283. font-style:normal;
  4284. font-size:14px;
  4285. color:#FFFFFF;
  4286. }
  4287. #u11935 .text {
  4288. position:absolute;
  4289. align-self:center;
  4290. padding:2px 16px 2px 16px;
  4291. box-sizing:border-box;
  4292. width:100%;
  4293. }
  4294. #u11935_text {
  4295. border-width:0px;
  4296. white-space:nowrap;
  4297. text-transform:none;
  4298. }
  4299. #u11936_div {
  4300. border-width:0px;
  4301. position:absolute;
  4302. left:0px;
  4303. top:0px;
  4304. width:66px;
  4305. height:30px;
  4306. background:inherit;
  4307. background-color:rgba(255, 255, 255, 1);
  4308. box-sizing:border-box;
  4309. border-width:1px;
  4310. border-style:solid;
  4311. border-color:rgba(217, 217, 217, 1);
  4312. border-radius:4px;
  4313. filter:drop-shadow(none);
  4314. transition:none;
  4315. font-family:"Microsoft YaHei", sans-serif;
  4316. font-weight:400;
  4317. font-style:normal;
  4318. font-size:14px;
  4319. color:rgba(0, 0, 0, 0.6470588235294118);
  4320. line-height:21px;
  4321. }
  4322. #u11936 {
  4323. border-width:0px;
  4324. position:absolute;
  4325. left:1340px;
  4326. top:613px;
  4327. width:66px;
  4328. height:30px;
  4329. display:flex;
  4330. transition:none;
  4331. transform-origin:50% 50%;
  4332. font-family:"Microsoft YaHei", sans-serif;
  4333. font-weight:400;
  4334. font-style:normal;
  4335. font-size:14px;
  4336. color:rgba(0, 0, 0, 0.6470588235294118);
  4337. line-height:21px;
  4338. }
  4339. #u11936 .text {
  4340. position:absolute;
  4341. align-self:center;
  4342. padding:2px 16px 2px 16px;
  4343. box-sizing:border-box;
  4344. width:100%;
  4345. }
  4346. #u11936_text {
  4347. border-width:0px;
  4348. white-space:nowrap;
  4349. text-transform:none;
  4350. }
  4351. #u11937 {
  4352. border-width:0px;
  4353. position:absolute;
  4354. left:1149px;
  4355. top:527px;
  4356. width:20px;
  4357. height:20px;
  4358. display:flex;
  4359. transition:none;
  4360. }
  4361. #u11937 .text {
  4362. position:absolute;
  4363. align-self:center;
  4364. padding:2px 2px 2px 2px;
  4365. box-sizing:border-box;
  4366. width:100%;
  4367. }
  4368. #u11937_img {
  4369. border-width:0px;
  4370. position:absolute;
  4371. left:0px;
  4372. top:0px;
  4373. width:20px;
  4374. height:20px;
  4375. }
  4376. #u11937_text {
  4377. border-width:0px;
  4378. word-wrap:break-word;
  4379. text-transform:none;
  4380. visibility:hidden;
  4381. }
  4382. #u11938 {
  4383. border-width:0px;
  4384. position:absolute;
  4385. left:0px;
  4386. top:0px;
  4387. width:0px;
  4388. height:0px;
  4389. }
  4390. #u11939_div {
  4391. border-width:0px;
  4392. position:absolute;
  4393. left:0px;
  4394. top:0px;
  4395. width:380px;
  4396. height:164px;
  4397. background:inherit;
  4398. background-color:rgba(255, 255, 255, 1);
  4399. box-sizing:border-box;
  4400. border-width:1px;
  4401. border-style:solid;
  4402. border-color:rgba(204, 204, 204, 1);
  4403. border-radius:4px;
  4404. filter:drop-shadow(0px 4px 6px rgba(0, 0, 0, 0.4470588235294118));
  4405. transition:none;
  4406. font-family:"Microsoft YaHei", sans-serif;
  4407. font-weight:400;
  4408. font-style:normal;
  4409. }
  4410. #u11939 {
  4411. border-width:0px;
  4412. position:absolute;
  4413. left:1120px;
  4414. top:672px;
  4415. width:380px;
  4416. height:164px;
  4417. display:flex;
  4418. transition:none;
  4419. transform-origin:50% 50%;
  4420. font-family:"Microsoft YaHei", sans-serif;
  4421. font-weight:400;
  4422. font-style:normal;
  4423. }
  4424. #u11939 .text {
  4425. position:absolute;
  4426. align-self:center;
  4427. padding:2px 2px 2px 2px;
  4428. box-sizing:border-box;
  4429. width:100%;
  4430. }
  4431. #u11939_text {
  4432. border-width:0px;
  4433. word-wrap:break-word;
  4434. text-transform:none;
  4435. visibility:hidden;
  4436. }
  4437. #u11940_div {
  4438. border-width:0px;
  4439. position:absolute;
  4440. left:0px;
  4441. top:0px;
  4442. width:288px;
  4443. height:22px;
  4444. background:inherit;
  4445. background-color:rgba(255, 255, 255, 0);
  4446. border-radius:0px;
  4447. filter:drop-shadow(none);
  4448. transition:none;
  4449. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4450. font-weight:400;
  4451. font-style:normal;
  4452. font-size:14px;
  4453. color:#666666;
  4454. line-height:22px;
  4455. }
  4456. #u11940 {
  4457. border-width:0px;
  4458. position:absolute;
  4459. left:1180px;
  4460. top:727px;
  4461. width:288px;
  4462. height:22px;
  4463. display:flex;
  4464. transition:none;
  4465. transform-origin:50% 50%;
  4466. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4467. font-weight:400;
  4468. font-style:normal;
  4469. font-size:14px;
  4470. color:#666666;
  4471. line-height:22px;
  4472. }
  4473. #u11940 .text {
  4474. position:absolute;
  4475. align-self:flex-start;
  4476. padding:0px 0px 0px 0px;
  4477. box-sizing:border-box;
  4478. width:100%;
  4479. }
  4480. #u11940_text {
  4481. border-width:0px;
  4482. word-wrap:break-word;
  4483. text-transform:none;
  4484. }
  4485. #u11941_div {
  4486. border-width:0px;
  4487. position:absolute;
  4488. left:0px;
  4489. top:0px;
  4490. width:91px;
  4491. height:21px;
  4492. background:inherit;
  4493. background-color:rgba(255, 255, 255, 0);
  4494. border-radius:0px;
  4495. filter:drop-shadow(none);
  4496. transition:none;
  4497. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4498. font-weight:650;
  4499. font-style:normal;
  4500. font-size:18px;
  4501. color:#000000;
  4502. line-height:22px;
  4503. }
  4504. #u11941 {
  4505. border-width:0px;
  4506. position:absolute;
  4507. left:1180px;
  4508. top:697px;
  4509. width:91px;
  4510. height:21px;
  4511. display:flex;
  4512. transition:none;
  4513. transform-origin:50% 50%;
  4514. font-family:'PingFangSC-Semibold', 'PingFang SC Semibold', 'PingFang SC', sans-serif;
  4515. font-weight:650;
  4516. font-style:normal;
  4517. font-size:18px;
  4518. color:#000000;
  4519. line-height:22px;
  4520. }
  4521. #u11941 .text {
  4522. position:absolute;
  4523. align-self:flex-start;
  4524. padding:0px 0px 0px 0px;
  4525. box-sizing:border-box;
  4526. width:100%;
  4527. }
  4528. #u11941_text {
  4529. border-width:0px;
  4530. white-space:nowrap;
  4531. text-transform:none;
  4532. }
  4533. #u11942_div {
  4534. border-width:0px;
  4535. position:absolute;
  4536. left:0px;
  4537. top:0px;
  4538. width:61px;
  4539. height:30px;
  4540. background:inherit;
  4541. background-color:rgba(24, 144, 255, 1);
  4542. border-radius:4px;
  4543. filter:drop-shadow(none);
  4544. transition:none;
  4545. font-family:"Microsoft YaHei", sans-serif;
  4546. font-weight:400;
  4547. font-style:normal;
  4548. font-size:14px;
  4549. color:#FFFFFF;
  4550. }
  4551. #u11942 {
  4552. border-width:0px;
  4553. position:absolute;
  4554. left:1419px;
  4555. top:787px;
  4556. width:61px;
  4557. height:30px;
  4558. display:flex;
  4559. transition:none;
  4560. transform-origin:50% 50%;
  4561. font-family:"Microsoft YaHei", sans-serif;
  4562. font-weight:400;
  4563. font-style:normal;
  4564. font-size:14px;
  4565. color:#FFFFFF;
  4566. }
  4567. #u11942 .text {
  4568. position:absolute;
  4569. align-self:center;
  4570. padding:2px 16px 2px 16px;
  4571. box-sizing:border-box;
  4572. width:100%;
  4573. }
  4574. #u11942_text {
  4575. border-width:0px;
  4576. white-space:nowrap;
  4577. text-transform:none;
  4578. }
  4579. #u11943_div {
  4580. border-width:0px;
  4581. position:absolute;
  4582. left:0px;
  4583. top:0px;
  4584. width:66px;
  4585. height:30px;
  4586. background:inherit;
  4587. background-color:rgba(255, 255, 255, 1);
  4588. box-sizing:border-box;
  4589. border-width:1px;
  4590. border-style:solid;
  4591. border-color:rgba(217, 217, 217, 1);
  4592. border-radius:4px;
  4593. filter:drop-shadow(none);
  4594. transition:none;
  4595. font-family:"Microsoft YaHei", sans-serif;
  4596. font-weight:400;
  4597. font-style:normal;
  4598. font-size:14px;
  4599. color:rgba(0, 0, 0, 0.6470588235294118);
  4600. line-height:21px;
  4601. }
  4602. #u11943 {
  4603. border-width:0px;
  4604. position:absolute;
  4605. left:1340px;
  4606. top:787px;
  4607. width:66px;
  4608. height:30px;
  4609. display:flex;
  4610. transition:none;
  4611. transform-origin:50% 50%;
  4612. font-family:"Microsoft YaHei", sans-serif;
  4613. font-weight:400;
  4614. font-style:normal;
  4615. font-size:14px;
  4616. color:rgba(0, 0, 0, 0.6470588235294118);
  4617. line-height:21px;
  4618. }
  4619. #u11943 .text {
  4620. position:absolute;
  4621. align-self:center;
  4622. padding:2px 16px 2px 16px;
  4623. box-sizing:border-box;
  4624. width:100%;
  4625. }
  4626. #u11943_text {
  4627. border-width:0px;
  4628. white-space:nowrap;
  4629. text-transform:none;
  4630. }
  4631. #u11944 {
  4632. border-width:0px;
  4633. position:absolute;
  4634. left:1149px;
  4635. top:699px;
  4636. width:20px;
  4637. height:20px;
  4638. display:flex;
  4639. transition:none;
  4640. }
  4641. #u11944 .text {
  4642. position:absolute;
  4643. align-self:center;
  4644. padding:2px 2px 2px 2px;
  4645. box-sizing:border-box;
  4646. width:100%;
  4647. }
  4648. #u11944_img {
  4649. border-width:0px;
  4650. position:absolute;
  4651. left:0px;
  4652. top:0px;
  4653. width:20px;
  4654. height:20px;
  4655. }
  4656. #u11944_text {
  4657. border-width:0px;
  4658. word-wrap:break-word;
  4659. text-transform:none;
  4660. visibility:hidden;
  4661. }
  4662. #u11945_div {
  4663. border-width:0px;
  4664. position:absolute;
  4665. left:0px;
  4666. top:0px;
  4667. width:219px;
  4668. height:70px;
  4669. background:inherit;
  4670. background-color:rgba(255, 255, 255, 0);
  4671. border-top:0px;
  4672. border-right:0px;
  4673. border-bottom:0px;
  4674. border-radius:0px;
  4675. border-top-left-radius:0px;
  4676. border-bottom-left-radius:0px;
  4677. filter:drop-shadow(none);
  4678. transition:none;
  4679. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4680. font-weight:400;
  4681. font-style:normal;
  4682. font-size:14px;
  4683. color:#D9001B;
  4684. }
  4685. #u11945 {
  4686. border-width:0px;
  4687. position:absolute;
  4688. left:1120px;
  4689. top:425px;
  4690. width:219px;
  4691. height:70px;
  4692. display:flex;
  4693. transition:none;
  4694. transform-origin:50% 50%;
  4695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4696. font-weight:400;
  4697. font-style:normal;
  4698. font-size:14px;
  4699. color:#D9001B;
  4700. }
  4701. #u11945 .text {
  4702. position:absolute;
  4703. align-self:center;
  4704. padding:5px 0px 5px 0px;
  4705. box-sizing:border-box;
  4706. width:100%;
  4707. }
  4708. #u11945_text {
  4709. border-width:0px;
  4710. white-space:nowrap;
  4711. text-transform:none;
  4712. }
  4713. #u11946 {
  4714. border-width:0px;
  4715. position:absolute;
  4716. left:970px;
  4717. top:1189px;
  4718. width:600px;
  4719. height:30px;
  4720. }
  4721. #u11947 {
  4722. border-width:0px;
  4723. position:absolute;
  4724. left:0px;
  4725. top:0px;
  4726. width:0px;
  4727. height:0px;
  4728. }
  4729. #u11948_div {
  4730. border-width:0px;
  4731. position:absolute;
  4732. left:0px;
  4733. top:0px;
  4734. width:30px;
  4735. height:30px;
  4736. background:inherit;
  4737. background-color:rgba(255, 255, 255, 1);
  4738. box-sizing:border-box;
  4739. border-width:1px;
  4740. border-style:solid;
  4741. border-color:rgba(228, 228, 228, 1);
  4742. border-radius:4px;
  4743. filter:drop-shadow(none);
  4744. transition:none;
  4745. font-family:"Microsoft YaHei", sans-serif;
  4746. font-weight:400;
  4747. font-style:normal;
  4748. font-size:14px;
  4749. }
  4750. #u11948 {
  4751. border-width:0px;
  4752. position:absolute;
  4753. left:35px;
  4754. top:0px;
  4755. width:30px;
  4756. height:30px;
  4757. display:flex;
  4758. transition:none;
  4759. transform-origin:50% 50%;
  4760. font-family:"Microsoft YaHei", sans-serif;
  4761. font-weight:400;
  4762. font-style:normal;
  4763. font-size:14px;
  4764. }
  4765. #u11948 .text {
  4766. position:absolute;
  4767. align-self:center;
  4768. padding:2px 2px 2px 2px;
  4769. box-sizing:border-box;
  4770. width:100%;
  4771. }
  4772. #u11948_text {
  4773. border-width:0px;
  4774. word-wrap:break-word;
  4775. text-transform:none;
  4776. }
  4777. #u11949_div {
  4778. border-width:0px;
  4779. position:absolute;
  4780. left:0px;
  4781. top:0px;
  4782. width:49px;
  4783. height:30px;
  4784. background:inherit;
  4785. background-color:rgba(255, 255, 255, 0);
  4786. box-sizing:border-box;
  4787. border-width:1px;
  4788. border-style:solid;
  4789. border-color:rgba(188, 188, 188, 1);
  4790. border-radius:4px;
  4791. filter:drop-shadow(none);
  4792. transition:none;
  4793. font-family:"Microsoft YaHei", sans-serif;
  4794. font-weight:400;
  4795. font-style:normal;
  4796. font-size:14px;
  4797. color:#1E1E1E;
  4798. }
  4799. #u11949 {
  4800. border-width:0px;
  4801. position:absolute;
  4802. left:551px;
  4803. top:0px;
  4804. width:49px;
  4805. height:30px;
  4806. display:flex;
  4807. transition:none;
  4808. transform-origin:50% 50%;
  4809. font-family:"Microsoft YaHei", sans-serif;
  4810. font-weight:400;
  4811. font-style:normal;
  4812. font-size:14px;
  4813. color:#1E1E1E;
  4814. }
  4815. #u11949 .text {
  4816. position:absolute;
  4817. align-self:center;
  4818. padding:5px 10px 5px 10px;
  4819. box-sizing:border-box;
  4820. width:100%;
  4821. }
  4822. #u11949_text {
  4823. border-width:0px;
  4824. white-space:nowrap;
  4825. text-transform:none;
  4826. }
  4827. #u11950 {
  4828. border-width:0px;
  4829. position:absolute;
  4830. left:0px;
  4831. top:0px;
  4832. width:0px;
  4833. height:0px;
  4834. }
  4835. #u11951_div {
  4836. border-width:0px;
  4837. position:absolute;
  4838. left:0px;
  4839. top:0px;
  4840. width:33px;
  4841. height:24px;
  4842. background:inherit;
  4843. background-color:rgba(255, 255, 255, 1);
  4844. border-radius:0px;
  4845. filter:drop-shadow(none);
  4846. transition:none;
  4847. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4848. font-weight:400;
  4849. font-style:normal;
  4850. font-size:14px;
  4851. color:#BCBCBC;
  4852. text-align:left;
  4853. }
  4854. #u11951 {
  4855. border-width:0px;
  4856. position:absolute;
  4857. left:319px;
  4858. top:3px;
  4859. width:33px;
  4860. height:24px;
  4861. display:flex;
  4862. transition:none;
  4863. transform-origin:50% 50%;
  4864. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  4865. font-weight:400;
  4866. font-style:normal;
  4867. font-size:14px;
  4868. color:#BCBCBC;
  4869. text-align:left;
  4870. }
  4871. #u11951 .text {
  4872. position:absolute;
  4873. align-self:center;
  4874. padding:2px 2px 2px 2px;
  4875. box-sizing:border-box;
  4876. width:100%;
  4877. }
  4878. #u11951_text {
  4879. border-width:0px;
  4880. white-space:nowrap;
  4881. text-transform:none;
  4882. }
  4883. #u11952_div {
  4884. border-width:0px;
  4885. position:absolute;
  4886. left:0px;
  4887. top:0px;
  4888. width:40px;
  4889. height:30px;
  4890. background:inherit;
  4891. background-color:rgba(255, 255, 255, 1);
  4892. box-sizing:border-box;
  4893. border-width:1px;
  4894. border-style:solid;
  4895. border-color:rgba(228, 228, 228, 1);
  4896. border-radius:4px;
  4897. filter:drop-shadow(none);
  4898. transition:none;
  4899. font-family:"Microsoft YaHei", sans-serif;
  4900. font-weight:400;
  4901. font-style:normal;
  4902. font-size:14px;
  4903. }
  4904. #u11952 {
  4905. border-width:0px;
  4906. position:absolute;
  4907. left:354px;
  4908. top:0px;
  4909. width:40px;
  4910. height:30px;
  4911. display:flex;
  4912. transition:none;
  4913. transform-origin:50% 50%;
  4914. font-family:"Microsoft YaHei", sans-serif;
  4915. font-weight:400;
  4916. font-style:normal;
  4917. font-size:14px;
  4918. }
  4919. #u11952 .text {
  4920. position:absolute;
  4921. align-self:center;
  4922. padding:2px 2px 2px 2px;
  4923. box-sizing:border-box;
  4924. width:100%;
  4925. }
  4926. #u11952_text {
  4927. border-width:0px;
  4928. word-wrap:break-word;
  4929. text-transform:none;
  4930. visibility:hidden;
  4931. }
  4932. #u11953_div {
  4933. border-width:0px;
  4934. position:absolute;
  4935. left:0px;
  4936. top:0px;
  4937. width:19px;
  4938. height:24px;
  4939. background:inherit;
  4940. background-color:rgba(255, 255, 255, 1);
  4941. border-radius:0px;
  4942. filter:drop-shadow(none);
  4943. transition:none;
  4944. font-family:"Microsoft YaHei", sans-serif;
  4945. font-weight:400;
  4946. font-style:normal;
  4947. font-size:14px;
  4948. color:#BCBCBC;
  4949. text-align:left;
  4950. }
  4951. #u11953 {
  4952. border-width:0px;
  4953. position:absolute;
  4954. left:396px;
  4955. top:4px;
  4956. width:19px;
  4957. height:24px;
  4958. display:flex;
  4959. transition:none;
  4960. transform-origin:50% 50%;
  4961. font-family:"Microsoft YaHei", sans-serif;
  4962. font-weight:400;
  4963. font-style:normal;
  4964. font-size:14px;
  4965. color:#BCBCBC;
  4966. text-align:left;
  4967. }
  4968. #u11953 .text {
  4969. position:absolute;
  4970. align-self:center;
  4971. padding:2px 2px 2px 2px;
  4972. box-sizing:border-box;
  4973. width:100%;
  4974. }
  4975. #u11953_text {
  4976. border-width:0px;
  4977. white-space:nowrap;
  4978. text-transform:none;
  4979. }
  4980. #u11954_input {
  4981. position:absolute;
  4982. left:0px;
  4983. top:0px;
  4984. width:34px;
  4985. height:25px;
  4986. padding:2px 2px 2px 2px;
  4987. font-family:"Microsoft YaHei", sans-serif;
  4988. font-weight:400;
  4989. font-style:normal;
  4990. font-size:13px;
  4991. letter-spacing:normal;
  4992. color:#000000;
  4993. vertical-align:none;
  4994. text-align:left;
  4995. text-transform:none;
  4996. background-color:transparent;
  4997. border-color:transparent;
  4998. }
  4999. #u11954_input.hint {
  5000. position:absolute;
  5001. left:0px;
  5002. top:0px;
  5003. width:34px;
  5004. height:25px;
  5005. padding:2px 2px 2px 2px;
  5006. font-family:"Microsoft YaHei", sans-serif;
  5007. font-weight:400;
  5008. font-style:normal;
  5009. font-size:13px;
  5010. letter-spacing:normal;
  5011. color:#999999;
  5012. vertical-align:none;
  5013. text-align:left;
  5014. text-transform:none;
  5015. background-color:transparent;
  5016. border-color:transparent;
  5017. }
  5018. #u11954_input.disabled {
  5019. position:absolute;
  5020. left:0px;
  5021. top:0px;
  5022. width:34px;
  5023. height:25px;
  5024. padding:2px 2px 2px 2px;
  5025. font-family:"Microsoft YaHei", sans-serif;
  5026. font-weight:400;
  5027. font-style:normal;
  5028. font-size:13px;
  5029. letter-spacing:normal;
  5030. color:#000000;
  5031. vertical-align:none;
  5032. text-align:left;
  5033. text-transform:none;
  5034. background-color:transparent;
  5035. border-color:transparent;
  5036. }
  5037. #u11954_input.hint.disabled {
  5038. position:absolute;
  5039. left:0px;
  5040. top:0px;
  5041. width:34px;
  5042. height:25px;
  5043. padding:2px 2px 2px 2px;
  5044. font-family:"Microsoft YaHei", sans-serif;
  5045. font-weight:400;
  5046. font-style:normal;
  5047. font-size:13px;
  5048. letter-spacing:normal;
  5049. color:#999999;
  5050. vertical-align:none;
  5051. text-align:left;
  5052. text-transform:none;
  5053. background-color:transparent;
  5054. border-color:transparent;
  5055. }
  5056. #u11954_div {
  5057. border-width:0px;
  5058. position:absolute;
  5059. left:0px;
  5060. top:0px;
  5061. width:34px;
  5062. height:25px;
  5063. background:inherit;
  5064. background-color:rgba(255, 255, 255, 1);
  5065. border-radius:0px;
  5066. filter:drop-shadow(none);
  5067. transition:none;
  5068. font-family:"Microsoft YaHei", sans-serif;
  5069. font-weight:400;
  5070. font-style:normal;
  5071. }
  5072. #u11954 {
  5073. border-width:0px;
  5074. position:absolute;
  5075. left:357px;
  5076. top:2px;
  5077. width:34px;
  5078. height:25px;
  5079. display:flex;
  5080. transition:none;
  5081. transform-origin:50% 50%;
  5082. font-family:"Microsoft YaHei", sans-serif;
  5083. font-weight:400;
  5084. font-style:normal;
  5085. }
  5086. #u11954 .text {
  5087. position:absolute;
  5088. align-self:center;
  5089. padding:2px 2px 2px 2px;
  5090. box-sizing:border-box;
  5091. width:100%;
  5092. }
  5093. #u11954_div.hint {
  5094. border-width:0px;
  5095. position:absolute;
  5096. left:0px;
  5097. top:0px;
  5098. width:34px;
  5099. height:25px;
  5100. background:inherit;
  5101. background-color:rgba(255, 255, 255, 1);
  5102. border-radius:0px;
  5103. filter:drop-shadow(none);
  5104. transition:none;
  5105. font-family:"Microsoft YaHei", sans-serif;
  5106. font-weight:400;
  5107. font-style:normal;
  5108. }
  5109. #u11954.hint {
  5110. }
  5111. #u11954_div.disabled {
  5112. border-width:0px;
  5113. position:absolute;
  5114. left:0px;
  5115. top:0px;
  5116. width:34px;
  5117. height:25px;
  5118. background:inherit;
  5119. background-color:rgba(240, 240, 240, 1);
  5120. border-radius:0px;
  5121. filter:drop-shadow(none);
  5122. transition:none;
  5123. font-family:"Microsoft YaHei", sans-serif;
  5124. font-weight:400;
  5125. font-style:normal;
  5126. }
  5127. #u11954.disabled {
  5128. }
  5129. #u11954_div.hint.disabled {
  5130. border-width:0px;
  5131. position:absolute;
  5132. left:0px;
  5133. top:0px;
  5134. width:34px;
  5135. height:25px;
  5136. background:inherit;
  5137. background-color:rgba(240, 240, 240, 1);
  5138. border-radius:0px;
  5139. filter:drop-shadow(none);
  5140. transition:none;
  5141. font-family:"Microsoft YaHei", sans-serif;
  5142. font-weight:400;
  5143. font-style:normal;
  5144. }
  5145. #u11954.hint.disabled {
  5146. }
  5147. #u11955_div {
  5148. border-width:0px;
  5149. position:absolute;
  5150. left:0px;
  5151. top:0px;
  5152. width:30px;
  5153. height:30px;
  5154. background:inherit;
  5155. background-color:rgba(41, 143, 255, 1);
  5156. border-radius:4px;
  5157. filter:drop-shadow(none);
  5158. transition:none;
  5159. font-family:"Microsoft YaHei", sans-serif;
  5160. font-weight:400;
  5161. font-style:normal;
  5162. font-size:14px;
  5163. color:#FFFFFF;
  5164. }
  5165. #u11955 {
  5166. border-width:0px;
  5167. position:absolute;
  5168. left:69px;
  5169. top:0px;
  5170. width:30px;
  5171. height:30px;
  5172. display:flex;
  5173. transition:none;
  5174. transform-origin:50% 50%;
  5175. font-family:"Microsoft YaHei", sans-serif;
  5176. font-weight:400;
  5177. font-style:normal;
  5178. font-size:14px;
  5179. color:#FFFFFF;
  5180. }
  5181. #u11955 .text {
  5182. position:absolute;
  5183. align-self:center;
  5184. padding:2px 2px 2px 2px;
  5185. box-sizing:border-box;
  5186. width:100%;
  5187. }
  5188. #u11955_text {
  5189. border-width:0px;
  5190. word-wrap:break-word;
  5191. text-transform:none;
  5192. }
  5193. #u11956_div {
  5194. border-width:0px;
  5195. position:absolute;
  5196. left:0px;
  5197. top:0px;
  5198. width:30px;
  5199. height:30px;
  5200. background:inherit;
  5201. background-color:rgba(255, 255, 255, 1);
  5202. box-sizing:border-box;
  5203. border-width:1px;
  5204. border-style:solid;
  5205. border-color:rgba(228, 228, 228, 1);
  5206. border-radius:4px;
  5207. filter:drop-shadow(none);
  5208. transition:none;
  5209. font-family:"Microsoft YaHei", sans-serif;
  5210. font-weight:400;
  5211. font-style:normal;
  5212. font-size:14px;
  5213. }
  5214. #u11956 {
  5215. border-width:0px;
  5216. position:absolute;
  5217. left:103px;
  5218. top:0px;
  5219. width:30px;
  5220. height:30px;
  5221. display:flex;
  5222. transition:none;
  5223. transform-origin:50% 50%;
  5224. font-family:"Microsoft YaHei", sans-serif;
  5225. font-weight:400;
  5226. font-style:normal;
  5227. font-size:14px;
  5228. }
  5229. #u11956 .text {
  5230. position:absolute;
  5231. align-self:center;
  5232. padding:2px 2px 2px 2px;
  5233. box-sizing:border-box;
  5234. width:100%;
  5235. }
  5236. #u11956_text {
  5237. border-width:0px;
  5238. word-wrap:break-word;
  5239. text-transform:none;
  5240. }
  5241. #u11957_div {
  5242. border-width:0px;
  5243. position:absolute;
  5244. left:0px;
  5245. top:0px;
  5246. width:30px;
  5247. height:30px;
  5248. background:inherit;
  5249. background-color:rgba(255, 255, 255, 1);
  5250. box-sizing:border-box;
  5251. border-width:1px;
  5252. border-style:solid;
  5253. border-color:rgba(228, 228, 228, 1);
  5254. border-radius:4px;
  5255. filter:drop-shadow(none);
  5256. transition:none;
  5257. font-family:"Microsoft YaHei", sans-serif;
  5258. font-weight:400;
  5259. font-style:normal;
  5260. font-size:14px;
  5261. }
  5262. #u11957 {
  5263. border-width:0px;
  5264. position:absolute;
  5265. left:137px;
  5266. top:0px;
  5267. width:30px;
  5268. height:30px;
  5269. display:flex;
  5270. transition:none;
  5271. transform-origin:50% 50%;
  5272. font-family:"Microsoft YaHei", sans-serif;
  5273. font-weight:400;
  5274. font-style:normal;
  5275. font-size:14px;
  5276. }
  5277. #u11957 .text {
  5278. position:absolute;
  5279. align-self:center;
  5280. padding:2px 2px 2px 2px;
  5281. box-sizing:border-box;
  5282. width:100%;
  5283. }
  5284. #u11957_text {
  5285. border-width:0px;
  5286. word-wrap:break-word;
  5287. text-transform:none;
  5288. }
  5289. #u11958_div {
  5290. border-width:0px;
  5291. position:absolute;
  5292. left:0px;
  5293. top:0px;
  5294. width:30px;
  5295. height:30px;
  5296. background:inherit;
  5297. background-color:rgba(255, 255, 255, 1);
  5298. border-radius:4px;
  5299. filter:drop-shadow(none);
  5300. transition:none;
  5301. font-family:"Microsoft YaHei", sans-serif;
  5302. font-weight:400;
  5303. font-style:normal;
  5304. font-size:14px;
  5305. }
  5306. #u11958 {
  5307. border-width:0px;
  5308. position:absolute;
  5309. left:167px;
  5310. top:0px;
  5311. width:30px;
  5312. height:30px;
  5313. display:flex;
  5314. transition:none;
  5315. transform-origin:50% 50%;
  5316. font-family:"Microsoft YaHei", sans-serif;
  5317. font-weight:400;
  5318. font-style:normal;
  5319. font-size:14px;
  5320. }
  5321. #u11958 .text {
  5322. position:absolute;
  5323. align-self:center;
  5324. padding:2px 2px 2px 2px;
  5325. box-sizing:border-box;
  5326. width:100%;
  5327. }
  5328. #u11958_text {
  5329. border-width:0px;
  5330. word-wrap:break-word;
  5331. text-transform:none;
  5332. }
  5333. #u11959_div {
  5334. border-width:0px;
  5335. position:absolute;
  5336. left:0px;
  5337. top:0px;
  5338. width:30px;
  5339. height:30px;
  5340. background:inherit;
  5341. background-color:rgba(255, 255, 255, 1);
  5342. box-sizing:border-box;
  5343. border-width:1px;
  5344. border-style:solid;
  5345. border-color:rgba(228, 228, 228, 1);
  5346. border-radius:4px;
  5347. filter:drop-shadow(none);
  5348. transition:none;
  5349. font-family:"Microsoft YaHei", sans-serif;
  5350. font-weight:400;
  5351. font-style:normal;
  5352. font-size:14px;
  5353. }
  5354. #u11959 {
  5355. border-width:0px;
  5356. position:absolute;
  5357. left:201px;
  5358. top:0px;
  5359. width:30px;
  5360. height:30px;
  5361. display:flex;
  5362. transition:none;
  5363. transform-origin:50% 50%;
  5364. font-family:"Microsoft YaHei", sans-serif;
  5365. font-weight:400;
  5366. font-style:normal;
  5367. font-size:14px;
  5368. }
  5369. #u11959 .text {
  5370. position:absolute;
  5371. align-self:center;
  5372. padding:2px 2px 2px 2px;
  5373. box-sizing:border-box;
  5374. width:100%;
  5375. }
  5376. #u11959_text {
  5377. border-width:0px;
  5378. word-wrap:break-word;
  5379. text-transform:none;
  5380. }
  5381. #u11960_div {
  5382. border-width:0px;
  5383. position:absolute;
  5384. left:0px;
  5385. top:0px;
  5386. width:32px;
  5387. height:21px;
  5388. background:inherit;
  5389. background-color:rgba(255, 255, 255, 1);
  5390. border-radius:15px;
  5391. filter:drop-shadow(none);
  5392. transition:none;
  5393. font-family:"Microsoft YaHei", sans-serif;
  5394. font-weight:400;
  5395. font-style:normal;
  5396. font-size:14px;
  5397. color:#1E1E1E;
  5398. }
  5399. #u11960 {
  5400. border-width:0px;
  5401. position:absolute;
  5402. left:275px;
  5403. top:5px;
  5404. width:32px;
  5405. height:21px;
  5406. display:flex;
  5407. transition:none;
  5408. transform-origin:50% 50%;
  5409. font-family:"Microsoft YaHei", sans-serif;
  5410. font-weight:400;
  5411. font-style:normal;
  5412. font-size:14px;
  5413. color:#1E1E1E;
  5414. }
  5415. #u11960 .text {
  5416. position:absolute;
  5417. align-self:center;
  5418. padding:2px 2px 2px 2px;
  5419. box-sizing:border-box;
  5420. width:100%;
  5421. }
  5422. #u11960_text {
  5423. border-width:0px;
  5424. white-space:nowrap;
  5425. text-transform:none;
  5426. }
  5427. #u11961 {
  5428. border-width:0px;
  5429. position:absolute;
  5430. left:0px;
  5431. top:0px;
  5432. width:0px;
  5433. height:0px;
  5434. }
  5435. #u11962_div {
  5436. border-width:0px;
  5437. position:absolute;
  5438. left:0px;
  5439. top:0px;
  5440. width:31px;
  5441. height:30px;
  5442. background:inherit;
  5443. background-color:rgba(255, 255, 255, 1);
  5444. box-sizing:border-box;
  5445. border-width:1px;
  5446. border-style:solid;
  5447. border-color:rgba(228, 228, 228, 1);
  5448. border-radius:4px;
  5449. filter:drop-shadow(none);
  5450. transition:none;
  5451. font-family:"Microsoft YaHei", sans-serif;
  5452. font-weight:400;
  5453. font-style:normal;
  5454. font-size:12px;
  5455. }
  5456. #u11962 {
  5457. border-width:0px;
  5458. position:absolute;
  5459. left:0px;
  5460. top:0px;
  5461. width:31px;
  5462. height:30px;
  5463. display:flex;
  5464. transition:none;
  5465. transform-origin:50% 50%;
  5466. font-family:"Microsoft YaHei", sans-serif;
  5467. font-weight:400;
  5468. font-style:normal;
  5469. font-size:12px;
  5470. }
  5471. #u11962 .text {
  5472. position:absolute;
  5473. align-self:center;
  5474. padding:2px 2px 2px 2px;
  5475. box-sizing:border-box;
  5476. width:100%;
  5477. }
  5478. #u11962_text {
  5479. border-width:0px;
  5480. word-wrap:break-word;
  5481. text-transform:none;
  5482. visibility:hidden;
  5483. }
  5484. #u11963 {
  5485. border-width:0px;
  5486. position:absolute;
  5487. left:12px;
  5488. top:8px;
  5489. width:8px;
  5490. height:14px;
  5491. display:flex;
  5492. transition:none;
  5493. font-family:"Microsoft YaHei", sans-serif;
  5494. font-weight:400;
  5495. font-style:normal;
  5496. font-size:12px;
  5497. }
  5498. #u11963 .text {
  5499. position:absolute;
  5500. align-self:center;
  5501. padding:2px 2px 2px 2px;
  5502. box-sizing:border-box;
  5503. width:100%;
  5504. }
  5505. #u11963_img {
  5506. border-width:0px;
  5507. position:absolute;
  5508. left:0px;
  5509. top:0px;
  5510. width:8px;
  5511. height:14px;
  5512. }
  5513. #u11963_text {
  5514. border-width:0px;
  5515. word-wrap:break-word;
  5516. text-transform:none;
  5517. visibility:hidden;
  5518. }
  5519. #u11964 {
  5520. border-width:0px;
  5521. position:absolute;
  5522. left:0px;
  5523. top:0px;
  5524. width:0px;
  5525. height:0px;
  5526. }
  5527. #u11965_div {
  5528. border-width:0px;
  5529. position:absolute;
  5530. left:0px;
  5531. top:0px;
  5532. width:31px;
  5533. height:30px;
  5534. background:inherit;
  5535. background-color:rgba(255, 255, 255, 1);
  5536. box-sizing:border-box;
  5537. border-width:1px;
  5538. border-style:solid;
  5539. border-color:rgba(228, 228, 228, 1);
  5540. border-radius:4px;
  5541. filter:drop-shadow(none);
  5542. transition:none;
  5543. font-family:"Microsoft YaHei", sans-serif;
  5544. font-weight:400;
  5545. font-style:normal;
  5546. font-size:12px;
  5547. }
  5548. #u11965 {
  5549. border-width:0px;
  5550. position:absolute;
  5551. left:234px;
  5552. top:0px;
  5553. width:31px;
  5554. height:30px;
  5555. display:flex;
  5556. transition:none;
  5557. transform-origin:50% 50%;
  5558. font-family:"Microsoft YaHei", sans-serif;
  5559. font-weight:400;
  5560. font-style:normal;
  5561. font-size:12px;
  5562. }
  5563. #u11965 .text {
  5564. position:absolute;
  5565. align-self:center;
  5566. padding:2px 2px 2px 2px;
  5567. box-sizing:border-box;
  5568. width:100%;
  5569. }
  5570. #u11965_text {
  5571. border-width:0px;
  5572. word-wrap:break-word;
  5573. text-transform:none;
  5574. visibility:hidden;
  5575. }
  5576. #u11966 {
  5577. border-width:0px;
  5578. position:absolute;
  5579. left:247px;
  5580. top:8px;
  5581. width:8px;
  5582. height:14px;
  5583. display:flex;
  5584. transition:none;
  5585. font-family:"Microsoft YaHei", sans-serif;
  5586. font-weight:400;
  5587. font-style:normal;
  5588. font-size:12px;
  5589. }
  5590. #u11966 .text {
  5591. position:absolute;
  5592. align-self:center;
  5593. padding:2px 2px 2px 2px;
  5594. box-sizing:border-box;
  5595. width:100%;
  5596. }
  5597. #u11966_img {
  5598. border-width:0px;
  5599. position:absolute;
  5600. left:0px;
  5601. top:0px;
  5602. width:8px;
  5603. height:14px;
  5604. }
  5605. #u11966_text {
  5606. border-width:0px;
  5607. word-wrap:break-word;
  5608. text-transform:none;
  5609. visibility:hidden;
  5610. }
  5611. #u11967 {
  5612. border-width:0px;
  5613. position:absolute;
  5614. left:0px;
  5615. top:0px;
  5616. width:0px;
  5617. height:0px;
  5618. }
  5619. #u11968_div {
  5620. border-width:0px;
  5621. position:absolute;
  5622. left:0px;
  5623. top:0px;
  5624. width:33px;
  5625. height:24px;
  5626. background:inherit;
  5627. background-color:rgba(255, 255, 255, 1);
  5628. border-radius:0px;
  5629. filter:drop-shadow(none);
  5630. transition:none;
  5631. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5632. font-weight:400;
  5633. font-style:normal;
  5634. font-size:14px;
  5635. color:#BCBCBC;
  5636. text-align:left;
  5637. }
  5638. #u11968 {
  5639. border-width:0px;
  5640. position:absolute;
  5641. left:435px;
  5642. top:3px;
  5643. width:33px;
  5644. height:24px;
  5645. display:flex;
  5646. transition:none;
  5647. transform-origin:50% 50%;
  5648. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5649. font-weight:400;
  5650. font-style:normal;
  5651. font-size:14px;
  5652. color:#BCBCBC;
  5653. text-align:left;
  5654. }
  5655. #u11968 .text {
  5656. position:absolute;
  5657. align-self:center;
  5658. padding:2px 2px 2px 2px;
  5659. box-sizing:border-box;
  5660. width:100%;
  5661. }
  5662. #u11968_text {
  5663. border-width:0px;
  5664. white-space:nowrap;
  5665. text-transform:none;
  5666. }
  5667. #u11969_div {
  5668. border-width:0px;
  5669. position:absolute;
  5670. left:0px;
  5671. top:0px;
  5672. width:40px;
  5673. height:30px;
  5674. background:inherit;
  5675. background-color:rgba(255, 255, 255, 1);
  5676. box-sizing:border-box;
  5677. border-width:1px;
  5678. border-style:solid;
  5679. border-color:rgba(228, 228, 228, 1);
  5680. border-radius:4px;
  5681. filter:drop-shadow(none);
  5682. transition:none;
  5683. font-family:"Microsoft YaHei", sans-serif;
  5684. font-weight:400;
  5685. font-style:normal;
  5686. font-size:14px;
  5687. }
  5688. #u11969 {
  5689. border-width:0px;
  5690. position:absolute;
  5691. left:470px;
  5692. top:0px;
  5693. width:40px;
  5694. height:30px;
  5695. display:flex;
  5696. transition:none;
  5697. transform-origin:50% 50%;
  5698. font-family:"Microsoft YaHei", sans-serif;
  5699. font-weight:400;
  5700. font-style:normal;
  5701. font-size:14px;
  5702. }
  5703. #u11969 .text {
  5704. position:absolute;
  5705. align-self:center;
  5706. padding:2px 2px 2px 2px;
  5707. box-sizing:border-box;
  5708. width:100%;
  5709. }
  5710. #u11969_text {
  5711. border-width:0px;
  5712. word-wrap:break-word;
  5713. text-transform:none;
  5714. visibility:hidden;
  5715. }
  5716. #u11970_div {
  5717. border-width:0px;
  5718. position:absolute;
  5719. left:0px;
  5720. top:0px;
  5721. width:19px;
  5722. height:24px;
  5723. background:inherit;
  5724. background-color:rgba(255, 255, 255, 1);
  5725. border-radius:0px;
  5726. filter:drop-shadow(none);
  5727. transition:none;
  5728. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5729. font-weight:400;
  5730. font-style:normal;
  5731. font-size:14px;
  5732. color:#BCBCBC;
  5733. text-align:left;
  5734. }
  5735. #u11970 {
  5736. border-width:0px;
  5737. position:absolute;
  5738. left:512px;
  5739. top:4px;
  5740. width:19px;
  5741. height:24px;
  5742. display:flex;
  5743. transition:none;
  5744. transform-origin:50% 50%;
  5745. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5746. font-weight:400;
  5747. font-style:normal;
  5748. font-size:14px;
  5749. color:#BCBCBC;
  5750. text-align:left;
  5751. }
  5752. #u11970 .text {
  5753. position:absolute;
  5754. align-self:center;
  5755. padding:2px 2px 2px 2px;
  5756. box-sizing:border-box;
  5757. width:100%;
  5758. }
  5759. #u11970_text {
  5760. border-width:0px;
  5761. white-space:nowrap;
  5762. text-transform:none;
  5763. }
  5764. #u11971_input {
  5765. position:absolute;
  5766. left:0px;
  5767. top:0px;
  5768. width:34px;
  5769. height:25px;
  5770. padding:2px 2px 2px 2px;
  5771. font-family:"Microsoft YaHei", sans-serif;
  5772. font-weight:400;
  5773. font-style:normal;
  5774. font-size:13px;
  5775. letter-spacing:normal;
  5776. color:#000000;
  5777. vertical-align:none;
  5778. text-align:left;
  5779. text-transform:none;
  5780. background-color:transparent;
  5781. border-color:transparent;
  5782. }
  5783. #u11971_input.hint {
  5784. position:absolute;
  5785. left:0px;
  5786. top:0px;
  5787. width:34px;
  5788. height:25px;
  5789. padding:2px 2px 2px 2px;
  5790. font-family:"Microsoft YaHei", sans-serif;
  5791. font-weight:400;
  5792. font-style:normal;
  5793. font-size:13px;
  5794. letter-spacing:normal;
  5795. color:#999999;
  5796. vertical-align:none;
  5797. text-align:left;
  5798. text-transform:none;
  5799. background-color:transparent;
  5800. border-color:transparent;
  5801. }
  5802. #u11971_input.disabled {
  5803. position:absolute;
  5804. left:0px;
  5805. top:0px;
  5806. width:34px;
  5807. height:25px;
  5808. padding:2px 2px 2px 2px;
  5809. font-family:"Microsoft YaHei", sans-serif;
  5810. font-weight:400;
  5811. font-style:normal;
  5812. font-size:13px;
  5813. letter-spacing:normal;
  5814. color:#000000;
  5815. vertical-align:none;
  5816. text-align:left;
  5817. text-transform:none;
  5818. background-color:transparent;
  5819. border-color:transparent;
  5820. }
  5821. #u11971_input.hint.disabled {
  5822. position:absolute;
  5823. left:0px;
  5824. top:0px;
  5825. width:34px;
  5826. height:25px;
  5827. padding:2px 2px 2px 2px;
  5828. font-family:"Microsoft YaHei", sans-serif;
  5829. font-weight:400;
  5830. font-style:normal;
  5831. font-size:13px;
  5832. letter-spacing:normal;
  5833. color:#999999;
  5834. vertical-align:none;
  5835. text-align:left;
  5836. text-transform:none;
  5837. background-color:transparent;
  5838. border-color:transparent;
  5839. }
  5840. #u11971_div {
  5841. border-width:0px;
  5842. position:absolute;
  5843. left:0px;
  5844. top:0px;
  5845. width:34px;
  5846. height:25px;
  5847. background:inherit;
  5848. background-color:rgba(255, 255, 255, 1);
  5849. border-radius:0px;
  5850. filter:drop-shadow(none);
  5851. transition:none;
  5852. font-family:"Microsoft YaHei", sans-serif;
  5853. font-weight:400;
  5854. font-style:normal;
  5855. }
  5856. #u11971 {
  5857. border-width:0px;
  5858. position:absolute;
  5859. left:473px;
  5860. top:2px;
  5861. width:34px;
  5862. height:25px;
  5863. display:flex;
  5864. transition:none;
  5865. transform-origin:50% 50%;
  5866. font-family:"Microsoft YaHei", sans-serif;
  5867. font-weight:400;
  5868. font-style:normal;
  5869. }
  5870. #u11971 .text {
  5871. position:absolute;
  5872. align-self:center;
  5873. padding:2px 2px 2px 2px;
  5874. box-sizing:border-box;
  5875. width:100%;
  5876. }
  5877. #u11971_div.hint {
  5878. border-width:0px;
  5879. position:absolute;
  5880. left:0px;
  5881. top:0px;
  5882. width:34px;
  5883. height:25px;
  5884. background:inherit;
  5885. background-color:rgba(255, 255, 255, 1);
  5886. border-radius:0px;
  5887. filter:drop-shadow(none);
  5888. transition:none;
  5889. font-family:"Microsoft YaHei", sans-serif;
  5890. font-weight:400;
  5891. font-style:normal;
  5892. }
  5893. #u11971.hint {
  5894. }
  5895. #u11971_div.disabled {
  5896. border-width:0px;
  5897. position:absolute;
  5898. left:0px;
  5899. top:0px;
  5900. width:34px;
  5901. height:25px;
  5902. background:inherit;
  5903. background-color:rgba(240, 240, 240, 1);
  5904. border-radius:0px;
  5905. filter:drop-shadow(none);
  5906. transition:none;
  5907. font-family:"Microsoft YaHei", sans-serif;
  5908. font-weight:400;
  5909. font-style:normal;
  5910. }
  5911. #u11971.disabled {
  5912. }
  5913. #u11971_div.hint.disabled {
  5914. border-width:0px;
  5915. position:absolute;
  5916. left:0px;
  5917. top:0px;
  5918. width:34px;
  5919. height:25px;
  5920. background:inherit;
  5921. background-color:rgba(240, 240, 240, 1);
  5922. border-radius:0px;
  5923. filter:drop-shadow(none);
  5924. transition:none;
  5925. font-family:"Microsoft YaHei", sans-serif;
  5926. font-weight:400;
  5927. font-style:normal;
  5928. }
  5929. #u11971.hint.disabled {
  5930. }
  5931. #u11972_div {
  5932. border-width:0px;
  5933. position:absolute;
  5934. left:0px;
  5935. top:0px;
  5936. width:60px;
  5937. height:30px;
  5938. background:inherit;
  5939. background-color:rgba(24, 144, 255, 1);
  5940. border-radius:4px;
  5941. filter:drop-shadow(none);
  5942. transition:none;
  5943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5944. font-weight:400;
  5945. font-style:normal;
  5946. font-size:14px;
  5947. color:#FFFFFF;
  5948. }
  5949. #u11972 {
  5950. border-width:0px;
  5951. position:absolute;
  5952. left:356px;
  5953. top:195px;
  5954. width:60px;
  5955. height:30px;
  5956. display:flex;
  5957. transition:none;
  5958. transform-origin:50% 50%;
  5959. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5960. font-weight:400;
  5961. font-style:normal;
  5962. font-size:14px;
  5963. color:#FFFFFF;
  5964. }
  5965. #u11972 .text {
  5966. position:absolute;
  5967. align-self:center;
  5968. padding:2px 2px 2px 2px;
  5969. box-sizing:border-box;
  5970. width:100%;
  5971. }
  5972. #u11972_text {
  5973. border-width:0px;
  5974. word-wrap:break-word;
  5975. text-transform:none;
  5976. }
  5977. #u11973_div {
  5978. border-width:0px;
  5979. position:absolute;
  5980. left:0px;
  5981. top:0px;
  5982. width:211px;
  5983. height:20px;
  5984. background:inherit;
  5985. background-color:rgba(255, 255, 255, 0);
  5986. border-left:0px;
  5987. border-top:0px;
  5988. border-right:0px;
  5989. border-radius:0px;
  5990. border-bottom-right-radius:0px;
  5991. border-bottom-left-radius:0px;
  5992. filter:drop-shadow(none);
  5993. transition:none;
  5994. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  5995. font-weight:400;
  5996. font-style:normal;
  5997. font-size:14px;
  5998. color:#7F7F7F;
  5999. }
  6000. #u11973 {
  6001. border-width:0px;
  6002. position:absolute;
  6003. left:352px;
  6004. top:100px;
  6005. width:211px;
  6006. height:20px;
  6007. display:flex;
  6008. transition:none;
  6009. transform-origin:50% 50%;
  6010. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6011. font-weight:400;
  6012. font-style:normal;
  6013. font-size:14px;
  6014. color:#7F7F7F;
  6015. }
  6016. #u11973 .text {
  6017. position:absolute;
  6018. align-self:center;
  6019. padding:0px 0px 0px 0px;
  6020. box-sizing:border-box;
  6021. width:100%;
  6022. }
  6023. #u11973_text {
  6024. border-width:0px;
  6025. white-space:nowrap;
  6026. text-transform:none;
  6027. }
  6028. #u11974 {
  6029. border-width:0px;
  6030. position:absolute;
  6031. left:0px;
  6032. top:0px;
  6033. width:0px;
  6034. height:0px;
  6035. }
  6036. #u11975_div {
  6037. border-width:0px;
  6038. position:absolute;
  6039. left:0px;
  6040. top:0px;
  6041. width:680px;
  6042. height:1198px;
  6043. background:inherit;
  6044. background-color:rgba(255, 255, 255, 1);
  6045. box-sizing:border-box;
  6046. border-width:1px;
  6047. border-style:solid;
  6048. border-color:rgba(215, 215, 215, 1);
  6049. border-radius:0px;
  6050. filter:drop-shadow(none);
  6051. transition:none;
  6052. }
  6053. #u11975 {
  6054. border-width:0px;
  6055. position:absolute;
  6056. left:1630px;
  6057. top:50px;
  6058. width:680px;
  6059. height:1198px;
  6060. display:flex;
  6061. transition:none;
  6062. transform-origin:50% 50%;
  6063. }
  6064. #u11975 .text {
  6065. position:absolute;
  6066. align-self:center;
  6067. padding:2px 2px 2px 2px;
  6068. box-sizing:border-box;
  6069. width:100%;
  6070. }
  6071. #u11975_text {
  6072. border-width:0px;
  6073. word-wrap:break-word;
  6074. text-transform:none;
  6075. visibility:hidden;
  6076. }
  6077. #u11976_div {
  6078. border-width:0px;
  6079. position:absolute;
  6080. left:0px;
  6081. top:0px;
  6082. width:37px;
  6083. height:30px;
  6084. background:inherit;
  6085. background-color:rgba(255, 255, 255, 0);
  6086. border-radius:0px;
  6087. filter:drop-shadow(none);
  6088. transition:none;
  6089. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6090. font-weight:400;
  6091. font-style:normal;
  6092. font-size:18px;
  6093. color:#000000;
  6094. line-height:30px;
  6095. }
  6096. #u11976 {
  6097. border-width:0px;
  6098. position:absolute;
  6099. left:1650px;
  6100. top:70px;
  6101. width:37px;
  6102. height:30px;
  6103. display:flex;
  6104. transition:none;
  6105. transform-origin:50% 50%;
  6106. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6107. font-weight:400;
  6108. font-style:normal;
  6109. font-size:18px;
  6110. color:#000000;
  6111. line-height:30px;
  6112. }
  6113. #u11976 .text {
  6114. position:absolute;
  6115. align-self:flex-start;
  6116. padding:0px 0px 0px 0px;
  6117. box-sizing:border-box;
  6118. width:100%;
  6119. }
  6120. #u11976_text {
  6121. border-width:0px;
  6122. white-space:nowrap;
  6123. text-transform:none;
  6124. }
  6125. #u11977_div {
  6126. border-width:0px;
  6127. position:absolute;
  6128. left:0px;
  6129. top:0px;
  6130. width:78px;
  6131. height:30px;
  6132. background:inherit;
  6133. background-color:rgba(255, 255, 255, 0);
  6134. border-top:0px;
  6135. border-right:0px;
  6136. border-bottom:0px;
  6137. border-radius:0px;
  6138. border-top-left-radius:0px;
  6139. border-bottom-left-radius:0px;
  6140. filter:drop-shadow(none);
  6141. transition:none;
  6142. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6143. font-weight:400;
  6144. font-style:normal;
  6145. font-size:14px;
  6146. text-align:right;
  6147. }
  6148. #u11977 {
  6149. border-width:0px;
  6150. position:absolute;
  6151. left:1694px;
  6152. top:124px;
  6153. width:78px;
  6154. height:30px;
  6155. display:flex;
  6156. transition:none;
  6157. transform-origin:50% 50%;
  6158. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6159. font-weight:400;
  6160. font-style:normal;
  6161. font-size:14px;
  6162. text-align:right;
  6163. }
  6164. #u11977 .text {
  6165. position:absolute;
  6166. align-self:center;
  6167. padding:5px 0px 5px 0px;
  6168. box-sizing:border-box;
  6169. width:100%;
  6170. }
  6171. #u11977_text {
  6172. border-width:0px;
  6173. white-space:nowrap;
  6174. text-transform:none;
  6175. }
  6176. #u11978 {
  6177. border-width:0px;
  6178. position:absolute;
  6179. left:0px;
  6180. top:0px;
  6181. width:0px;
  6182. height:0px;
  6183. }
  6184. #u11979_div {
  6185. border-width:0px;
  6186. position:absolute;
  6187. left:0px;
  6188. top:0px;
  6189. width:400px;
  6190. height:40px;
  6191. background:inherit;
  6192. background-color:rgba(255, 255, 255, 1);
  6193. box-sizing:border-box;
  6194. border-width:1px;
  6195. border-style:solid;
  6196. border-color:rgba(170, 170, 170, 1);
  6197. border-radius:4px;
  6198. filter:drop-shadow(none);
  6199. transition:none;
  6200. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6201. font-weight:400;
  6202. font-style:normal;
  6203. text-align:left;
  6204. }
  6205. #u11979 {
  6206. border-width:0px;
  6207. position:absolute;
  6208. left:1782px;
  6209. top:171px;
  6210. width:400px;
  6211. height:40px;
  6212. display:flex;
  6213. transition:none;
  6214. transform-origin:50% 50%;
  6215. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6216. font-weight:400;
  6217. font-style:normal;
  6218. text-align:left;
  6219. }
  6220. #u11979 .text {
  6221. position:absolute;
  6222. align-self:center;
  6223. padding:2px 2px 2px 10px;
  6224. box-sizing:border-box;
  6225. width:100%;
  6226. }
  6227. #u11979_text {
  6228. border-width:0px;
  6229. word-wrap:break-word;
  6230. text-transform:none;
  6231. visibility:hidden;
  6232. }
  6233. #u11980_input {
  6234. position:absolute;
  6235. left:0px;
  6236. top:0px;
  6237. width:188px;
  6238. height:31px;
  6239. padding:2px 2px 2px 2px;
  6240. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6241. font-weight:400;
  6242. font-style:normal;
  6243. font-size:13px;
  6244. letter-spacing:normal;
  6245. color:#AAAAAA;
  6246. vertical-align:none;
  6247. text-align:left;
  6248. text-transform:none;
  6249. background-color:transparent;
  6250. border-color:transparent;
  6251. }
  6252. #u11980_input.hint {
  6253. position:absolute;
  6254. left:0px;
  6255. top:0px;
  6256. width:188px;
  6257. height:31px;
  6258. padding:2px 2px 2px 2px;
  6259. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6260. font-weight:400;
  6261. font-style:normal;
  6262. font-size:13px;
  6263. letter-spacing:normal;
  6264. color:#999999;
  6265. vertical-align:none;
  6266. text-align:left;
  6267. text-transform:none;
  6268. background-color:transparent;
  6269. border-color:transparent;
  6270. }
  6271. #u11980_input.disabled {
  6272. position:absolute;
  6273. left:0px;
  6274. top:0px;
  6275. width:188px;
  6276. height:31px;
  6277. padding:2px 2px 2px 2px;
  6278. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6279. font-weight:400;
  6280. font-style:normal;
  6281. font-size:13px;
  6282. letter-spacing:normal;
  6283. color:#AAAAAA;
  6284. vertical-align:none;
  6285. text-align:left;
  6286. text-transform:none;
  6287. background-color:transparent;
  6288. border-color:transparent;
  6289. }
  6290. #u11980_input.hint.disabled {
  6291. position:absolute;
  6292. left:0px;
  6293. top:0px;
  6294. width:188px;
  6295. height:31px;
  6296. padding:2px 2px 2px 2px;
  6297. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6298. font-weight:400;
  6299. font-style:normal;
  6300. font-size:13px;
  6301. letter-spacing:normal;
  6302. color:#999999;
  6303. vertical-align:none;
  6304. text-align:left;
  6305. text-transform:none;
  6306. background-color:transparent;
  6307. border-color:transparent;
  6308. }
  6309. #u11980_div {
  6310. border-width:0px;
  6311. position:absolute;
  6312. left:0px;
  6313. top:0px;
  6314. width:188px;
  6315. height:31px;
  6316. background:inherit;
  6317. background-color:rgba(255, 255, 255, 0);
  6318. border-radius:0px;
  6319. filter:drop-shadow(none);
  6320. transition:none;
  6321. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6322. font-weight:400;
  6323. font-style:normal;
  6324. color:#AAAAAA;
  6325. }
  6326. #u11980 {
  6327. border-width:0px;
  6328. position:absolute;
  6329. left:1792px;
  6330. top:176px;
  6331. width:188px;
  6332. height:31px;
  6333. display:flex;
  6334. transition:none;
  6335. transform-origin:50% 50%;
  6336. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6337. font-weight:400;
  6338. font-style:normal;
  6339. color:#AAAAAA;
  6340. }
  6341. #u11980 .text {
  6342. position:absolute;
  6343. align-self:center;
  6344. padding:2px 2px 2px 2px;
  6345. box-sizing:border-box;
  6346. width:100%;
  6347. }
  6348. #u11980_div.hint {
  6349. border-width:0px;
  6350. position:absolute;
  6351. left:0px;
  6352. top:0px;
  6353. width:188px;
  6354. height:31px;
  6355. background:inherit;
  6356. background-color:rgba(255, 255, 255, 0);
  6357. border-radius:0px;
  6358. filter:drop-shadow(none);
  6359. transition:none;
  6360. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6361. font-weight:400;
  6362. font-style:normal;
  6363. color:#AAAAAA;
  6364. }
  6365. #u11980.hint {
  6366. }
  6367. #u11980_div.disabled {
  6368. border-width:0px;
  6369. position:absolute;
  6370. left:0px;
  6371. top:0px;
  6372. width:188px;
  6373. height:31px;
  6374. background:inherit;
  6375. background-color:rgba(240, 240, 240, 1);
  6376. border-radius:0px;
  6377. filter:drop-shadow(none);
  6378. transition:none;
  6379. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6380. font-weight:400;
  6381. font-style:normal;
  6382. color:#AAAAAA;
  6383. }
  6384. #u11980.disabled {
  6385. }
  6386. #u11980_div.hint.disabled {
  6387. border-width:0px;
  6388. position:absolute;
  6389. left:0px;
  6390. top:0px;
  6391. width:188px;
  6392. height:31px;
  6393. background:inherit;
  6394. background-color:rgba(240, 240, 240, 1);
  6395. border-radius:0px;
  6396. filter:drop-shadow(none);
  6397. transition:none;
  6398. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6399. font-weight:400;
  6400. font-style:normal;
  6401. color:#AAAAAA;
  6402. }
  6403. #u11980.hint.disabled {
  6404. }
  6405. #u11981 {
  6406. border-width:0px;
  6407. position:absolute;
  6408. left:0px;
  6409. top:0px;
  6410. width:0px;
  6411. height:0px;
  6412. }
  6413. #u11982_div {
  6414. border-width:0px;
  6415. position:absolute;
  6416. left:0px;
  6417. top:0px;
  6418. width:40px;
  6419. height:40px;
  6420. background:inherit;
  6421. background-color:rgba(255, 255, 255, 0);
  6422. border-top:0px;
  6423. border-right:0px;
  6424. border-bottom:0px;
  6425. border-radius:0px;
  6426. border-top-left-radius:0px;
  6427. border-bottom-left-radius:0px;
  6428. filter:drop-shadow(none);
  6429. transition:none;
  6430. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6431. font-weight:500;
  6432. font-style:normal;
  6433. font-size:18px;
  6434. text-align:center;
  6435. }
  6436. #u11982 {
  6437. border-width:0px;
  6438. position:absolute;
  6439. left:2270px;
  6440. top:50px;
  6441. width:40px;
  6442. height:40px;
  6443. display:flex;
  6444. transition:none;
  6445. transform-origin:50% 50%;
  6446. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  6447. font-weight:500;
  6448. font-style:normal;
  6449. font-size:18px;
  6450. text-align:center;
  6451. }
  6452. #u11982 .text {
  6453. position:absolute;
  6454. align-self:center;
  6455. padding:5px 10px 5px 0px;
  6456. box-sizing:border-box;
  6457. width:100%;
  6458. }
  6459. #u11982_text {
  6460. border-width:0px;
  6461. word-wrap:break-word;
  6462. text-transform:none;
  6463. }
  6464. #u11983 {
  6465. border-width:0px;
  6466. position:absolute;
  6467. left:2257px;
  6468. top:62px;
  6469. width:13px;
  6470. height:17px;
  6471. display:flex;
  6472. transition:none;
  6473. }
  6474. #u11983 .text {
  6475. position:absolute;
  6476. align-self:center;
  6477. padding:2px 2px 2px 2px;
  6478. box-sizing:border-box;
  6479. width:100%;
  6480. }
  6481. #u11983_img {
  6482. border-width:0px;
  6483. position:absolute;
  6484. left:0px;
  6485. top:0px;
  6486. width:13px;
  6487. height:17px;
  6488. }
  6489. #u11983_text {
  6490. border-width:0px;
  6491. word-wrap:break-word;
  6492. text-transform:none;
  6493. visibility:hidden;
  6494. }
  6495. #u11984 {
  6496. border-width:0px;
  6497. position:absolute;
  6498. left:0px;
  6499. top:0px;
  6500. width:0px;
  6501. height:0px;
  6502. }
  6503. #u11985_div {
  6504. border-width:0px;
  6505. position:absolute;
  6506. left:0px;
  6507. top:0px;
  6508. width:680px;
  6509. height:60px;
  6510. background:inherit;
  6511. background-color:rgba(255, 255, 255, 1);
  6512. box-sizing:border-box;
  6513. border-width:1px;
  6514. border-style:solid;
  6515. border-color:rgba(215, 215, 215, 1);
  6516. border-radius:0px;
  6517. filter:drop-shadow(none);
  6518. transition:none;
  6519. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6520. font-weight:400;
  6521. font-style:normal;
  6522. font-size:14px;
  6523. color:#AAAAAA;
  6524. text-align:center;
  6525. line-height:30px;
  6526. }
  6527. #u11985 {
  6528. border-width:0px;
  6529. position:absolute;
  6530. left:1630px;
  6531. top:1188px;
  6532. width:680px;
  6533. height:60px;
  6534. display:flex;
  6535. transition:none;
  6536. transform-origin:50% 50%;
  6537. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6538. font-weight:400;
  6539. font-style:normal;
  6540. font-size:14px;
  6541. color:#AAAAAA;
  6542. text-align:center;
  6543. line-height:30px;
  6544. }
  6545. #u11985 .text {
  6546. position:absolute;
  6547. align-self:center;
  6548. padding:5px 10px 5px 10px;
  6549. box-sizing:border-box;
  6550. width:100%;
  6551. }
  6552. #u11985_text {
  6553. border-width:0px;
  6554. word-wrap:break-word;
  6555. text-transform:none;
  6556. visibility:hidden;
  6557. }
  6558. #u11986_div {
  6559. border-width:0px;
  6560. position:absolute;
  6561. left:0px;
  6562. top:0px;
  6563. width:80px;
  6564. height:30px;
  6565. background:inherit;
  6566. background-color:rgba(24, 144, 255, 1);
  6567. border-radius:4px;
  6568. filter:drop-shadow(none);
  6569. transition:none;
  6570. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6571. font-weight:400;
  6572. font-style:normal;
  6573. font-size:14px;
  6574. color:#FFFFFF;
  6575. }
  6576. #u11986 {
  6577. border-width:0px;
  6578. position:absolute;
  6579. left:2185px;
  6580. top:1203px;
  6581. width:80px;
  6582. height:30px;
  6583. display:flex;
  6584. transition:none;
  6585. transform-origin:50% 50%;
  6586. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6587. font-weight:400;
  6588. font-style:normal;
  6589. font-size:14px;
  6590. color:#FFFFFF;
  6591. }
  6592. #u11986 .text {
  6593. position:absolute;
  6594. align-self:center;
  6595. padding:2px 2px 2px 2px;
  6596. box-sizing:border-box;
  6597. width:100%;
  6598. }
  6599. #u11986_text {
  6600. border-width:0px;
  6601. word-wrap:break-word;
  6602. text-transform:none;
  6603. }
  6604. #u11987_div {
  6605. border-width:0px;
  6606. position:absolute;
  6607. left:0px;
  6608. top:0px;
  6609. width:80px;
  6610. height:30px;
  6611. background:inherit;
  6612. background-color:rgba(255, 255, 255, 1);
  6613. box-sizing:border-box;
  6614. border-width:1px;
  6615. border-style:solid;
  6616. border-color:rgba(170, 170, 170, 1);
  6617. border-radius:4px;
  6618. filter:drop-shadow(none);
  6619. transition:none;
  6620. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6621. font-weight:400;
  6622. font-style:normal;
  6623. font-size:14px;
  6624. }
  6625. #u11987 {
  6626. border-width:0px;
  6627. position:absolute;
  6628. left:2086px;
  6629. top:1203px;
  6630. width:80px;
  6631. height:30px;
  6632. display:flex;
  6633. transition:none;
  6634. transform-origin:50% 50%;
  6635. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6636. font-weight:400;
  6637. font-style:normal;
  6638. font-size:14px;
  6639. }
  6640. #u11987 .text {
  6641. position:absolute;
  6642. align-self:center;
  6643. padding:2px 2px 2px 2px;
  6644. box-sizing:border-box;
  6645. width:100%;
  6646. }
  6647. #u11987_text {
  6648. border-width:0px;
  6649. word-wrap:break-word;
  6650. text-transform:none;
  6651. }
  6652. #u11988 {
  6653. border-width:0px;
  6654. position:absolute;
  6655. left:0px;
  6656. top:0px;
  6657. width:0px;
  6658. height:0px;
  6659. }
  6660. #u11989_div {
  6661. border-width:0px;
  6662. position:absolute;
  6663. left:0px;
  6664. top:0px;
  6665. width:400px;
  6666. height:40px;
  6667. background:inherit;
  6668. background-color:rgba(255, 255, 255, 1);
  6669. box-sizing:border-box;
  6670. border-width:1px;
  6671. border-style:solid;
  6672. border-color:rgba(170, 170, 170, 1);
  6673. border-radius:4px;
  6674. filter:drop-shadow(none);
  6675. transition:none;
  6676. }
  6677. #u11989 {
  6678. border-width:0px;
  6679. position:absolute;
  6680. left:1782px;
  6681. top:119px;
  6682. width:400px;
  6683. height:40px;
  6684. display:flex;
  6685. transition:none;
  6686. transform-origin:50% 50%;
  6687. }
  6688. #u11989 .text {
  6689. position:absolute;
  6690. align-self:center;
  6691. padding:2px 2px 2px 0px;
  6692. box-sizing:border-box;
  6693. width:100%;
  6694. }
  6695. #u11989_text {
  6696. border-width:0px;
  6697. word-wrap:break-word;
  6698. text-transform:none;
  6699. visibility:hidden;
  6700. }
  6701. #u11990_input {
  6702. position:absolute;
  6703. left:0px;
  6704. top:0px;
  6705. width:380px;
  6706. height:30px;
  6707. padding:2px 2px 2px 0px;
  6708. font-family:'ArialMT', 'Arial', sans-serif;
  6709. font-weight:400;
  6710. font-style:normal;
  6711. font-size:13px;
  6712. letter-spacing:normal;
  6713. color:#AAAAAA;
  6714. vertical-align:none;
  6715. text-align:left;
  6716. text-transform:none;
  6717. background-color:transparent;
  6718. border-color:transparent;
  6719. }
  6720. #u11990_input.disabled {
  6721. position:absolute;
  6722. left:0px;
  6723. top:0px;
  6724. width:380px;
  6725. height:30px;
  6726. padding:2px 2px 2px 0px;
  6727. font-family:'ArialMT', 'Arial', sans-serif;
  6728. font-weight:400;
  6729. font-style:normal;
  6730. font-size:13px;
  6731. letter-spacing:normal;
  6732. color:#AAAAAA;
  6733. vertical-align:none;
  6734. text-align:left;
  6735. text-transform:none;
  6736. background-color:transparent;
  6737. border-color:transparent;
  6738. }
  6739. #u11990_div {
  6740. border-width:0px;
  6741. position:absolute;
  6742. left:0px;
  6743. top:0px;
  6744. width:380px;
  6745. height:30px;
  6746. background:inherit;
  6747. background-color:rgba(255, 255, 255, 1);
  6748. border-radius:0px;
  6749. filter:drop-shadow(none);
  6750. transition:none;
  6751. color:#AAAAAA;
  6752. }
  6753. #u11990 {
  6754. border-width:0px;
  6755. position:absolute;
  6756. left:1792px;
  6757. top:125px;
  6758. width:380px;
  6759. height:30px;
  6760. display:flex;
  6761. transition:none;
  6762. transform-origin:50% 50%;
  6763. color:#AAAAAA;
  6764. }
  6765. #u11990 .text {
  6766. position:absolute;
  6767. align-self:flex-start;
  6768. padding:2px 2px 2px 0px;
  6769. box-sizing:border-box;
  6770. width:100%;
  6771. }
  6772. #u11990_div.disabled {
  6773. border-width:0px;
  6774. position:absolute;
  6775. left:0px;
  6776. top:0px;
  6777. width:380px;
  6778. height:30px;
  6779. background:inherit;
  6780. background-color:rgba(240, 240, 240, 1);
  6781. border-radius:0px;
  6782. filter:drop-shadow(none);
  6783. transition:none;
  6784. color:#AAAAAA;
  6785. }
  6786. #u11990.disabled {
  6787. }
  6788. .u11990_input_option {
  6789. }
  6790. #u11991_div {
  6791. border-width:0px;
  6792. position:absolute;
  6793. left:0px;
  6794. top:0px;
  6795. width:78px;
  6796. height:30px;
  6797. background:inherit;
  6798. background-color:rgba(255, 255, 255, 0);
  6799. border-top:0px;
  6800. border-right:0px;
  6801. border-bottom:0px;
  6802. border-radius:0px;
  6803. border-top-left-radius:0px;
  6804. border-bottom-left-radius:0px;
  6805. filter:drop-shadow(none);
  6806. transition:none;
  6807. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6808. font-weight:400;
  6809. font-style:normal;
  6810. font-size:14px;
  6811. text-align:right;
  6812. }
  6813. #u11991 {
  6814. border-width:0px;
  6815. position:absolute;
  6816. left:1694px;
  6817. top:176px;
  6818. width:78px;
  6819. height:30px;
  6820. display:flex;
  6821. transition:none;
  6822. transform-origin:50% 50%;
  6823. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6824. font-weight:400;
  6825. font-style:normal;
  6826. font-size:14px;
  6827. text-align:right;
  6828. }
  6829. #u11991 .text {
  6830. position:absolute;
  6831. align-self:center;
  6832. padding:5px 0px 5px 0px;
  6833. box-sizing:border-box;
  6834. width:100%;
  6835. }
  6836. #u11991_text {
  6837. border-width:0px;
  6838. white-space:nowrap;
  6839. text-transform:none;
  6840. }
  6841. #u11992 {
  6842. border-width:0px;
  6843. position:absolute;
  6844. left:0px;
  6845. top:0px;
  6846. width:0px;
  6847. height:0px;
  6848. }
  6849. #u11993_div {
  6850. border-width:0px;
  6851. position:absolute;
  6852. left:0px;
  6853. top:0px;
  6854. width:400px;
  6855. height:40px;
  6856. background:inherit;
  6857. background-color:rgba(255, 255, 255, 1);
  6858. box-sizing:border-box;
  6859. border-width:1px;
  6860. border-style:solid;
  6861. border-color:rgba(170, 170, 170, 1);
  6862. border-radius:4px;
  6863. filter:drop-shadow(none);
  6864. transition:none;
  6865. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6866. font-weight:400;
  6867. font-style:normal;
  6868. text-align:left;
  6869. }
  6870. #u11993 {
  6871. border-width:0px;
  6872. position:absolute;
  6873. left:1782px;
  6874. top:221px;
  6875. width:400px;
  6876. height:40px;
  6877. display:flex;
  6878. transition:none;
  6879. transform-origin:50% 50%;
  6880. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6881. font-weight:400;
  6882. font-style:normal;
  6883. text-align:left;
  6884. }
  6885. #u11993 .text {
  6886. position:absolute;
  6887. align-self:center;
  6888. padding:2px 2px 2px 10px;
  6889. box-sizing:border-box;
  6890. width:100%;
  6891. }
  6892. #u11993_text {
  6893. border-width:0px;
  6894. word-wrap:break-word;
  6895. text-transform:none;
  6896. visibility:hidden;
  6897. }
  6898. #u11994_input {
  6899. position:absolute;
  6900. left:0px;
  6901. top:0px;
  6902. width:188px;
  6903. height:31px;
  6904. padding:2px 2px 2px 2px;
  6905. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6906. font-weight:400;
  6907. font-style:normal;
  6908. font-size:13px;
  6909. letter-spacing:normal;
  6910. color:#AAAAAA;
  6911. vertical-align:none;
  6912. text-align:left;
  6913. text-transform:none;
  6914. background-color:transparent;
  6915. border-color:transparent;
  6916. }
  6917. #u11994_input.hint {
  6918. position:absolute;
  6919. left:0px;
  6920. top:0px;
  6921. width:188px;
  6922. height:31px;
  6923. padding:2px 2px 2px 2px;
  6924. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6925. font-weight:400;
  6926. font-style:normal;
  6927. font-size:13px;
  6928. letter-spacing:normal;
  6929. color:#999999;
  6930. vertical-align:none;
  6931. text-align:left;
  6932. text-transform:none;
  6933. background-color:transparent;
  6934. border-color:transparent;
  6935. }
  6936. #u11994_input.disabled {
  6937. position:absolute;
  6938. left:0px;
  6939. top:0px;
  6940. width:188px;
  6941. height:31px;
  6942. padding:2px 2px 2px 2px;
  6943. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6944. font-weight:400;
  6945. font-style:normal;
  6946. font-size:13px;
  6947. letter-spacing:normal;
  6948. color:#AAAAAA;
  6949. vertical-align:none;
  6950. text-align:left;
  6951. text-transform:none;
  6952. background-color:transparent;
  6953. border-color:transparent;
  6954. }
  6955. #u11994_input.hint.disabled {
  6956. position:absolute;
  6957. left:0px;
  6958. top:0px;
  6959. width:188px;
  6960. height:31px;
  6961. padding:2px 2px 2px 2px;
  6962. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6963. font-weight:400;
  6964. font-style:normal;
  6965. font-size:13px;
  6966. letter-spacing:normal;
  6967. color:#999999;
  6968. vertical-align:none;
  6969. text-align:left;
  6970. text-transform:none;
  6971. background-color:transparent;
  6972. border-color:transparent;
  6973. }
  6974. #u11994_div {
  6975. border-width:0px;
  6976. position:absolute;
  6977. left:0px;
  6978. top:0px;
  6979. width:188px;
  6980. height:31px;
  6981. background:inherit;
  6982. background-color:rgba(255, 255, 255, 1);
  6983. border-radius:0px;
  6984. filter:drop-shadow(none);
  6985. transition:none;
  6986. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  6987. font-weight:400;
  6988. font-style:normal;
  6989. color:#AAAAAA;
  6990. }
  6991. #u11994 {
  6992. border-width:0px;
  6993. position:absolute;
  6994. left:1792px;
  6995. top:226px;
  6996. width:188px;
  6997. height:31px;
  6998. display:flex;
  6999. transition:none;
  7000. transform-origin:50% 50%;
  7001. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7002. font-weight:400;
  7003. font-style:normal;
  7004. color:#AAAAAA;
  7005. }
  7006. #u11994 .text {
  7007. position:absolute;
  7008. align-self:center;
  7009. padding:2px 2px 2px 2px;
  7010. box-sizing:border-box;
  7011. width:100%;
  7012. }
  7013. #u11994_div.hint {
  7014. border-width:0px;
  7015. position:absolute;
  7016. left:0px;
  7017. top:0px;
  7018. width:188px;
  7019. height:31px;
  7020. background:inherit;
  7021. background-color:rgba(255, 255, 255, 1);
  7022. border-radius:0px;
  7023. filter:drop-shadow(none);
  7024. transition:none;
  7025. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7026. font-weight:400;
  7027. font-style:normal;
  7028. color:#AAAAAA;
  7029. }
  7030. #u11994.hint {
  7031. }
  7032. #u11994_div.disabled {
  7033. border-width:0px;
  7034. position:absolute;
  7035. left:0px;
  7036. top:0px;
  7037. width:188px;
  7038. height:31px;
  7039. background:inherit;
  7040. background-color:rgba(240, 240, 240, 1);
  7041. border-radius:0px;
  7042. filter:drop-shadow(none);
  7043. transition:none;
  7044. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7045. font-weight:400;
  7046. font-style:normal;
  7047. color:#AAAAAA;
  7048. }
  7049. #u11994.disabled {
  7050. }
  7051. #u11994_div.hint.disabled {
  7052. border-width:0px;
  7053. position:absolute;
  7054. left:0px;
  7055. top:0px;
  7056. width:188px;
  7057. height:31px;
  7058. background:inherit;
  7059. background-color:rgba(240, 240, 240, 1);
  7060. border-radius:0px;
  7061. filter:drop-shadow(none);
  7062. transition:none;
  7063. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7064. font-weight:400;
  7065. font-style:normal;
  7066. color:#AAAAAA;
  7067. }
  7068. #u11994.hint.disabled {
  7069. }
  7070. #u11995_div {
  7071. border-width:0px;
  7072. position:absolute;
  7073. left:0px;
  7074. top:0px;
  7075. width:78px;
  7076. height:30px;
  7077. background:inherit;
  7078. background-color:rgba(255, 255, 255, 0);
  7079. border-top:0px;
  7080. border-right:0px;
  7081. border-bottom:0px;
  7082. border-radius:0px;
  7083. border-top-left-radius:0px;
  7084. border-bottom-left-radius:0px;
  7085. filter:drop-shadow(none);
  7086. transition:none;
  7087. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7088. font-weight:400;
  7089. font-style:normal;
  7090. font-size:14px;
  7091. text-align:right;
  7092. }
  7093. #u11995 {
  7094. border-width:0px;
  7095. position:absolute;
  7096. left:1694px;
  7097. top:227px;
  7098. width:78px;
  7099. height:30px;
  7100. display:flex;
  7101. transition:none;
  7102. transform-origin:50% 50%;
  7103. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7104. font-weight:400;
  7105. font-style:normal;
  7106. font-size:14px;
  7107. text-align:right;
  7108. }
  7109. #u11995 .text {
  7110. position:absolute;
  7111. align-self:center;
  7112. padding:5px 0px 5px 0px;
  7113. box-sizing:border-box;
  7114. width:100%;
  7115. }
  7116. #u11995_text {
  7117. border-width:0px;
  7118. white-space:nowrap;
  7119. text-transform:none;
  7120. }
  7121. #u11996 {
  7122. border-width:0px;
  7123. position:absolute;
  7124. left:0px;
  7125. top:0px;
  7126. width:0px;
  7127. height:0px;
  7128. }
  7129. #u11997_div {
  7130. border-width:0px;
  7131. position:absolute;
  7132. left:0px;
  7133. top:0px;
  7134. width:400px;
  7135. height:80px;
  7136. background:inherit;
  7137. background-color:rgba(255, 255, 255, 1);
  7138. box-sizing:border-box;
  7139. border-width:1px;
  7140. border-style:solid;
  7141. border-color:rgba(170, 170, 170, 1);
  7142. border-radius:4px;
  7143. filter:drop-shadow(none);
  7144. transition:none;
  7145. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7146. font-weight:400;
  7147. font-style:normal;
  7148. text-align:left;
  7149. }
  7150. #u11997 {
  7151. border-width:0px;
  7152. position:absolute;
  7153. left:1782px;
  7154. top:361px;
  7155. width:400px;
  7156. height:80px;
  7157. display:flex;
  7158. transition:none;
  7159. transform-origin:50% 50%;
  7160. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7161. font-weight:400;
  7162. font-style:normal;
  7163. text-align:left;
  7164. }
  7165. #u11997 .text {
  7166. position:absolute;
  7167. align-self:center;
  7168. padding:2px 2px 2px 10px;
  7169. box-sizing:border-box;
  7170. width:100%;
  7171. }
  7172. #u11997_text {
  7173. border-width:0px;
  7174. word-wrap:break-word;
  7175. text-transform:none;
  7176. visibility:hidden;
  7177. }
  7178. #u11998_input {
  7179. position:absolute;
  7180. left:0px;
  7181. top:0px;
  7182. width:188px;
  7183. height:31px;
  7184. padding:2px 2px 2px 2px;
  7185. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7186. font-weight:400;
  7187. font-style:normal;
  7188. font-size:13px;
  7189. letter-spacing:normal;
  7190. color:#AAAAAA;
  7191. vertical-align:none;
  7192. text-align:left;
  7193. text-transform:none;
  7194. background-color:transparent;
  7195. border-color:transparent;
  7196. }
  7197. #u11998_input.hint {
  7198. position:absolute;
  7199. left:0px;
  7200. top:0px;
  7201. width:188px;
  7202. height:31px;
  7203. padding:2px 2px 2px 2px;
  7204. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7205. font-weight:400;
  7206. font-style:normal;
  7207. font-size:13px;
  7208. letter-spacing:normal;
  7209. color:#999999;
  7210. vertical-align:none;
  7211. text-align:left;
  7212. text-transform:none;
  7213. background-color:transparent;
  7214. border-color:transparent;
  7215. }
  7216. #u11998_input.disabled {
  7217. position:absolute;
  7218. left:0px;
  7219. top:0px;
  7220. width:188px;
  7221. height:31px;
  7222. padding:2px 2px 2px 2px;
  7223. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7224. font-weight:400;
  7225. font-style:normal;
  7226. font-size:13px;
  7227. letter-spacing:normal;
  7228. color:#AAAAAA;
  7229. vertical-align:none;
  7230. text-align:left;
  7231. text-transform:none;
  7232. background-color:transparent;
  7233. border-color:transparent;
  7234. }
  7235. #u11998_input.hint.disabled {
  7236. position:absolute;
  7237. left:0px;
  7238. top:0px;
  7239. width:188px;
  7240. height:31px;
  7241. padding:2px 2px 2px 2px;
  7242. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7243. font-weight:400;
  7244. font-style:normal;
  7245. font-size:13px;
  7246. letter-spacing:normal;
  7247. color:#999999;
  7248. vertical-align:none;
  7249. text-align:left;
  7250. text-transform:none;
  7251. background-color:transparent;
  7252. border-color:transparent;
  7253. }
  7254. #u11998_div {
  7255. border-width:0px;
  7256. position:absolute;
  7257. left:0px;
  7258. top:0px;
  7259. width:188px;
  7260. height:31px;
  7261. background:inherit;
  7262. background-color:rgba(255, 255, 255, 1);
  7263. border-radius:0px;
  7264. filter:drop-shadow(none);
  7265. transition:none;
  7266. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7267. font-weight:400;
  7268. font-style:normal;
  7269. color:#AAAAAA;
  7270. }
  7271. #u11998 {
  7272. border-width:0px;
  7273. position:absolute;
  7274. left:1792px;
  7275. top:366px;
  7276. width:188px;
  7277. height:31px;
  7278. display:flex;
  7279. transition:none;
  7280. transform-origin:50% 50%;
  7281. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7282. font-weight:400;
  7283. font-style:normal;
  7284. color:#AAAAAA;
  7285. }
  7286. #u11998 .text {
  7287. position:absolute;
  7288. align-self:center;
  7289. padding:2px 2px 2px 2px;
  7290. box-sizing:border-box;
  7291. width:100%;
  7292. }
  7293. #u11998_div.hint {
  7294. border-width:0px;
  7295. position:absolute;
  7296. left:0px;
  7297. top:0px;
  7298. width:188px;
  7299. height:31px;
  7300. background:inherit;
  7301. background-color:rgba(255, 255, 255, 1);
  7302. border-radius:0px;
  7303. filter:drop-shadow(none);
  7304. transition:none;
  7305. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7306. font-weight:400;
  7307. font-style:normal;
  7308. color:#AAAAAA;
  7309. }
  7310. #u11998.hint {
  7311. }
  7312. #u11998_div.disabled {
  7313. border-width:0px;
  7314. position:absolute;
  7315. left:0px;
  7316. top:0px;
  7317. width:188px;
  7318. height:31px;
  7319. background:inherit;
  7320. background-color:rgba(240, 240, 240, 1);
  7321. border-radius:0px;
  7322. filter:drop-shadow(none);
  7323. transition:none;
  7324. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7325. font-weight:400;
  7326. font-style:normal;
  7327. color:#AAAAAA;
  7328. }
  7329. #u11998.disabled {
  7330. }
  7331. #u11998_div.hint.disabled {
  7332. border-width:0px;
  7333. position:absolute;
  7334. left:0px;
  7335. top:0px;
  7336. width:188px;
  7337. height:31px;
  7338. background:inherit;
  7339. background-color:rgba(240, 240, 240, 1);
  7340. border-radius:0px;
  7341. filter:drop-shadow(none);
  7342. transition:none;
  7343. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7344. font-weight:400;
  7345. font-style:normal;
  7346. color:#AAAAAA;
  7347. }
  7348. #u11998.hint.disabled {
  7349. }
  7350. #u11999_div {
  7351. border-width:0px;
  7352. position:absolute;
  7353. left:0px;
  7354. top:0px;
  7355. width:71px;
  7356. height:30px;
  7357. background:inherit;
  7358. background-color:rgba(255, 255, 255, 0);
  7359. border-top:0px;
  7360. border-right:0px;
  7361. border-bottom:0px;
  7362. border-radius:0px;
  7363. border-top-left-radius:0px;
  7364. border-bottom-left-radius:0px;
  7365. filter:drop-shadow(none);
  7366. transition:none;
  7367. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7368. font-weight:400;
  7369. font-style:normal;
  7370. font-size:14px;
  7371. text-align:right;
  7372. }
  7373. #u11999 {
  7374. border-width:0px;
  7375. position:absolute;
  7376. left:1701px;
  7377. top:367px;
  7378. width:71px;
  7379. height:30px;
  7380. display:flex;
  7381. transition:none;
  7382. transform-origin:50% 50%;
  7383. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7384. font-weight:400;
  7385. font-style:normal;
  7386. font-size:14px;
  7387. text-align:right;
  7388. }
  7389. #u11999 .text {
  7390. position:absolute;
  7391. align-self:center;
  7392. padding:5px 0px 5px 0px;
  7393. box-sizing:border-box;
  7394. width:100%;
  7395. }
  7396. #u11999_text {
  7397. border-width:0px;
  7398. white-space:nowrap;
  7399. text-transform:none;
  7400. }
  7401. #u12000_div {
  7402. border-width:0px;
  7403. position:absolute;
  7404. left:0px;
  7405. top:0px;
  7406. width:80px;
  7407. height:80px;
  7408. background:inherit;
  7409. background-color:rgba(255, 255, 255, 1);
  7410. box-sizing:border-box;
  7411. border-width:1px;
  7412. border-style:solid;
  7413. border-color:rgba(170, 170, 170, 1);
  7414. border-radius:4px;
  7415. filter:drop-shadow(none);
  7416. transition:none;
  7417. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7418. font-weight:400;
  7419. font-style:normal;
  7420. }
  7421. #u12000 {
  7422. border-width:0px;
  7423. position:absolute;
  7424. left:1784px;
  7425. top:271px;
  7426. width:80px;
  7427. height:80px;
  7428. display:flex;
  7429. transition:none;
  7430. transform-origin:50% 50%;
  7431. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7432. font-weight:400;
  7433. font-style:normal;
  7434. }
  7435. #u12000 .text {
  7436. position:absolute;
  7437. align-self:center;
  7438. padding:2px 2px 2px 2px;
  7439. box-sizing:border-box;
  7440. width:100%;
  7441. }
  7442. #u12000_text {
  7443. border-width:0px;
  7444. word-wrap:break-word;
  7445. text-transform:none;
  7446. }
  7447. #u12001_div {
  7448. border-width:0px;
  7449. position:absolute;
  7450. left:0px;
  7451. top:0px;
  7452. width:71px;
  7453. height:30px;
  7454. background:inherit;
  7455. background-color:rgba(255, 255, 255, 0);
  7456. border-top:0px;
  7457. border-right:0px;
  7458. border-bottom:0px;
  7459. border-radius:0px;
  7460. border-top-left-radius:0px;
  7461. border-bottom-left-radius:0px;
  7462. filter:drop-shadow(none);
  7463. transition:none;
  7464. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7465. font-weight:400;
  7466. font-style:normal;
  7467. font-size:14px;
  7468. text-align:right;
  7469. }
  7470. #u12001 {
  7471. border-width:0px;
  7472. position:absolute;
  7473. left:1701px;
  7474. top:276px;
  7475. width:71px;
  7476. height:30px;
  7477. display:flex;
  7478. transition:none;
  7479. transform-origin:50% 50%;
  7480. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7481. font-weight:400;
  7482. font-style:normal;
  7483. font-size:14px;
  7484. text-align:right;
  7485. }
  7486. #u12001 .text {
  7487. position:absolute;
  7488. align-self:center;
  7489. padding:5px 0px 5px 0px;
  7490. box-sizing:border-box;
  7491. width:100%;
  7492. }
  7493. #u12001_text {
  7494. border-width:0px;
  7495. white-space:nowrap;
  7496. text-transform:none;
  7497. }
  7498. #u12002 {
  7499. border-width:0px;
  7500. position:absolute;
  7501. left:121px;
  7502. top:50px;
  7503. width:200px;
  7504. height:1180px;
  7505. }
  7506. #u12003 {
  7507. border-width:0px;
  7508. position:absolute;
  7509. left:0px;
  7510. top:0px;
  7511. width:0px;
  7512. height:0px;
  7513. }
  7514. #u12004_div {
  7515. border-width:0px;
  7516. position:absolute;
  7517. left:0px;
  7518. top:0px;
  7519. width:200px;
  7520. height:1180px;
  7521. background:inherit;
  7522. background-color:rgba(255, 255, 255, 1);
  7523. border-radius:0px;
  7524. filter:drop-shadow(none);
  7525. transition:none;
  7526. }
  7527. #u12004 {
  7528. border-width:0px;
  7529. position:absolute;
  7530. left:0px;
  7531. top:0px;
  7532. width:200px;
  7533. height:1180px;
  7534. display:flex;
  7535. transition:none;
  7536. transform-origin:50% 50%;
  7537. }
  7538. #u12004 .text {
  7539. position:absolute;
  7540. align-self:center;
  7541. padding:2px 2px 2px 2px;
  7542. box-sizing:border-box;
  7543. width:100%;
  7544. }
  7545. #u12004_text {
  7546. border-width:0px;
  7547. word-wrap:break-word;
  7548. text-transform:none;
  7549. visibility:hidden;
  7550. }
  7551. #u12005_div {
  7552. border-width:0px;
  7553. position:absolute;
  7554. left:0px;
  7555. top:0px;
  7556. width:200px;
  7557. height:60px;
  7558. background:inherit;
  7559. background-color:rgba(224, 231, 247, 1);
  7560. border-radius:0px;
  7561. filter:drop-shadow(none);
  7562. transition:none;
  7563. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7564. font-weight:500;
  7565. font-style:normal;
  7566. font-size:18px;
  7567. }
  7568. #u12005 {
  7569. border-width:0px;
  7570. position:absolute;
  7571. left:0px;
  7572. top:0px;
  7573. width:200px;
  7574. height:60px;
  7575. display:flex;
  7576. transition:none;
  7577. transform-origin:50% 50%;
  7578. font-family:'PingFangSC-Medium', 'PingFang SC Medium', 'PingFang SC', sans-serif;
  7579. font-weight:500;
  7580. font-style:normal;
  7581. font-size:18px;
  7582. }
  7583. #u12005 .text {
  7584. position:absolute;
  7585. align-self:center;
  7586. padding:0px 0px 0px 20px;
  7587. box-sizing:border-box;
  7588. width:100%;
  7589. }
  7590. #u12005_text {
  7591. border-width:0px;
  7592. word-wrap:break-word;
  7593. text-transform:none;
  7594. }
  7595. #u12006_div {
  7596. border-width:0px;
  7597. position:absolute;
  7598. left:0px;
  7599. top:0px;
  7600. width:65px;
  7601. height:22px;
  7602. background:inherit;
  7603. background-color:rgba(255, 255, 255, 0);
  7604. border-radius:0px;
  7605. filter:drop-shadow(none);
  7606. transition:none;
  7607. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7608. font-weight:400;
  7609. font-style:normal;
  7610. font-size:16px;
  7611. }
  7612. #u12006 {
  7613. border-width:0px;
  7614. position:absolute;
  7615. left:27px;
  7616. top:111px;
  7617. width:65px;
  7618. height:22px;
  7619. display:flex;
  7620. transition:none;
  7621. transform-origin:50% 50%;
  7622. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7623. font-weight:400;
  7624. font-style:normal;
  7625. font-size:16px;
  7626. }
  7627. #u12006 .text {
  7628. position:absolute;
  7629. align-self:flex-start;
  7630. padding:0px 0px 0px 0px;
  7631. box-sizing:border-box;
  7632. width:100%;
  7633. }
  7634. #u12006_text {
  7635. border-width:0px;
  7636. white-space:nowrap;
  7637. text-transform:none;
  7638. }
  7639. #u12007_div {
  7640. border-width:0px;
  7641. position:absolute;
  7642. left:0px;
  7643. top:0px;
  7644. width:65px;
  7645. height:22px;
  7646. background:inherit;
  7647. background-color:rgba(255, 255, 255, 0);
  7648. border-radius:0px;
  7649. filter:drop-shadow(none);
  7650. transition:none;
  7651. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7652. font-weight:400;
  7653. font-style:normal;
  7654. font-size:16px;
  7655. }
  7656. #u12007 {
  7657. border-width:0px;
  7658. position:absolute;
  7659. left:27px;
  7660. top:259px;
  7661. width:65px;
  7662. height:22px;
  7663. display:flex;
  7664. transition:none;
  7665. transform-origin:50% 50%;
  7666. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7667. font-weight:400;
  7668. font-style:normal;
  7669. font-size:16px;
  7670. }
  7671. #u12007 .text {
  7672. position:absolute;
  7673. align-self:flex-start;
  7674. padding:0px 0px 0px 0px;
  7675. box-sizing:border-box;
  7676. width:100%;
  7677. }
  7678. #u12007_text {
  7679. border-width:0px;
  7680. white-space:nowrap;
  7681. text-transform:none;
  7682. }
  7683. #u12008_div {
  7684. border-width:0px;
  7685. position:absolute;
  7686. left:0px;
  7687. top:0px;
  7688. width:49px;
  7689. height:17px;
  7690. background:inherit;
  7691. background-color:rgba(255, 255, 255, 0);
  7692. border-radius:0px;
  7693. filter:drop-shadow(none);
  7694. transition:none;
  7695. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7696. font-weight:400;
  7697. font-style:normal;
  7698. font-size:12px;
  7699. color:#AAAAAA;
  7700. }
  7701. #u12008 {
  7702. border-width:0px;
  7703. position:absolute;
  7704. left:27px;
  7705. top:222px;
  7706. width:49px;
  7707. height:17px;
  7708. display:flex;
  7709. transition:none;
  7710. transform-origin:50% 50%;
  7711. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7712. font-weight:400;
  7713. font-style:normal;
  7714. font-size:12px;
  7715. color:#AAAAAA;
  7716. }
  7717. #u12008 .text {
  7718. position:absolute;
  7719. align-self:flex-start;
  7720. padding:0px 0px 0px 0px;
  7721. box-sizing:border-box;
  7722. width:100%;
  7723. }
  7724. #u12008_text {
  7725. border-width:0px;
  7726. white-space:nowrap;
  7727. text-transform:none;
  7728. }
  7729. #u12009 {
  7730. border-width:0px;
  7731. position:absolute;
  7732. left:0px;
  7733. top:200px;
  7734. width:200px;
  7735. height:1px;
  7736. display:flex;
  7737. transition:none;
  7738. }
  7739. #u12009 .text {
  7740. position:absolute;
  7741. align-self:center;
  7742. padding:2px 2px 2px 2px;
  7743. box-sizing:border-box;
  7744. width:100%;
  7745. }
  7746. #u12009_img {
  7747. border-width:0px;
  7748. position:absolute;
  7749. left:0px;
  7750. top:0px;
  7751. width:201px;
  7752. height:2px;
  7753. }
  7754. #u12009_text {
  7755. border-width:0px;
  7756. word-wrap:break-word;
  7757. text-transform:none;
  7758. visibility:hidden;
  7759. }
  7760. #u12010_div {
  7761. border-width:0px;
  7762. position:absolute;
  7763. left:0px;
  7764. top:0px;
  7765. width:65px;
  7766. height:22px;
  7767. background:inherit;
  7768. background-color:rgba(255, 255, 255, 0);
  7769. border-radius:0px;
  7770. filter:drop-shadow(none);
  7771. transition:none;
  7772. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7773. font-weight:400;
  7774. font-style:normal;
  7775. font-size:16px;
  7776. }
  7777. #u12010 {
  7778. border-width:0px;
  7779. position:absolute;
  7780. left:27px;
  7781. top:301px;
  7782. width:65px;
  7783. height:22px;
  7784. display:flex;
  7785. transition:none;
  7786. transform-origin:50% 50%;
  7787. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7788. font-weight:400;
  7789. font-style:normal;
  7790. font-size:16px;
  7791. }
  7792. #u12010 .text {
  7793. position:absolute;
  7794. align-self:flex-start;
  7795. padding:0px 0px 0px 0px;
  7796. box-sizing:border-box;
  7797. width:100%;
  7798. }
  7799. #u12010_text {
  7800. border-width:0px;
  7801. white-space:nowrap;
  7802. text-transform:none;
  7803. }
  7804. #u12011_div {
  7805. border-width:0px;
  7806. position:absolute;
  7807. left:0px;
  7808. top:0px;
  7809. width:49px;
  7810. height:17px;
  7811. background:inherit;
  7812. background-color:rgba(255, 255, 255, 0);
  7813. border-radius:0px;
  7814. filter:drop-shadow(none);
  7815. transition:none;
  7816. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7817. font-weight:400;
  7818. font-style:normal;
  7819. font-size:12px;
  7820. color:#AAAAAA;
  7821. }
  7822. #u12011 {
  7823. border-width:0px;
  7824. position:absolute;
  7825. left:27px;
  7826. top:80px;
  7827. width:49px;
  7828. height:17px;
  7829. display:flex;
  7830. transition:none;
  7831. transform-origin:50% 50%;
  7832. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7833. font-weight:400;
  7834. font-style:normal;
  7835. font-size:12px;
  7836. color:#AAAAAA;
  7837. }
  7838. #u12011 .text {
  7839. position:absolute;
  7840. align-self:flex-start;
  7841. padding:0px 0px 0px 0px;
  7842. box-sizing:border-box;
  7843. width:100%;
  7844. }
  7845. #u12011_text {
  7846. border-width:0px;
  7847. white-space:nowrap;
  7848. text-transform:none;
  7849. }
  7850. #u12012_div {
  7851. border-width:0px;
  7852. position:absolute;
  7853. left:0px;
  7854. top:0px;
  7855. width:65px;
  7856. height:22px;
  7857. background:inherit;
  7858. background-color:rgba(255, 255, 255, 0);
  7859. border-radius:0px;
  7860. filter:drop-shadow(none);
  7861. transition:none;
  7862. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7863. font-weight:400;
  7864. font-style:normal;
  7865. font-size:16px;
  7866. }
  7867. #u12012 {
  7868. border-width:0px;
  7869. position:absolute;
  7870. left:27px;
  7871. top:343px;
  7872. width:65px;
  7873. height:22px;
  7874. display:flex;
  7875. transition:none;
  7876. transform-origin:50% 50%;
  7877. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7878. font-weight:400;
  7879. font-style:normal;
  7880. font-size:16px;
  7881. }
  7882. #u12012 .text {
  7883. position:absolute;
  7884. align-self:flex-start;
  7885. padding:0px 0px 0px 0px;
  7886. box-sizing:border-box;
  7887. width:100%;
  7888. }
  7889. #u12012_text {
  7890. border-width:0px;
  7891. white-space:nowrap;
  7892. text-transform:none;
  7893. }
  7894. #u12013_div {
  7895. border-width:0px;
  7896. position:absolute;
  7897. left:0px;
  7898. top:0px;
  7899. width:65px;
  7900. height:22px;
  7901. background:inherit;
  7902. background-color:rgba(255, 255, 255, 0);
  7903. border-radius:0px;
  7904. filter:drop-shadow(none);
  7905. transition:none;
  7906. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7907. font-weight:400;
  7908. font-style:normal;
  7909. font-size:16px;
  7910. }
  7911. #u12013 {
  7912. border-width:0px;
  7913. position:absolute;
  7914. left:27px;
  7915. top:153px;
  7916. width:65px;
  7917. height:22px;
  7918. display:flex;
  7919. transition:none;
  7920. transform-origin:50% 50%;
  7921. font-family:'PingFangSC-Regular', 'PingFang SC', sans-serif;
  7922. font-weight:400;
  7923. font-style:normal;
  7924. font-size:16px;
  7925. }
  7926. #u12013 .text {
  7927. position:absolute;
  7928. align-self:flex-start;
  7929. padding:0px 0px 0px 0px;
  7930. box-sizing:border-box;
  7931. width:100%;
  7932. }
  7933. #u12013_text {
  7934. border-width:0px;
  7935. white-space:nowrap;
  7936. text-transform:none;
  7937. }